I believe hn users who claim to be from argentina or somewhere near, that's it.
If I see one such comment, it might still be misleading but If it is tens of such people, it would be legit enough to believe.
You can't measure inflation via comments, cause inflation is a basket. People can say they see no change in prices because they don't buy everything in the basket, or the opposite.
For example, inflation where I live is ~10% but eggs have doubled in price in one year. It's not that the statistics office lies, it's just considering more things, and e.g. public transport had 0% inflation.
My app is focused on providing a quick and easy way to share initial project concepts with others. The key is feedback gathering. I use LLM just to quickly provide project brief for user. But the key - feedback from audience you have.
It is funny how tutorials are always built on top of "hello world" or basic math functions where you don't see anything close to real world.
I mean, I would not expect to see production level code but at least it could be a sort of demonstration of it.
I really like Rob Pike's talk about Go Concurrency Patterns [1] because it uses Google Search as an example. Really helped in my early years of using Go to use goroutines and channels appropriately.
I think it's funny how some people always complain that simple educational examples are not representative of professional level code.
This is clearly intended for complete beginners. It's explaining what a variable is. More advanced stuff comes later. Not to mention teaching a programming language is not the same as teaching frameworks and libraries within that language. If you're going to show more advanced exanples you inevitably need frameworks and libraries, which use more advanced language features and techniques, which makes learning a nightmare because now you're trying to understand a library while also trying to understand the language. Huge difficulty multiplier.
The first step is to learn the programming language itself. For that you don't need advanced code examples, nor do you want them. You want simple examples that demonstrate whatever you're trying to demonstrate with as little distraction as possible.
I totally agree! I really liked https://lets-go.alexedwards.net which walked you through creating a web api with a database. When I did it, I decided to use SQLite instead of what was in the course, which meant I could follow along but still had to understand and choose the right dependency etc myself.
There's a general misalignment of incentives in educational writing. As an author you want the maximum audience, which is gotten with a mixture of banal content and a bit of FOMO. This is because there are more beginners in almost anything, than there are more advanced people. There's overall no real incentive to make these people to actually learn something, as that would remove them from the audience.
The amount of YouTube tech grifters support this claim. Any seriously skilled dev will barely have an audience but channels skimming the water grow to millions.
This is my same complaint about interviews. I’m never asked to write some fancy algorithm and then figure out how to take it from O(n^3) to O(n). I’m asked to figure out why we’re fetching the user’s email from the db 6 times in one http request.
However, consider LLM's and the way they actually work.
If I want it to create a unique LLM, is it intelligent enough to come up with one that it is not trained with?
Does it have enough understanding to compare all the other ones it is trained with and come up with a new one using some probabilistic randomness?
I would assume it could come up with one it isn't trained with, but a correct, much less novel, result would be due to random chance, not an intelligent awareness of what a sudoku is, and what sudokus already exist.
It might just as well copy half of a New York times sudoku, or make up entirely nonexistent words. As far as I know LLMs can't actually do the math necessary to generate a correct sudoku. It would just give you some "sudoku-like" text.
I'm not an expert on LLMs but based on what I do know, that's what would happen.