Friday, August 22, 2025

AI bubble?

"AI is just another powerful tool/technology." Good!

 AI Bubble Pops, Zuck Freezes Hiring, Newsom’s 2028 Surge, Russia/Ukraine Endgame - YouTube
All-In Podcast - YouTube

including view from "AI Tzar" David Sacks 
Trump’s pick for AI czar signals support for science advisory panel | Science | AAAS


The Jobs AI Is Replacing the Fastest

Self-driving vehicle startup Nuro valued at $6 billion in late-stage funding round

In a first, Google has released data on how much energy an AI prompt uses | MIT Technology Review

In total, the median prompt—one that falls in the middle of the range of energy demand—consumes 0.24 watt-hours of electricity,

RxJS v7, v8

rxjs - npm  52M downloads/week!



RxJS - Introduction
Reactive Extensions Library for JavaScript

RxJS is a library for reactive programming using Observables, to make it easier to compose asynchronous or callback-based code.

Normally you register event listeners.
document.addEventListener('click', () => console.log('Clicked!'));

Using RxJS you create an observable instead.
import { fromEvent } from 'rxjs'; fromEvent(document, 'click').subscribe(() => console.log('Clicked!'));


RxJS is an open-source library for composing asynchronous and event-based programs. It provides powerful operators for transforming, filtering, combining, and managing streams of data, from user input and web requests to real-time updates.