Skip to content

Instantly share code, notes, and snippets.

View dblandin's full-sized avatar

devon blandin dblandin

View GitHub Profile
@dblandin
dblandin / Rakefile
Last active June 17, 2016 15:30 — forked from ParkinT/Rakefile
RubyMotion Configuration and Deploy/Release
# -*- coding: utf-8 -*-
$:.unshift('/Library/RubyMotion/lib')
require 'motion/project/template/ios'
require 'bundler'
Dir.glob('./config/*.rb').each { |file| require file }
if ARGV.join(' ') =~ /spec/
Bundler.require :default, :development, :spec
elsif ARGV.join(' ') =~ /testflight/
@dblandin
dblandin / Gemfile
Last active December 19, 2015 21:39 — forked from iwarshak/Gemfile
RubyMotion Papertrail Logger
source :rubygems
gem "rake"
gem 'motion-logger' #cocoalumberjack wrapper
@dblandin
dblandin / CaesarCipher.java
Created July 25, 2012 03:23 — forked from robbielynch/CaesarCipher.java
Caesar Cipher Command Line Decrypter
public class CaesarCipher {
public static void main(String args[]){
if (args.length == 3)
{
//output decrypted string
System.out.println(decryptString(args[0], args[1], args[2]));
}
else