HN user

la_fayette

436 karma

https://www.smartcompanion.app/

Posts6
Comments314
View on HN
Organic Maps 17 days ago

ok cool, i see there is already a similar project called wanderer, so i assume the difference would be in the planning module? thx

I started to work on an open source audioguide app as PWA or mobile app. This app can be used by museums or similar institutions https://github.com/smartcompanion-app/audioguide-app.

After my experience in consulting museums, I found that they spend a lot of money on software, which could potentially be replaced with open source software. Therefore I started an awesome list with FOSS software for museums: https://github.com/smartcompanion-app/awesome-open-source-mu....

How LLMs work 2 months ago

i am not sure acctually of the math is acctually that complicated/important. the math around neural networks is calculus/chain rule etc and for model comparison/validation one needs statistics. the required math for e.g. understand transformers is quite accessible.

Cloudflare Flagship 2 months ago

When reading your comment, it just reminds me on how feature flags can be misused as application configuration/customization. An antipattern i could observe at various organzations already.

For me feature flags go along with trunk based development to enable features in QA settings, but not on PROD yet, for PO/PM testing. Trunk based development allows for fast/easy devops, without complicated branching strategies.

Application configuration is, for me, part of the application and has the business context for customizing the application accordingly. Not sure if there are specific frameworks/tools out there. But one should clearly distinguish these two.

Microgpt 5 months ago

Yes, that’s true! That could be my next step… though I have to admit, writing this in a HN comment feels like a bit of a challenge.

Microgpt 5 months ago

This guy is so amazing! With his video and the code base I really have the feeling I understand gradient descent, back propagation, chain rule etc. Reading math only just confuses me, together with the code it makes it so clear! It feels like a lifetime achievement for me :-)

I don't get your point here. User targeted ads are the main business model of the internet? Yes, few days ago it was revealed how billions of user data points could be gathered from Meta [1], did anybody care, outside a small privacy community? So indead these things are not surprising... My thoughts don't go so far to consider the effects on society, idk, do you?

[1] https://www.heise.de/en/news/3-5-Billion-Accounts-Complete-W...

I use GenAI for text translation, text 2 voice and voice 2 text, there it is extremely useful. For coding I often have the feeling it is useless, but also sometimes it is useful, like most tools...

Although I didn't collect numbers, but I made a similar experience in my workplace. I assume many people are highly distracted by ads and work efficiency is even reduced. Even many software engineers seem to not be aware of ublock... Would be interesting to know how many students started using an ad blocker at the end of your lecture :)

Claude Sonnet 4.5 10 months ago

Since such a database should evolve continuously, I wouldn't see that as a problem. The important thing is, that each example is somehow verifiable, in the form of a unmodifiable test setup. So the LLM provides a solution, which is executed against the test to verify. Something like ACID3 Tests... But sure it can be gamed somehow in probably all setups...

Claude Sonnet 4.5 10 months ago

At this point it would be an interesting idea, to collect examples, in a form of a community database, were LLMs miserably fail. I have examples myself...

Claude Sonnet 4.5 10 months ago

I think HN might be one of the few communities where people have been running extensive experiments with LLMs since their inception. Most here take a realistic view of their capabilities. There are certainly proven use cases where LLMs provide clear productivity gains—for example, copying an error message and retrieving potential solutions. At the same time, many recognize that marketing fantasies, such as the idea of having a "PhD in your pocket," are far beyond what this technology can deliver.

When you argued that it saved you time by a factor of 10, have you even measured that properly? I initially also had the feeling that LLMs save me time, but in the end it didn't. I roughly compared my performance to past performance by the amount of stories done and LLMs made me slower even if I thought I am saving time...

From several month of deep work with LLMs I think they are amazing pattern matchers, but not problem solvers. They suggest a solution pattern based on their trained weights. This even could result in real solutions, e.g., when programming Tetris or so, but not when working on somewhat unique problems...