Skip to content

Instantly share code, notes, and snippets.

View ryansobol's full-sized avatar

Ryan Sobol ryansobol

  • Ryan Sobol LLC
  • Seattle, WA
  • 07:16 (UTC -07:00)
View GitHub Profile

What's the name of your app?

What does it do?

What's the GitHub url?

Deliverables

What I need from you is the following:

  • Access to the source code on GitHub.
  • A production version of your app running somewhere.
  • A completed final questionnaire -- one per team is fine. Here's an example.

These are due Tuesday June 11th by the end of the day.

What's the name of your app?

BlogPress

What does it do?

As the name suggests, BlogPress is a web app for creating and maintaining a blog.

Registered users (aka authors) can create, update, and destroy articles. Authors write articles using Markdown syntax which is converted to HTML on-the-fly.

@ryansobol
ryansobol / project_questionnaire.md
Last active December 15, 2015 19:59
Project Questionnaire

What's the name (or codename) of your app?

What will your app do?

Who's on your team? What are their roles?

@ryansobol
ryansobol / gist:5276501
Last active December 15, 2015 14:39
What Really Happened at #inspect 2013

What Really Happened at #inspect 2013

For those who couldn't make it to Brussels, here's what you missed.

Dispassionate objectivity

From my experience, great conferences have one thing in common -- debates during, in-between and after talks. #inspect 2013 was no different.

Most speakers had opinions on snake_case vs camelCase. I overheard arguments both for and against Teacup at lunch. Colleagues from around the globe weighed in on the benefits of wrappers and the pitfalls of additional dependencies. Even the venue for #inspect 2014 sparked a catch phrase -- "Tan or tech, Cancun or New York".

// Load required module
var http = require('http');
var fs = require('fs');
var url = require('url');
http.createServer(function(request, response) {
var pathname = __dirname + url.parse(request.url).pathname;
fs.exists(pathname, function(exists) {
if (exists) {

Keybase proof

I hereby claim:

  • I am ryansobol on github.
  • I am ryansobol (https://keybase.io/ryansobol) on keybase.
  • I have a public key whose fingerprint is 796F F213 9A11 4FB9 2921 5DE7 34D6 FF00 1F05 B945

To claim this, I am signing this object:

document.getElementById("todo").addEventListener("keypress", function(event) {
if (event.keyCode == 13) {
addToDo();
}
});
function addToDo() {
var newEl = document.createElement("li");
var parentEl = document.getElementById("list");
var firstEl = parentEl.firstChild;
#!/bin/sh
TARGET="/c/Program Files (x86)/Git/bin/subl"
echo '#!/bin/sh' > $TARGET
echo '"C:\Program Files\Sublime Text 2\sublime_text.exe" "$1" &' >> $TARGET
git config --global push.default simple
git config --global credential.helper 'cache --timeout=3600'