Skip to content

Instantly share code, notes, and snippets.

View nealey's full-sized avatar
🐢

Neale Pickett nealey

🐢
View GitHub Profile
/* e-paper display lib */
#include <GxEPD.h>
//Use the GxGDEW029T5 class if you have Badgy Rev 2C. Make sure you are on GxEPD 3.05 or above
#include <GxGDEW029T5/GxGDEW029T5.h>
#include <GxIO/GxIO_SPI/GxIO_SPI.h>
#include <GxIO/GxIO.h>
#include <Fonts/FreeSansBold9pt7b.h>
#include <Fonts/FreeSansBold12pt7b.h>
#include <Fonts/FreeSansBold24pt7b.h>
@nealey
nealey / README.md
Last active November 3, 2019 22:03
feisworx.com mobile-friendlier (tampermonkey user script)

Feisworx Mobile Mode

This fiddles around with FeisWorx pages to make them a little more usable on mobile devices like phones and tablets.

Danger Will Robinson

Loading things like TamperMonkey allows scripts to mess with your web pages. This is almost always a bad idea. If you aren't a developer who can read JavaScript, or know one who can look this over to make sure I'm not doing something awful, you should steer clear of this and all other user scripts.

How To Install

/* Solarized */
#define SOL_BASE03 0x002b36ff
#define SOL_BASE02 0x073642ff
#define SOL_BASE01 0x586e75ff
#define SOL_BASE00 0x657b83ff
#define SOL_BASE0 0x839496ff
#define SOL_BASE1 0x93a1a1ff
#define SOL_BASE2 0xeee8d5ff
#define SOL_BASE3 0xfdf6e3ff
#define SOL_YELLOW 0xb58900ff
@nealey
nealey / GoldenClicker.js
Last active September 8, 2024 02:08
A Cookie Clicker mod to automatically click the golden cookie
let Millisecond = 1
let Second = 1000 * Millisecond
let Minute = 60 * Second
let Hour = 60 * Minute
class GoldenClicker {
heartbeat() {
for (let s of Game.shimmers) {
if (s.type == "golden") {
s.pop()