Change into your project directory.
cd galvanize-bookshelf
Ensure the staging area of the master
branch is clean. Then, create and checkout a new feature branch.
extension Array { | |
func chopped() -> (Element, [Element])? { | |
guard let x = self.first else { return nil } | |
return (x, Array(self.suffix(from: 1))) | |
} | |
} | |
print([1, 2, 3].chopped()) | |
// Optional((1, [2, 3])) |
HTTP/1.1 200 OK | |
Access-Control-Allow-Credentials: true | |
Access-Control-Allow-Methods: GET, POST | |
Access-Control-Allow-Origin: * | |
Connection: keep-alive | |
Content-Length: 445 | |
Content-Type: application/json; charset=utf-8 | |
Date: Wed, 05 Jul 2017 04:22:10 GMT | |
Server: openresty | |
X-Cache-Key: /data/2.5/weather?APPID=cc4654c8e15f6d08b13954b915a0d0b1&q=seattle |
// 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) { |
I hereby claim:
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 |
A Hash is a collection of key-value pairs. To add, fetch, modify, and delete a value from a Hash, you refer to it with a unique key.
While an Array is indexed by Integers only, a Hash is keyed by any object -- Strings, Integers, etc.
In other programming languages, a Hash might be known as an 'associative array', 'dictionary', or 'HashMap'.
Good etiquette in class can help you make the most of your education.
If you're in Code Fellows, you're likely at least 18 years old—the age at which you're legally considered an adult. You may not feel like a responsible grown-up yet, but your instructors will assume that you are. So act likewise.
Before you say or do anything in the classroom, ask yourself "How would a mature, well-adjusted, courteous adult act?" I promise that doing so will save you from embarrassment and engender the respect of your classmates and instructors.