14 comments

  • R_D_Olivaw 5 hours ago ago

    A physical board that translates digitally.

    Imagine a whiteboard that has sticky notes, writing, little tokens and trinkets and the board also becomes a digital version that you can iterate on.

    I really like to plan with my hands and in MY memory, but still love the utikity of planning digitally of course.

  • markus_zhang a day ago ago

    One thing I want: something like a function call graph: you load some source code files, open a function in window A (windows A now shows Only this function with all functions calls and structs highlighted). Click on any function call then the callee shows up in a new window with proper highlighting. Click on a struct object it immediately shows the struct def in a panel stick to the bottom of the screen.

    Essentially, it’s like VSCode Peek definition but with a different visual style, and similar to the same functionality of source insight but free and in Linux.

    The purpose is to read xv6 source code. I have found some parts of the kernel, e.g. the file system to be convoluted, and I need to follow quite a few jumps to form the system mindset. Having such a small tool is very helpful.

    Actually it doesn’t look too hard to implement. Maybe I’ll write it myself in QT.

    • skydhash 5 hours ago ago

      Although it would be manual, that’s very doable in Emacs and Vim. It’s the very reason I use these editors as you can have a screen fulls of opened files instead of the tabbed model of common editors. One example having all the files you need to edit when you’re implementing a feature in a multilayered architecture. Easier that switching tabs again and again.

    • WilcoKruijer 11 hours ago ago

      I experimented with this idea a couple years ago, using the Language Server Protocol to make it some what universal. The output gets messy pretty quickly, maybe these days an LLM could be used to only show the interesting calls.

  • taurath 19 hours ago ago

    Planners. Something to help me make sense of what my priorities are during the day. Something to help me determine what needs my attention.

    I have a lot of systems, but I could really use a Jarvis at work right now and it seems like the whole damn promise of AI is to deliver that. I’m waiting.

    • R_D_Olivaw 5 hours ago ago

      There's something about having so many planners online/digital that sucks.

      I want to plan, but I don't want to be on the computer yet. But if I plan non-digitally, it's slower, I can't copy/paste, and then I don't really have good access to it unless I have it with me.

      But if I plan too much digitally, it's stored in digital memory, not my memory.

      I'm really struggling to find something to mitigate this. I wish I had a tactile miro board that also created the miro board online.

  • dhruv3006 8 hours ago ago

    Unbloated easy to use postman.

  • KomoD a day ago ago

    Temporary ssh containers, I just want to ssh (some id)@(container host), spin up a lxc container or firecracker microvm, it attaches to it.

    When I exit the ssh session, it terminates (or "pauses").

    I've wanted to make it for a while but never got around to it.

  • kubanczyk 5 hours ago ago

    An LLM tool that can sit on a CI pipeline to propose what tests should be blocking.

    Instead of brute-force method of selecting the appropriate test suites by path or similar, have LLM analyze changes and propose the set of test suites that is relevant to the change.

    If there are new complex tests added to the change, estimates how many times to run them to ensure they are not flaky to begin with (hundreds? or thousands?).