There are 2 projects here. And there is a lot of missing details from both.
But what has happened before is that:
The government gives free/cheap/exclusive public land to someone to build apartments/villas. They sell these to whoever wants to buy before starting construction. At the end of construction, with the profits, they build nice hotels at the frontline and keep for themselves without investing any of their own money in anything.
So they will most likely build apartments in Narta, sell them to the populace, and keep Sazan for themselves as luxury resort.
Something worse than this has started happening for high rises too, where they start selling before getting the permit even. So they don't invest their own money even to get the initial permit to start building.
In NYC, Trump did something similar. He built condos, then sold them way above market to Russian oligarchs, who then immediately resold them at market value to people that were not laundering money.
They're leaving us in the dust on solar, while our current administration is still trying to put people in the ground to dig up more coal and die of black lung. https://en.wikipedia.org/wiki/Solar_power_in_China
as far as I've understood the AI mode on my new-ish washing machine: it's just a renamed "automatic" mode that uses a sensor to measure how heavy the load is and adjusts the cycle length. there is absolutely no AI involved, just an if-statement or equivalent logic gates. I'd guess yours does something similar
Washers now do have useful control systems. Mine starts out by spinning the tub a little, before adding water, to measure the load. Out of balance problems are a thing of the past - that's sensed and dealt with automatically. It's able to handle bed comforters or sneakers without problems. But it's not "AI", and it doesn't have a network connection.
I think in some people's minds, the concept of sentience and intelligence are intertwined, and there are at least some people (myself included) who do not think they're the same. There is a strong (but surprisingly not universal) consensus that LLMs are not sentient, so if you insist that sentience/intelligence are the same thing, then LLMs don't qualify as AI either. If you think the two concepts are separable, then they're intelligent but not sentient. The devil is of course in the definitions.
It was last Summer. I was at an AirBnB and the fire alarm system had a fault and kept beeping.
I took a picture of the panel and the AI was able to diagnose the issue and tell me how to temporarily disable the beeping sound.
I knew nothing about fire systems. I had the owner call a repair person the next day to resolve the issue.
Recently I was trying to find a matching stain for wood flooring in a house build in 1999. I uploaded a clear picture in bright sunlight and ChatGPT was able to search online and find a matching stain color. It presented me with ordering options and I got a quart delivered yesterday.
I have been working on my own variant of OpenClaw written in go. I got the voice mode wired up a few weeks ago and it just started having a conversation with me. My wife freaked out and was asking who was talking to me.
My use-cases for server-side WASM Python are described here: https://simonwillison.net/2026/Jun/6/micropython-in-a-sandbo... - basically I want to offer end-user customization features that run custom code without buggy or malicious code crashing my app or leaking their data.
Running arbitrary untrusted code safely is pretty easy nowadays, so long as the code is written in Javascript and you want to run it in a browser. It's only a little harder if the code is written in another language but targets WASM and browser APIs, or if you want to run your WASM inside of NodeJS, and there's even good support for running Python in a browser or Node.
Once you get away from running in a JS environment or away from code that's written with the intention of running in a WASM sandbox, if you don't want to have to modify the code for your environment then you're going to start having problems. This looks like a good step for anyone wanting to run arbitrary Python outside of a browser environment.
Fair -- but I was more meaning that when I browse an arbitrary untrusted website I almost always allow the site owner to run arbitrary untrusted code on my machine. They might not send me any JS, but if they do then my browser will happily execute it.
reply