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
#!/usr/bin/env bash | |
SUBJECT="DVD is done ripping" | |
EMAIL="[email protected]" | |
EMAILMESSAGE="./emailmessage.txt" | |
while [ 1 ] | |
do | |
echo "Waiting for new disk.." |
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
source 'http://rubygems.org' | |
gem 'httparty' | |
gem 'nokogiri' |
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
namespace :remote_shell_agent do | |
module Faye | |
class Transport::Http < Transport | |
def request(envelopes) | |
content = encode(envelopes) | |
params = build_params(@endpoint, content) | |
request = create_request(params) |
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
var http = require('http'), | |
faye = require('faye'); | |
var server = http.createServer(), | |
bayeux = new faye.NodeAdapter({mount: '/'}); | |
bayeux.attach(server); | |
server.listen(process.env.PORT); |
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
source :rubygems | |
gem 'sinatra' | |
gem 'redis' | |
gem 'httparty' |
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
require 'cfoundry' | |
require 'tempfile' | |
require 'zip/zip' | |
require 'tunnel-vmc-plugin/tunnel' | |
CF_ENDPOINT = 'http://api.cloudfoundry.com' | |
class DumpController < ApplicationController | |
def new |
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
source :rubygems | |
gem 'cfoundry' | |
gem 'uuidtools' |
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
<snippet> | |
<content><![CDATA[ | |
<pre class="terminal"> | |
$1 | |
</pre> | |
]]></content> | |
<!-- Optional: Set a tabTrigger to define how to trigger the snippet --> | |
<tabTrigger>term</tabTrigger> | |
<!-- Optional: Set a scope to limit where the snippet will trigger --> | |
<!-- <scope>source.markdown</scope> --> |
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
--- | |
applications: | |
- name: nodetestdh01 | |
framework: node | |
runtime: node08 | |
memory: 64M | |
instances: 1 | |
url: nodetestdh01.${target-base} | |
path: . | |
env: |
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
/* | |
* GET home page. | |
*/ | |
var pg = require('pg'); | |
exports.index = function(req, res){ | |
var conString = "tcp://127.0.0.1/postgres"; | |
var out = ""; |