Note: Official Docs Here
CRUD:
Letter | Stands For | Verb | Use Case |
---|---|---|---|
C | Create | POST | Making new data |
R | Read | GET | Fetching pre-existing data |
U | Update | PATCH | Editing Data |
D | Destroy | DELETE | Removing Data |
Note: Official Docs Here
CRUD:
Letter | Stands For | Verb | Use Case |
---|---|---|---|
C | Create | POST | Making new data |
R | Read | GET | Fetching pre-existing data |
U | Update | PATCH | Editing Data |
D | Destroy | DELETE | Removing Data |
You've just finished a project! HOORAY! Whether you did it alone, in a pair, or in a group, it's DONE. Thank goodness!
It was a lot of hard work and you're tired. Time to take a break and just turn your brain off for a while. You've earned it, right?
Not quite! You're not done just yet. You still need to run a retro on that big chunk of work you just powered through.
Hello, future devs at Fullstack Academy and the Grace Hopper Program! Do you use Windows? Not really sure you want to make the switch to a Mac? I don't blame you; I had been a Mac user for the better part of a decade before switching to Linux, and then to Windows a few months before I started at Grace Hopper. As I'm writing this, I graduated from the program less than a week ago, and so I wanted to write some thoughts up while they're fresh in my head about using Windows. I figured a lot of this out on my own and in consultation with other non-Mac users, and so, rather than let others reinvent the wheel, I thought I'd provide a brief guide.
The simple fact is that you will have to use a Unix system of some sort, for technical reasons having to do with computer architecture. Git Bash, the provided Unix shell on Windows, is woefully inadequate. You can go the route of dual-booting your computer into a Linux partition or using a virtual Linux distrib
// No Security | |
{ | |
"rules": { | |
".read": true, | |
".write": true | |
} | |
} |
Just migrated it from Codepen.io to markdown. Credit goes to David Conner.
Working with DOM | Working with JS | Working With Functions |
---|---|---|
Accessing Dom Elements | Add/Remove Array Item | Add Default Arguments to Function |
Grab Children/Parent Node(s) | Add/Remove Object Properties | Throttle/Debounce Functions |
Create DOM Elements | Conditionals |
Key/Command | Description |
---|---|
Tab | Auto-complete files and folder names |
Ctrl + A | Go to the beginning of the line you are currently typing on |
Ctrl + E | Go to the end of the line you are currently typing on |
Ctrl + U | Clear the line before the cursor |
Ctrl + K | Clear the line after the cursor |
Ctrl + W | Delete the word before the cursor |
Ctrl + T | Swap the last two characters before the cursor |
;SMBDIS.ASM - A COMPREHENSIVE SUPER MARIO BROS. DISASSEMBLY | |
;by doppelganger ([email protected]) | |
;This file is provided for your own use as-is. It will require the character rom data | |
;and an iNES file header to get it to work. | |
;There are so many people I have to thank for this, that taking all the credit for | |
;myself would be an unforgivable act of arrogance. Without their help this would | |
;probably not be possible. So I thank all the peeps in the nesdev scene whose insight into | |
;the 6502 and the NES helped me learn how it works (you guys know who you are, there's no |
# Make gems available | |
require 'rubygems' if RUBY_VERSION <= '1.9.0' | |
# http://drnicutilities.rubyforge.org/map_by_method/ | |
require 'map_by_method' | |
# Dr Nic's gem inspired by | |
# http://redhanded.hobix.com/inspect/stickItInYourIrbrcMethodfinder.html | |
require 'what_methods' |
/* | |
* Minimal classList shim for IE 9 | |
* By Devon Govett | |
* MIT LICENSE | |
*/ | |
if (!("classList" in document.documentElement) && Object.defineProperty && typeof HTMLElement !== 'undefined') { | |
Object.defineProperty(HTMLElement.prototype, 'classList', { | |
get: function() { |