Android and Chrome need on-device AI capabilities. Google can't lock down those weights like it can with server-side ML. So it's easier to just release those models as open source and make it official, since someone…
How does this compare to Claude Managed Agents?
I had to double check that this wasn't an April Fools joke. The GitHub project has commits from 2 weeks ago, so it's not. Looking more closely though, this looks a lot like the Google "AI Cookie" from 2017, which also…
I looked around the repository, and it looks like it's just 3 regexes to strip whitespace or filler words: https://github.com/ARPAHLS/skillware/blob/main/skills/optimi...
Years ago, my college multi variable calculus and linear algebra courses were both taught primarily using course materials that were interactive Mathematica Notebooks. We had access to all of the symbolic algebra tools…
Not really new news: https://www.space.com/spacex-starshield-space-force-contract (Oct 2023)
For anyone else who was confused to see a paper use the same name as a commercial product, it looks like Google Gemini was announced in May, whereas this was submitted to SOSP that had an April submission deadline.
GPU performance per dollar is only competitive for specific workloads. For extremely large scale compute, getting enough data center GPUs can also be challenging.
What a convenient source of liquidity for the various drug cartels in El Salvador who need to launder their money.
For all the hate that Java tends to get, the language natively supports this distinction between: * Expected errors - Checked Exceptions * Unexpected errors - Unchecked Exceptions Idiomatic Java also makes heavy use of…
I think they should have let him publish the paper. We've seen time and again that various trends in ML turn out to have actually been dead-ends. A few examples: https://arxiv.org/abs/2102.06356…
Microservices is just OOP/dependency-injection, but with RPCs instead of function calls. The same criticisms for microservices (claims that it adds complexity, or too many pieces) are also seen for OOP. Curiously, while…
If you replace the word "bonus" with "promo", then you unfortunately get an eerily-accurate reflection of the state of FAANG companies.
The author titled one of the sections "Midpoint circle algorithm". There happens to be a Wikipedia page on "Midpoint circle algorithm": https://en.wikipedia.org/wiki/Midpoint_circle_algorithm The page claims,…
> unless you have some indication people are increasingly picking the competitor over you, or especially and more simply leaving you in favour of the competitor. If this happens, you've already lost. Software…
I'd bet someone just wanted to teach a course for fun and without compensation, but they had to formalize it and pose an actual job listing online for a month. Probably explains why the "Open date" & "Final date" are…
There's a 2016 CppCon talk here about making C++ Modules work at scale for Google's 100Mloc mono repo: https://www.youtube.com/watch?v=dHFNpBfemDI So, apparently it can work. I don't don't how much Google's internal…
If generalized to 2D (and over the unit sphere), you'd get Google's S2 library (https://s2geometry.io/). In 3D, the same can be done with morton codes (or a 3D hilbert curve) to build an implicit octree. Some raytracing…
I wouldn't be surprised if Google's TPU's pushed them far over the edge on this. I'd bet TPUs running inference for Ads models can basically print money for the company. They've also already been building their own…
CLion (and other IDEs) have pretty good vim plugins: IdeaVim, VsVim , Vrapper. They're not perfect, but I also made the switch from vim to CLion and never looked back. With a half-decent plugin for editing text, there's…
IOS 13 has a feature that can do something to that effect: https://arstechnica.com/gadgets/2019/07/facetime-feature-in-...
Dependency injection systems (like Dagger or Guice) are essentially programming languages that specifically model this kind of initialization-vs-runtime distinction. Dagger is actually implemented as a compiler…
> Which advice did/would have helped you landing your first job after university? Take a few advanced, specialized CS classes by your 3rd year. These often have large end-of-semester projects that can be fairly open…
Not that I'd assume malicious intent on a Hacker News post, but I'll just leave this here: https://en.wikipedia.org/wiki/Email-address_harvesting
You could Google for "t-shirt sleeve mask" and make your own. Etsy can also be quite fast.
Android and Chrome need on-device AI capabilities. Google can't lock down those weights like it can with server-side ML. So it's easier to just release those models as open source and make it official, since someone…
How does this compare to Claude Managed Agents?
I had to double check that this wasn't an April Fools joke. The GitHub project has commits from 2 weeks ago, so it's not. Looking more closely though, this looks a lot like the Google "AI Cookie" from 2017, which also…
I looked around the repository, and it looks like it's just 3 regexes to strip whitespace or filler words: https://github.com/ARPAHLS/skillware/blob/main/skills/optimi...
Years ago, my college multi variable calculus and linear algebra courses were both taught primarily using course materials that were interactive Mathematica Notebooks. We had access to all of the symbolic algebra tools…
Not really new news: https://www.space.com/spacex-starshield-space-force-contract (Oct 2023)
For anyone else who was confused to see a paper use the same name as a commercial product, it looks like Google Gemini was announced in May, whereas this was submitted to SOSP that had an April submission deadline.
GPU performance per dollar is only competitive for specific workloads. For extremely large scale compute, getting enough data center GPUs can also be challenging.
What a convenient source of liquidity for the various drug cartels in El Salvador who need to launder their money.
For all the hate that Java tends to get, the language natively supports this distinction between: * Expected errors - Checked Exceptions * Unexpected errors - Unchecked Exceptions Idiomatic Java also makes heavy use of…
I think they should have let him publish the paper. We've seen time and again that various trends in ML turn out to have actually been dead-ends. A few examples: https://arxiv.org/abs/2102.06356…
Microservices is just OOP/dependency-injection, but with RPCs instead of function calls. The same criticisms for microservices (claims that it adds complexity, or too many pieces) are also seen for OOP. Curiously, while…
If you replace the word "bonus" with "promo", then you unfortunately get an eerily-accurate reflection of the state of FAANG companies.
The author titled one of the sections "Midpoint circle algorithm". There happens to be a Wikipedia page on "Midpoint circle algorithm": https://en.wikipedia.org/wiki/Midpoint_circle_algorithm The page claims,…
> unless you have some indication people are increasingly picking the competitor over you, or especially and more simply leaving you in favour of the competitor. If this happens, you've already lost. Software…
I'd bet someone just wanted to teach a course for fun and without compensation, but they had to formalize it and pose an actual job listing online for a month. Probably explains why the "Open date" & "Final date" are…
There's a 2016 CppCon talk here about making C++ Modules work at scale for Google's 100Mloc mono repo: https://www.youtube.com/watch?v=dHFNpBfemDI So, apparently it can work. I don't don't how much Google's internal…
If generalized to 2D (and over the unit sphere), you'd get Google's S2 library (https://s2geometry.io/). In 3D, the same can be done with morton codes (or a 3D hilbert curve) to build an implicit octree. Some raytracing…
I wouldn't be surprised if Google's TPU's pushed them far over the edge on this. I'd bet TPUs running inference for Ads models can basically print money for the company. They've also already been building their own…
CLion (and other IDEs) have pretty good vim plugins: IdeaVim, VsVim , Vrapper. They're not perfect, but I also made the switch from vim to CLion and never looked back. With a half-decent plugin for editing text, there's…
IOS 13 has a feature that can do something to that effect: https://arstechnica.com/gadgets/2019/07/facetime-feature-in-...
Dependency injection systems (like Dagger or Guice) are essentially programming languages that specifically model this kind of initialization-vs-runtime distinction. Dagger is actually implemented as a compiler…
> Which advice did/would have helped you landing your first job after university? Take a few advanced, specialized CS classes by your 3rd year. These often have large end-of-semester projects that can be fairly open…
Not that I'd assume malicious intent on a Hacker News post, but I'll just leave this here: https://en.wikipedia.org/wiki/Email-address_harvesting
You could Google for "t-shirt sleeve mask" and make your own. Etsy can also be quite fast.