svn co https://[email protected] .
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
!!! 5 | |
/[if lt IE 7]<html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> | |
/[if IE 7]<html class="no-js lt-ie9 lt-ie8" lang="en"> | |
/[if IE 8]<html class="no-js lt-ie9" lang="en"> | |
<!--[if gt IE 8]><!--> | |
%html.no-js( lang = "en" ) | |
<!--<![endif]--> | |
%head | |
%meta( charset = "utf-8" ) | |
%meta(http-equiv = "X-UA-Compatible" content = "IE=edge,chrome=1" ) |
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
# less compiler | |
less_c=/usr/local/bin/lessc | |
# this is the source folder | |
src_dir=client | |
# this is the deploy folder | |
deploy_dir=webspace | |
# template files to copy |
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
Start with Fedora 17 | |
yum install -y git vim rubygem-thor rubygem-parseconfig tito make rubygem-aws-sdk tig mlocate bash-completion rubygem-yard rubygem-redcarpet ruby-devel redhat-lsb | |
yum install -y http://kojipkgs.fedoraproject.org//packages/selinux-policy/3.10.0/160.fc17/noarch/selinux-policy-3.10.0-160.fc17.noarch.rpm http://kojipkgs.fedoraproject.org//packages/selinux-policy/3.10.0/160.fc17/noarch/selinux-policy-devel-3.10.0-160.fc17.noarch.rpm http://kojipkgs.fedoraproject.org//packages/selinux-policy/3.10.0/160.fc17/noarch/selinux-policy-doc-3.10.0-160.fc17.noarch.rpm http://kojipkgs.fedoraproject.org//packages/selinux-policy/3.10.0/160.fc17/noarch/selinux-policy-minimum-3.10.0-160.fc17.noarch.rpm http://kojipkgs.fedoraproject.org//packages/selinux-policy/3.10.0/160.fc17/noarch/selinux-policy-mls-3.10.0-160.fc17.noarch.rpm http://kojipkgs.fedoraproject.org//packages/selinux-policy/3.10.0/160.fc17/noarch/selinux-policy-targeted-3.10.0-160.fc17.noarch.rpm | |
gem install rspec -v '1.1.12' | |
for i in origin- |
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
//------------------------------------------------------------------------------ | |
// Copyright (c) 2011 the original author or authors. All Rights Reserved. | |
// | |
// NOTICE: You are permitted you to use, modify, and distribute this file | |
// in accordance with the terms of the license agreement accompanying it. | |
//------------------------------------------------------------------------------ | |
package org.robotlegs.oil.rest | |
{ | |
import flash.utils.describeType; |
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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
Vagrant.configure("2") do |config| | |
config.vm.box = "precise64" | |
config.vm.box_url = "/Users/am/Downloads/precise64.box" | |
config.vm.network :forwarded_port, guest: 4000, host: 4000 | |
config.vm.hostname = 'stasis-box' | |
config.vm.provision :puppet do |puppet| |
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 page = require('webpage').create(), | |
args = require('system').args; | |
if (args.length === 1) { | |
console.log('Missing track ID, "phantomjs track.js XXXXXXXX"'); | |
phantom.exit(); | |
} | |
else { | |
args.forEach(function(arg, i) { |
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
Show hidden characters
{ | |
"color_scheme": "Packages/Theme - Spacegray/base16-eighties.dark.tmTheme", | |
"theme": "Spacegray Eighties.sublime-theme", | |
"ignored_packages": | |
[ | |
"Vintage", | |
"Markdown" | |
], | |
"font_face": "Menlo", | |
"font_size": 12, |
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 'sinatra' | |
require 'sinatra/json' | |
post '/' do | |
json params | |
end |
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 /Applications/Kaleidoscope.app/Contents/Resources/Integration/scripts | |
./install_git-default |
OlderNewer