Skip to content

Instantly share code, notes, and snippets.

View BrentLee's full-sized avatar
🏠
Working from home

Brent Lee BrentLee

🏠
Working from home
View GitHub Profile
@lfhbento
lfhbento / userscript.js
Last active January 17, 2026 07:15 — forked from spf13/script.js
Download all your Kindle books before Feb 26, 2025
// ==UserScript==
// @name Kindle Download
// @namespace http://tampermonkey.net/
// @version 2025-02-20
// @description Download all your kindle books
// @author You
// @match https://www.amazon.com/hz/mycd/digital-console/contentlist/booksPurchases/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=amazon.com
// @grant none
// ==/UserScript==
@sarahleahwolfe
sarahleahwolfe / Program.cs
Created May 13, 2017 01:44
Popular Pizza Toppings
using System;
using Newtonsoft.Json;
using System.IO;
using System.Net;
using System.Collections.Generic;
using System.Linq;
public class Pizza
{
public List<string> toppings
@straker
straker / README.md
Last active March 17, 2026 10:23
Basic Snake HTML and JavaScript Game

ICE Out; Abolish ICE

Basic Snake HTML and JavaScript Game

Snake is a fun game to make as it doesn't require a lot of code (less than 100 lines with all comments removed). This is a basic implementation of the snake game, but it's missing a few things intentionally and they're left as further exploration for the reader.

Further Exploration