I hereby claim:
- I am mose on github.
- I am mose (https://keybase.io/mose) on keybase.
- I have a public key whose fingerprint is 3449 95C9 B897 D7F3 053F 64CD 0DEF 40EC 5741 40CA
To claim this, I am signing this object:
| import re | |
| subnums = [ ('cd',4*'c'), | |
| ('xl',4*'x'), | |
| ('iv',4*'i'), | |
| ('d',5*'c'), | |
| ('l',5*'x'), | |
| ('v',5*'i'), | |
| ('cm',9*'c'), | |
| ('xc',9*'x'), |
| <div id="face"> | |
| <div class="eye left"></div> | |
| <div class="eye right"></div> | |
| <div class="nose"></div> | |
| <div class="mouth"></div> | |
| </div> |
| if ENV['sauce'] | |
| module Job | |
| extend self | |
| def id | |
| @__jobid || 'undefined' | |
| end | |
| def id=(j) | |
| @__jobid ||= j | |
| end |
| # lib/mailinterceptor.rb | |
| class MailInterceptor | |
| def self.delivering_email(message) | |
| message.to = "dev@example.com" | |
| message.subject = "[#{message.to}] " + message.subject | |
| end | |
| end | |
| # config/initializers/setup_mail.rb |
| package main | |
| import ( | |
| //"fmt" | |
| "net/http" | |
| "io/ioutil" | |
| "html/template" | |
| "regexp" | |
| "errors" | |
| "log" |
| javascript:window.prompt("Copy to clipboard: Ctrl+C, Enter", document.URL.replace(/sid=[0-9a-f]*&?/,''));return false; |
| var unix_timestamp = window.prompt("Input a timestamp (ie. 1392879315)", ""); | |
| var date = new Date(unix_timestamp*1000); | |
| var utcDate = date.getUTCFullYear() + '-' + (date.getUTCMonth()+1) + '-' + date.getUTCDate() + ' ' + date.getUTCHours() + ':' + date.getUTCMinutes() + ':' + date.getUTCSeconds(); | |
| var localDate = date.getFullYear() + '-' + (date.getMonth()+1) + '-' + date.getDate() + ' ' + date.getHours() + ':' + date.getMinutes() + ':' + date.getSeconds(); | |
| window.alert("\nUTC: "+utcDate+"\nLocal: "+localDate); |
I hereby claim:
To claim this, I am signing this object:
| ?##/ Hello | |
| \e[1;32mHello\e[0m | |
| - I'm mose, SysAdmin at \e[1;34mFaria Systems\e[0m | |
| - \e[1;34mDevops\e[0m duties | |
| = helping developers to deploy their apps |
| require 'json' | |
| file = ARGV[0] | |
| unless file | |
| puts "Usage: ruby #{$0} <json filename of the export>" | |
| exit | |
| end | |
| unless File.exist? file |