Some notes on comparing/contrasting/diffing audio files.
You also might wanna just use Whisky which does this automatically
This guide works on macOS 13.4+ using Command Line Tools for XCode 15 Beta!
In the recent WWDC, Apple announced and released the "game porting toolkit", which upon further inspection this is just a modified version of CrossOver's fork of wine which is a "compatibility layer" that allows you to run Windows applications on macOS and Linux.
| /* | |
| Usage: you'll want to search for the strings <bucket> and <prefix>, and insert the S3 bucket where your access | |
| logs are being delivered. Use (or delete) <prefix> to filter to a subset of your logs. | |
| */ | |
| /* | |
| These commented out configuration settings you can either run yourself in the REPL and source this file using | |
| `.read parse_s3_access_logs.sql`, or you can uncomment them and supply values for yourself. |
| // We support the GET, POST, HEAD, and OPTIONS methods from any origin, | |
| // and allow any header on requests. These headers must be present | |
| // on all responses to all CORS preflight requests. In practice, this means | |
| // all responses to OPTIONS requests. | |
| const corsHeaders = { | |
| "Access-Control-Allow-Origin": "*", | |
| "Access-Control-Allow-Methods": "GET,HEAD,POST,OPTIONS", | |
| "Access-Control-Max-Age": "86400", | |
| } |
It's come to my attention that some people have been spamming issue trackers with a link to this gist. While it's a good idea to inform people of the situation in principle, please do not do this. By all means spread the word in the communities that you are a part of, after verifying that they are not aware yet, but unsolicited spam is not helpful. It will just frustrate people.
A number of things have happened since the last update.
| /******************************************************************************************* | |
| * | |
| * raylib [core] example - Third Person Orbit Camera Example | |
| * | |
| * Welcome to raylib! | |
| * | |
| * To test examples, just press F6 and execute raylib_compile_execute script | |
| * Note that compiled executable is placed in the same folder as .c file | |
| * | |
| * You can find all basic examples on C:\raylib\raylib\examples folder or |
The package that linked you here is now pure ESM. It cannot be require()'d from CommonJS.
This means you have the following choices:
- Use ESM yourself. (preferred)
Useimport foo from 'foo'instead ofconst foo = require('foo')to import the package. You also need to put"type": "module"in your package.json and more. Follow the below guide. - If the package is used in an async context, you could use
await import(…)from CommonJS instead ofrequire(…). - Stay on the existing version of the package until you can move to ESM.
Most important
| Shortcut | Operation |
|---|---|
| s-space | pen toolbar menu |
| hold shift | while drawing, straigh line assist |
| w | pen context menu |
| n | properties panel |
| u | active material drop down |


