HackerTrans
TopNewTrendsCommentsPastAskShowJobs

malkosta

no profile record

comments

malkosta
·12 дней назад·discuss
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 дней назад·discuss
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 дней назад·discuss
All I remember is that it's pretty clear written in the post...
malkosta
·26 дней назад·discuss
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
·в прошлом месяце·discuss
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
·в прошлом месяце·discuss
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
·в прошлом месяце·discuss
[dead]
malkosta
·4 месяца назад·discuss
What a master class in linear algebra…
malkosta
·4 месяца назад·discuss
Yes, it describes human nature better than psychology. We can’t fight even knowing about it.
malkosta
·4 месяца назад·discuss
How do you ensure security? Does it have a proper container? Otherwise, it's impossible to prevent leaking prod secrets.
malkosta
·4 месяца назад·discuss
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 месяца назад·discuss
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 месяцев назад·discuss
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 месяцев назад·discuss
You read my mind sir! Also, great work by OP, I really needed this since a long time!
malkosta
·8 месяцев назад·discuss
Beautiful! :clap:
malkosta
·9 месяцев назад·discuss
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 месяцев назад·discuss
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 месяцев назад·discuss
I do almost the same, with a simple bash script, and no JS junk: https://github.com/alexandremcosta/alexandremcosta.github.io...