I hereby claim:
- I am tissak on github.
- I am tissak (https://keybase.io/tissak) on keybase.
- I have a public key whose fingerprint is A5E6 A815 4EE3 D38E 5908 ADCE 5DD0 2FDB B0F9 3E7D
To claim this, I am signing this object:
| #!/bin/bash | |
| set -e # Exit the script if any statement returns a non-true return value | |
| # ---------------------------------------------------------------------------- # | |
| # Function Definitions # | |
| # ---------------------------------------------------------------------------- # | |
| # Start nginx service | |
| start_nginx() { | |
| echo "Starting Nginx service..." |
| #!/usr/bin/ruby | |
| require 'rubygems' | |
| require 'active_support/all' | |
| require 'digest/sha1' | |
| def leftrotate(value, shift) | |
| return ( ((value << shift) | (value >> (32 - shift))) & 0xffffffff) | |
| end | |
| # FIPS 180-2 -- relevant section #'s below |
I hereby claim:
To claim this, I am signing this object:
| source "https://rubygems.org/" | |
| gem "neo4j" | |
| gem "pry" | |
| gem "minitest" | |
| gem "jbundler" | |
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
| (main)> z.q | |
| Assertion failed: (b != NULL), function rb_vm_block_method_imp, file vm.cpp, line 3000. | |
| *** simulator session ended with error: Error Domain=DTiPhoneSimulatorErrorDomain Code=1 "The simulated application quit." UserInfo=0x100461550 {NSLocalizedDescription=The simulated application quit., DTiPhoneSimulatorUnderlyingErrorCodeKey=-1} | |
| rake aborted! | |
| Command failed with status (1): [DYLD_FRAMEWORK_PATH="/Applications/Xcode.a...] | |
| /Library/RubyMotion/lib/motion/project.rb:101:in `block in <top (required)>' |
| attr_accessor :controllerDelegate | |
| def initWithFrame(frame, andDelegate: delegate) | |
| self.initWithFrame(frame) | |
| @controllerDelegate = delegate | |
| setupFrownImage | |
| setupSorryLabel | |
| setupButton | |
| self | |
| end |
Get it from http://developer.apple.com. You will not be able to submit apps to any stores using this XCode version, so turn away if that is something you might want to do.
In XCode's Preferences > Downloads you can install command line tools.
| { | |
| "name": "app", | |
| "version": "0.0.1", | |
| "dependencies": { | |
| "serveup": "~0.0.2", | |
| "hem": "~0.1.6", | |
| "es5-shimify": "~0.0.1", | |
| "json2ify": "~0.0.1", | |
| "jqueryify": "~0.0.1", | |
| "spine": "~1.0.5", |
| ipv.classUtil.newManager = function(managerName, subjectClass){ | |
| var manager = dojo.getObject(managerName); | |
| if(typeof(manager) == "undefined"){ | |
| manager = new function(){ | |
| this._widget = null; | |
| this.getWidget = function(options){ | |
| options = dojo.mixin({}, options); | |
| if (!this._widget) { | |
| this._widget = new subjectClass(); | |
| } |