Phuong Nguyen
Phuong Nguyen
I'm having God monitor thin with this configuration: ``` RAILS_ROOT = File.expand_path "." God.watch do |w| w.name = "thin" w.dir = RAILS_ROOT w.log = File.join(RAILS_ROOT, 'log/god-thin.log') w.interval = 30.seconds w.start...
thing like this no longer works with latest grape: `throttle max: 5, per: 1.day, identifier: Proc.new { params[:id] }` because params[:id] always return nil in a before filter.
It seem that there is no way to inspect v0, v1,... or p1, p2,... inside intelij unless the method parameters were explained with `.param` or the locals were explained with...
I run bower install with this bower.json (generated by bower-rails): ``` { "lib": { "name": "bower-rails generated lib assets", "dependencies": { "angular-ui-router": "~0.2.15", "angular-bootstrap": "~0.14.3" } }, "vendor": { "name":...
I want to search for like '%B %d' (which is fine with ack. Currently Gsearch will raise errors with such term
So I have 'xxx' in clipboard. I select 'yyy' inside my buffer and hit Cmd+V. Janus vim is not replacing the text.
In certain situation, I need to use multi to ensure atomic of a block of command. Current implementation of Counter#incrbyfloat include a **too smart** .to_f which make this impracticle.
I'm having this in my rails application.rb: `config.browserify_rails.node_env = "production"` Inside my script which will be browserified and babelified I'm logging this: ``console.warn(`My env: ${ process.env.NODE_ENV }`)`` And I'm getting:...
I'm not sure where did I copy these extensions from, perhaps redis-ruby. These extensions let nest use hash directly. I find them very useful. Do you think we can add...
I installed mermaid.cli with latest mermaidjs. Here is my package.json ``` { "dependencies": { "mermaid.cli": "^0.5.1", "mermaid": "knsv/mermaid#f506c795" } } ``` Attempting to render something like this: ``` graph TD...