Skip to content

Instantly share code, notes, and snippets.

View jcpsimmons's full-sized avatar
💁‍♀️

Dr. Josh C. Simmons jcpsimmons

💁‍♀️
View GitHub Profile
@jcpsimmons
jcpsimmons / forscan_wine.md
Last active February 2, 2025 23:07 — forked from gangstead/forscan_wine.md
Forscan on MacOS Montery with wine/wineskin

Info

Forking this for posterity - this is the only thing that worked for me

I can confirm that this works with the following setup:

  • Forscan version 2.3.45
  • Sonoma
  • M3 chip
  • This Adapter
  • 2021 Ford Bronco Big Bend 7 Speed Manual
@jcpsimmons
jcpsimmons / whatever.nix
Created May 13, 2023 17:46
whatever.nix
{ config, pkgs, lib, modulesPath, ... }: rec {
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ]; # actually idk what this does
nixpkgs.overlays = [ (import self.inputs.emacs-overlay) ];
nix = {
package = pkgs.nixFlakes;
extraOptions = ''
experimental-features = nix-command flakes
'';
};
users.users.jeff = {
@jcpsimmons
jcpsimmons / chromenotepad.txt
Created September 8, 2022 18:14
In-Browser Notepad
data:text/html, <html><head><link href='https://fonts.googleapis.com/css2?family=Source Sans Pro:wght@700&display=swap' rel='stylesheet' type='text/css'><style type="text/css">html{ font-family: "Source Sans Pro"; }*{ -webkit-transition: all linear 1s; }</style></head><body contenteditable style="color:%23E94560;background-color:%2316213E;font-size:2.5rem;line-height:1.4;max-width:60ch;margin:0 auto;padding:4rem;"></body>
@jcpsimmons
jcpsimmons / bookmark.html
Created April 22, 2022 17:50
Notepad Bookmark
data:text/html, <html><head><link href='https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@700&display=swap%27%20rel=%27stylesheet%27%20type=%27text/css%27%3E%3Cstyle%20type=%22text/css%22%3E%20html%20{%20font-family:%20%22Source%20Sans%20Pro%22;%20}%20*%20{%20-webkit-transition:%20all%20linear%201s;%20}%3C/style%3E%3C/head%3E%3Cbody%20contenteditable%20style=%22color:deeppink;background-color:darkslategray;font-size:2.5rem;line-height:1.4;max-width:60rem;margin:0%20auto;padding:4rem;%22%3E
@jcpsimmons
jcpsimmons / compressor.io
Created April 22, 2020 21:12
Simple compression function
// Takes a sequence of letters and returns a compressed output
// input = abcaaabbb
// expected = abca3b3
const compressor = (str) => {
if (typeof str !== "string" || !/^[A-Za-z]+$/.test(str)) {
return "Input must be a string";
}
if (str.length > 5000) {
return "Input must be less than 5000 chars.";
{"lastUpload":"2020-08-24T22:44:20.156Z","extensionVersion":"v3.4.3"}
Thu Jan 2 09:23:38 2020 -0800 - [Josh] de97c6fd889150e2a3136ec8f329fb895b2825bb
README.md | 8 ++++++++
1 file changed, 8 insertions(+)
Tue Dec 24 10:08:12 2019 -0800 - [Josh Simmons] a51e172cdce15692636c19b07c72ebc50f638783
.DS_Store | Bin 6148 -> 6148 bytes
19-12-23_AfterChristmas/prods.txt | 12 +-
.../ny_clearance_event.html | 2 +-
misc/privacyPolicy.html | 600 +++++++++++++++++++++
4 files changed, 612 insertions(+), 2 deletions(-)