Flying Cars Have Arrived! eVTOL Panel: Archer, Joby, Wisk | All-In Summit 2024 - YouTube
Follow Adam (Archer): https://x.com/adamgoldstein13 Follow JoeBen (Joby): https://x.com/joeben Follow Brian (Wisk): https://x.com/BrianYutko
Flying Cars Have Arrived! eVTOL Panel: Archer, Joby, Wisk | All-In Summit 2024 - YouTube
Follow Adam (Archer): https://x.com/adamgoldstein13 Follow JoeBen (Joby): https://x.com/joeben Follow Brian (Wisk): https://x.com/BrianYutko
Replit – Build software faster
Replit is an AI-powered software development & deployment platform for building, sharing, and shipping software fast.
"I’ve had something I want to build for a while but was too busy to try and didn’t have any good programmers available to do. I asked Replit to do it. The experience was staggering. It was as though I were managing a group of smart engineers. For the first time I really didn’t have to look at the code. And what I think would normally have taken a week or more of concerted effort just a year ago was accomplished in an hour and exceeded my expectations. Most tellingly on every error I could describe easily what was incorrect and it promptly and correctly fixed all errors before moving on to the next task.Zooming in a Mandelbrot Fractal by a Ratio of 10^227 - YouTube
In mathematics, a fractal is a geometric shape containing detailed structure at arbitrarily small scales (infinite zoom-in)Amazon.com: The Singularity Is Nearer: When We Merge with AI eBook : Kurzweil, Ray: Kindle Store
"The noted inventor and futurist’s successor to his landmark book The Singularity Is Near explores how technology will transform the human race in the decades to comeThe exec()
function executes the specified Python code.
The exec()
function accepts large blocks of code, unlike the eval()
function which only accepts a single expression
x = 'name = "John"\n print("Hello, " + name)'
exec(x)
x = 'print("2+3=", 2+3)'
eval(x)
console.log(eval('2 + 2'));
// Expected output: 4