Readit News logoReadit News
foldl2022 commented on Meta Superintelligence Labs' first paper is about RAG   paddedinputs.substack.com... · Posted by u/skadamat
foldl2022 · 2 months ago
So, show me the model weights, please.
foldl2022 commented on Titania Programming Language   github.com/gingerBill/tit... · Posted by u/MaximilianEmel
Lerc · 3 months ago
Having done a fair degree of programming in Wirthwhile languages, I think the only main design decision that I think was a mistake was the variables at the top.

I'm not sure of the value of seeing all of the variables used listed in one place, it has certainly led to me encountering a identifier scrolling up to determine the type then scrolling back down. When the variable is only used on a few consecutive lines it's just adding work to read and adding work to create. I daresay I have written harder to read code than I intended because I didn't want to go up and declare another variable for short term use. The temptation to inline the expression is always there, because you know what all the parts mean when you write it. It's only when you come back later that you get the regret.

It's possible it could be mitigated by defining something like (not sure if this is a valid grammar)

    stmt_sequence = {decl_sequence}. stmt {";" stmt} [";"].
and bring in scoping on statement sequences. maybe call it stmt_block so that stmt_sequence can be a component that really is just a sequence of statements.

foldl2022 · 3 months ago
A nice side-effect of "variables at the top": you keep your functions short.
foldl2022 commented on Lazarus Release 4.0   forum.lazarus.freepascal.... · Posted by u/proxysna
foldl2022 · 7 months ago
Lazarus is still my favorite when developing desktop apps.

Language is not a problem. Pascal is just C/C++ in another favor. LCL/VCL is a wonderful library, everything just works like what I am expecting.

foldl2022 commented on Intel appoints Lip-Bu Tan as its CEO   reuters.com/technology/us... · Posted by u/yoyoyo1122
foldl2022 · 9 months ago
Tan looks like Pat. Amazing.
foldl2022 commented on Performance of LLMs on Advent of Code 2024   jerpint.io/blog/advent-of... · Posted by u/jerpint
upghost · a year ago
After looking at the charts I was like "Whoa, damn, that Jerpint model seems amazing. Where do I get that??" I spent some time trying to find it on Huggingface before I realized...
foldl2022 · a year ago
Just open-wights it. We need this. :)
foldl2022 commented on How I run LLMs locally   abishekmuthian.com/how-i-... · Posted by u/Abishek_Muthian
throwaway314155 · a year ago
Open WebUI sure does pull in a lot of dependencies... Do I really need all of langchain, pytorch, and plenty others for what is advertised as a _frontend_?

Does anyone know of a lighter/minimalist version?

foldl2022 · a year ago
Off the topic: I am also in favor of minimalist.

In the case of AlphaGeometry, I made AlphaGeometryRE to get rid of tensorflow/jax/flax, and 100+ Python packages.

foldl2022 commented on Show HN: AlphaGeometryRE AlphaGeometry Re-Engineered   github.com/foldl/AlphaGeo... · Posted by u/foldl2022
foldl2022 · a year ago
Author here. It took quite a lot of time and efforts to implement this old model. The situation is worsened by `meliad` framework. Glad to see that `meliad` is not active now.
foldl2022 commented on Ping Rate Clock   github.com/turingbirds/pi... · Posted by u/bookofjoe
foldl2022 · a year ago
Is one ESP32 enough?

u/foldl2022

KarmaCake day13October 11, 2022View Original