This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Generate timelapse video from jpg images | |
mencoder -ovc copy -mf w=320:h=240:fps=6:type=jpg 'mf://*.jpg' -o time_lapse-test.avi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## From http://stackoverflow.com/questions/2311750/change-file-encoding-to-utf-8-via-vim-in-a-script | |
#This is the simplest way I know of to do this easily from the command line: | |
vim +"argdo se bomb | se fileencoding=utf-8 | w" $(find . -type f -name *.rb) | |
#Or better yet if the number of files is expected to be pretty large: | |
find . -type f -name *.rb | xargs vim +"argdo se bomb | se fileencoding=utf-8 | w" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. Install dconf-tools package | |
2. Run dconf-editor | |
3. Browse to org.gnome.settings-daemon.plugins.power | |
4. Change idle-dim-time to your liked value in seconds. | |
You can run it in a termina: | |
$ gsettings set org.gnome.settings-daemon.plugins.power idle-dim-time <your_value> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
echo $'flush_all\r\nquit\r\n' | nc localhost 11211 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Block package version (don't upgrade it anymore) | |
echo "package-name hold" | sudo dpkg --set-selections | |
# Unblock package version (upgrade it again) | |
echo "package-name install" | sudo dpkg --set-selections |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
images = Dir.glob('public/images/*') | |
images.each do |image| | |
unless File.directory?(image) | |
puts "Checking #{image}..." | |
if IO.popen("ack-grep -1 -G '(app|public)' --ruby --html --css #{File.basename(image)}").eof? | |
IO.popen("svn delete #{image}") | |
puts " Deleted" | |
end | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
ruby -e "require 'open-uri'; system open('http:// or local file').read" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# &block constructors | |
# From http://www.deploymentzone.com/2011/06/23/block-constructors | |
# If you need a behavior like this in your class: | |
Person.new do |p| | |
p.first_name = "John" | |
p.last_name = "Brown" | |
p.dob = Date.parse("5/9/1800") | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
group :development do | |
gem 'foo' if Gem.available?('foo') | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/path/to/rails_apps/*/log/*.log { | |
daily | |
missingok | |
rotate 30 | |
compress | |
delaycompress | |
sharedscripts | |
postrotate | |
find /path/to/rails_apps/* -name tmp -maxdepth 1 -type d -exec touch {}/restart.txt \; | |
endscript |