Skip to content

Instantly share code, notes, and snippets.

View sbinlondon's full-sized avatar
💭
Thinkin' about guinea pigs

Kate Beard sbinlondon

💭
Thinkin' about guinea pigs
View GitHub Profile
/* eslint-disable */
const { execSync } = require('child_process');
const fs = require('fs');
const cmd = "grep -r --exclude-dir=node_modules 'process.env' ./"
const stdout = execSync(cmd, { encoding: 'UTF-8' });
// scrape envs from code
function getEnvs(input) {
@sbinlondon
sbinlondon / synthwaveglow.md
Last active February 22, 2024 22:40
Get the synth wave glow theme working for VS Code on Mac

Get the synth wave glow working for VS Code on Mac

These notes are pretty much the same steps as the two extensions list, it's just that I had to collate them together because neither seems to list it fully in the proper order.

  1. Install Synthwave ’84/Synthwave + Fluoromachine theme on VS Code (I used the Fluoromachine one)

  2. Install Custom CSS and JS Loader

  3. Command + Shift + P to open command palette > "Preferences: Open settings (JSON)"