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...