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.
| (function(){ | |
| var window,top,self,parent,global; | |
| return document.defaultView | |
| }).call({}); |
| (function(){ | |
| var window,top,self,parent,global; | |
| // grab the window object when evalled in the context of | |
| // a top level object. | |
| return eval("window",Array) | |
| }).call({}); |
| // fire a callback after enough keys have been passed to a generated function | |
| var dependencySet = function(conditionKeys, callback){ | |
| // convert a list of keys to trackable hash | |
| var conditionSet = {} | |
| for(var x=0;x<conditionKeys.length;x++){ | |
| conditionSet[conditionKeys[x]] = false; | |
| } | |
| // return a function that will wait till it's | |
| // been called with all keys and then fire the callback |
| // ==UserScript== | |
| // @name darken done | |
| // @namespace http://fluidapp.com | |
| // @description improve teuxdeux appearance | |
| // @include * | |
| // @author Tony Issakov | |
| // ==/UserScript== | |
| (function () { | |
| css = $("<style>li.done{color:#555;}</style>"); |
| rails_version() { | |
| which -s rails && rails -v 2>/dev/null | sed 's/Rails //' | |
| } | |
| r() { | |
| local name="$1" | |
| shift | |
| if [[ -z "$name" ]]; then | |
| echo "Usage: $0 command *args" >&2 | |
| return 1 |
| <VirtualHost *:80> | |
| ServerAdmin [email protected] | |
| ServerName ssl.diggersndealers.com.au | |
| RewriteEngine on | |
| RewriteCond %{SERVER_PORT} ^80$ | |
| RewriteRule ^(.*)$ https://%{SERVER_NAME}$1 [L,R] | |
| DocumentRoot /var/vhosts/ssl.diggersndealers.com.au/current/public | |
| ErrorLog /var/log/apache2/ssl.diggersndealers.com.au-error.log | |
| CustomLog /var/log/apache2/ssl.diggersndealers.com.au-access.log combined |
| 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(); | |
| } |
| { | |
| "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", |
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 |