This file contains 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
// Original author fwed ([email protected]) | |
// Modified from | |
// https://gist.github.com/anonymous/2cca33d376f7f924fdaa67891ad098cc | |
// https://medium.com/@fw3d/auto-archive-emails-in-gmail-after-2-days-1ebf0e076b1c | |
function gmailAutoArchive() { | |
gmailAutoarchiveHelper(1); | |
gmailAutoarchiveHelper(2); | |
gmailAutoarchiveHelper(3); | |
gmailAutoarchiveHelper(7); |
This file contains 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
#!/usr/bin/env python3 | |
""" | |
If you run into the errors for "Cross Origin Isolation" and | |
"SharedArrayBuffer" when trying to run your exported HTML Godot | |
game, use this simple server to fix the problem! | |
Create this file in the same folder as your exported HTML files | |
and run with `python ./server.py`. Then open a web browser | |
and go to localhost:8000 | |
""" |