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 the nomad CLI is installed | |
if ! command -v nomad &> /dev/null; then | |
echo "Nomad CLI could not be found. Please install it first." | |
exit 1 | |
fi | |
# Get a list of all running jobs | |
running_jobs=$(nomad job status -short | grep running | awk '{print $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
body { | |
background: #db0000; | |
} |
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
syntax = "proto3"; | |
package audio_node; | |
service AudioNode { | |
// 1 connection with all audio channels | |
rpc StartAudioIngestion (CallId) returns (Empty); | |
rpc IngestAudio (stream AudioChunk) returns (Empty); | |
rpc FinishAudioIngestion (CallId) returns (Empty); |
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
function flatten(arr) { | |
if (Array.flat) { // because we're all excited that this is finally making production! | |
return arr.flat(Infinity); | |
} | |
if (!arr.some(item => Array.isArray(item))) { | |
return arr; | |
} | |
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
#include <thread> | |
#include <future> | |
#include <chrono> | |
#include <iostream> | |
#include <vector> | |
double runMeAsync(int n) { | |
n *= 10000000; | |
for (unsigned i = 0; i < 100000000; i++) { | |
n++; |
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
function fixIframe() { | |
// get the images | |
var images = $("img[src*=imgur]"); | |
images.each(function(i, image) { | |
var $image = $(image), | |
iframe, | |
content; | |
// wrap each image into an iframe that pretends we load the images from our local computer |
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
git submodule foreach -q --recursive 'branch="$(git config -f $toplevel/.gitmodules submodule.$name.branch)" && git checkout $branch' |
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
//convert | |
for i in *.wav; do lame -b 320 -h "${i}" "${i}.mp3"; done | |
//remove the .wav part | |
for f in *.mp3; do mv "$f" "${f/.*./.}"; done |
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
// Cleaning up pixi sprite reference arrays | |
// Don't | |
var elements = []; | |
function() { | |
elements.forEach(function (element) { | |
element.parent.removeChild(element); | |
element = null; | |
}); |
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
<meta name="viewport" | |
content="width=device-width, initial-scale=1, minimal-ui, minimum-scale=1, maximum-scale=1, user-scalable=no"> |
NewerOlder