I hereby claim:
- I am beforeyouknowit on github.
- I am beforeyouknowit (https://keybase.io/beforeyouknowit) on keybase.
- I have a public key ASBUIXwLDygiRizoVG1Zurg3S10ErPqpzE9Q8kBRvA8SxAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| # Ashley's Jekyll "jnpost" New Post script, based heavily on: | |
| # http://nateeagle.com/2011/09/21/easier-post-creation-for-jekyll-with-bash/ | |
| # This is intended to be run from the base of your Jekyll folder, NOT from within the _posts folder. | |
| # On Mac, copy this 'jnpost` executable shell script into your /usr/local/bin folder, and chmod it to 700. | |
| # Configuration | |
| author="Firstname Lastname" | |
| editor="subl" | |
| # Presumed to have Sublime Text 2 or 3 installed with "subl" bash script in /usr/local/bin/ |
For this tutorial you will need:
ubilinux. YMMV with other linux distros.| <!doctype html> | |
| <html> | |
| <head> | |
| <title>hmmm</title> | |
| <style> | |
| html, body { background: #377; font-family: monospace; color: #fff; } | |
| </style> | |
| </head> | |
| <body> |
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
| # This example demonstrates how to generate SQL statements | |
| # to fetch and save objects to a database. | |
| # Warning: It does not do the actual database calls. just returns the statements. | |
| class Book | |
| attr_accessor :id, :title, :author_id, :subject_id | |
| def initialize(id, title, author_id, subject_id) | |
| @id = id |