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

malkosta

no profile record

コメント

malkosta
·12 日前·議論
yes true, but I already have it on all my machines, for diverse reasons...it wouldn't be hard to implement a markdown support, but it would be worse to maintain that
malkosta
·14 日前·議論
mine is:

find . -name '*.md' -type f -exec sh -c '

  for file do  
    out="docs/${file#./}"  
    out="${out%.md}.html"
    mkdir -p "$(dirname "$out")"  
    pandoc --quiet --template template.html "$file" -o "$out"  
  done  
' sh {} +
malkosta
·26 日前·議論
All I remember is that it's pretty clear written in the post...
malkosta
·26 日前·議論
The problem with QWEN is that it just can't edit files reliably, I had to hack Pi all over to reduce the pain, but still far from perfect...does Gemma 4 strugle on this?
malkosta
·先月·議論
That was exactly my same question. Then I finished reading the post. The reason is pretty clear, and written in the post: it is faster than ollama+mlx.
malkosta
·先月·議論
What about just getting work done because you like to code, and not giving a damn about what others think because we will get rich anyways…I wonder why people are always trying to win instead of just having fun.
malkosta
·先月·議論
[dead]
malkosta
·4 か月前·議論
What a master class in linear algebra…
malkosta
·4 か月前·議論
Yes, it describes human nature better than psychology. We can’t fight even knowing about it.
malkosta
·4 か月前·議論
How do you ensure security? Does it have a proper container? Otherwise, it's impossible to prevent leaking prod secrets.
malkosta
·4 か月前·議論
How do you intend to conquer the preemptive scheduler? System-wide fairness and preventing starvation are essencial steps for this to work well.
malkosta
·4 か月前·議論
It’s crazy how pretty much every tool people post to support AI systems is already in Erlang/OTP or in elixir standard libraries.
malkosta
·5 か月前·議論
Elixir + Postgres is the microservices killer...last time I saw VP try to convince a company with this stack to go microservices he was out in less than 6mo
malkosta
·6 か月前·議論
You read my mind sir! Also, great work by OP, I really needed this since a long time!
malkosta
·8 か月前·議論
Beautiful! :clap:
malkosta
·9 か月前·議論
Rectangle+Apptivate made me stop looking for an i3 alternative, after years. The first for moving windows, the second for switching between them with super+number, just like i3.
malkosta
·10 か月前·議論
I fight against this by using it mostly on trivial tasks, which require no comprehension at all, also fixing docs and extending tests. It helps me to focus on what I love, and let the boring stuff automated.

For complex tasks, I use it just to help me plan or build a draft (and hacky) pull request, to explore options. Then I rewrite it myself, again leaving the best part to myself.

LLMs made writing code even more fun than it was before, to me. I guess the outcomes only depends on the user. At this point, it's clear that all my peers that can't have fun with it are using it as they use ChatGPT, just throwing a prompt, hoping for the best, and then getting frustrated.
malkosta
·10 か月前·議論
I do almost the same, with a simple bash script, and no JS junk: https://github.com/alexandremcosta/alexandremcosta.github.io...