Yanying Wang

Results 5 issues of Yanying Wang

Hi, guys, could I convert one request to curl cmd with ChromeRestClient? I've try to find it but can't. Could anybody help me with this?

enhancement

This is a test case to demonstrate what I mentioned in the title: ``` ruby #!/usr/bin/env ruby # test.rb class TestClass source = true [2] pry(main)> TestClass.new.test_m => "test_m here"...

# Custom Validators ``` class AlphaNumeric < Grape::Validations::Base def validate_param!(attr_name, params) unless params[attr_name] =~ /^[[:alnum:]]+$/ fail Grape::Exceptions::Validation, params: [@scope.full_name(attr_name)], message: "must consist of alpha-numeric characters" end end end ``` ```...

bug?

I frequently get this error when runing client demon with cmd `node local.js -s ......` . ``` shell connecting oauth.googleusercontent.com via ws://yy-shadowsocks.herokuapp.com:80/ connecting s.ytimg.com via ws://yy-shadowsocks.herokuapp.com:80/ local disconnected concurrent connections:...

let's say I want to write code like this: ~~~racket (define id-range '(1 10)) (select id sd_id created_at updated_at #:from users #:where (between-and id ,@id-range)) ~~~ or like this: ~~~racket...