HackerTrans
TopNewTrendsCommentsPastAskShowJobs

realaleris149

no profile record

Submissions

Show HN: World Time TUI

github.com
1 points·by realaleris149·4개월 전·0 comments

New Research Reassesses the Value of Agents.md Files for AI Coding

infoq.com
1 points·by realaleris149·4개월 전·1 comments

comments

realaleris149
·21일 전·discuss
Take a look at a sufficiently old random internal repo which was not written with LLMs and compare.

My observation is that they are equally bad and hard to maintain or even more so than the new ones.

One thing I’ve noticed is that the LLM assisted ones have a lot more comments which is nice but take more time to read.
realaleris149
·3개월 전·discuss
The agents will read them
realaleris149
·5개월 전·discuss
From an agent perspective is very well documented but from a human perspective is not very clear - how you would use it?
realaleris149
·7개월 전·discuss
> When I say "thanks, that worked," that memory gets promoted. When I say "no, that's wrong," it gets demoted. … > No manual tagging.

I think this is also a kind of tagging.
realaleris149
·9개월 전·discuss
I always had problems understanding algorithms from such descriptions. Even from pseudocode I find it difficult to understand. What I usually do is search for an implementation, even in a language I am not familiar with is still better. When you have code you can run it, test it, debug it - not so much with descriptions and pseudocode.
realaleris149
·2년 전·discuss
Politics is the set of activities that are associated with making decisions in groups.

All the bad connotations we get from the word are because humans are humans. There is no better model that works in any kind of society/ organization/ group other than "politics".

Somebody "ethics" may not be the same as others. (Is it ethic to spend a lot of money and deliver something that does not fit the expectations of the ones that provided the money? It may be easy to make users happy - just give them free movies, etc.)
realaleris149
·2년 전·discuss
> Sometimes you are doing working everyone tells you is critical the day before they show you out the door.

I know this may appear so but the signs are there. We only want this to be true so we do not see it.

I've been in a similar situation where all we were seeing was high pressure to deliver something. This made it appear that is because the project is important. But the underlying reason was that if we didn't, the project would be dropped. Which they did.

A project may be critical but even more so is to be in a certain time frame and budget, otherwise the project doesn't have a reason to exist any more. But until that moment is still very important because, at the very least because there was a lot of investment into it.
realaleris149
·2년 전·discuss
If you are using IntelliJ (Ultimate), it also have very good support for SQL (syntax highlighting, autocomplete, etc.) and is Postgresql flavor aware.

https://www.jetbrains.com/help/idea/database-tool-window.htm...
realaleris149
·2년 전·discuss
There is a bit of tooling needed but is already around. For Java for example I had very good experience with a combination of flyway [1] for migrations, testcontainers [2] for making integration tests as easy as unit tests and querydsl [3] for a query and mapping layer.

[1] https://github.com/flyway/flyway

[2] https://java.testcontainers.org/modules/databases/postgres/

[3] https://github.com/querydsl/querydsl
realaleris149
·2년 전·discuss
> has a test suite with 100% branch coverage

Is actually even more than that, has 100% MC/DC coverage [1], which is something that is not easily achievable for most projects.

[1] https://www.sqlite.org/testing.html#:~:text=In%20this%20way%....