Skip to content

Instantly share code, notes, and snippets.

View taylor's full-sized avatar
🐢
🌊

Taylor Carpenter taylor

🐢
🌊
View GitHub Profile
@taylor
taylor / Selenium Cheat Sheet.md
Last active March 5, 2021 06:27 — forked from kenrett/Selenium Cheat Sheet.md
Selenium Cheat Sheet - Ruby

#Getting Started

##Webpage:

<html>
<head>
    <title>Testing with Ruby and Selenium WebDriver</title>
</head>
 
<body bgcolor="antiquewhite">
@taylor
taylor / gist:1843031
Created February 16, 2012 07:43
foreman in Procfile on Heroku
$ cat Procfile
foreman: foreman start -c web=1 worker=10 -f Procfile2
$ cat Procfile2
web: bundle exec rails s -p $PORT thin
worker: ruby worker.rb
@taylor
taylor / tmux-1.8-on-CentOS-6.x.txt
Created February 16, 2017 20:43 — forked from sturadnidge/tmux-1.8-on-CentOS-6.x.txt
Install tmux 1.8 on CentOS 6.x minimal (64bit)
# download latest libevent2 and tmux sources, and extract them somewhere
# (thx bluejedi for tip on latest tmux URL)
#
# at the time of writing:
# https://github.com/downloads/libevent/libevent/libevent-2.0.21-stable.tar.gz
# http://sourceforge.net/projects/tmux/files/latest/download?source=files
#
# install deps
yum install gcc kernel-devel make ncurses-devel
@taylor
taylor / Dockerfile
Created January 29, 2014 05:21 — forked from henrik-muehe/Dockerfile
Fake Fuse build for Docker to get around /dev/fuse not being available
...
# Fake a fuse install
RUN apt-get install libfuse2
RUN cd /tmp ; apt-get download fuse
RUN cd /tmp ; dpkg-deb -x fuse_* .
RUN cd /tmp ; dpkg-deb -e fuse_*
RUN cd /tmp ; rm fuse_*.deb
RUN cd /tmp ; echo -en '#!/bin/bash\nexit 0\n' > DEBIAN/postinst
RUN cd /tmp ; dpkg-deb -b . /fuse.deb

Notes On Strange Loop 2013

The second Strange Loop I've attended was truly an amazing conference like no other. Last year's was fantastic, but this year was just, well, you really had to be there. Even so, I'll try to give a summary of stuff that happened.

Negatives

To get it out of the way now, these are the things I didn't like:

@taylor
taylor / Dockerfile
Created September 16, 2013 16:31 — forked from sntran/elixir
Erlang Dockerfile
# Erlang R16B HiPE with Rebar
#
# VERSION 0.0.1
FROM base
MAINTAINER Son Tran-Nguyen "sntran@inhuman.io"
RUN apt-get update
RUN apt-get install -y git build-essential libncurses5-dev openssl libssl-dev curl
# For HiPE, requires M4
@taylor
taylor / Dockerfile
Created September 15, 2013 20:19 — forked from sntran/elixir
# Erlang R16B HiPE with Rebar
#
# VERSION 0.0.1
FROM base
MAINTAINER Son Tran-Nguyen "sntran@inhuman.io"
RUN apt-get update
RUN apt-get install -y git build-essential libncurses5-dev openssl libssl-dev curl
# For HiPE, requires M4
#!/usr/bin/python
"""
This is a prepare-commit-msg hook for use with git-flow and Pivotal Tracker.
Copy this file to $GITREPOSITORY/.git/hooks/prepare-commit-msg
It will prepend [#<story id>] to your commit message.
See https://www.pivotaltracker.com/help/api?version=v3#scm_post_commit
@taylor
taylor / riak-docker-braindump.rst
Created August 24, 2013 00:04 — forked from sa2ajj/braindump.rst
Thoughts on using Riak with Docker originally from https://gist.github.com/sa2ajj/5323326