Skip to content

Instantly share code, notes, and snippets.

@staltz
staltz / music.md
Last active November 23, 2024 22:31
coding music

Not for everyone. Each programmer has their own appreciation of what is good coding music.

For when I need to think deep, debug something, or design

(From most influential to least)

@yohangz
yohangz / proxy.conf.js
Last active May 12, 2022 12:23
Angular CLI proxy config
const PROXY_CONFIG = {
"**": {
"target": "http://localhost:9000",
"secure": false,
"bypass": function (req) {
if (req && req.headers && req.headers.accept && req.headers.accept.indexOf("html") !== -1) {
console.log("Skipping proxy for browser request.");
return "/index.html";
}
}