tkot | 7 months ago | on: Our European search index goes live
tkot's comments
tkot | 1 year ago | on: Deciphering language processing in the human brain through LLM representations
My German is pretty rusty, why exactly is it unambiguous?
I don't see how changing the noun would make a difference. "Ich sehe" followed by any of these: "den Mann mit dem Fernglas", "die Frau mit dem Fernglas", "das Mädchen mit dem Fernglas" sounds equally ambiguous to me.
tkot | 2 years ago | on: Ahead of IPO, Reddit blends advertising into user posts
tkot | 2 years ago | on: My favorite coding question to give candidates
>Now, given two log files (log file from day 1 and log file from day 2) we want to generate a list of ‘loyal customers’ that meet the criteria of: (a) they came on both days, and (b) they visited at least two unique pages.
It appears to me that the requirement could be interpreted as either:
"(visit on day 1) AND (visit on day 2) AND (total unique pages count > 2)"
a clearer way to put it would be "visited at least two unique pages in total"
or "(visit at least two unique pages on day 1) AND (visit at least two unique pages on day 2)"
a clearer way to put it would be "visited at least two unique pages on each day"
tkot | 2 years ago | on: URL Explained – The Fundamentals
Hostname can be skipped in file URI and localhost will be assumed, maybe that's what the author meant.
tkot | 2 years ago | on: My favorite coding question to give candidates
tkot | 2 years ago | on: Spacedrive: Unify files from all your devices and clouds into one explorer
tkot | 2 years ago | on: Spacedrive: Unify files from all your devices and clouds into one explorer
tkot | 2 years ago | on: Spacedrive: Unify files from all your devices and clouds into one explorer
tkot | 2 years ago | on: The WebP 0day
Why is the logo (https://raw.githubusercontent.com/google/wuffs/main/doc/logo...) no longer shown in the readme?
I was pretty sure I had heard of the project before but I had to find the logo to be absolutely certain, it's truly one of a kind.
tkot | 2 years ago | on: Full Text of the Federalist Papers
To keep things simple: democracy -> majority rule
republic -> majority rule + no inheritance of public offices (so no monarch)
Of course it can get more complicated than that - democracies can differ in terms of who can and cannot vote, freedom of press, how exactly the separation of powers is handled (or if the powers are separated at all), what method is used to distribute seats in the parliament, how much power is held by the president and how much is held by the prime minister etc.
By that definition US and UK are both (representative) democracies but of these two only the US is a republic and UK is a parliamentary ("constitutional" sounds pretty weird in this context given that there is no codified constitution) monarchy (while still being a democracy).
tkot | 2 years ago | on: Full Text of the Federalist Papers
If not, then what are the differences between republic described by Madison and representative democracy?
tkot | 2 years ago | on: Tell HN: Yahoo Mail deletes all emails due to inactivity
tkot | 2 years ago | on: Some were meant for C [pdf] (2017)
tkot | 2 years ago | on: Improbably Right
tkot | 2 years ago | on: Improbably Right
tkot | 2 years ago | on: Z Garbage Collector: The Next Generation
tkot | 3 years ago | on: Idiot Proof Git
tkot | 3 years ago | on: List of Creepypastas
curl <pasta url> | html2text | less
Just to be sure ;)
tkot | 3 years ago | on: Parsing SQL
I'm criticizing SQL as a language which is lacking in composability (as opposed to criticizing relational algebra or relational data model).
Libraries for working with SQL (full-fledged ORMs or simpler query builders) are themselves written in a different language so they don't necessarily prove anything about SQL itself, though one could argue that if people want to use them then they might not be satisfied with raw SQL.