Skip to content

Instantly share code, notes, and snippets.

View guest271314's full-sized avatar
💭
Fix WontFix

guest271314

💭
Fix WontFix
View GitHub Profile
@guest271314
guest271314 / mod-hypocrisy-2.md
Created December 7, 2025 14:03
More mod hypocrisy on StackExchange

0

This post is hidden. It was deleted 10 hours ago by Bryan Krause♦. Depends on what your objective is.

Good deeds are not exempt from punishment.

Oppenheimer helped the U.S. develop "atomic" bombs. One of his colleagues decided to make a yet more destructive "hydrogen" bomb. After "winning" World War 2, the U.S. Government decided to militarily force the natives of Bikini Atoll to leave they home so the U.S. Goverment could blow the island up for sport.

Then former colleague and U.S. Government promptly through Oppenheimer under a caravan of buses because he was no longer useful to their cause and had developed some qualms about the use of such weapons of war.

@guest271314
guest271314 / mod-hypocrisy.md
Created November 27, 2025 17:26
StackExchange banned a quote by Noam Chomsky! But flying Ukrainian flag is ok...

Conversation with Super User moderators Super User Moderators's user avatar Super User Moderators Mod yesterday Hello,

We're writing in reference to your Super User account:

@guest271314
guest271314 / yowasp-clang-bundle.js
Created November 1, 2025 23:12
YoWASP clang bundled for browser usage
// import {runClang, runLLVM} from '@yowasp/clang'; export {runClang, runLLVM};
// bun build --target=browser --packages=bundle --outfile=yowasp-bundle.js hosted.js
var __create = Object.create;
var __getProtoOf = Object.getPrototypeOf;
var __defProp = Object.defineProperty;
var __getOwnPropNames = Object.getOwnPropertyNames;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __toESM = (mod, isNodeMode, target) => {
target = mod != null ? __create(__getProtoOf(mod)) : {};
const to = isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target;
@guest271314
guest271314 / bun-workspaces-if-present.md
Created October 22, 2025 04:20
Bun workspaces, if present...
$ git clone -b v1.x https://github.com/toyobayashi/emnapi
$ cd emnapi
$ bun install node-gyp
bun add v1.3.1-canary.91 (686998ed)

$ bun run build
$ bun run build --workspaces --if-present
$ bun run build --workspaces --if-present --workspaces --if-present
$ bun run build --workspaces --if-present --workspaces --if-present --workspaces --if-present
@guest271314
guest271314 / show-me-your-crashes.md
Created October 13, 2025 02:16
Show me your crashes, or crash...
@guest271314
guest271314 / packages.txt
Created September 20, 2025 20:52
dpkg --set-selections
a2jmidid install
abgate install
accountsservice install
acl install
acpi-support install
acpid install
adduser install
adwaita-icon-theme install
aeolus install
albatross-gtk-theme install
@guest271314
guest271314 / imitation.md
Created September 20, 2025 19:53
Imitation is the best form of flattery...
@guest271314
guest271314 / return-0.md
Created September 10, 2025 05:22
When all you need to do for "Node.js compatibility" is return 0...
@guest271314
guest271314 / deno-websocket-22-bytes.md
Created September 2, 2025 07:28
Why does Deno send 22 extra bytes when closing a WebSocket connection?

Why does Deno send 22 extra bytes when closing a WebSocket connection?

[136, 144, 234, 110, 246, 61, 249, 233, 178, 82, 132, 11, 214, 78, 158, 28, 147, 92, 135, 7, 152, 90]
[136, 144, 51, 194, 179, 223, 32, 69, 247, 176, 93, 167, 147, 172, 71, 176, 214, 190, 94, 171, 221, 184]
@guest271314
guest271314 / hex-from-array.md
Last active August 17, 2025 18:45
Hex from array

From discord, AssemblyScript channel

guest271314 Let's say you have a TypedArray such as var u = Uint8Array.of(49, 48, 48, 48) and you know those values in hexidecimal will produce an integer parseInt(new TextDecoder().decode(u), 16) // 4096. How can that 4096 be derived without converting to a string, using DataView or other methods to get the integer?

PhoenixIllusion case insensitive ascii-to-hex could be brute forced via:

function hexFromArray(a) {