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| 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: "; |
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| # 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 |
| 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 |
| // layout file | |
| <body> | |
| <div class="container"> | |
| <%= flash_messages %> | |
| <%= yield %> | |
| </div><!-- /container --> | |
| </body> |
| # Compiled source # | |
| ################### | |
| *.com | |
| *.class | |
| *.dll | |
| *.exe | |
| *.o | |
| *.so | |
| # Packages # |
| 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 |
| # Simple Recommendation Engine in Ruby | |
| # Visit: http://otobrglez.opalab.com | |
| # Author: Oto Brglez <[email protected]> | |
| class Book < Struct.new(:title) | |
| def words | |
| @words ||= self.title.gsub(/[a-zA-Z]{3,}/).map(&:downcase).uniq.sort | |
| end |
To remove a submodule you need to:
| require 'dotenv' | |
| Dotenv.load | |
| require 'benchmark' | |
| require 'multi_json' | |
| require 'firebase' | |
| require 'patron' | |
| Benchmark.bmbm do |x| |