Readit News logoReadit News
division_by_0 commented on An AI agent published a hit piece on me – more things have happened   theshamblog.com/an-ai-age... · Posted by u/scottshambaugh
morkalork · a month ago
Well, I can tell you I've been reading a lot more books now. Ones published before the 2020s, or if recent, written by authors who were well established before then.
division_by_0 · a month ago
Physical books are amazing technology.
division_by_0 commented on Show HN: HelixNotes – UpNote-inspired local-first Markdown notes in Rust   helixnotes.com... · Posted by u/ArkHost
ArkHost · a month ago
Thanks, good catch. Bumped the contrast on both already - it's live now.
division_by_0 · a month ago
Much better now. Glad I could help.
division_by_0 commented on Show HN: HelixNotes – UpNote-inspired local-first Markdown notes in Rust   helixnotes.com... · Posted by u/ArkHost
division_by_0 · a month ago
Looks good. I think the website could use higher contrast. Changing the values of --text-dim and --text-muted would help a lot.
division_by_0 commented on Ask HN: What are you working on? (February 2026)    · Posted by u/david927
tugboatt · a month ago
I have been working on a Monte Carlo financial planning / retirement scenario simulation with a TUI interface.

All written in rust. The simulation engine has been solid for a while and the TUI is finally starting to expose all of the options needed to really configure a complete simulation.

https://github.com/jgrazian/finplan

division_by_0 · a month ago
Nice looking TUI!
division_by_0 commented on Ask HN: What are you working on? (February 2026)    · Posted by u/david927
hilti · a month ago
I always wanted a minimalistic CSS framework for my projects, so I started to create my own: THINK

THINK is a modern CSS-first UI framework built on semantic HTML, custom elements, and data attributes. Uses :has(), container queries, and density scaling. No classes, no build step.

It‘s work in progress but I‘m pretty happy with the outcome so far, especially the data table component and automated Insights. I know it‘s not AI driven - but it works pretty okay for quick insights on the loaded data.

https://think.iotdata.systems/

division_by_0 · a month ago
Looks nice! Semantic HTML is such a relief if you've ever encountered a div hell.
division_by_0 commented on I am happier writing code by hand   abhinavomprakash.com/post... · Posted by u/lazyfolder
lazyfolder · a month ago
Definitely. And it’s hard to separate out whether the person is actually more productive or feels more productive.
division_by_0 · a month ago
Yes, this (higher perceived vs. lower actual productivity) was probably at least true for early 2025.

https://metr.org/blog/2025-07-10-early-2025-ai-experienced-o...

division_by_0 commented on Show HN: I saw this cool navigation reveal, so I made a simple HTML+CSS version   github.com/Momciloo/fun-w... · Posted by u/momciloo
swyx · a month ago
one thing i dislike about "good design" in general is that it usually takes away from information density and practical convenience in order to achieve "good design". this feels like a bad tradeoff. i wish that designers cared about making things more accessible and delightful rather than impressing fellow designers.
division_by_0 · a month ago
Agree. Info-dense designs are also more difficult to implement and many designers lack experience in this area. E.g., creating a coherent design system that uses borders instead of excessive padding to separate elements is much more difficult than it may seem.
division_by_0 commented on jQuery 4   blog.jquery.com/2026/01/1... · Posted by u/OuterVale
bossyTeacher · 2 months ago
React:

import { useState } from "react";

function Counter() { const [count, setCount] = useState(0);

  return (
    <button onClick={() => setCount(count + 1)}>
      Count: {count}
    </button>
  );
}

---------- Svelte:

<script> let count = 0; </script>

<button on:click={() => count += 1}> Count: {count} </button> --------------- React: function Editor({ initialText }) { const [text, setText] = useState(initialText);

  useEffect(() => {
    setText(initialText);
  }, [initialText]);

  return (
    <textarea
      value={text}
      onChange={e => setText(e.target.value)}
    />
  );
} --------------------- Svelte:

<script> export let initialText; let text = initialText;

  $: text = initialText;
</script>

<textarea bind:value={text} />

division_by_0 · 2 months ago
Seeing Svelte 3/4 code always warms my heart. The ergonomics of `$:` are amazing.
division_by_0 commented on Ask HN: What are you working on? (January 2026)    · Posted by u/david927
yakshaving_jgt · 2 months ago
Love the matrix UI with the minimap!
division_by_0 · 2 months ago
Thank you, I appreciate it! I'm also planning to add a graph visualization of the correlation matrix.
division_by_0 commented on Ask HN: What are you working on? (January 2026)    · Posted by u/david927
division_by_0 · 2 months ago
Thinking of new ways to visualize market data in 3D like this helical candlestick chart:

https://cybernetic.dev/helix

u/division_by_0

KarmaCake day65October 9, 2019View Original