Skip to content

Instantly share code, notes, and snippets.

View sajoku's full-sized avatar
🏠
Working from home

Sander sajoku

🏠
Working from home
View GitHub Profile

Keybase proof

I hereby claim:

  • I am sajoku on github.
  • I am sajoku (https://keybase.io/sajoku) on keybase.
  • I have a public key whose fingerprint is D727 111E 1C20 3409 DDE5 EC53 898F 3056 1F2D 3372

To claim this, I am signing this object:

# -*- coding: utf-8 -*-
$:.unshift("/Library/RubyMotion/lib")
require 'motion/project'
require 'motion-cocoapods'
require 'bundler'
Bundler.require
Dir.glob('lib/tasks/*.rake').each { |r| import r }
VERSION = "1.0.2"
@sajoku
sajoku / test_thingy
Created April 23, 2014 13:49
Failing go tests
### thingy.go
package main
func main() {
}
func createLogger() string{
return "test"
}
=begin
Capistrano deployment email notifier for Rails 3
Do you need to send email notifications after application deployments?
Christopher Sexton developed a Simple Capistrano email notifier for rails. You can find details at http://www.codeography.com/2010/03/24/simple-capistrano-email-notifier-for-rails.html.
Here is Rails 3 port of the notifier.
The notifier sends an email after application deployment has been completed.
@sajoku
sajoku / .env
Last active August 29, 2015 14:06 — forked from supermarin/.env
# ZSH / BASH users
# Add this to your .env, .bashrc, .zshrc, or whatever file you're using for environment
man() {
env \
LESS_TERMCAP_mb=$(printf "\e[1;31m") \
LESS_TERMCAP_md=$(printf "\e[1;31m") \
LESS_TERMCAP_me=$(printf "\e[0m") \
LESS_TERMCAP_se=$(printf "\e[0m") \
LESS_TERMCAP_so=$(printf "\e[1;44;33m") \
[{"name":"Afghanistan","dial_code":"+93","code":"AF"},{"name":"Albania","dial_code":"+355","code":"AL"},{"name":"Algeria","dial_code":"+213","code":"DZ"},{"name":"AmericanSamoa","dial_code":"+1 684","code":"AS"},{"name":"Andorra","dial_code":"+376","code":"AD"},{"name":"Angola","dial_code":"+244","code":"AO"},{"name":"Anguilla","dial_code":"+1 264","code":"AI"},{"name":"Antarctica","dial_code":"+672","code":"AQ"},{"name":"Antigua and Barbuda","dial_code":"+1268","code":"AG"},{"name":"Argentina","dial_code":"+54","code":"AR"},{"name":"Armenia","dial_code":"+374","code":"AM"},{"name":"Aruba","dial_code":"+297","code":"AW"},{"name":"Australia","dial_code":"+61","code":"AU"},{"name":"Austria","dial_code":"+43","code":"AT"},{"name":"Azerbaijan","dial_code":"+994","code":"AZ"},{"name":"Bahamas","dial_code":"+1 242","code":"BS"},{"name":"Bahrain","dial_code":"+973","code":"BH"},{"name":"Bangladesh","dial_code":"+880","code":"BD"},{"name":"Barbados","dial_code":"+1 246","code":"BB"},{"name":"Belarus","dial_code":"+37
#Developer code:
def add
1 + 1
end
# After another developer comments on the code with
# "1 is a magic number!"
def add
@sajoku
sajoku / order_syncer.rb
Created December 17, 2014 07:33
This is a sample order_syncer which syncs externals and needs the output of what is being synced in the next method.
class OrderSyncer
def initialize(order)
@order = order
end
def synchronise_all
external_order_id = synchronise_order(@order)
external_payment_id = synchronise_payment(external_order_id)
external_contract_id = synchronise_contract(external_payment_id)
synchronise_authorisisation(external_contract_id)
@sajoku
sajoku / pre-commit.rb
Created December 17, 2014 08:27
Pre-commit git hook to prevent commitung binding.pry and focus true
#!/usr/bin/env ruby
spec_hits = []
checks = {
'_spec\.rb$' => ['focus:\s*true'],
'\.rb$' => ['binding\.pry', 'debugger']
}
# Find the names of all the filenames that have been (A)dded (C)opied or (M)odified
filenames = `git diff --cached --name-only --diff-filter=ACM`.split("\n")