Skip to content

Instantly share code, notes, and snippets.

@andigamesandmusic
andigamesandmusic / GoFastInEditor.md
Last active August 1, 2024 19:01
Multi-selection tutorial in common editors

Go fast in your editor!

Learning to move efficiently in your editor can drastically reduce time for edits and reduce errors.

Open this file in Sublime Text, IntelliJ, VSCode, Zed and run through the practice exercises!

Exercise 1: Move to end of line (Ctrl-E, IntelliJ: Command-RightArrow)

@andigamesandmusic
andigamesandmusic / CubaseMarkers.js
Last active April 26, 2022 00:30
Export Cubase or Nuendo sample-precise markers from .cpr/.npr project files to JSON
var fs = require('fs');
var path = require('path');
var debugEnabled = false;
function main(params)
{
var output = {
'Projects': [],
};