- Microsoft Edge API Service
- 5000 requests per day max.
- Uses RAPIDAPI.com
- Set up to use node-fetch module and NodeJS
Link to RapidAPI
Link to RapidAPI
[Submit product or tutorial] or make it thru PR.
#!lyns | |
# this file works as either .lyns or .fish. Lyns is interoperable with Fish, it is just a superset focused on Docker and DAPR/ K&s, and ML ModelOps. | |
if ! test -z $MY_VERSION && test -z (set -q $MY_VERSION); echo $MY_VERSION; else; echo "no-version"; end; | |
if $MY_VERSION not no-version | |
curl -LO https://raw.githubusercontent.com/fish-shell/fish-shell/master/share/config.fish | |
end; |
Truth in Fish/Lyns takes a bit of getting used to but is fairly elegant if done correctly:
function if-test-no-arg
set var
if set -q var
# true
end
if set -q var[1]
42Crunch.vscode-openapi | |
4a454646.github-purple | |
4tron.ionic-docs | |
4tron.ionic4-snippets-vscode | |
aaa1.all-nighter-italic | |
aaron-bond.better-comments | |
aaron00101010.http-client | |
Aashish.emoji-in-git-commit | |
abhith.vscode-favorites | |
abierbaum.vscode-file-peek |
Encryption will use the algorithm preferred by the public (encryption) key (defaults to aes256 for keys generated in OpenPGP.js), and decryption will use the algorithm used for encryption.
const openpgp = require('openpgp'); // use as CommonJS, AMD, ES6 module or via window.openpgp
(async () => {
// put keys in backtick (``) to avoid errors caused by spaces or tabs
const publicKeyArmored = `-----BEGIN PGP PUBLIC KEY BLOCK-----
"this code never had errors before, but now through the magic of async functions, it has all sorts of problems. Why do node CommonJS authors hate ESM authors so much?" --- some guy on the internet
Look folks, the Node and ECMAScript (ESM) developers don't hate each other (too much)! Nor do the users or developers of these two subtly different loading systems for Node packages, because we ALL use them, and we also use many of the NPM features that go hand-in-hand like workspaces, modules, linking etc. We don't hate anyone because we aren't 12 years old, yet, either!
The problem is there are subtle differences between ECMA Script 6 or ES6, and CommonJS. These subtle differences make me curse Ryan Dahl, but that's okay. I mean who doesn't? Imports are newer and much more complex, but they are [built in to the Javascript Language, after all](https://developer.mozilla.org/en-US/docs/web/javascript/refe
API_KEY=api-key-123456789 |
# UUID | |
For the creation of [RFC4122](http://www.ietf.org/rfc/rfc4122.txt) UUIDs. Via NodeJS module from NPM. | |
- **Complete** - Support for RFC4122 version 1, 3, 4, and 5 UUIDs | |
- **Cross-platform** - Support for ... | |
- CommonJS, [ECMAScript Modules](https://www.npmjs.com/package/uuid#ecmascript-modules) and [CDN builds](https://www.npmjs.com/package/uuid#cdn-builds) | |
- Node 8, 10, 12, 14 | |
- Chrome, Safari, Firefox, Edge, IE 11 browsers | |
- Webpack and rollup.js module bundlers |