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
Ask HN: What did you find out or explore today?
91–100 of 446 posts
Re: Ask HN: What did you find out or explore today?
#92I’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?
#93I’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…
Re: Ask HN: What did you find out or explore today?
#94My 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…
Re: Ask HN: What did you find out or explore today?
#95The 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…
Re: Ask HN: What did you find out or explore today?
#96I need my Universal Basic Income now! Help.
Re: Ask HN: What did you find out or explore today?
#97My 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…
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?
#98I 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).
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?
#99Earlier 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…
Re: Ask HN: What did you find out or explore today?
#100Earlier 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…
Thanks for taking the effort to type out a history lesson though, hopefully someone will benefit from it.