Viewing profile — flgr
flgr
HN member- Joined
- Thu, Oct 13, 2011, 11:05 AM UTC
- HN karma
- 256
- Public activity
- 80 items
- HN profile
- View on Hacker News ↗
About flgr
No profile information was provided.
Recent public activity
-
comment
Comment #29410004
I really adore the demo scene vibes I'm getting from https://block.xyz/ . You can say what you want about megaholding corporate conglomerates, but this has so much more style than …
-
comment
Comment #24401267
If you have fond memories of Clonk give this a quick try: http://webclonk.flgr.me/ (WASD + Mouse) Sadly I never got around to implementing more of it though.
-
comment
Comment #23898084
Hm, unless I miscalculated the bit rate they use for the Simpsons demo is about equivalent to YouTube's 240p rendition (which uses 257 kbps; they use 250 kbps). Looking at https://…
-
comment
Comment #23120096
Having spent a lot of time working on making the backend compute this with very low latency, you wouldn't believe how happy finally seeing this become a reality on the actual site …
-
comment
Comment #21239539
Looks like the underlying logic came from this blog series, which made me originally buy that particular device: https://hackaday.io/project/5301-reverse-engineering-a-low-c... :)
-
comment
Comment #21239513
There's also software to read the measurements it makesover USB, but I haven't personally used that: https://github.com/huhamhire/co2-monitor-exporter
-
comment
Comment #21239504
This one has worked really well for me and friends who are also using it: https://www.amazon.de/TFA-Dostmann-AirCO2ntrol-CO2-Monitor-K...
-
comment
Comment #18098146
Notably, they previously had issues were "View as" allowed you to view notifications and messages of the user you were viewing as. If they'd done a proper post mortem and corrected…
-
comment
Comment #17364432
I'm impressed by how well http://webclonk.flgr.me/ runs in Firefox on my 5 years old MBP, even when zooming out quite a lot. This used to run much much better in Chrome than in Fir…
-
comment
Comment #17354838
There's some context missing here. AFAIK the author of the repositories was specifically doing micro-benchmarks here to inform the design of his https://github.com/cornelk/hashmap …
-
comment
Comment #16279712
Or phrased differently: There are different kinds of art. You might not like each and every single type of art, but they're still part of art.
-
comment
Comment #16279706
There are different categories for speedruns. This is any%. There's usually a "no major glitches" category, which shows more of the main game. In SMW this is called either 96 exits…
- comment
-
comment
Comment #16187332
I think that's not any more fair than a direct charge. Or am I missing something? From what I've heard well off families in Beijing will then just have multiple cars, one with an o…
-
comment
Comment #16082776
Another use case I had was embedding this into a graph heavy MediaWiki with convenient markup. That means the graphs are very easy to edit and will be updated after each edit with …
-
comment
Comment #15988322
I found TradingView to be very good. I.e. https://www.tradingview.com/chart/?symbol=BITSTAMP:BTCUSD They also have regular stock symbols.
-
comment
Comment #15817480
That image next to "Alexa helps you at your desk" is 17.5 MB as of now at at a resolution of 5720 x 3240. Pretty impressive to see an image loading line by line like back in the da…
-
comment
Comment #15817001
I was wondering if they might not be baiting Google into doing that. If they start removing content critical of them from Google Docs that's another big story.
-
comment
Comment #15464052
> Das ist nicht gute. Should be "Das ist nicht gut".
-
comment
Comment #15435782
I don't know; personally I feel like the scale here is much too low to be relevant. Also I think not investing the time to tune sort and dist keys makes the comparison meaningless.…
-
comment
Comment #14997170
This sounds super interesting; a bunch of questions: Did you just sent multiple images concatenated into the output stream, including file headers? And Mosaic would actually replac…
-
comment
Comment #14972353
> and a non-constant factor that varies between 1 and 6 is small Wouldn't the 6 in O(((n^1000)^n)^6) be a non-constant factor that makes a big difference in asymptotic performance …
-
comment
Comment #14972189
Sounds like the author did — http://www.lihaoyi.com/post/BenchmarkingScalaCollections.htm... Notably Vector index access takes 4,260,000 ns for a vector with 1,048,576 elements ins…
-
comment
Comment #14972171
This is why I've never liked stating that something has "run-time of O(log(n))" since that's rarely true — the assumption for that is that all machine instructions take pretty much…
-
comment
Comment #14795572
Expanded mode in psql is a way to output the results of a query if the output is too wide to fit in the screen when shown as a table. This can be toggled by \x on or \x off. [...] …