Just run:
curl -ks https://gist.github.com/nicerobot/5652802/raw/install.sh | bash -
Just run:
curl -ks https://gist.github.com/nicerobot/5652802/raw/install.sh | bash -
run
curl -ks https://gist.github.com/nicerobot/5762235/raw/pup | sudo bash
Run:
curl -ks https://gist.github.com/nicerobot/5853569/raw/opencl.sh | bash -
I finally spent the time to figure this out. It's easier than I thought:
find . -type d -exec test -e {}/.git \; -prune -o -type d ! -path . -print
Good grief, please stop with this horrendous SQL formatting recommendation.
The interesting bits of SQL are not the keywords. Why in the world do you highlight them in BOLD?! The verbosity of them is ridiculously unwieldy.
The interesting bits of SQL is the structure of the statement. So highlight the structure!
These are my preferred styles:
curl -ks https://gist.github.com/nicerobot/6016414/raw/run.sh | bash -
I think servers should be able to easily run from the command line by default. I wasn't able to easily figure out how to do it using the neo4j
script in the distribution. So here's a hacked neo4j
script that allows it.
curl -ks https://gist.github.com/nicerobot/6432404/raw/install.sh | bash
e.g.
#!/bin/bash | |
# Run this: | |
# | |
# curl https://gist.github.com/nicerobot/7664605/raw/install.sh | bash -s do-sudo | |
# | |
# which will run: | |
[ -f qgis2-homebrew-build.sh ] || { | |
curl -O https://gist.github.com/nicerobot/7664605/raw/qgis2-homebrew-build.sh |
#!/bin/bash | |
# Simply wraps git to rsync the current folder under ~/.forwardgit/ then | |
# runs the git command in that folder. | |
# The reason: https://plus.google.com/+nicerobot/posts/YDAaKbaiGRw | |
# TODO try this with gin https://github.com/nicerobot/gin | |
# set -x |
package test | |
import akka.actor.Actor | |
import akka.actor.Props | |
import akka.actor.ReceiveTimeout | |
import scala.concurrent.duration._ | |
import akka.actor.ActorLogging | |
import akka.event.LoggingReceive | |
case class Next() |