I hereby claim:
- I am jbsmith86 on github.
- I am jbsmith86 (https://keybase.io/jbsmith86) on keybase.
- I have a public key ASAk2D1F9pR4gbmNRy9r6u6FwDP9CiFOs6JEvDB1KHb5igo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
#!/bin/sh | |
# Written by: Keefer Rourke <https://krourke.org> | |
# Based on AUR package <https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=ttf-google-fonts-git> | |
# dependancies: fonts-cantarell, ttf-ubuntu-font-family, git | |
sudo apt-get install fonts-cantarell ttf-ubuntu-font-family git | |
srcdir="/tmp/google-fonts" | |
pkgdir="/usr/share/fonts/truetype/google-fonts" | |
giturl="git://github.com/google/fonts.git" |
#!/usr/bin/env ruby | |
require "optparse" | |
require "socket" | |
require "openssl" | |
require "time" | |
options = { | |
'port' => 443 | |
} |
class OfficeAPIError < StandardError; end; | |
class OfficeAPITimoutError < StandardError | |
def initialize(msg = "Office API timed out") | |
super(msg) | |
end | |
end | |
class OfficeAPI | |
attr_accessor :access_token, :messages_filter, :mail_box, :fetch_from |
^(https?:\/\/(www.)?) |
#!/bin/bash | |
#Replace the empty constants below if you don't want to be prompted for credentials | |
USERNAME="" | |
PASSWORD="" | |
if [ "$USERNAME" == "" ]; then | |
echo -n "Enter your Github username and press [ENTER]: " | |
read USERNAME |
Gemfile add: | |
group :test do | |
gem 'minitest-rails-capybara' | |
end | |
gem 'minitest-rails' | |
bundle | |
rails generate mini_test:install | |
rails generate mini_test:feature NameOfTest |