Skip to content

Instantly share code, notes, and snippets.

@jamiedevsandbox
jamiedevsandbox / really-interesting-repos
Last active July 14, 2024 20:48
Curated list of impressive repositories
https://github.com/github/training-kit
https://github.com/AdguardTeam/AdGuardHome
https://github.com/TH3xACE/SUDO_KILLER
https://github.com/simbody/simbody
https://github.com/matthieu-hackwitharts/Win32_Offensive_Cheatsheet
@marcandrewb
marcandrewb / node-cheatsheet.js
Last active May 31, 2018 09:39
NodeJS Cheatsheet
/* *******************************************************************************************
* SYNOPSIS
* http://nodejs.org/api/synopsis.html
* ******************************************************************************************* */
var http = require('http');
// An example of a web server written with Node which responds with 'Hello World'.
// To run the server, put the code into a file called example.js and execute it with the node program.
@avataru
avataru / EloquentCheatSheet.md
Last active July 11, 2024 09:23
Eloquent relationships cheat sheet
@seanemmel-ba
seanemmel-ba / cookie_factory_fns.js
Last active June 18, 2018 14:25
A script in the revealing module pattern exposing fn's to create, read, and erase cookies using vanilla JavaScript.