###Icons
Name | Size |
---|---|
iphone_2x | 120x120 |
iphone_3x | 180x180 |
ipad | 76x76 |
ipad_2x | 152x152 |
android_ldpi | 36x36 |
android_mdpi | 48x48 |
var obj = {}; | |
if (obj) { | |
// this would run because obj is truthy. See https://developer.mozilla.org/en-US/docs/Glossary/Truthy and https://developer.mozilla.org/en-US/docs/Glossary/Falsy | |
} | |
if (!!obj) { | |
// this would also run because obj is truthy. | |
// when you negate it the first time, it becomes the value false | |
// when you negate it the second time, it turn that false value into true |
cd sorenpeterson.me | |
git pull origin master | |
cd app | |
meteor build . | |
mv app.tar.gz /home/sorenpeterson/ | |
cd /home/sorenpeterson/ | |
tar -zxf app.tar.gz | |
cd bundle/programs/server | |
npm install | |
restart sorenpeterson |
contract Company { | |
address public ceo; | |
mapping (address => Employee) | |
struct Employee | |
{ | |
uint dailySalary; | |
} | |
function Company() |
###Icons
Name | Size |
---|---|
iphone_2x | 120x120 |
iphone_3x | 180x180 |
ipad | 76x76 |
ipad_2x | 152x152 |
android_ldpi | 36x36 |
android_mdpi | 48x48 |
# Generates the text of asetniop.vim | |
singles = | |
a: "a" | |
s: "s" | |
e: "d" | |
t: "f" | |
n: "j" | |
i: "k" | |
o: "l" | |
p: ";" |
I hereby claim:
To claim this, I am signing this object:
files = `ls` | |
files = files.split("\n") | |
files = files.select do |filename| | |
filename =~ /\A\w+.hbs\z/ | |
end | |
files.each do |filename| | |
new_filename = filename.gsub(/\A(\w+).hbs\z/, '\1.tpl.js') | |
`handlebars #{filename} -f #{new_filename}` | |
end |