Replaced by https://github.com/becw/vagrant-elasticsearch
I hereby claim:
- I am becw on github.
- I am becw (https://keybase.io/becw) on keybase.
- I have a public key whose fingerprint is 7BD0 4396 7273 3D4E 8BCE DBB0 3FBD D567 AAC8 24A8
To claim this, I am signing this object:
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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
Vagrant.configure("2") do |config| | |
config.vm.box = "precise32" | |
config.vm.box_url = "http://files.vagrantup.com/precise32.box" | |
config.vm.provision :shell, :path => "vagrant-setup.sh" | |
config.vm.network :forwarded_port, guest: 80, host: 8080 |
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
# Exclude IDE management files. | |
# Eclipse | |
.project | |
.settings | |
.buildpath | |
# Netbeans | |
netbeans |
Replaced by https://github.com/becw/vagrant-elasticsearch
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
/** | |
* EXAMPLE FEATURE UPDATE | |
* Enable and revert the my_new_feature_name feature. | |
*/ | |
function example_update_7001() { | |
// An array of new or changed features; the array keys are feature names, | |
// values are an array of exportable types as seen in a feature's .info file: | |
// features[field][] = node-page-body | |
$features = array( | |
'my_new_feature_name' => array('field', 'variable'), |
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
// Pinboard bookmarklets that work for expanded items in Google Reader as well | |
// as for web pages in general. | |
// BOOKMARKLET VERSIONS | |
// Pinboard, no tags, minified | |
javascript:(function(){var a,b;if(location.href.search(/^https?:\/\/(www.)?google.com\/reader\/.+$/)===0){var c=document.getElementById("current-entry");if(c&&c.className.search(/(^| )expanded( |$)/)!=-1){var d=c.getElementsByClassName("entry-title-link");if(d.length){a=d[0].getAttribute("href");b=d[0].firstChild.nodeValue}}}else{a=location.href;b=document.title}if(a){void open("http://pinboard.in/add?later=yes&noui=yes&jump=close&url="+encodeURIComponent(a)+"&title="+encodeURIComponent(b),"Pinboard","toolbar=no,width=100,height=100")}})() | |
// Pinboard, with tags, uglified |