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
{ | |
"clientId": "xxxxx-xxxxx-xxxxx-xxxxx", | |
"clientSecret": "xxxxx-xxxxx-xxxxx-xxxxx", | |
"subscriptionId": "xxxxx-xxxxx-xxxxx-xxxxx", | |
"tenantId": "xxxxx-xxxxx-xxxxx-xxxxx", | |
"activeDirectoryEndpointUrl": "https://login.microsoftonline.com", | |
"resourceManagerEndpointUrl": "https://management.azure.com/", | |
"activeDirectoryGraphResourceId": "https://graph.windows.net/", | |
"sqlManagementEndpointUrl": "https://management.core.windows.net:8443/", | |
"galleryEndpointUrl": "https://gallery.azure.com/", |
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
/** | |
* Generates association routes for a model. | |
* @param {object} router - Express Router instance. | |
* @param {object} model - Sequelize model instance. | |
* @param {string} modelName - Singular name of the model. | |
* @param {object} associations - Associations for the model. | |
* @param {string} service - Service name. | |
*/ | |
function generateAssociationRoutes(router, model, modelName, associations, service) { | |
for (const [associationName, association] of Object.entries(associations)) { |
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
#!/bin/bash | |
# Check if an LDIF file was provided | |
if [ "$#" -ne 1 ]; then | |
echo "Usage: $0 <ldif_file>" | |
exit 1 | |
fi | |
ldif_file=$1 |
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
export default function sse({ path, body }) { | |
let timerId; | |
const response = new ReadableStream({ | |
start(controller) { | |
timerId = setInterval(() => { | |
const msg = new TextEncoder().encode( | |
`data: hello at ${new Date().toUTCString()}\r\n\r\n`, | |
); | |
controller.enqueue(msg); | |
}, 1000); |
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
// Not really needed. Just used for logging the FULL diff in the console | |
const util = require('util') | |
// Set up the diffs object | |
let diffs | |
function compare(item1, item2, diffRef = diffs, key) { | |
// Make sure we have a key | |
if (!key && key !== 0) { |
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
16 |
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
const util = require('util') | |
const obj = { | |
"city": "De Pere", | |
"foo.hoo": "loo", | |
"foo.bar.name": "mark", | |
"foo.bar.age": 10, | |
"foo.bar.color": "larry", | |
"foo.bar.house.number": 523, | |
} |
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
## user user; ## <- delete this line | |
worker_processes 1; | |
error_log /var/log/error.log warn; | |
pid /var/run/nginx.pid; | |
events { | |
worker_connections 1024; | |
} | |
http { |
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
# Logs | |
logs | |
*.log | |
npm-debug.log* | |
yarn-debug.log* | |
yarn-error.log* | |
lerna-debug.log* | |
# Diagnostic reports (https://nodejs.org/api/report.html) | |
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json |
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 {{name}} { | |
server {{name}}; | |
} | |
upstream websocket { |