• 1 Post
  • 14 Comments
Joined 1 year ago
cake
Cake day: June 10th, 2023

help-circle
  • When I first started programming I used a text editor, UltraEdit32. When I moved into .Net, I initially used Ultraedit and wrote all my own build files, but switched to using Visual Studio with all the bells and whistles. When I moved to Python/Node I adopted Vim, and these days I tend to use Doom Emacs.

    There’s a spectrum from visual studio or eclipse, with complex project structures, through vscode and rider which are simpler, to programmers editors like Emacs or neovim, to plain editors like nano.

    I think the most important thing is that you’re comfortable with your tools. I could crunch out a lot of code with Visual Studio and Resharper, but I use Emacs as an IDE, note taking tool, and email client . The familiarity makes me productive.

    It is super helpful to have syntax errors or warnings highlighted when working on code, and a decent editor will make it easier to navigate code - jump to the definition of a function, find the documentation for an API call etc.

    As codebases get larger, you need all the help you can get. You may also find, when you work with others, that their opinionated tooling clashes with your opinionated hand crafting.








  • It’d be slow, though, like a lot of the darknet protocols, and would mean that whether or not your post is visible depends on which users you’re connected to. I think the usability problems would likely rule it out.

    P2P works great for filesharing because you’re reading small numbers of large things, so if each thing takes a minute or two to start, that’s fine. It would suck for reading the memes community on a social network cos you need to read many small things, and if they don’t load quickly the experience is ruined.


  • Ja, but you need an index for each thread, some kind of time partitioned thread index for each community, same for all.

    Then you need to query all comments or posts by user, so that’s another index, then you need some way of querying for hot, or controversial or what have you.

    It’s doable, but fiddly. Tempted to have a go though!