Live data from Hacker News

Viewing profile — hknmtt

hknmtt

HN member
Joined
Mon, Sep 05, 2022, 2:05 PM UTC
HN karma
352
Public activity
301 items

About hknmtt

No profile information was provided.

Recent public activity

  1. comment
  2. comment
  3. comment
  4. comment
  5. comment
  6. comment
  7. comment
  8. comment
  9. comment
  10. comment
    Comment #39217854

    [flagged]

  11. comment
    Comment #39216657

    [flagged]

  12. story
    Ask HN: How was setting up EU VAT for you?

    If you have set up an EU VAT for your non-EU company, how was the process? I am in the EU and I am mainly interested about the process for outsiders, since I'd like to be able to e…

  13. comment
    Comment #39167590

    yes, ff does a ton of background connections. use wireshark to see what it is doing. i tried to block all that crap once but after a while i just gave up. it is still my primary br…

  14. comment
    Comment #39116114

    a) why not use switch { case len(a) b) do you know the usual length of the slices? if so, can't you autogenerate/manually write switch to manually do the math? how would that perfo…

  15. comment
    Comment #39003235

    Scrum/Agile is awesome! I always used the daily calls to ask as much dumb shit as possible to make the meetings as long as i could so i could keep charging my hourly rate without a…

  16. comment
    Comment #39003202

    No, i just remember a comment from some former MS dev who knew something about the testing process in MS. I think it might have even been a comment in here actually.

  17. comment
    Comment #39003156

    [flagged]

  18. comment
    Comment #39000710

    interesting. i was actually yesterday pondering whether youtube gave up on this since i have not had issues for months now. before i had to scrape all cache and logout. usually onc…

  19. comment
    Comment #39000692

    i remember reading years ago about the reason windows updates since 8 or 10 were so bad was because MS fired all testers and scrapped their testing hardware and now they are testin…

  20. story
    Ask HN: How to Count Content Views?

    Say I have a website that has articles, video and audio content. How should I determine how to count a content view? For text, is it a mere visit? What about multimedia, should the…

  21. comment
    Comment #38871446

    essentially that is how integrals are calculated in mathematics if i remember correctly. you take a curve and divide it into columns, the thinner the column the smaller the deviati…

  22. comment
    Comment #38867360

    say you load 1 million records and you average them at 5.1. you then load another million and average them at 4.5. so you 5.1+4.5=9.6/2=4.8. rinse and repeat. as long as you keep t…

  23. comment
    Comment #38865116

    actually i think you can also just average each chunk and then add it to existing data. like read N rows(say all have one location to keep it simple), average the data from the chu…

  24. comment
    Comment #38864743

    first search result for averaging streaming data: https://nestedsoftware.com/2018/03/20/calculating-a-moving-a... so you just walk the file and read a chunk, update the averages an…

  25. comment
    Comment #38851663

    >On a cache hit, SIEVE marks the object as visited. On a cache miss, SIEVE checks the object pointed to by the hand. If the object has been visited, its visited bit is reset, and t…