Edit: moved to here https://blog.haicon.moe/posts/logitech-f310-to-work-with-macbook-usb-c-port/
| const dictionary = { | |
| word1List: [ | |
| "afraid", | |
| "ancient", | |
| "angry", | |
| "average", | |
| "bad", | |
| "big", | |
| "bitter", | |
| "black", |
| I was drawn to programming, science, technology and science fiction | |
| ever since I was a little kid. I can't say it's because I wanted to | |
| make the world a better place. Not really. I was simply drawn to it | |
| because I was drawn to it. Writing programs was fun. Figuring out how | |
| nature works was fascinating. Science fiction felt like a grand | |
| adventure. | |
| Then I started a software company and poured every ounce of energy | |
| into it. It failed. That hurt, but that part is ok. I made a lot of | |
| mistakes and learned from them. This experience made me much, much |
The Z-Stick does bi-directional communication over a UART. The connection speed is 115200, '8N1'. There are "requests" and "responses". The client software can make requests to the Z-Stick, and it will send responses. But it seems the Z-Stick can make requests of the client software too. I have yet to figure out the requests the Z-Stick sends to the client software.
It's just too complex to make Rust+WASM work on macOS, but all the other guides online target macOS. This guide targets only Arch Linux. If your favorate distro is great, you should be able to do the same thing.
Install rustup and emscripten with the distro's native package manager.
Kong is pretty cool. Auth0 is pretty cool. They should work together. This guide details the fastest way to get your APIs protected using JWT tokens issued by Auth0.
Pre-requisites:
- Create a Auth0 account. Account name is referred to "COMPANYNAME" for the sake of the guide.
- Setup a Kong instance on your machine. This guide assumes a brand new blank instance.
- Install httpie - a http command line utility built for humans (unlike curl).
| // @flow | |
| export const serialResolve = (functionsReturningPromises: Array<() => Promise<any>>, parallelTasks: number) => new Promise((resolve, reject) => { | |
| let tasksStarted = 0; | |
| // Create empty results array | |
| const results = Array.from(functionsReturningPromises, () => null); | |
| const totalFunctions = functionsReturningPromises.length; | |
| // When a promise completes, set the correct results index and start any additional tasks | |
| let completedPromises = 0; |
| #!/bin/bash | |
| # | |
| # Shell scripts for get image manifest from v2 registry | |
| # | |
| # Tested on Debian 8, curl 7.38.0, jq-1.5 | |
| # | |
| set -e -u | |
| # Default tag is latest |