Skip to content

Instantly share code, notes, and snippets.

@joepie91
joepie91 / es-modules-are-terrible-actually.md
Last active February 25, 2025 06:17
ES Modules are terrible, actually

ES Modules are terrible, actually

This post was adapted from an earlier Twitter thread.

It's incredible how many collective developer hours have been wasted on pushing through the turd that is ES Modules (often mistakenly called "ES6 Modules"). Causing a big ecosystem divide and massive tooling support issues, for... well, no reason, really. There are no actual advantages to it. At all.

It looks shiny and new and some libraries use it in their documentation without any explanation, so people assume that it's the new thing that must be used. And then I end up having to explain to them why, unlike CommonJS, it doesn't actually work everywhere yet, and may never do so. For example, you can't import ESM modules from a CommonJS file! (Update: I've released a module that works around this issue.)

And then there's Rollup, which apparently requires ESM to be u

@nathanielfernandes
nathanielfernandes / lisp-cps305-mac.md
Last active March 19, 2025 19:18
A basic tutorial on how to get started with lisp on OS X using vscode as your editor rather than slime or emacs.

Setting up lisp on Mac OS X

Note: this tutorial only outlines how to install and setup whats necessary to compile and run lisp on Mac OS X, it will not go over how to setup emacs or slime. Instead there will be instructions for how to get syntax highlighting on VsCode. If you don't have VsCode download and install it from here https://code.visualstudio.com/download

This tutorial is under the impression that you do not have Homebrew installed, if you do just skip the step.

1. Installation of Homebrew

Homebrew is a common installation tool on mac that will make the rest of this tutorial possible.

@Azmisov
Azmisov / set_vs_array.mjs
Last active March 29, 2025 09:43
Benchmark javascript Set vs Array performance for inserting elements
import fs from "node:fs";
import { fileURLToPath } from 'url'
const __filename = fileURLToPath(import.meta.url)
import { Worker, isMainThread, parentPort } from 'node:worker_threads';
import { performance } from "node:perf_hooks";
/** Output filename */
const output_fname = "./results.csv";
/** Use a wrapper around Set, to make the comparison more even for inlined array operations */
const COMPARE_INLINED = true;