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 : | |
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing! | |
VAGRANTFILE_API_VERSION = "2" | |
Vagrant.require_version ">= 2.2.0" | |
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | |
config.vagrant.plugins = ["vagrant-vbguest"] |
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 : | |
VAGRANTFILE_API_VERSION = '2' | |
@script = <<SCRIPT | |
# Fix for https://bugs.launchpad.net/ubuntu/+source/livecd-rootfs/+bug/1561250 | |
if ! grep -q "ubuntu-xenial" /etc/hosts; then | |
echo "127.0.0.1 ubuntu-xenial" >> /etc/hosts | |
fi |
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
<div class="view rollup one-third first"> | |
<img alt="" src="http://robotlaserparty.com/wp-content/uploads/2013/11/bikes.jpg" width="259" height="194" /> | |
<div class="mask"> | |
<h2>Agent: Jon Smith</h2> | |
Contact me for any of your real estate questions.. | |
<a class="info" href="#">Read More >></a> | |
</div> | |
</div> | |
<div class="view rollup one-third"> |
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
@function inverse-side($side) { | |
@if $side == top { | |
@return bottom; | |
} @else if $side == bottom { | |
@return top; | |
} @else if $side == left { | |
@return right; | |
} | |
@return left; | |
} |
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
<?php | |
//http://www.ranks.nl/resources/stopwords.html | |
return $stop_words = array( | |
'a', | |
'about', | |
'above', | |
'after', | |
'again', | |
'against', | |
'all', |