There are some frontends available, but they all suck, are no longer maintained or are hard to install.
If you need to log to a file you can use Ruby's Logger class: require 'logger'
This guide shows how to create an AngularJS application that consumes more and more memory until, eventually, the browser process...
You can do so much more than console.log(...)! See the attached link for a great breakdown of what the developer...
If you want a class-like construct in JavaScript, you can use the module pattern below. The module pattern gives...
A nice bookmarklet to analyze how many watchers have been registered on the current page. Good for keeping an eye...
PDFKit converts a web page to a PDF document. It uses a Webkit engine under the hood...
Open a MySQL root shell and use this command: PURGE BINARY LOGS BEFORE DATE(NOW() - INTERVAL 3 DAY) + INTERVAL 0...
This card describes how to pass an array with multiple element to a JavaScript function, so that the first array...
config.action_controller.action_on_unpermitted_parameters enables logging or raising an exception if parameters that are not explicitly permitted are...
quiet_assets helps with disabling asset pipeline log messages in the development log. When the gem is added, asset pipeline...
If you are trying to inspect timings in JavaScript, you can use console.time and console.timeEnd which will write to your...
When you are working with Backbone models and inheritance, at some point you want to overwrite inherited methods but call...
If you get this error while trying to resize an openstack instance: # nova resize fooinstance 16 --poll ==> /var/log/nova/nova-scheduler.log <==
There seems to be no way to use therubyracer -v '0.11.4' and libv8 -v '3.11.8.17' on OS X Mavericks.
In Ruby, classes and modules are called constants. This card explains how Ruby resolves the meaning of a constant.
Today I ran into trouble installing therubyracer on Ruby 1.8. The installation failed with *** extconf.rb failed *** Could not create Makefile...
Rails has always included a scaffold script that generates a default controller implementation for you. Unfortunately that generated controller is...
You're better off using debugger-ruby_core_source: gem install debugger-ruby_core_source If you can't do...
If you need to test interaction with a remote API, check out the VCR gem as an alternative to Webmock...
You might not know that Rails disables CSRF protection in tests. This means that if you accidentally forget to send...
Chrome extension that shows all info from your rails log (like parameters, response times, view rendering times, DB requests) inside...
There may be reasons to change the locale of your Postgres cluster. A popular one is your development system's...
The new exception_notification has awesome options like :ignore_crawlers => true and :ignore_if => lambda {...
...}. These options should be helpful...