Live data from Hacker News

Ask HN: What did you find out or explore today?

news.ycombinator.com

91–100 of 446 posts

Re: Ask HN: What did you find out or explore today?

#91

Earlier quoted context omitted.

Are there AI enabled antennas by now?

I don't know about AI antennas, but smart antennas[1] are a things since more than 15 years. Basically they are array of antennas that can change via software the directivity (mainly used in radar systems) or increase/reduce power transmission and direction (this is used in 5G cell). 1 - https://en.wikipedia.org/wiki/Smart_antenna

There's also this, from long before the gen AI era: https://en.wikipedia.org/wiki/Evolved_antenna

Re: Ask HN: What did you find out or explore today?

#92
I got a handheld emulator console as a Christmas gift. Configuring shaders that emulate crt TVs, I realized I had no mental model of how those TVs worked at all.

I’m used to “pixels are three little lights combining rgb colors”, which doesn’t work here, so I went on a rabbit hole and let me tell you, analog TVs are extremely impressive tech.

Getting an electron beam to hit a glass, making the chemicals on it spark, covering it in a “reading motion” for hundreds of lines, and doing that 60 times a second! And the beam is oriented by just careful usage of magnets. It sounds super sci-fi for an already dead, 130 years old technology.

I also learned that my childhood was a lie. Turns out that the logic in consoles of the time was tied to the speed of the beam, which in turn used alternating current’s frequency as a clock. This means that since European current changes 50 times per second rather than 60, our games played in slowmo (about 0.8x). American sonic was so much faster! And the music was so much more upbeat!

Re: Ask HN: What did you find out or explore today?

#93

I’m learning about the “era of the nations” thinking from Hungary’s Balázs Orbán, via an episode of a podcast called the Winston Marshall show. YouTube just randomly suggested it to me. I just rebuild a speed queen dryer that broke with spare parts from Amazon, which revealed a remarkably simplistic engineering. Very surprised by how simplistic the mechanism was. It’s incredible how over engineered most laundry syste…

Be careful what you believe from Balázs Orbán, as a Hungarian I can say he is mostly concerned to come up with a ideology to explain whatever Viktor Orbán is doing and not building a consistent model of world politics that drives actions.

Re: Ask HN: What did you find out or explore today?

#94

My home office gets up to about 1500ppm of CO2 by the end of the workday, which explains a lot about why I often feel exhausted after the end of a long, uninterrupted session in there (especially when I’m on back to back zoom calls). I now have several plants in there that are supposed to be especially good at sucking up CO2, and my sensor reports that the current level is slightly below atmospheric ambient CO2 level…

Opening the window works well for me.

Re: Ask HN: What did you find out or explore today?

#95

The origins of Port and Starboard on ships. Chosen to be independent of a mariners orientation. Starboard - most sailors were right handed and the steering oar was placed on the right. Star = steer. Board = side of boat. Port - as steering oars got bigger, boats tended to dock on the left hand side. This became to be known as “lardboard” which sounded too much like starboard, so it was changed to “Port” (as in the si…

In French, there is babord and tribord. The mnemonic is ba-tri, or “battery”.

Re: Ask HN: What did you find out or explore today?

#97

My home office gets up to about 1500ppm of CO2 by the end of the workday, which explains a lot about why I often feel exhausted after the end of a long, uninterrupted session in there (especially when I’m on back to back zoom calls). I now have several plants in there that are supposed to be especially good at sucking up CO2, and my sensor reports that the current level is slightly below atmospheric ambient CO2 level…

Interesting, i would not expect this at all tbh.

I open the window.

Any chance you can share a picture of the size of your room and amount of plants and type of plants?

I have a co2 device which gets red and this triggers the window opening for me asap

Re: Ask HN: What did you find out or explore today?

#98

I am cleaning up some pointer arithmetic stuff for multi-dimensional C style arrays. I managed to replace the code with a std::inner_product minus a std::accumulate (to accomodate for the fact that the upper array bound is exclusive, ie one-past-the-end).

I once "fixed" a port of a program to Linux.

It was generating the wrong output — that is: not the same as on Windows.

My fix initialized a thitherto uninitialized array with the VisualC++(ca. 5.0) debug build default value.

Re: Ask HN: What did you find out or explore today?

#99

Earlier quoted context omitted.

Whats a good place to see parallel arrays defined. I have no data lake expetience. Know how relational db works.

I mean, Table1 = {"col1": [1,2,3]} Table2 = {"epiphany": [1,1,1]} for i, r in enumerate(Table1["col1"]): print(r, Table2["epiphany"][i]) He's really happy he found this (Edit: actually it seems like Chang She talked about this while discussing the Lance data format[1]@12:00 in 2024 at a conference calling it "the fourth way") and will represent this in a conference. [1] https://youtu.be/9O2pfXkCDmU?si=IheQl6rAiB852el…

Seriously, this is not what big data does today. Distributed query engines don't have the primitives to zip through two tables and treat them as column groups of the same wider logical table. There's a new kid on the block called LanceDB that has some of the same features but is aiming for different use-cases. My trick retrofits vertical partitioning into mainstream data lake stuff. It's generic and works on the tech stack my company uses but would also work on all the mainstream alternative stacks. Slightly slower on AWS. But anyway. I guess HN just wants to see an industrial track paper.

Re: Ask HN: What did you find out or explore today?

#100

Earlier quoted context omitted.

> lodash-es doesn’t ESM lodash/fp Most of my career has been JS and TS and I have no idea what this means.

I'm guessing you're only a few years into your web career, so I'll provide some background. lodash is a popular library that fills in many blanks that pre-2015 JavaScript had. It still provides value in modern JavaScript, but it's no longer as important as it used to be. JavaScript is actually based on a standard called ECMAScript. ActionScript shares this standard, as an example. In 2015, we got ECMAScript 5, which…

Nope, I'm about 15 years in and (unfortunately) deeply familiar with all of that. As someone else pointed out below, it was the use of ESM as a verb that threw me off.

Thanks for taking the effort to type out a history lesson though, hopefully someone will benefit from it.

Post reply on HN