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.
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.
attr_accessor :controllerDelegate | |
def initWithFrame(frame, andDelegate: delegate) | |
self.initWithFrame(frame) | |
@controllerDelegate = delegate | |
setupFrownImage | |
setupSorryLabel | |
setupButton | |
self | |
end |
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
source "https://rubygems.org/" | |
gem "neo4j" | |
gem "pry" | |
gem "minitest" | |
gem "jbundler" | |
#!/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 |