This file contains hidden or 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/bash | |
# vars | |
PHP_VERSION="5.3.6" | |
NGINX_VERSION="1.0.4" | |
MONGO_VERSION="1.8.1" | |
MEMCACHED_VERSION="1.4.5" | |
DIRECTORY=$(cd `dirname $0` && pwd) | |
PHP_DIR=$DIRECTORY/lib/php/$PHP_VERSION/ |
This file contains hidden or 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
# This hosts file is brought to you by Dan Pollock and can be found at | |
# http://someonewhocares.org/hosts/ | |
# You are free to copy and distribute this file, as long the original | |
# URL is included. See below for acknowledgements. | |
# Please forward any additions, corrections or comments by email to | |
# [email protected] | |
# Last updated: Jul 4th, 2011 at 11:12 |
This file contains hidden or 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 'formula' | |
def mysql_installed? | |
`which mysql_config`.length > 0 | |
end | |
class Php < Formula | |
url 'http://www.php.net/get/php-5.3.6.tar.gz/from/this/mirror' | |
homepage 'http://php.net/' | |
md5 '88a2b00047bc53afbbbdf10ebe28a57e' |
This file contains hidden or 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 python | |
# encoding: utf-8 | |
# Cameron Bytheway, 2011 | |
import os | |
APPNAME = 'closure_app' | |
VERSION = '0.1' | |
top = '.' |
This file has been truncated, but you can view the full file.
This file contains hidden or 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
# hosts.blc | |
# Liste anti-phishing sécurisant l'accès à 2671 sites commerciaux, financiers et sécuritaires | |
# © Airelle - http://rlwpx.free.fr/WPFF/hosts.htm - 04.12.2011 | |
# Diffusion et utilisation libres sous réserve de conserver les commentaires | |
127.0.0.1 localhost | |
# Sites financiers | |
2.20.216.113 www.bancosantander.es | |
2.20.213.155 home.americanexpress.com | |
2.20.216.136 www.dbs.com | |
2.21.131.189 www.morganstanley.com |
This file contains hidden or 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 | |
# apt-fast v1.4 by Matt Parnell http://www.mattparnell.com, GNU GPLv3 | |
# Use this just like apt-get for faster package downloading. | |
################################################################### | |
# CONFIGURATION OPTIONS # | |
################################################################### | |
# Maximum number of connections | |
_MAXNUM=10 |
This file contains hidden or 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
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>Nujii Studio</title> | |
<meta name="description" content=""> | |
<meta name="author" content="Scott Wall"> |
This file contains hidden or 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
(function() { | |
window.DS = Ember.Namespace.create({ | |
CURRENT_API_REVISION: 4 | |
}); | |
})(); | |
(function() { |
This file contains hidden or 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
function(req, res) { | |
var response = {}; | |
var urls = ["http://test.com", "http://other.test.com"]; | |
// Iterate the urls | |
services.forEach(function(service){ | |
get(service, function(err, data){ | |
// Handle error | |
if(err) res.render('error', err); |
This file contains hidden or 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
/** | |
* @license AngularJS v1.1.0-de024355 | |
* (c) 2010-2012 Google, Inc. http://angularjs.org | |
* License: MIT | |
*/ | |
(function(window, document, undefined) { | |
'use strict'; | |
//////////////////////////////////// |
OlderNewer