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
Vagrant.configure("2") do |config| | |
config.vm.box = "precise32" | |
config.vm.provider :virtualbox do |v| | |
v.customize ["modifyvm", :id, "--memory", 256] | |
v.customize ["modifyvm", :id, "--nictype1", "virtio"] | |
v.customize ["modifyvm", :id, "--nictype2", "virtio"] | |
v.gui = true # for debug | |
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
tell application "Messages" | |
set isAppRunning to false | |
tell application "System Events" | |
if (exists process "Messages") then | |
set isAppRunning to true | |
end if | |
end tell | |
if isAppRunning is false then |
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
// Generated on 2013-03-01 using generator-webapp 0.1.5 | |
'use strict'; | |
var lrSnippet = require('grunt-contrib-livereload/lib/utils').livereloadSnippet; | |
var mountFolder = function (connect, dir) { | |
return connect.static(require('path').resolve(dir)); | |
}; | |
// # Globbing |
NewerOlder