SILT#00172: The reason a second is 9192631770 hyperfine transitions of cesium-133 or why Avogadro's number is 6.02214076ร10^23 is that they were precisely measured for formalizing known units as close as possible. We chose backwards compatibility over round numbers
23.11.2025 07:19 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0
SILT#00171: Here's one way dentists make temporary crowns: first, an impression of the teeth before it is worked on; then the tooth is worked on; next, the mold of the impression is filled with acrylic and placed on the teeth for fit; once fitted, it's adjusted, cemented, and finally cleaned up
22.11.2025 07:48 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0
SILT#00170: In Excel (and other spreadsheets), the symbol `<>` means not equal. It's similar to putting the equal sign with either the greater than or less than sign, though different because this uses 'and', not 'or'. But it bugs me that they didn't go with `><`, which would be like a cross mark โ
21.11.2025 07:42 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0
SILT#00169: Both 'pyrex' and 'PYREX' are two licensed trademarks owned by the same company for a brand of cookware, but which operate in different regional segments. Which is quite interesting that you can sublicense a brand name by case differently between regions
20.11.2025 22:02 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0
SILT#00168: There are two points that may make `Promise.try` interesting to try out over `try...catch` in JS code: 1. both sync and async functions can be passed in, and it will be treated asynchronously; and 2. catching errors can be handled with one location rather than two (in the `.catch`)
19.11.2025 07:37 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0
SILT#00167: There's a weird edge case when using HTML popovers on a transparent window (like in Tauri), where a cutout appears of the popover if the transparent window is resized. To work around it, after a resize, hide the popover and resized again slight so it triggers the window to refresh state
18.11.2025 07:19 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0
SILT#00166: The continuum hypothesis supposes that โต_1 = 2 ^ โต_0, where the power-set of Aleph null yields Aleph one. If we use this construction inductively (start with Aleph null and take power-sets for the next number), this gives a new set of infinite cardinality numbers called the Beth numbers
17.11.2025 06:36 โ ๐ 1 ๐ 0 ๐ฌ 0 ๐ 0
Tags: Database schemas
Recently, on the del.icio.us mailinglist, I asked the question โDoes anyone know the database schema of del.icio.us?โ.ย I got a few private responses so I wanted to share the knowledge with the world.
...
SILT#00165: Consider how we might add a tagging system, a many-to-one connection. This article provides three ways to do within a database. Starts with one table holding all tags together, then two tables associating tags with key, and finally three tables, where data is associated with tagmap table
16.11.2025 06:54 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0
SILT#00163: I've listened to so many music and media analysis that any time I'm listening to music, even unfamiliar ones, I can imagine a whole scene where it would slot into. Now the fun part is when listening to mashups, which produces some wild combinations
15.11.2025 07:48 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0
SILT#00163: I always have to do a double take when scaling sprites in Unity using Pixels per Unit. One way to remember it is to think of it like an inverted zoom, larger number means smaller sprite (more pixels needed to take up one unit), while smaller number is larger sprite (fewer pixels needed)
14.11.2025 07:30 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0
SILT#00162: No matter how many times I see it, I am always surprised how big the nasal cavity is and how close it makes the brain to the nose. I keep thinking there is a nerve that closes the gap, but nope, there's just the olfactory bulb (which is directly part of the brain) hanging out in the nose
13.11.2025 07:12 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0
SILT#00161: One thing to watch out for when making a puzzle game is the Einstellung effect. Solving puzzles with complex answers makes it easier to keep reaching for complex answers when a simpler one may be possible. Unless you subvert this as part of the puzzle, make sure to have new people try it
12.11.2025 07:41 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0
SILT#00160: ANF (A-normal form) is an intermediate representation (like CSP or SSA), where in this programming style, at a high-level, enforces that every arg to a func be a simple values (halt on eval) and any non-trivial result of the call be bound to a var. Useful for manually defining each step
11.11.2025 07:26 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0
How many options fit into a boolean?
Funny notes on niche optimizations in Rust, and a few updates.
SILT#00159: How many nesting of options of booleans can fit within a byte in Rust. It's 254, due to how Rust can niche optimize: it knows that booleans can only be 0 or 1, so it can fill in the rest of the bit patterns with all the None variants. Now, if you nest this, be sure to have flatten handy
10.11.2025 07:04 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0
SILT#00158: I know Halloween has passed, but I stumbled across ghost and zombie marks as kinds of trademarks. Ghost marks are trademarks that shadow ordinary marks but aren't going to be used, while zombie marks are trademarks that were resurrected after being abandoned, often for name-recognition
09.11.2025 06:56 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0
SILT#00157: Today, I realized there's an another way to add async commands in Tauri by adding `(async)` after the command attribute. This lead me down Rust's proc macro system, where I found that attribute macros pass two token trees, one for attribute args, and the other for the item being modified
08.11.2025 06:24 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0
Workflow syntax for GitHub Actions - GitHub Docs
A workflow is a configurable automated process made up of one or more jobs. You must create a YAML file to define your workflow configuration.
SILT#00156: In GitHub Actions, we can use `workflow_dispatch` to manually trigger a workflow. Also, we can add `inputs` beneath it to allow easy customization of items passed to a workflow (like adding separate channels or selecting features). This can be helpful in augment the automatic workflows
07.11.2025 05:34 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0
SILT#00155: One thing to be mindful of is knowing which coordinate system values are operating in, especially if they have the same data types. Similar to the Mars Climate Orbiter error, having the wrong coordinates lead to wrong results. May be better to make a new type to prevent any confusion
06.11.2025 07:43 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0
Red Blob Games: Hexagonal Grids
Amit's guide to math, algorithms, and code for hexagonal grids
SILT#00154: I remember coming across this website once before, but now that I am working on a project using hexagonal grids, I rediscovered it, and I'll leave it here for others. It's a really good deep-dive on how hex grids works and how you can code them up: www.redblobgames.com/grids/hexago...
05.11.2025 07:02 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0
SILT#00153: Reading through grocery receipt had me go down a rabbit hole of looking at how food is taxed. Generally, for most states barring some exceptions, regular grocery items are exempt from sales tax, while any hot, prepared, or ready to eat foods are fully taxable
04.11.2025 06:33 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0
SILT#00152: Botulinum toxin is produced by the spores of C. botulinum. The spores themselves are heat-resistant, but the toxin itself denatures at a sustained 5 minutes of around 85ยฐC (185ยฐF), so foods may be recoverable by heating up to it (though it may be better not to risk it if it can be done)
03.11.2025 05:39 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0
SILT#00151: I dislike that "deadline mode" is unreasonably effective at getting me to put in the work. Even fake deadlines can't compete with the real thing. The only thing that really helps prevent overburdening it is making the smallest possible deadline that's manageable to get started with
02.11.2025 06:38 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0
SILT#00150: Lectio brevior potior and lectio difficilior potior are two Latin phrases that represent two possible ways of resolving discrepancies between texts, one where "shortest reading is stronger" and the other where "most difficult reading is stronger" respectively
01.11.2025 05:47 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0
SILT#00149: Consider the words uxorilocal and virilocality. They're fancy words for matrilocal and patrilocal, which might still feel fancy, but they mean which parents a married couple either lives near (wife's or husband's respectively). Neolocal is for living with neither, being away from both
30.10.2025 06:41 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0
THE STAG HUNT
cultivating cooperation to reap rewards
SILT#00148: There are more games to game theory than just prisoner's dilemma; one such is the stag hunt. It's very similar to the prisoner's dilemma, but with a payoff matrix that has two Nash equilibria (both co-op or both defect). This focuses on trust. Here's a cool post that illustrates this:
29.10.2025 04:42 โ ๐ 1 ๐ 0 ๐ฌ 0 ๐ 0
SILT#00147: Custom labelers are an amazing way to help provides some additional context to your Bluesky browsing by providing small labels to a post with some information. Consider subscribing to this one for helping annotate when AI images are used bsky.app/profile/aimo...
28.10.2025 05:40 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0
SILT#00146: Windows, by default, has a max path limit of 260 characters, which can be a pain if you have a dependency which has a dependency that needs to make a file, but fails to without a clear reason why. Two ways to fix it: update a Windows registry value, or move the project up to shorter path
27.10.2025 06:29 โ ๐ 1 ๐ 0 ๐ฌ 0 ๐ 0
To hear the sound, press the button below.
SILT#00145: Here is a website that visualize chord dissonance in a 3D plot. Might take some inspiration from this for embedding my own dynamic plot. Also had some fun creating some interesting sound like a weird train crossing bell. Link to the site: aatishb.com/dissonance/
25.10.2025 06:56 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0
SILT#00144: Know how to fork a dependency should it be needed, for it opens up the ability to make changes that work. Know how to integrate it, so it may serve as a new foundation for the work. Know how to contribute back, for that will help the original flourish and bring the work to others
23.10.2025 06:08 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0
SILT#00143: The more I dig into Tailwind, the more power it seems to be. Consider how `peer` works. It simplifies the sibling selector in CSS to apply styles based on items that occur before the current. If you want to differentiate multiple peers, use `peer/name` with the name you want to give it
21.10.2025 06:24 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0
๐ฎ indie tech artist
๐๏ธ I made Shader Forge & Shapes
๐ working on https://half-edge.xyz
๐ฅ shader sorceress
๐ math dork
๐ฅ rare YouTuber/streamer
๐ก ex-founder of @NeatCorp
my kids:
๐ฅช @toast.acegikmo.com
๐ฅ @salad.acegikmo.com
๐โโฌ @thor.acegikmo.com
Join a bleeding-heart liberal and compulsive speculator rambling about saving the world with win-win games at nonzerosum.games!
I contain multitudes, today I am a glowering yet rocking realistic poser with a warm love of chaos
Remaking consumer electronics to respect people and the planet. ๐ป๐ช
For support visit http://support.frame.work
Developer of sorts at @firefox.com. No thought goes unpublished. He/him.
#CSS ex-Google Chrome DevRel, CSSWG, co-host The CSS Podcast, host @ GUI Challenges, co-host Bad@CSS Podcast.
Creator of VisBug, open-props.style, gradient.style, transition.style & more
UI, UX, CSS, HTML, JS
https://nerdy.dev
๐ Tech Enthusiast | AI & Dev Tools ๐ ๏ธ
๐ฅ Sharing insights on Next.js, Payload, Supabase, Tailwind, AI, and serverless architecture.
๐บ Watch my tutorials & build with me: https://www.youtube.com/channel/UClxm1AYVvel_7Lhft3FPdhg
Software person. Building @deno.land. Creator of Fresh. tc39.es delegate.
he/him ๐ณ๏ธโ๐๐๐ป๐
lcas.dev
https://github.com/magurotuna
DevRel at @deno.land
Late-blooming choir boy.
Eater of foods.
https://philhawksworth.dev
he/him
design @deno.land ๐ฆ the #1 dinosaur themed javascript company
Software developer at Deno. Also working on ts-morph, dprint, and more (https://github.com/dsherret)
25. Software Engineer at Deno. Likes to ride bicycle around fields.
Dev Advocate // I make fun things for the web // More awks than Mordor // ๐Pickle ๐Puff // She/her ๐
Working at @deno.land, working on JSR, documentation generation, and web API stuff like WebGPU. I love animation & illustrations
I build simple and fast things. Part of Preact team.
Design engineer; writer; maker of https://quina.app and https://playhondo.com; frontend/CSS lover; semi-notorious React critic; dad (jokes|bod)?; lifelong Nintendo fan; pro-DEI, anti-fascism. Currently @ Deno; prev. Shopify. https://joshcollinsworth.com