Student | Heroku Link | GithubLink |
---|---|---|
Nichol Alexander | http://proclamated.com | https://github.com/nicholalexander/ifiwasking |
Aby Bandoh | http://blabber.herokuapp.com/ | https://github.com/abzilla/blabber |
Tom Brennan | http://commutertrivialy.herokuapp.com/ | https://github.com/tommyb67/trivialy |
Ernie Casilla | http://nameless-badlands-4713.herokuapp.com | https://github.com/ecasilla/MailMan |
David Fox-Powell | http://dylan-the-dog.herokuapp.com/ | https://github.com/dtothefp/dylanthedog |
Raleigh Froeber | http://randr.herokuapp.com | https://github.com/RDFroeber/randr |
Tea Ho | http://plumpantry.herokuapp.com/ | https://github.com/teabait/plumpantry |
Paris Hyun | http://awesomeciti.herokuapp.com/ | https://github.com/parisliahyun/citibikeapp |
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
git branch -m old_branch new_branch # Rename branch locally | |
git push origin :old_branch # Delete the old branch | |
git push --set-upstream origin new_branch # Push the new branch, set local branch to track the new remote |
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
# Compiled source # | |
################### | |
*.com | |
*.class | |
*.dll | |
*.exe | |
*.o | |
*.so | |
# Packages # |
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
// layout file | |
<body> | |
<div class="container"> | |
<%= flash_messages %> | |
<%= yield %> | |
</div><!-- /container --> | |
</body> |
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
# oh-my-zsh location | |
ZSH=$HOME/.oh-my-zsh | |
# Use lambda theme | |
ZSH_THEME="robbyrussell" | |
# Use plugins for typical tools | |
plugins=(brew git) | |
# Load oh-my-zsh |
Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000
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
function sendFormByEmail(e) | |
{ | |
// Remember to replace this email address with your own email address | |
var email = "[email protected]"; | |
var s = SpreadsheetApp.getActiveSheet(); | |
var headers = s.getRange(1,1,1,s.getLastColumn()).getValues()[0]; | |
var message = ""; | |
var subject = "New Hire: "; |
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
#!/usr/bin/env ruby | |
require 'rubygems' | |
require 'apache_log_regex' | |
require 'date' | |
format = '%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-agent}i\"' | |
parser = ApacheLogRegex.new(format) | |
File.readlines('/path/to/access-log').collect do |line| |
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
#!/usr/bin/env ruby | |
# | |
# @Name TTFB Measurer | |
# @Author Rasmus Christiansen | |
# @Description | |
# | |
# Measures the "true" loading time of a website. | |
# Saves data output to an .out-file | |
# Saves additional .conn and .ttfb files for easy plotting |