These commands are good as of 2011-07-27.
App store http://itunes.apple.com/us/app/xcode/id448457090?mt=12) The download/install takes awhile so start it first. When it finishes downloading you will still need to run it to complete installation.
| #!/bin/bash | |
| # | |
| # tomcat7 This shell script takes care of starting and stopping Tomcat | |
| # | |
| # chkconfig: - 80 20 | |
| # | |
| ### BEGIN INIT INFO | |
| # Provides: tomcat7 | |
| # Required-Start: $network $syslog | |
| # Required-Stop: $network $syslog |
These commands are good as of 2011-07-27.
App store http://itunes.apple.com/us/app/xcode/id448457090?mt=12) The download/install takes awhile so start it first. When it finishes downloading you will still need to run it to complete installation.
| @Grapes([ | |
| @Grab("org.codehaus.geb:geb-core:0.6.0"), | |
| @Grab("org.seleniumhq.selenium:selenium-firefox-driver:2.4.0"), | |
| @Grab("net.sf.opencsv:opencsv:2.0") | |
| ]) | |
| import geb.Browser | |
| import au.com.bytecode.opencsv.* | |
| def fileLocation = 'secret_escapes_20111004_1436.csv' // the location of your csv file. You can go to your pivotal board and do an export to CSV. |
| [user] | |
| name = Jose Juan Reyes | |
| email = neodevelop@gmail.com | |
| [core] | |
| editor = vim | |
| pager = less -FRSX | |
| whitespace=fix,-indent-with-non-tab,trailing-space,cr-at-eol | |
| quotepath = false | |
| excludesfile = /Users/makingdevs/.gitignore_global | |
| commentChar = ";" |
This guide enables you to install (ruby-build) and use (rbenv) multiple versions of ruby, isolate project gems (gemsets and/or bundler), and automatically use appropriate combinations of rubies and gems.
# Ensure system is in ship-shape.
aptitude install git zsh libssl-dev zlib1g-dev libreadline-dev libyaml-dev
| import org.vertx.groovy.core.Vertx | |
| class BootStrap { | |
| def init = { servletContext -> | |
| def vertx = Vertx.newVertx() | |
| def httpServer = vertx.createHttpServer() | |
| vertx.createSockJSServer(httpServer).installApp(prefix: '/events') { sock -> | |
| sock.dataHandler { buff -> | |
| sock << buff |
| ar http = require('http'); | |
| var fs = require('fs'); | |
| var util = require('util'); | |
| var fileCache; | |
| var sendFile = function(conn, file) { | |
| conn.writeHead(200, {"Content-Type": "text/html", "Content-Length": file.length}); | |
| conn.write(file); | |
| conn.end(); | |
| } |
| $:.unshift("/Library/RubyMotion/lib") | |
| require File.join(File.dirname(__FILE__), 'version') | |
| require 'motion/project' | |
| require 'bundler' | |
| Bundler.require |