Skip to content

Instantly share code, notes, and snippets.

@djo
djo / backup.sh
Created February 25, 2013 09:32
Backup DB scripts
current_date=`date +%Y-%m-%d-%H:%M`
file_name="db.$current_date.sql.gz"
file_path="/mnt/backup/$file_name"
mysqldump --single-transaction --quick -u*** -p*** DB | gzip -c > $file_name
echo `ls -la $file_path` | mail -s "[backup] DB" [email protected]
@djo
djo / README.md
Created January 14, 2013 13:29
README sample

Project

Some description how is awesome the project.

How to hit the ground running

  • Follow installation instructions in doc/INSTALLATION
  • Follow deployment instructions in doc/DEPLOYMENT
  • Follow workflow process in doc/WORKFLOW
@djo
djo / mround.rb
Created December 13, 2012 17:28
Helper to round a number to the desired multiple 0.5.
# Returns a number rounded to the desired multiple 0.5,
# analog of excel's MROUND(A1, 0.05).
def mround(number)
(number * 20).round.to_f / 20
end
@djo
djo / requests.rb
Created December 12, 2012 13:06
Test script to profile requests with GC options in case you have only access into the console.
# Test script to profile requests with GC options in case you have only access into the console.
#
# Invoke the script in the staging/production console:
#
# RAILS_ENV=production rails console
# [1] pry(main)> load '/path/to/the-file/requests.rb'
#
# You will see benchmark results per link for analyzing.
#
# You should run it before and after changing GC options for comparison.
@djo
djo / gc_tuning.md
Created December 5, 2012 11:50
GC tuning

See the current amount of free and used memory in the system:

free -m

What actual time we have (in the console):

time = Benchmark.measure do
  app.get '/needed-page'
end

puts time

@djo
djo / upgrade_notes.md
Created December 4, 2012 10:54
Upgrade to 1.9 notes

Upgrade "the second project" to ruby 1.9 notes

Gems

Keep in mind that not all gems (versions) support a needed ruby version.

  • Remove 1.8 gems: rcov, ruby-debug
  • Add 1.9 gems: debugger

Try 'bundle install'.

@djo
djo / say_hello.rb
Created April 6, 2012 13:51
Example for rungist.com
# Example for http://rungist.com/
about = ".xobdnas ybur eht ni tsig s'buhtig a nur ot uoy swolla tI .ybuR yrT rehtonA teY eht si sihT"
"Hi, #{about.reverse}"
@djo
djo / watch.sh
Created April 4, 2012 14:19
watch command
# Monitor some background process on execution
watch -n 1 "ps aux | grep php"
@djo
djo / problem1.rb
Last active September 30, 2015 19:58
The Embedly Challenge, http://apply.embed.ly
# Problem 1 of 3: Math
# ====================
#
# n! means n * (n - 1) * ... * 3 * 2 * 1
# For example, 10! = 10 * 9 * ... * 3 * 2 * 1 = 3628800
# Let R(n) equal the sum of the digits in the number n!
# For example, R(10) is 3 + 6 + 2 + 8 + 8 + 0 + 0 = 27.
# Find the lowest value for n where R(n) is 8001.
#
# Result: 787.
@djo
djo / delayed_job_config.rb
Created December 20, 2011 09:58
Change mass-assignment protection strategy to black-list to allow updates of virtual attributes
# Change mass-assignment protection strategy to black-list to allow updates of virtual attributes
Delayed::Job.attr_protected nil