Skip to content

Instantly share code, notes, and snippets.

@kenrick
kenrick / web_config.xml
Last active October 7, 2015 00:58
Wordpress IIS Config
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="Rewrite to index.php">
<match url="index.php|robots.txt|images|test.php" />
<action type="None" />
</rule>
<rule name="Rewrite CI Index">
@kenrick
kenrick / cent_os.sh
Created June 16, 2012 23:32
Setup Cent OS Server
#!/usr/bin/env bash
yum -y update
yum -y install httpd
yum -y install php
yum -y install mysql
yum -y install mysql-server
yum -y install php-mysql
#Turn on services on restart
/sbin/chkconfig httpd on
@kenrick
kenrick / install_ruby.sh
Created June 14, 2012 04:24
Install Ruby and Chef to Ubuntu Box
#!/usr/bin/env bash
sudo apt-get -y update
sudo apt-get -y install build-essential zlib1g-dev libssl-dev libreadline-gplv2-dev libyaml-dev
cd /tmp
wget ftp://ftp.ruby-lang.org/pub/ruby/1.9/ruby-1.9.3-p125.tar.gz
tar -xvzf ruby-1.9.3-p125.tar.gz
cd ruby-1.9.3-p125/
./configure --prefix=/usr/local
make
make install
@kenrick
kenrick / Testify.rb
Last active October 3, 2015 20:37
A Sample test from rspec
describe "Articles" do
it "creates a new article" do
article = create(:article)
visit new_article_path
fill_in "Name", :with => article.name
fill_in "Content", :with => article.content
click_button "Create Article"
page.should have_content("Article was successfully created.")
end
end