HackerTrans
TopNewTrendsCommentsPastAskShowJobs

a57721

134 karmajoined 2 jaar geleden

comments

a57721
·5 dagen geleden·discuss
It seems like this project tries to replace various battle tested and widely adopted things like sdkman, serialization libs, build systems, HTTP servers and web frameworks. Even if there's something wrong with any existing solution in every category, your scope looks a bit too ambitious, even the biggest frameworks with many contributors don't dare to do and support all of that.
a57721
·7 dagen geleden·discuss
I don't know anything about the author, but they seem rather humble, not giving "do you know who I am" vibes at all, the writing is very humanizing, raises many good and relatable points. I enjoyed reading the whole text without being familiar with the author and context. I only wish them luck and happiness.
a57721
·13 dagen geleden·discuss
Most international broadcasters have left the shortwave band quite some time ago, unfortunately. I think it is still easy to find BBC, China Radio International, Romanian radio, Radio Havana Cuba, but the list is relatively short (compared to 20 years ago).

In the US, WRMI sells its air time to anyone at low prices. It's mostly religious stuff but there are some regular music shows too, I think.
a57721
·vorige maand·discuss
> quirky California college radio stations

I listen to SomaFM (https://somafm.com/) and FIP (https://www.radiofrance.fr/fip), they have online streams by genre. When something gets me interested, I look up the artist, and I keep discovering lots of new names, independent labels, etc.
a57721
·2 maanden geleden·discuss
Normally you don't want to format automatically generated code, you adjust the code generator instead.
a57721
·2 maanden geleden·discuss
The text on all pages looks very much LLM-generated, and I think all "user comments" there are fake too. (Edit: I mean "what people said" sections.)

I like the idea of the site, but not the execution.

It feels weird to read "nostalgic recollections" that pretend to be human, while in reality come from gen AI.
a57721
·3 maanden geleden·discuss
It is obviously AI-generated, lots of filler text that communicates nothing of substance. Disappointed to see this on the front page, what a waste of reader's time.
a57721
·3 maanden geleden·discuss
Usually when someone decides to share code with the world, they don't want to publish the actual development history. They publish the first version that is ready to go public as the first commit. With enough functionality etc.
a57721
·3 maanden geleden·discuss
Isn't it normal for the initial commit to be large?
a57721
·4 maanden geleden·discuss
I have a similar experience, I learned English much later than my first programming languages, and picking up some keywords and basic APIs was never an issue (it was BASIC and C/C++ at the time). Maybe I would occasionally look up in a dictionary what is 'needle' and 'haystack' in a code snippet, and I was puzzled by the ubiquitous "foo, bar, baz", which to my relief turned out to be equally cryptic for the native speakers. I still don't feel about code as a kind of English prose, it occupies a separate part of my brain, compared to the natural languages.
a57721
·4 maanden geleden·discuss
Scala and Kotlin have 'tailrec' annotation/modifier, though not as sophisticated as you describe.
a57721
·4 maanden geleden·discuss
You mention it was 8 years ago, at that point a typical Java dev would be already using Spring Boot for requests and deserializing JSON to POJOs (with Jackson under the hood).
a57721
·5 maanden geleden·discuss
I get your point, but the natural numbers do not form a ring or field.
a57721
·8 maanden geleden·discuss
It looks like a parody of LLM delusion, but the PR is oddly specific to be just trolling, and the author also submitted his work to HN: https://news.ycombinator.com/item?id=45982416
a57721
·8 maanden geleden·discuss
I am doing backend in Kotlin, but I must admit that Java has been catching up quickly, and it seems like Kotlin has been shifting its focus to Kotlin Multiplatform. Modern Java is a good, pleasant language and a safer bet.

Gradle with Kotlin DSL is nice, what's annoying is Gradle's constant API reshuffling for the sake of it that breaks plugins. Some plugins also introduce pointless breaking changes just to have a fancier DSL.

The IDE support is not an issue in practice, in my opinion, because IDEA is the best IDE for both Java and Kotlin. The official Kotlin LSP was released 6 months ago, but I haven't tried it.
a57721
·8 maanden geleden·discuss
A vector is always a vector -- an element of something that satisfies the axioms of a vector space. The author starts with the example of R^n, which is a very particular vector space that is finite-dimensional and comes with a "canonical" basis (0,...,1,...,0). In general, a basis will always exist for any vector space (using the axiom of choice), but there is no need to fix it, unless you do some calculations. The analogy with R^n is the only reason the "indices" are mentioned, and I think this only creates more confusion.

> and they aren’t irrational (i.e. they have a finite precision)

No, if you want only rational "indices", then your vector space has a countable basis. Interesting vector spaces in analysis are uncountably infinite dimensional. (And for this reason the usual notion of a basis is not very useful in this context.)
a57721
·8 maanden geleden·discuss
I had a similar experience. When I bought a device with faulty electronic components on Amazon, I wrote a negative review, and almost immediately I was notified that it had been flagged and removed for violating the "community guidelines". Apparently, a seller can do that. My review was a polite explanation of the issues, obviously not violating anything and not accusing the seller of anything, but now I'm sure they had refurbished units or a batch that was known to be faulty.
a57721
·9 maanden geleden·discuss
One factual thing that looks off is "the UK is imprisoning thousands for their tweets". I'm not in the UK and not following closely the situation there, but "thousands", really? Genuine doubt, would love to see some evidence.

Otherwise, the "doomer manifest" is OK, but the comically inflated ego of Durov is annoying, him thinking that such banal and commonplace sentiments are worth pushing as an alert message to all users, wrapping everything into announcing his birthday (that he doesn't want to celebrate, oh no).
a57721
·9 maanden geleden·discuss
It is used for things like "Foo x = new Foo()" where the type is obvious.
a57721
·9 maanden geleden·discuss
> humans decided they were "prime", i.e. most important, based on arbitrary considerations

No, not arbitrary considerations.

The term goes back at least to Euclid who investigated factorization of integers in his "Elements". He used the greek word "protos" that was later translated to Latin as "primus". It doesn't mean "most important", rather "first".

The idea is that primes are the "multiplicative building blocks" for other numbers, the "origin" or "first principles", because every integer factors into primes. When a mathematical object can be decomposed in some way, it is very natural to study the irreducible blocks, because many questions boil down to them.