Skip to content

Instantly share code, notes, and snippets.

View CalamityAdam's full-sized avatar
🚀
to the moon!

Adam Sisk CalamityAdam

🚀
to the moon!
View GitHub Profile

Reference for fetch API, using CRUD verbs

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

Retroing

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.

What's The Point Of Retros?

@melissasage
melissasage / windows-at-fsa.md
Created December 12, 2018 23:18
How to Use Windows at Fullstack Academy

How to Use Windows at Fullstack Academy

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.

Linux on Windows

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

@codediodeio
codediodeio / database.rules.json
Last active January 28, 2024 19:07
Common Database Rules for Firebase
// No Security
{
"rules": {
".read": true,
".write": true
}
}
@thegitfather
thegitfather / vanilla-js-cheatsheet.md
Last active April 17, 2024 18:56
Vanilla JavaScript Quick Reference / Cheatsheet
@lopspower
lopspower / README.md
Last active May 1, 2024 15:08
Hexadecimal color code for transparency

Hexadecimal color code for transparency

Twitter

How to set transparency with hex value ?

For example, you want to set 40% alpha transparence to #000000 (black color), you need to add 66 like this #66000000.

Download This sample on Google Play Store

@itsmattsoria
itsmattsoria / gistfil1.textile
Last active April 22, 2024 12:37
Mac Terminal Cheat Sheet

SHORTCUTS

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
@1wErt3r
1wErt3r / SMBDIS.ASM
Created November 9, 2012 22:27
A Comprehensive Super Mario Bros. Disassembly
;SMBDIS.ASM - A COMPREHENSIVE SUPER MARIO BROS. DISASSEMBLY
;by doppelganger (doppelheathen@gmail.com)
;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
@bartlomiejdanek
bartlomiejdanek / .irbrc
Created December 20, 2011 19:23
IRB configuration
# 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() {