First I install some apps. I try to use the AppStore for everything if I can, buth unfortunately that’s not possible. YMMV.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Exit immediately on error | |
set -e | |
# set -x | |
# Create temporary file | |
FILE=$(mktemp /tmp/$(basename $0).XXXXX) || exit 1 | |
trap "rm -f $FILE" EXIT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<!-- | |
ABOUT: | |
Clojure language module based on the newlisp package by | |
Seth Dillingham <[email protected]> | |
and Pete B. Anonymous. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package io.superloopy.test | |
import scala.slick.driver.PostgresDriver.simple._ | |
import scala.slick.driver.PostgresDriver.SchemaDescription | |
import scala.slick.jdbc.{ StaticQuery => Q } | |
import org.scalatest.{ BeforeAndAfterEach, BeforeAndAfterAll, Suite } | |
import io.superloopy.util.DatabaseProvider | |
trait PostgresSpec extends Suite with BeforeAndAfterEach with BeforeAndAfterAll with DatabaseProvider { | |
this: { def ddl: SchemaDescription } => |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
set -e | |
# set -x | |
src=$1 | |
dst=$2 | |
find "$src" -type f | while read file ; do | |
chksum=$(md5 -q "$file") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package example | |
import akka.actor._ | |
import akka.actor.ActorDSL._ | |
import akka.io.IO | |
import akka.pattern.ask | |
import akka.util.Timeout | |
import scala.concurrent.duration._ | |
import spray.can.Http | |
import spray.http.StatusCodes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# This script automatically sets the version and short version string of an | |
# Xcode project from the Git repository containing the project. | |
# | |
# To use this script in Xcode 4, add the contents to a "Run Script" build | |
# phase for your application target. | |
set -o errexit | |
set -o nounset |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
% cd /tmp | |
% mkdir foo | |
% touch foo/bar | |
% touch foo/quux | |
% find foo > t | |
% touch foo/qzzaoeu | |
% (find foo; cat t) | sort | uniq -u | |
foo/qzzaoeu |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sir Robert Walpole | |
Sir Robert Walpole | |
Sir Robert Walpole | |
Sir Robert Walpole | |
Sir Robert Walpole | |
Sir Robert Walpole | |
Sir Robert Walpole | |
Sir Robert Walpole | |
Sir Robert Walpole | |
Sir Robert Walpole |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
set -x | |
DOCSET=$INSTALL_DIR/Docset/html | |
VERSION=$(agvtool mvers -terse1 | perl -pe 's/(\d\.\d+)(\.\d+)*/$1/') | |
apidir=$VERSION | |
latest=api |