Viewing profile — hknmtt
hknmtt
HN member- Joined
- Mon, Sep 05, 2022, 2:05 PM UTC
- HN karma
- 352
- Public activity
- 301 items
- HN profile
- View on Hacker News ↗
About hknmtt
No profile information was provided.
Recent public activity
-
comment
Comment #39407592
[dead]
-
comment
Comment #39407578
[dead]
-
comment
Comment #39334853
[dead]
-
comment
Comment #39333458
[dead]
-
comment
Comment #39333450
[dead]
-
comment
Comment #39325818
[dead]
-
comment
Comment #39325771
[dead]
-
comment
Comment #39318921
[dead]
-
comment
Comment #39312262
[dead]
-
comment
Comment #39217854
[flagged]
-
comment
Comment #39216657
[flagged]
-
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…
-
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…
-
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…
-
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…
-
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.
-
comment
Comment #39003156
[flagged]
-
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…
-
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…
-
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…
-
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…
-
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…
-
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…
-
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…
-
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…