This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==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== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Option Explicit | |
| Sub ListAllFormulas() | |
| Dim sht As Worksheet | |
| Dim shtName | |
| Dim myRng As Range | |
| Dim newRng As Range | |
| Dim c As Range | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| map $http_upgrade $connection_upgrade { | |
| default upgrade; | |
| '' close; | |
| } | |
| upstream supabase { | |
| server 127.0.0.1:3050; | |
| } | |
| upstream kong { |