HackerTrans
トップ新着トレンドコメント過去質問紹介求人

TeddyDD

288 カルマ登録 10 年前
artist / programmer software developer

コメント

TeddyDD
·4 日前·議論
Each to their own, I use both for different things, I like EveryDoor UI better for placing POIs.
TeddyDD
·4 日前·議論
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 か月前·議論
Good thing then that the most popular version control system on the planet does not have silly, unprofessional name...
TeddyDD
·2 か月前·議論
10x faster is probably underselling it given my experience with both. PyInfra is very fast.
TeddyDD
·2 か月前·議論
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 か月前·議論
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 か月前·議論
Good idea, sounds like the only sane way to use it.
TeddyDD
·3 か月前·議論
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 か月前·議論
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 か月前·議論
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 か月前·議論
No REPL for example.
TeddyDD
·9 か月前·議論
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 か月前·議論
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 年前·議論
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 年前·議論
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?