HackerTrans
TopNewTrendsCommentsPastAskShowJobs

malkosta

no profile record

comments

malkosta
·12 dni temu·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 dni temu·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 dni temu·discuss
All I remember is that it's pretty clear written in the post...
malkosta
·26 dni temu·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
·w zeszłym miesiącu·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
·w zeszłym miesiącu·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
·w zeszłym miesiącu·discuss
[dead]
malkosta
·4 miesiące temu·discuss
What a master class in linear algebra…
malkosta
·4 miesiące temu·discuss
Yes, it describes human nature better than psychology. We can’t fight even knowing about it.
malkosta
·4 miesiące temu·discuss
How do you ensure security? Does it have a proper container? Otherwise, it's impossible to prevent leaking prod secrets.
malkosta
·4 miesiące temu·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 miesiące temu·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 miesięcy temu·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 miesięcy temu·discuss
You read my mind sir! Also, great work by OP, I really needed this since a long time!
malkosta
·8 miesięcy temu·discuss
Beautiful! :clap:
malkosta
·9 miesięcy temu·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 miesięcy temu·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 miesięcy temu·discuss
I do almost the same, with a simple bash script, and no JS junk: https://github.com/alexandremcosta/alexandremcosta.github.io...