Viewing profile — pepoluan
pepoluan
HN member- Joined
- Mon, Nov 07, 2016, 6:36 PM UTC
- HN karma
- 65
- Public activity
- 121 items
- HN profile
- View on Hacker News ↗
About pepoluan
Recent public activity
-
comment
Comment #47345302
What's so bad about Python's virtualenv? It's a good way to have an LKGC (Last Known Good Configuration). When a CVE happens, you spin up a new venv and do smoke test, canary test,…
-
comment
Comment #47345232
You know, with all the babysitting needed, I wonder if effort is not better spent in just, you know, writing code. Can you actually quantify the time & effort 'saved' letting LLM g…
-
comment
Comment #46600649
True words. I'd say "the fastest" is a side effect of "allowing one to tune their systems to their utmost liking." -march=native, throw away unused bits and pieces, integrate modul…
-
comment
Comment #46600600
Gentoo is LFS but with the interdependence between packages mapped out for you (all hail the USE flags!) Or, alternatively, Arch with even more customization knobs to twiddle. I ha…
-
comment
Comment #46375426
Safe and living also doesn't match.
-
comment
Comment #46375410
Why, you want to buy a new printer? If you want inkjets, buy those with ink tanks. More expensive up front, but operating cost is so cheap. And no more "you have to replace a whole…
-
comment
Comment #46357557
Type hints are 100% optional, though. And to be honest when you start using it, even just for simple things such as function signature, with the proper IDE it helps you catch mista…
-
comment
Comment #46162196
So. Another regex problem?
-
comment
Comment #46075004
I am one of the maintainers of aiosmtpd [1], and the largest PR I ever made was migrating the library's tests from nosetest to pytest. Before doing that, though, I discussed with t…
-
comment
Comment #46074937
LLM will guiltlessly produce hallucinated 'review', because LLMs does NOT 'understand' what it is writing. LLMs will merely regurgitate a chain of words -- tokens -- that best matc…
-
comment
Comment #46074866
The statement preceding your quote is more telling: > as long as the code generation doesn’t use too much energy or cause unforeseen problems. A badly-written code can be a time bo…
-
comment
Comment #46074812
If the submitter is sloppy with things that are not complicated, how can one be sure of things that ARE complicated?
-
comment
Comment #46074759
"AI has a deep understanding" is very oxymoronic, especially if the "AI" being used was an LLM.
-
comment
Comment #45795409
Or maybe just don't use LLM. LLM is just a tool in the A.I. world. There are lots of other A.I. tools, such as Neural Network, Fuzzy Logic, Genetic Programming, and so on.
-
comment
Comment #45795370
Not ALL automation can be more efficient. Just ask Elon about his efforts to fully automate Tesla production. Same as A.I. Current LLM-based A.I.s are not at all as efficient as a …
-
comment
Comment #45795348
Can be mitigated to a degree by separating the (cheaper) sensors and the (pricier) logic. But then it will become a tradeoff of complexity vs longevity.
-
comment
Comment #45795343
What's "correct" for you might not be "correct" for others. Furthermore, your owb definition of "correct" changes depending on circumstances; sometimes you want it hotter, sometime…
-
comment
Comment #45795272
Or, maybe, just not use LLMs? LLM is just one model used in A.I. It's not a panacea. For generating deterministic output, probably a combination of Neural Networks and Genetic Prog…
-
comment
Comment #45795255
The situations you described reflects a System that has changed. And if the System has changed, then a change in output is to be expected. It's the same as having a function called…
-
comment
Comment #45795229
The issue with not having something deterministic is that when there's regression, you cannot surgically fix the regression. Because you can't know how "Plan A" got morphed into "M…
-
comment
Comment #45769761
I think some software -- FLOSS or otherwise -- tries to do this by hiding functionalities behind an "Advanced Mode" toggle. Which kind of fulfills the best of both worlds: Welcomin…
-
comment
Comment #45704282
I made some open source software myself and my desire is to see my code used as widely as possible. So the ONLY reasonable choice for me is to release my code with a non-viral lice…
-
comment
Comment #45704261
Some of us in the Enterprise and Governmental sector try hard to avoid software with viral licenses. We sigh in relief every time we see a software that we rely upon changes/adds n…
-
comment
Comment #45704215
And how many software are compiled with zero warnings? And how many C programmers ignore such warnings because they are confident they know better?
-
comment
Comment #45704199
But how many C programmers actually use that 'ability' to 'trivially' detect indentation errors? And how many C programmers just ignore the warning while thinking, "I have decades …