Last updated: March 5, 2026
This service sends SMS messages for internal operational purposes including notifications, alerts, and system status updates.
| { | |
| // Place your snippets for javascript here. Each snippet is defined under a snippet name and has a prefix, body and | |
| // description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are: | |
| // $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the | |
| // same ids are connected. | |
| // Example: | |
| "console.log(": { | |
| "prefix": "c", | |
| "body": [ | |
| "console.log($0", |
𝙐𝙉𝙄𝙌𝙐𝙀 𝙋𝘼𝙎𝙎𝙒𝙊𝙍𝘿 𝙂𝙀𝙉𝙀𝙍𝘼𝙏𝙊𝙍 𝙬/ 𝘽𝘼𝙎𝙃
If you enter the same info twice, including the salt, you will get the same password output. The password is generated using a random seed, based on your salt.
This way you can have a unique password for each device and domain you use. So, if your password is breached, you can just create a new salt for that login - and voila — your breached password is updated — and an attacker can't use your cracked password to unlock another digital realm.
𝕀𝕗 𝕪𝕠𝕦 𝕔𝕒𝕟 𝕔𝕠𝕞𝕞𝕚𝕥 𝕪𝕠𝕦𝕣 𝕤𝕒𝕝𝕥 𝕥𝕠 𝕞𝕖𝕞𝕠𝕣𝕪:
Genesis 1
²⁶ Then God said, “Let us make man in our image, after our likeness. And let them have dominion over the fish of the sea and over the birds of the heavens and over the livestock and over all the earth and over every creeping thing that creeps on the earth.”
²⁷ So God created man in his own image, in the image of God he created him;
| # Download bible as text files from: | |
| # https://ebible.org/Scriptures/eng-web_readaloud.zip | |
| # File output is: Book-Number/Book-Abreviation/Chapter | |
| # Eg: 01/GEN/01 | |
| mkdir web-bible | |
| unzip eng-web_readaloud.zip -d web-bible | |
| cd web-bible | |
| rm *.asc *.htm *_000* |
| # For a list of files like this... | |
| # eng-web_002_GEN_01_read.txt | |
| # eng-web_096_REV_22_read.txt | |
| # Batch rename removing "eng-web_" and "_read"... | |
| for i in *; do mv ${i} $(echo ${i} | sed 's/eng-web_//;s/_read//'); done | |
| # Result is file list like this... | |
| # 002_GEN_01.txt | |
| # 096_REV_22.txt |
| ffprobe -v quiet -select_streams v:0 -show_entries stream=bit_rate -of default=noprint_wrappers=1:nokey=1 input.mp4 |
| find . -name "foo*" |
| for i in *.mp4; do ffmpeg -i "$i" "${i%.*}.mp3"; done |
| async function postData(url = '', data = {}) { | |
| const response = await fetch(url, { | |
| method: 'POST', // *GET, POST, PUT, DELETE, etc. | |
| cache: 'no-cache', // *default, no-cache, reload, force-cache, only-if-cached | |
| credentials: 'include', // include, *same-origin, omit | |
| redirect: 'follow', // manual, *follow, error | |
| referrerPolicy: 'no-referrer', // no-referrer, *no-referrer-when-downgrade, origin, origin-when-cross-origin, same-origin, strict-origin, strict-origin-when-cross-origin, unsafe-url | |
| body: JSON.stringify(data) // body data type must match "Content-Type" header | |
| }); | |
| return response.json(); // parses JSON response into native JavaScript objects |