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
var relativeDate = function(date){ | |
if (navigator.appName === 'Microsoft Internet Explorer') return ''; | |
var unit = { | |
now: 'Now', | |
minute: '1 min', | |
minutes: ' mins', | |
hour: '1 hr', | |
hours: ' hrs', | |
day: 'Yesterday', |
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/bash | |
fromAddr="[email protected]" | |
toAddr="[email protected]" | |
subjString="subject ha nihongo ng!?" | |
bodyString="hello how are you" | |
echo -e "From: <${fromAddr}>\nTo: <${toAddr}>\nSubject:${subjString}\n\n${bodyString}" | /usr/sbin/sendmail -t ${toAddr} |
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
class DropProductsTable < ActiveRecord::Migration | |
def up | |
drop_table :products | |
end | |
def down | |
raise ActiveRecord::IrreversibleMigration | |
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
require "ostruct" | |
class JobSite | |
attr_reader :contact | |
def initialize(location, contact) | |
@location = location | |
@contact = contact | |
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
class ColumnDefinition < Struct.new(:base, :name, :type, :limit, :precision, :scale, :default, :null) |
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
# [RAILS_ROOT]/lib/tasks/sample.rake | |
desc "print hello world!" # description. | |
task "hello_world" do # rake task name. | |
p "hello world!" # print "hello world!" | |
end | |
namespace :myapp do | |
desc "import data from somewhere" | |
# load rails environment |
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
foo = { :a => '11', :b => '22' } | |
foo[:b] # => "22" | |
# equivalent of .try() for a hash | |
foo.try(:[], :b) # => "22" | |
# using variable as key | |
key = :b | |
foo.try(:[], key) # => "22" |
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
{ | |
"color_scheme": "Packages/User/Tomorrow-Night.tmTheme", | |
"draw_minimap_border": true, | |
"find_selected_text": true, | |
"font_face": "Ubuntu Mono", | |
"font_options": | |
[ | |
"subpixel_antialias" | |
], | |
"font_size": 15.0, |
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
// disables button and swaps text to loading text | |
$.fn.setLoadingState = function (loadingText) { | |
if (!loadingText) { | |
loadingText = 'Loading...' | |
} | |
$(this).prop('disabled', true).val(loadingText); | |
// allow jQuery chaining | |
return this; | |
}; |
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
alias hpush="git push heroku master" | |
alias hrc="heroku run rails console" | |
alias hlog="heroku logs --tail" | |
alias ho="heroku open" | |
alias hdb="heroku run rake db:migrate" |