HackerTrans
TopNewTrendsCommentsPastAskShowJobs

TeddyDD

288 karmajoined 10년 전
artist / programmer software developer

comments

TeddyDD
·4일 전·discuss
Each to their own, I use both for different things, I like EveryDoor UI better for placing POIs.
TeddyDD
·4일 전·discuss
Great app. There is also https://every-door.app/ that gives you slightly different set of tasks and allows you to place POI easily. I recently mapped a lot of trash cans and benches around my neighborhood while walking with my dog.
TeddyDD
·2개월 전·discuss
Good thing then that the most popular version control system on the planet does not have silly, unprofessional name...
TeddyDD
·2개월 전·discuss
10x faster is probably underselling it given my experience with both. PyInfra is very fast.
TeddyDD
·2개월 전·discuss
Adding to sibling comments: I used to use Ansible professionally and PyInfra for homelab. Ansible is ridiculously slow.

The only issue was I had to implement some facts and operations myself that probably were available in some Ansible package but to be honest it was trivial.
TeddyDD
·2개월 전·discuss
It's normal text editor like VSCode or Sublime. It's fast. The out of the box experience is good (auto configured LSP, tree sitter etc.)
TeddyDD
·3개월 전·discuss
Good idea, sounds like the only sane way to use it.
TeddyDD
·3개월 전·discuss
Don't use Hugo. The maintainers are so detached from reality it's not even funny. The project is about 12 years old, has +80k stars on github and used in production by many. Despite that still no 1.0 version and they introduce breaking changes for no good reason. You website will break all the time. I made a mistake of creating few websites with it and now I have to rewrite them all in other SSG because I refuse to participate in this circus.
TeddyDD
·5개월 전·discuss
This seems to be insanely useful. Google search is so bad nowadays I often withed for some kind of history indexing. Good job!
TeddyDD
·7개월 전·discuss
Even better - train a model on MS source code leaks and use it to work on Wine fork or as you said - vibe coded MS office. This would be hilarious.
TeddyDD
·9개월 전·discuss
No REPL for example.
TeddyDD
·9개월 전·discuss
In what specific areas Phoenix Live View is so far ahead? Do you mind elaborating?

The unfortunate disadvantage of Live View is that you need to write Elixir. A lovely language, but it would be hard to sell in company that use only <SOME_LANGUAGE>. The hypermedia libraries like d* and htmx can be used with any backend.
TeddyDD
·9개월 전·discuss
OOB is annoying in HTMX because you need to include hx-swap-oob attribute in every component you want to swap this way. In Datastar you just use id.
TeddyDD
·3년 전·discuss
Take a look at IRCv3 specs: https://ircv3.net/irc/

Unfortunately, many of them are still a work in progress. Still, a fully featured IRCv3 client connected to a modern server should be usable by normies.
TeddyDD
·5년 전·discuss
How keyboard macro can possibly replace an editor that operates on text objects?

Let's say you have 'foo bar' string, and you want to change quotes to "

In Kakoune this operation could look like this:

    <a-a>'    # select string including quotes
    <a-S>     # select first and last character of previous selection
    r"        # replace selections with "
Trivial, 5 keystrokes and it works for any type of quotes (I can do for example <a-a>`). Notice that "replace quotes around the string" is not built-in operation in Kakoune.

Now how would you achieve that in non-modal editor that also doesn't have this operation built-in?