Xfce gives you a million options to configure your panels. Together with Xfce's sometimes arcane configuration UI, this can...
Having your site run on SSL is worthless when you include content over an unsafe connection (HTTP).
When you get an error like this: Invalid gemspec in [/opt/www/foo-project.makandra.de/shared/bundle/ruby/1.8/specifications/carrierwave-0.6.2.gemspec]: Illformed requirement ["# 1.1.4"] ... the machine's Rubygems needs to...
sudo apt-get install gnome-session-fallback or (alias) sudo apt-get install gnome-panel from a terminal.
This Firebug feature is called simply Log Events and allows developers to log DOM events into the Console panel.
paper_trail is an excellent gem to track record versions and changes. You almost never want to reimplement something like...
When deploying, Capistrano puts a REVISION file into your application's release directory. It contains the hash of the commit...
This will make MySQL log all received queries so you can see for yourself what happens on the database level...
So you probably see the following error trace within your Passenger log file if you got here:
This is for you if Passenger gives you the following useless error message. Passenger encountered the following error:\ The application...
An = is represented by =3D in the log file. I got confused by the leading 3D which is not part...
This is a way to run multiple redis server on one ubuntu server. These steps you have to do only...
RubyMine offers you to exclude directories from search, meaning faster search results and less "noise" in the list of result...
In order to chain greps on log files that are opened via tail -f test.log you have to use the...
Let's say you have commits that change a file (and looking at the commit details show you the changes...
The unix command line tool less is a good choice for browsing logfiles. In the standard configuration, though, it does...
When Rack::Bug has been added to your project and your Apache2/Passenger only replies with an Error 500 (Internal Server...
Clearance is a gem that provides authentication functionality (e.g. login, logout). This note explains, how the clearance login, logout and...
To show the MySQL default character set you have to login to the MySQL console and execute SHOW VARIABLES LIKE...
If you want to know the exact hits on your website (or whatever logfile you want) for a specific date...
The Rails logger will store its content in a buffer and write it into the file system every 1000 lines...
The colors in Rails log files are helpful when watching them but, since they are ANSI color codes like ^[[4...
This will reduce the filesize of foo and bar to 0 bytes: truncate -s0 foo bar If the files do...
Most likely you run rake and your code is causing an exception which is not the one shown in your...