Skip to content

Instantly share code, notes, and snippets.

View BLumbye's full-sized avatar

Benjamin Lumbye BLumbye

View GitHub Profile
@BLumbye
BLumbye / SGFTimezoneConverter.user.js
Created June 5, 2023 14:42
Converts the times on the Summer Game Fest website to your local timezone
// ==UserScript==
// @name SGF Timezone Converter
// @namespace https://github.com/BLumbye/overleaf-userscripts
// @version 0.1
// @description Converts the times on the Summer Game Fest website to your local timezone
// @author Benjamin Lumbye
// @match https://www.summergamefest.com/
// @icon https://www.google.com/s2/favicons?sz=64&domain=summergamefest.com
// @grant none
// ==/UserScript==
@BLumbye
BLumbye / ListAllFormulas.bas
Created April 7, 2023 11:56
VBA Module that lists all formulas in a Workbook. Based on http://www.vbaexpress.com/kb/getarticle.php?kb_id=409
Option Explicit
Sub ListAllFormulas()
Dim sht As Worksheet
Dim shtName
Dim myRng As Range
Dim newRng As Range
Dim c As Range
@BLumbye
BLumbye / supabase.conf
Last active March 26, 2023 15:24
Supabase reverse proxy using NGINX
map $http_upgrade $connection_upgrade {
default upgrade;
'' close;
}
upstream supabase {
server 127.0.0.1:3050;
}
upstream kong {