Live data from Hacker News

Viewing profile — tkot

tkot

HN member
Joined
Thu, Feb 25, 2021, 9:21 PM UTC
HN karma
69
Public activity
56 items

About tkot

No profile information was provided.

Recent public activity

  1. comment
    Comment #48069054

    > It's less pronounced with diacritics, but enter Unicode normal forms: you can represent š either as š, or s followed by a diacritic. When you want to compare two strings, you hav…

  2. comment
    Comment #48060698

    > it really is also a tool to best codify spoken language of the Slavs (in a sense, it is trivially provable that Cyrillic script is better adapted even to languages which do not u…

  3. comment
    Comment #44845241

    If a search engine (be it Ecosia, Qwant, DDG or Google) is used by someone who is running uBlock Origin, does it benefit the company running the engine or does the cost of queries …

  4. comment
    Comment #43479526

    > For example, the German "Ich sehe die Frau mit dem Fernglas" (I see the woman with the binoculars) is _unambiguous_ because "die Frau" and "mit dem Fernglas" match in both gender…

  5. comment
    Comment #39735015

    Are there any advantages to using the official Reddit app instead of something like RedReader? https://github.com/QuantumBadger/RedReader

  6. comment
    Comment #38362035

    The noun is not the issue but rather the scope of uniqueness: >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…

  7. comment
    Comment #38261692

    > Host: (always present, not always visible) Hostname can be skipped in file URI and localhost will be assumed, maybe that's what the author meant.

  8. comment
    Comment #38261674

    Does visiting pages A and B on day 1 and visiting page A on day 2 also make the sentence true? I think that's the source of ambiguity (or maybe it's ambiguous to me only because En…

  9. comment
    Comment #37943220

    Yup, it's also very useful for doing stuff like checking archive integrity after upload (got bitten by it once when uploading some archives via FTP) and syncing with cloud - I've h…

  10. comment
    Comment #37943157

    I specifically mentioned mounting ( https://rclone.org/commands/rclone_mount/ which may use some additional storage space depending on the caching configuration) whereas you seem t…

  11. comment
    Comment #37940428

    What is the advantage of using Spacedrive over mounting the network disk with rclone ( https://rclone.org/ ) and using any other file explorer?

  12. comment
    Comment #37612008

    Slightly off-topic but I can't resist the urge to ask. Why is the logo ( https://raw.githubusercontent.com/google/wuffs/main/doc/logo... ) no longer shown in the readme? I was pret…

  13. comment
    Comment #36765081

    >in your opinion what is the difference between a Republic and a Democracy? To keep things simple: democracy -> majority rule republic -> majority rule + no inheritance of public o…

  14. comment
    Comment #36746850

    Isn't it a matter of words changing meaning over time? Could it be that what James Madison called "democracy" corresponds to "direct democracy" in modern understanding and "republi…

  15. comment
    Comment #36522113

    Would adding the account to a mail client so that it logs into the account via IMAP on PC/phone startup help or does Yahoo require a login via the web interface?

  16. comment
    Comment #36432911

    What are the 'gotchas' that Java has but C does not?

  17. comment
    Comment #35776315

    I was responding to the person mentioning 100km/h as the correct answer (firstlink).

  18. comment
    Comment #35692742

    I think you are thinking about a case where someone goes 120km/h for 1 hour and then 80km/h for 1 hour instead of going over a fixed distance at 120km/h and then going over the sam…

  19. comment
    Comment #35690984

    Wouldn't UseCompressedOops flag alleviate the issue for smaller heaps?

  20. comment
    Comment #33538168

    I'd probably suggest --force-with-lease just to be sure ;)

  21. comment
    Comment #32659935

    It won't work in cases where the stories require images or interaction but for text-based stories I use curl | html2text | less Just to be sure ;)

  22. comment
    Comment #32563233

    Libraries written in SQL. I'm sure one can search for let's say a snippet that will create a date dimension table for a data warehouse and copy it but it's pretty clunky compared t…

  23. comment
    Comment #32562402

    I agree regarding SQL views - it's probably the most frequently used way of reusing SQL code. > And even across vastly different domains, even if not directly reusable, SQL queries…

  24. comment
    Comment #32562347

    >As much as SQL could be better, it's a very strong local optimum I mostly agree, though I think that SQL's popularity comes mostly from network effects. > Yeah and what's wrong wi…

  25. comment
    Comment #32561787

    It's true though. Relational algebra is a very nice abstraction but SQL as a language is subpar to say the least. SQL is really unergonomic, it's difficult to reuse SQL code which …