Look at LSB init scripts for more information.
Copy to /etc/init.d
:
# replace "$YOUR_SERVICE_NAME" with your service's name (whenever it's not enough obvious)
(?<number>\d+) (?<rd_and_city>.+), (?<state>\w{2}) (?<zip>\d{5}) (?<country>.+) |
https://drive.google.com/drive/folders/0B_QTLh-PTbKPOWJpYTY2LU1WM28?usp=sharing |
#!/bin/sh | |
# Generate test coverage statistics for Go packages. | |
# | |
# Works around the fact that `go test -coverprofile` currently does not work | |
# with multiple packages, see https://code.google.com/p/go/issues/detail?id=6909 | |
# | |
# Usage: script/coverage [--html|--coveralls] | |
# | |
# --html Additionally create HTML report and open it in browser | |
# --coveralls Push coverage statistics to coveralls.io |
Look at LSB init scripts for more information.
Copy to /etc/init.d
:
# replace "$YOUR_SERVICE_NAME" with your service's name (whenever it's not enough obvious)
#!/usr/bin/env node | |
var _ = require('underscore'); | |
var main = function (input) { | |
input = _.sortBy(input); | |
var result = []; | |
for(var i = 0; i < input.length; i++){ | |
var num = input[i]; | |
for(var j = i+1; j < input.length; j++){ |
# http://www.mono-project.com/Compiling_Mono_on_OSX | |
require 'formula' | |
class Mono < Formula | |
url 'http://download.mono-project.com/sources/mono/mono-3.0.12.tar.bz2' | |
sha1 'be46f28e16721e9b975ba17ae02b021ddcc7406e' | |
homepage 'http://www.mono-project.com/' | |
# http://www.mono-project.com/Compiling_Mono_on_OSX | |
require 'formula' | |
class Mono < Formula | |
url 'http://download.mono-project.com/sources/mono/mono-3.0.12.tar.bz2' | |
sha1 'e2187f80366fcd65c55a1ab946f8d3b39e81be77' | |
#url 'http://download.mono-project.com/sources/mono/mono-2.10.9.tar.bz2' | |
#sha1 '1a6e8c5a0c3d88d87982259aa04402e028a283de' | |
# http://www.mono-project.com/Compiling_Mono_on_OSX | |
require 'formula' | |
class Mono < Formula | |
url 'http://download.mono-project.com/sources/mono/mono-3.0.12.tar.bz2' | |
sha1 'e2187f80366fcd65c55a1ab946f8d3b39e81be77' | |
#url 'http://download.mono-project.com/sources/mono/mono-2.10.9.tar.bz2' | |
#sha1 '1a6e8c5a0c3d88d87982259aa04402e028a283de' | |
#!/bin/bash | |
function create_dir { | |
if [ ! -d $1 ]; | |
then | |
mkdir $1 | |
fi | |
} | |
echo "create sublime project..." |
No parent Inlet