HN user

Reubensson

50 karma
Posts0
Comments26
View on HN
No posts found.

You are the person behind running the LLM bot, right? You opened the second PR to get the same code merged.

Maybe it is you who should a take a breather before direting your bot to attack against the opensource maintainer who was very reasonable to begin with. Use agents and ai to assist you but play by the rules that the project sets for AI usage.

Why xor eax, eax? 8 months ago

What do you mean that cpu does something different? Isnt cpu doing what is being asked, that being xor with consequence of zeroing when given two same values.

Yeah I suppose. Haven't seen rack of servers express grief when someone is mean to them. And I am quite sure that I would notice at that point. Comparing current LLMs/chatbots whatever to anything resembling a living creature is completely ridiculous.

I was only commenting about DNS part, self signed certificates come with their own lot of trouble. At least I havent ever run into any cache issues with local resolvers.

I have previously used https://github.com/jsha/minica which makes it at least easy to create a root certificate and matching server cert. How to get that root cert trusted on different array of devices is another story.

I would guess even most of time people using epsilon don't understand it. Its not like there is universal constant error with floating point numbers. I feel that saying just use epsilon is not much better than x == 0 and could be harder to find bugs if it sometimes works and othertimes does not.

Pi Day 2 years ago

A lot of people use. I think it is common at least in Europe but probably varies by country.

Considered "18+" 4 years ago

I thought these restrictions were set by UK goverment, not by individual operators.

Edit: I am not sure if age restriction check is responsibility of sites themselves or service providers according to UK law.

Isn't key derivation function completely separate from aes implementation. I mean you could have used the same broken key derivation with some other aes implementation.

Also aes-1024 sounds like some proprietary thingy, not something people should probably trust anyway...

I am sure that if you use a language/library for long enough, its bad design descisions aren't a huge problem to you.

Reading the docs of course helps, but it is still inconvenience and waste of time to check inconsistent parameter order and function naming from docs. I don't understand why people are so keen on defending these things.

array functions have the same parameter order and string functions have theirs

Except when they have different order :)

  array_filter(array $array, ?callable $callback = null, int $mode = 0): array
  array_map(?callable $callback, array $array, array ...$arrays): array