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
# Need to install: | |
# wget | |
# tmux | |
# go1.18 | |
# db1000n | |
function updateEverything() { | |
apt-get update && apt-get upgrade -y | |
} |
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
// Generated on 2014-04-18 using generator-angular 0.8.0 | |
'use strict'; | |
function enableCORP(connect, options, middlewares) { | |
middlewares.unshift(function(req, res, next) { | |
res.setHeader('Cross-Origin-Embedder-Policy', 'require-corp'); | |
res.setHeader('Cross-Origin-Opener-Policy', 'same-origin'); | |
next(); | |
}); |