Chemical element with atomic number 24
POPULARITY
Categories
Send us a textKevin and Erin talk to Alon Aviram of Gecko Project on his collaborative investigative reporting regarding Chromium-6 exposure in waters of Obi Island as a result of Harita's nickel expansion. Also, PM Albanese visits Indonesia a day after his second inauguration.Read Gecko Project's investigation here: https://thegeckoproject.org/articles/clean-cars-poisoned-water/For a free trial of Reformasi newsletter, go to reformasi.infoRead Erin's newsletter Dari Mulut Ke Mulut here: https://darimulut.beehiiv.com/It takes a lot of money to run a podcast. You need subscription fees for hosting, audio recording services, editor's salary and music licensing. Luckily, you, estemeed listeners of Reformasi Dispatch podcast can help us.You can donate to us on buymeacoffee.com/reformasi and help us grow!
Welcome back to our weekend Cabral HouseCall shows! This is where we answer our community's wellness, weight loss, and anti-aging questions to help people get back on track! Check out today's questions: Felicia: Hello Dr. Cabral. What are your thoughts on this magnesium supplement ? Magnesium bisglycinate, fillers (microcrystalline cellulose, dicalcium phosphate), anti-caking agents (silicon dioxide, magnesium stearate), coating agents (hydroxypropyl methylcellulose, glycerol). Worth taken or should I look for another one? Thanks for your help Audrey: Hi Dr. Cabral, Thank you for being my go to person for all of my health questions! What are your thoughts on taking creatine while pregnant? I am going to keep strength training throughout my pregnancy and am hoping this helps with maintaining some muscle. I've read great things about it helping mom and baby but want to know what you think. I know you cannot give medical advice. Thanks Elsa: Hi Dr. Cabral! Thanks for all the information you provide. I'm a fairly recent listener but already have learned so much from you. May God continue to bless you, your family, and your team. My question is regarding my husband. He did a genetic test and came out positive for the MTHFR heterozygous A1298C and COMT heterozygous G472A (Val108/158Met). I've listened to your recent podcasts on COMT, but my question is regarding supplements to avoid if you have this variant. He doesn't take any medications, and already takes methylated B complex to support MTHFR and high homocysteine levels (8.3). He also takes Vit C, Zinc+Copper, Mag, Vit D+K2, Omega 3s, Probiotics. The test results indicate to avoid Quercetin and Green Tea because they are COMT inhibitors? True? Thanks. Bettina: Hello Dr. Cabral. What are your thought on Super CitriMax for weightloss using a combination of 4500 mg Garcinia Cambogia with 60% HCA with 600 mg of Chromium and 1000 mg of B3 Niacinamide or B3 Nicotinamide? Thanks for your thoughts on this. Hannah: Hi Dr Cabral! I wrote in when you said the que was closer to 2-3 weeks and I haven't heard my question yet so this is incase my question got lost- myself and a couple of people I've met recently get an elevated heart rate when drinking alcohol (even 1 drink). This has never happened to me before and I'm very well hydrating prior, what else besides histamines could this be? Second, I have a very scant amount of blood per rectum every couple of days since starting the CBO, have you heard of this happening? I'm thinking to d/c citricidal early, I didn't test prior to CBO and only have 3 days left of that to see if it's related. Thanks for everything!! Thank you for tuning into today's Cabral HouseCall and be sure to check back tomorrow where we answer more of our community's questions! - - - Show Notes and Resources: StephenCabral.com/3389 - - - Get a FREE Copy of Dr. Cabral's Book: The Rain Barrel Effect - - - Join the Community & Get Your Questions Answered: CabralSupportGroup.com - - - Dr. Cabral's Most Popular At-Home Lab Tests: > Complete Minerals & Metals Test (Test for mineral imbalances & heavy metal toxicity) - - - > Complete Candida, Metabolic & Vitamins Test (Test for 75 biomarkers including yeast & bacterial gut overgrowth, as well as vitamin levels) - - - > Complete Stress, Mood & Metabolism Test (Discover your complete thyroid, adrenal, hormone, vitamin D & insulin levels) - - - > Complete Food Sensitivity Test (Find out your hidden food sensitivities) - - - > Complete Omega-3 & Inflammation Test (Discover your levels of inflammation related to your omega-6 to omega-3 levels) - - - Get Your Question Answered On An Upcoming HouseCall: StephenCabral.com/askcabral - - - Would You Take 30 Seconds To Rate & Review The Cabral Concept? The best way to help me spread our mission of true natural health is to pass on the good word, and I read and appreciate every review!
This show has been flagged as Clean by the host. Standard UNIX password manager Password management is one of those computing problems you probably don't think about often, because modern computing usually has an obvious default solution built-in. A website prompts you for a password, and your browser auto-fills it in for you. Problem solved. However, not all browsers make it very easy to get to your passwords store, which makes it complex to migrate passwords to a new system without also migrating the rest of your user profile, or to share certain passwords between different users. There are several good open source options that offer alternatives to the obvious defaults, but as a user of Linux and UNIX, I love a minimal and stable solution when one is available. The pass command is a password manager that uses GPG encryption to keep your passwords safe, and it features several system integrations so you can use it seamlessly with your web browser of choice. Install pass The pass command is provided by the PasswordStore project. You can install it from your software repository or ports collection. For example, on Fedora: $ sudo dnf install pass On Debian and similar: $ sudo apt install pass Because the word pass is common, the name of the package may vary, depending on your distribution and operating system. For example, pass is available on Slackware and FreeBSD as password-store. The pass command is open source, so the source code is available at git.zx2c4.com/password-store. Create a GPG key First, you must have a GPG key to use for encryption. You can use a key you already have, or create a new one just for your password store. To create a GPG key, use the gpg command along with the --gen-key option (if you already have a key you want to use for your password store, you can skip this step): $ gpg --gen-key Answer the prompts to generate a key. When prompted to provide values for Real name, Email, and Comment, you must provide a response for each one, even though GPG allows you to leave them empty. In my experience, pass fails to initialize when one of those values is empty. For example, here are my responses for purposes of this article: Real name: Tux Email: tux@example.com Comment: My first key This information is combined, in a different order, to create a unique GPG ID. You can see your GPG key ID at any time: $ gpg --list-secret-keys | grep uid uid: Tux (My first key) tux@example.com Other than that, it's safe to accept the default and recommended options for each prompt. In the end, you have a GPG key to serve as the master key for your password store. You must keep this key safe. Back it up, keep a copy of your GPG keyring on a secure device. Should you lose this key, you lose access to your password store. Initialize a password store Next, you must initialize a password store on your system. When you do, you create a hidden directory where your passwords are stored, and you define which GPG key to use to encrypt passwords. To initialize a password store, use the pass init command along with your unique GPG key ID. Using my example key: $ pass init "Tux (My first key) " You can define more than one GPG key to use with your password store, should you intend to share passwords with another user or on another system using a different GPG key. Add and edit passwords To add a password to your password store, use the pass insert command followed by the URL (or any string) you want pass to keep. $ pass insert example.org Enter the password at the prompt, and then again to confirm. Most websites require more than just a password, and so pass can manage additional data, like username, email, and any other field. To add extra data to a password file, use pass edit followed by the URL or string you saved the password as: $ pass edit example.org The first line of a password file must be the password itself. After that first line, however, you can add any additional data you want, in the format of the field name followed by a colon and then the value. For example, to save tux as the value of the username field on a website: myFakePassword123 username: tux Some websites use an email address instead of a username: myFakePassword123 email: tux@example.com A password file can contain any data you want, so you can also add important notes or one-time recovery codes, and anything else you might find useful: myFake;_;Password123 email: tux@example.com recovery email: tux@example.org recovery code: 03a5-1992-ee12-238c note: This is your personal account, use company SSO at work List passwords To see all passwords in your password store: $ pass list Password Store ├── example.com ├── example.org You can also search your password store: $ pass find bandcamp Search Terms: bandcamp └── www.bandcamp.com Integrating your password store Your password store is perfectly usable from a terminal, but that's not the only way to use it. Using extensions, you can use pass as your web browser's password manager. There are several different applications that provide a bridge between pass and your browser. Most are listed in the CompatibleClients section of passwordstore.org. I use PassFF, which provides a Firefox extension. For browsers based on Chromium, you can use Browserpass with the Browserpass extension. In both cases, the browser extension requires a "host application", or a background bridge service to allow your browser to access the encrypted data in your password store. For PassFF, download the install script: $ wget https://codeberg.org/PassFF/passff-host/releases/download/latest/install_host_app.sh Review the script to confirm that it's just installing the host application, and then run it: $ bash ./install_host_app.sh firefox Python 3 executable located at /usr/bin/python3 Pass executable located at /usr/bin/pass Installing Firefox host config Native messaging host for Firefox has been installed to /home/tux/.mozilla/native-messaging-hosts. Install the browser extension, and then restart your browser. When you navigate to a URL with an file in your password store, a pass icon appears in the relevant fields. Click the icon to complete the form. Alternately, a pass icon appears in your browser's extension tray, providing a menu for direct interaction with many pass functions (such as copying data directly to your system clipboard, or auto-filling only a specific field, and so on.) Password management like UNIX The pass command is extensible, and there are some great add-ons for it. Here are some of my favourites: pass-otp: Add one-time password (OTP) functionality. pass-update: Add an easy workflow for updating passwords that you frequently change. pass-import: Import passwords from chrome, 1password, bitwarden, apple-keychain, gnome-keyring, keepass, lastpass, and many more (including pass itself, in the event you want to migrate a password store). The pass command and the password store system is a comfortably UNIX-like password management solution. It stores your passwords as text files in a format that doesn't even require you to have pass installed for access. As long as you have your GPG key, you can access and use the data in your password store. You own your data not only in the sense that it's local, but you have ownership of how you interact with it. You can sync your password stores between different machines using rsync or syncthing, or even backup the store to cloud storage. It's encrypted, and only you have the key.Provide feedback on this episode.
Judge Blasts Apple For Violating Antitrust Ruling Google's Sundar Pichai Calls US Remedies 'De Facto' Spinoff of Search - Slashdot Firefox could be doomed without Google search deal, says executive Visa Announces Plans to Give AI Agents Your Credit Card Information The Age of Realtime Deepfake Fraud Is Here The TAKE IT DOWN Act: A Flawed Attempt to Protect Victims That Will Lead to Censorship Congress Moving Forward On Unconstitutional Take It Down Act White House Slams Amazon After Report it Will Highlight Tariff Costs The Kickstarter you backed may soon ask for more money to cover Trump's tariffs Microsoft Raises Xbox Prices 20% as Tariffs Drive Up Cost of Development UPS will cut 20,000 jobs because fewer Amazon packages are coming Elon Musk's DOGE ties could get his companies out of $2 billion in potential liability President Trump's fiscal 2026 budget proposal suggests slashing $491M from CISA's ~$3B budget, claiming the cut "refocuses CISA on its core mission" Government Actually Threatens Wikipedia's Editorial Freedom; Self-Proclaimed Free Speech Warriors Suddenly Have Other Plans Mark Zuckerberg Sailed 5,300 Miles With Two Superyachts Only to Helicopter Up a Mountain and Ski Down in Billionaire Style - Sustainability Times Massive power outage in Spain, Portugal leaves millions in dark Wall Street Banks Sell Final Slug of Elon Musk's X Debt Elon Musk's SpaceX gets a company town in Texas Amazon deploys the first Project Kuiper internet satellites Researchers Secretly Ran a Massive, Unauthorized AI Persuasion Experiment on Reddit Users How Badly Did ChatGPT and Copilot Fail to Predict the Winners of the Kentucky Derby? - Slashdot Quantum message travels record distance over fiber optic network Photo appears to show Mike Waltz using Signal-like app that can archive messages Chinese university designed 'world's first silicon-free 2D GAAFET transistor,' claims new bismuth-based tech is both the fastest and lowest-power transistor yet The one interview question that will protect you from North Korean fake workers Host: Leo Laporte Guests: Owen Thomas, Iain Thomson, and Gary Rivlin Download or subscribe to This Week in Tech at https://twit.tv/shows/this-week-in-tech Join Club TWiT for Ad-Free Podcasts! Support what you love and get ad-free shows, a members-only Discord, and behind-the-scenes access. Join today: https://twit.tv/clubtwit Sponsors: canary.tools/twit - use code: TWIT outsystems.com/twit drata.com/weekintech coda.io/twit zscaler.com/security
Judge Blasts Apple For Violating Antitrust Ruling Google's Sundar Pichai Calls US Remedies 'De Facto' Spinoff of Search - Slashdot Firefox could be doomed without Google search deal, says executive Visa Announces Plans to Give AI Agents Your Credit Card Information The Age of Realtime Deepfake Fraud Is Here The TAKE IT DOWN Act: A Flawed Attempt to Protect Victims That Will Lead to Censorship Congress Moving Forward On Unconstitutional Take It Down Act White House Slams Amazon After Report it Will Highlight Tariff Costs The Kickstarter you backed may soon ask for more money to cover Trump's tariffs Microsoft Raises Xbox Prices 20% as Tariffs Drive Up Cost of Development UPS will cut 20,000 jobs because fewer Amazon packages are coming Elon Musk's DOGE ties could get his companies out of $2 billion in potential liability President Trump's fiscal 2026 budget proposal suggests slashing $491M from CISA's ~$3B budget, claiming the cut "refocuses CISA on its core mission" Government Actually Threatens Wikipedia's Editorial Freedom; Self-Proclaimed Free Speech Warriors Suddenly Have Other Plans Mark Zuckerberg Sailed 5,300 Miles With Two Superyachts Only to Helicopter Up a Mountain and Ski Down in Billionaire Style - Sustainability Times Massive power outage in Spain, Portugal leaves millions in dark Wall Street Banks Sell Final Slug of Elon Musk's X Debt Elon Musk's SpaceX gets a company town in Texas Amazon deploys the first Project Kuiper internet satellites Researchers Secretly Ran a Massive, Unauthorized AI Persuasion Experiment on Reddit Users How Badly Did ChatGPT and Copilot Fail to Predict the Winners of the Kentucky Derby? - Slashdot Quantum message travels record distance over fiber optic network Photo appears to show Mike Waltz using Signal-like app that can archive messages Chinese university designed 'world's first silicon-free 2D GAAFET transistor,' claims new bismuth-based tech is both the fastest and lowest-power transistor yet The one interview question that will protect you from North Korean fake workers Host: Leo Laporte Guests: Owen Thomas, Iain Thomson, and Gary Rivlin Download or subscribe to This Week in Tech at https://twit.tv/shows/this-week-in-tech Join Club TWiT for Ad-Free Podcasts! Support what you love and get ad-free shows, a members-only Discord, and behind-the-scenes access. Join today: https://twit.tv/clubtwit Sponsors: canary.tools/twit - use code: TWIT outsystems.com/twit drata.com/weekintech coda.io/twit zscaler.com/security
Judge Blasts Apple For Violating Antitrust Ruling Google's Sundar Pichai Calls US Remedies 'De Facto' Spinoff of Search - Slashdot Firefox could be doomed without Google search deal, says executive Visa Announces Plans to Give AI Agents Your Credit Card Information The Age of Realtime Deepfake Fraud Is Here The TAKE IT DOWN Act: A Flawed Attempt to Protect Victims That Will Lead to Censorship Congress Moving Forward On Unconstitutional Take It Down Act White House Slams Amazon After Report it Will Highlight Tariff Costs The Kickstarter you backed may soon ask for more money to cover Trump's tariffs Microsoft Raises Xbox Prices 20% as Tariffs Drive Up Cost of Development UPS will cut 20,000 jobs because fewer Amazon packages are coming Elon Musk's DOGE ties could get his companies out of $2 billion in potential liability President Trump's fiscal 2026 budget proposal suggests slashing $491M from CISA's ~$3B budget, claiming the cut "refocuses CISA on its core mission" Government Actually Threatens Wikipedia's Editorial Freedom; Self-Proclaimed Free Speech Warriors Suddenly Have Other Plans Mark Zuckerberg Sailed 5,300 Miles With Two Superyachts Only to Helicopter Up a Mountain and Ski Down in Billionaire Style - Sustainability Times Massive power outage in Spain, Portugal leaves millions in dark Wall Street Banks Sell Final Slug of Elon Musk's X Debt Elon Musk's SpaceX gets a company town in Texas Amazon deploys the first Project Kuiper internet satellites Researchers Secretly Ran a Massive, Unauthorized AI Persuasion Experiment on Reddit Users How Badly Did ChatGPT and Copilot Fail to Predict the Winners of the Kentucky Derby? - Slashdot Quantum message travels record distance over fiber optic network Photo appears to show Mike Waltz using Signal-like app that can archive messages Chinese university designed 'world's first silicon-free 2D GAAFET transistor,' claims new bismuth-based tech is both the fastest and lowest-power transistor yet The one interview question that will protect you from North Korean fake workers Host: Leo Laporte Guests: Owen Thomas, Iain Thomson, and Gary Rivlin Download or subscribe to This Week in Tech at https://twit.tv/shows/this-week-in-tech Join Club TWiT for Ad-Free Podcasts! Support what you love and get ad-free shows, a members-only Discord, and behind-the-scenes access. Join today: https://twit.tv/clubtwit Sponsors: canary.tools/twit - use code: TWIT outsystems.com/twit drata.com/weekintech coda.io/twit zscaler.com/security
Judge Blasts Apple For Violating Antitrust Ruling Google's Sundar Pichai Calls US Remedies 'De Facto' Spinoff of Search - Slashdot Firefox could be doomed without Google search deal, says executive Visa Announces Plans to Give AI Agents Your Credit Card Information The Age of Realtime Deepfake Fraud Is Here The TAKE IT DOWN Act: A Flawed Attempt to Protect Victims That Will Lead to Censorship Congress Moving Forward On Unconstitutional Take It Down Act White House Slams Amazon After Report it Will Highlight Tariff Costs The Kickstarter you backed may soon ask for more money to cover Trump's tariffs Microsoft Raises Xbox Prices 20% as Tariffs Drive Up Cost of Development UPS will cut 20,000 jobs because fewer Amazon packages are coming Elon Musk's DOGE ties could get his companies out of $2 billion in potential liability President Trump's fiscal 2026 budget proposal suggests slashing $491M from CISA's ~$3B budget, claiming the cut "refocuses CISA on its core mission" Government Actually Threatens Wikipedia's Editorial Freedom; Self-Proclaimed Free Speech Warriors Suddenly Have Other Plans Mark Zuckerberg Sailed 5,300 Miles With Two Superyachts Only to Helicopter Up a Mountain and Ski Down in Billionaire Style - Sustainability Times Massive power outage in Spain, Portugal leaves millions in dark Wall Street Banks Sell Final Slug of Elon Musk's X Debt Elon Musk's SpaceX gets a company town in Texas Amazon deploys the first Project Kuiper internet satellites Researchers Secretly Ran a Massive, Unauthorized AI Persuasion Experiment on Reddit Users How Badly Did ChatGPT and Copilot Fail to Predict the Winners of the Kentucky Derby? - Slashdot Quantum message travels record distance over fiber optic network Photo appears to show Mike Waltz using Signal-like app that can archive messages Chinese university designed 'world's first silicon-free 2D GAAFET transistor,' claims new bismuth-based tech is both the fastest and lowest-power transistor yet The one interview question that will protect you from North Korean fake workers Host: Leo Laporte Guests: Owen Thomas, Iain Thomson, and Gary Rivlin Download or subscribe to This Week in Tech at https://twit.tv/shows/this-week-in-tech Join Club TWiT for Ad-Free Podcasts! Support what you love and get ad-free shows, a members-only Discord, and behind-the-scenes access. Join today: https://twit.tv/clubtwit Sponsors: canary.tools/twit - use code: TWIT outsystems.com/twit drata.com/weekintech coda.io/twit zscaler.com/security
Judge Blasts Apple For Violating Antitrust Ruling Google's Sundar Pichai Calls US Remedies 'De Facto' Spinoff of Search - Slashdot Firefox could be doomed without Google search deal, says executive Visa Announces Plans to Give AI Agents Your Credit Card Information The Age of Realtime Deepfake Fraud Is Here The TAKE IT DOWN Act: A Flawed Attempt to Protect Victims That Will Lead to Censorship Congress Moving Forward On Unconstitutional Take It Down Act White House Slams Amazon After Report it Will Highlight Tariff Costs The Kickstarter you backed may soon ask for more money to cover Trump's tariffs Microsoft Raises Xbox Prices 20% as Tariffs Drive Up Cost of Development UPS will cut 20,000 jobs because fewer Amazon packages are coming Elon Musk's DOGE ties could get his companies out of $2 billion in potential liability President Trump's fiscal 2026 budget proposal suggests slashing $491M from CISA's ~$3B budget, claiming the cut "refocuses CISA on its core mission" Government Actually Threatens Wikipedia's Editorial Freedom; Self-Proclaimed Free Speech Warriors Suddenly Have Other Plans Mark Zuckerberg Sailed 5,300 Miles With Two Superyachts Only to Helicopter Up a Mountain and Ski Down in Billionaire Style - Sustainability Times Massive power outage in Spain, Portugal leaves millions in dark Wall Street Banks Sell Final Slug of Elon Musk's X Debt Elon Musk's SpaceX gets a company town in Texas Amazon deploys the first Project Kuiper internet satellites Researchers Secretly Ran a Massive, Unauthorized AI Persuasion Experiment on Reddit Users How Badly Did ChatGPT and Copilot Fail to Predict the Winners of the Kentucky Derby? - Slashdot Quantum message travels record distance over fiber optic network Photo appears to show Mike Waltz using Signal-like app that can archive messages Chinese university designed 'world's first silicon-free 2D GAAFET transistor,' claims new bismuth-based tech is both the fastest and lowest-power transistor yet The one interview question that will protect you from North Korean fake workers Host: Leo Laporte Guests: Owen Thomas, Iain Thomson, and Gary Rivlin Download or subscribe to This Week in Tech at https://twit.tv/shows/this-week-in-tech Join Club TWiT for Ad-Free Podcasts! Support what you love and get ad-free shows, a members-only Discord, and behind-the-scenes access. Join today: https://twit.tv/clubtwit Sponsors: canary.tools/twit - use code: TWIT outsystems.com/twit drata.com/weekintech coda.io/twit zscaler.com/security
Judge Blasts Apple For Violating Antitrust Ruling Google's Sundar Pichai Calls US Remedies 'De Facto' Spinoff of Search - Slashdot Firefox could be doomed without Google search deal, says executive Visa Announces Plans to Give AI Agents Your Credit Card Information The Age of Realtime Deepfake Fraud Is Here The TAKE IT DOWN Act: A Flawed Attempt to Protect Victims That Will Lead to Censorship Congress Moving Forward On Unconstitutional Take It Down Act White House Slams Amazon After Report it Will Highlight Tariff Costs The Kickstarter you backed may soon ask for more money to cover Trump's tariffs Microsoft Raises Xbox Prices 20% as Tariffs Drive Up Cost of Development UPS will cut 20,000 jobs because fewer Amazon packages are coming Elon Musk's DOGE ties could get his companies out of $2 billion in potential liability President Trump's fiscal 2026 budget proposal suggests slashing $491M from CISA's ~$3B budget, claiming the cut "refocuses CISA on its core mission" Government Actually Threatens Wikipedia's Editorial Freedom; Self-Proclaimed Free Speech Warriors Suddenly Have Other Plans Mark Zuckerberg Sailed 5,300 Miles With Two Superyachts Only to Helicopter Up a Mountain and Ski Down in Billionaire Style - Sustainability Times Massive power outage in Spain, Portugal leaves millions in dark Wall Street Banks Sell Final Slug of Elon Musk's X Debt Elon Musk's SpaceX gets a company town in Texas Amazon deploys the first Project Kuiper internet satellites Researchers Secretly Ran a Massive, Unauthorized AI Persuasion Experiment on Reddit Users How Badly Did ChatGPT and Copilot Fail to Predict the Winners of the Kentucky Derby? - Slashdot Quantum message travels record distance over fiber optic network Photo appears to show Mike Waltz using Signal-like app that can archive messages Chinese university designed 'world's first silicon-free 2D GAAFET transistor,' claims new bismuth-based tech is both the fastest and lowest-power transistor yet The one interview question that will protect you from North Korean fake workers Host: Leo Laporte Guests: Owen Thomas, Iain Thomson, and Gary Rivlin Download or subscribe to This Week in Tech at https://twit.tv/shows/this-week-in-tech Join Club TWiT for Ad-Free Podcasts! Support what you love and get ad-free shows, a members-only Discord, and behind-the-scenes access. Join today: https://twit.tv/clubtwit Sponsors: canary.tools/twit - use code: TWIT outsystems.com/twit drata.com/weekintech coda.io/twit zscaler.com/security
Michael Truell is the co-founder and CEO of Anysphere, the company behind Cursor—the fastest-growing AI code editor in the world, reaching $300 million in annual recurring revenue just two years after its launch. In this conversation, Michael shares his vision for the future, lessons learned, and advice for preparing for the fast-approaching AI future.What you'll learn:• Cursor's early pivot from automating CAD to automating code• Michael's vision for “what comes after code” and how programming will evolve• Why Cursor built their own custom AI models despite not starting there• Key lessons from Cursor's rapid growth• Why “taste” and logic design will become more valuable engineering skills than technical coding ability• Why the market for AI coding tools is much larger than people realize—and why there will likely be one dominant winner• Michael's advice for engineers and product teams preparing for the AI future—Brought to you by:Eppo—Run reliable, impactful experimentsVanta—Automate compliance. Simplify securityOneSchema—Import CSV data 10x faster—Where to find Michael Truell:• X: https://x.com/mntruell• LinkedIn: https://www.linkedin.com/in/michael-t-5b1bbb122/• Website: https://mntruell.com/—In this episode, we cover:(00:00) Introduction to Michael Truell and Cursor(04:20) What comes after code(08:32) The importance of taste(12:39) Cursor's origin story(18:31) Why they chose to build an IDE(22:39) Will everyone become engineering managers?(24:31) How they decided it was time to ship(26:45) Reflecting on Cursor's success(32:03) Counterintuitive lessons on building AI products(34:02) Inside Cursor's stack(38:42) Defensibility and market dynamics in AI(46:13) Tips for using Cursor(51:25) Hiring and building a strong team(59:10) Staying focused amid rapid AI advancements(01:02:31) Final thoughts and advice for aspiring AI innovators—Referenced:• Cursor: https://www.cursor.com/• Microsoft Copilot: https://copilot.microsoft.com/• Scaling laws for neural language models: https://openai.com/index/scaling-laws-for-neural-language-models/• MIT: https://www.mit.edu/• Telegram: https://telegram.org/• Signal: https://signal.org/• WhatsApp: https://www.whatsapp.com/• Devin: https://devin.ai/• Visual Studio Code: https://code.visualstudio.com/• Chromium: https://chromium.googlesource.com/chromium/src/base/• Exploring ChatGPT (GPT) Wrappers—What They Are and How They Work: https://learnprompting.org/blog/gpt_wrappers• OpenAI's CPO on how AI changes must-have skills, moats, coding, startup playbooks, more | Kevin Weil (CPO at OpenAI, ex-Instagram, Twitter): https://www.lennysnewsletter.com/p/kevin-weil-open-ai• Behind the founder: Marc Benioff: https://www.lennysnewsletter.com/p/behind-the-founder-marc-benioff• DALL-E 3: https://openai.com/index/dall-e-3/• Stable Diffusion 3: https://stability.ai/news/stable-diffusion-3—Production and marketing by https://penname.co/. For inquiries about sponsoring the podcast, email podcast@lennyrachitsky.com.—Lenny may be an investor in the companies discussed. Get full access to Lenny's Newsletter at www.lennysnewsletter.com/subscribe
YOU ARE THE PRODUCT! But... are you? In Russia, Windows 11 uses you! Plus, something happened to Paul on the way to dual-booting Ubuntu 25.04 on Surface Laptop 7, but all is well! Also, you should be using Brave. But if you don't like/trust Chromium, Firefox 138 finally added profile management support. Windows Windows 11 24H2 preview update for April finally arrives Now we know why Microsoft waited: It wanted to announce the "general availability" of Recall, Click to Do, and "improved Windows Search" (we're still struggling with a name for that one) Dev and Beta (24H2) builds add a profanity filter, a Pen shortcut for Click to Do, improved Windows Search for work and school accounts, Accessibility flyout in Quick settings Microsoft (sort of) explains why Windows Insider Preview channels don't follow a logical order anymore Microsoft deprecates Map app in Windows 11 That makes sense. But also VBS Enclaves in pre-24H2 versions, which is interesting Corporate Microsoft says it will defend EU companies against US government Alphabet/Google is doing just great, thanks Intel earnings are flat, and that's as good as that news gets Samsung posts record revenues on strong S25 series sales Dev Build and Google I/O are coming in hot Google is holding a separate Android event for the first time, ahead of I/O What about Surface? At Build last year, the company announced Copilot+ PC AI Microsoft has an OpenAI problem - duh and/or hello Microsoft is part of an AI unholy quaternity on new Moto phones Duolingo announces controversial "AI first" strategy - And then announces 148 new AI-based courses Apple on Apple Intelligence: Just kidding! OpenAI on GPT-4o: Just kidding! ChatGPT goes shopping and OpenAI improves Deep Research Google updates NotebookLM audio overviews with support for over 50 languages YouTube starts testing AI overviews for videos - and Spotify is using AI for playlists Adobe updates Firefly models, adds third party support DuckDuckGo's Duck.ai now supports real-time model switching Meta launches a standalone AI app that no one should want Xbox Xbox-exclusive game Towerborne is here in preview on Xbox, PC, and Game Pass Tips and Picks Tip of the week: Be prepared App pick of the week: Firefox 138 RunAs Radio this week: Modern Work in 2025 with Karoliina Kettukari Brown liquor pick of the week: Highwayman Whisky Abbey 2024 Hosts: Leo Laporte, Paul Thurrott, and Richard Campbell Download or subscribe to Windows Weekly at https://twit.tv/shows/windows-weekly Check out Paul's blog at thurrott.com The Windows Weekly theme music is courtesy of Carl Franklin. Join Club TWiT for Ad-Free Podcasts! Support what you love and get ad-free shows, a members-only Discord, and behind-the-scenes access. Join today: https://twit.tv/clubtwit Sponsors: uscloud.com cachefly.com/twit
YOU ARE THE PRODUCT! But... are you? In Russia, Windows 11 uses you! Plus, something happened to Paul on the way to dual-booting Ubuntu 25.04 on Surface Laptop 7, but all is well! Also, you should be using Brave. But if you don't like/trust Chromium, Firefox 138 finally added profile management support. Windows Windows 11 24H2 preview update for April finally arrives Now we know why Microsoft waited: It wanted to announce the "general availability" of Recall, Click to Do, and "improved Windows Search" (we're still struggling with a name for that one) Dev and Beta (24H2) builds add a profanity filter, a Pen shortcut for Click to Do, improved Windows Search for work and school accounts, Accessibility flyout in Quick settings Microsoft (sort of) explains why Windows Insider Preview channels don't follow a logical order anymore Microsoft deprecates Map app in Windows 11 That makes sense. But also VBS Enclaves in pre-24H2 versions, which is interesting Corporate Microsoft says it will defend EU companies against US government Alphabet/Google is doing just great, thanks Intel earnings are flat, and that's as good as that news gets Samsung posts record revenues on strong S25 series sales Dev Build and Google I/O are coming in hot Google is holding a separate Android event for the first time, ahead of I/O What about Surface? At Build last year, the company announced Copilot+ PC AI Microsoft has an OpenAI problem - duh and/or hello Microsoft is part of an AI unholy quaternity on new Moto phones Duolingo announces controversial "AI first" strategy - And then announces 148 new AI-based courses Apple on Apple Intelligence: Just kidding! OpenAI on GPT-4o: Just kidding! ChatGPT goes shopping and OpenAI improves Deep Research Google updates NotebookLM audio overviews with support for over 50 languages YouTube starts testing AI overviews for videos - and Spotify is using AI for playlists Adobe updates Firefly models, adds third party support DuckDuckGo's Duck.ai now supports real-time model switching Meta launches a standalone AI app that no one should want Xbox Xbox-exclusive game Towerborne is here in preview on Xbox, PC, and Game Pass Tips and Picks Tip of the week: Be prepared App pick of the week: Firefox 138 RunAs Radio this week: Modern Work in 2025 with Karoliina Kettukari Brown liquor pick of the week: Highwayman Whisky Abbey 2024 Hosts: Leo Laporte, Paul Thurrott, and Richard Campbell Download or subscribe to Windows Weekly at https://twit.tv/shows/windows-weekly Check out Paul's blog at thurrott.com The Windows Weekly theme music is courtesy of Carl Franklin. Join Club TWiT for Ad-Free Podcasts! Support what you love and get ad-free shows, a members-only Discord, and behind-the-scenes access. Join today: https://twit.tv/clubtwit Sponsors: uscloud.com cachefly.com/twit
YOU ARE THE PRODUCT! But... are you? In Russia, Windows 11 uses you! Plus, something happened to Paul on the way to dual-booting Ubuntu 25.04 on Surface Laptop 7, but all is well! Also, you should be using Brave. But if you don't like/trust Chromium, Firefox 138 finally added profile management support. Windows Windows 11 24H2 preview update for April finally arrives Now we know why Microsoft waited: It wanted to announce the "general availability" of Recall, Click to Do, and "improved Windows Search" (we're still struggling with a name for that one) Dev and Beta (24H2) builds add a profanity filter, a Pen shortcut for Click to Do, improved Windows Search for work and school accounts, Accessibility flyout in Quick settings Microsoft (sort of) explains why Windows Insider Preview channels don't follow a logical order anymore Microsoft deprecates Map app in Windows 11 That makes sense. But also VBS Enclaves in pre-24H2 versions, which is interesting Corporate Microsoft says it will defend EU companies against US government Alphabet/Google is doing just great, thanks Intel earnings are flat, and that's as good as that news gets Samsung posts record revenues on strong S25 series sales Dev Build and Google I/O are coming in hot Google is holding a separate Android event for the first time, ahead of I/O What about Surface? At Build last year, the company announced Copilot+ PC AI Microsoft has an OpenAI problem - duh and/or hello Microsoft is part of an AI unholy quaternity on new Moto phones Duolingo announces controversial "AI first" strategy - And then announces 148 new AI-based courses Apple on Apple Intelligence: Just kidding! OpenAI on GPT-4o: Just kidding! ChatGPT goes shopping and OpenAI improves Deep Research Google updates NotebookLM audio overviews with support for over 50 languages YouTube starts testing AI overviews for videos - and Spotify is using AI for playlists Adobe updates Firefly models, adds third party support DuckDuckGo's Duck.ai now supports real-time model switching Meta launches a standalone AI app that no one should want Xbox Xbox-exclusive game Towerborne is here in preview on Xbox, PC, and Game Pass Tips and Picks Tip of the week: Be prepared App pick of the week: Firefox 138 RunAs Radio this week: Modern Work in 2025 with Karoliina Kettukari Brown liquor pick of the week: Highwayman Whisky Abbey 2024 Hosts: Leo Laporte, Paul Thurrott, and Richard Campbell Download or subscribe to Windows Weekly at https://twit.tv/shows/windows-weekly Check out Paul's blog at thurrott.com The Windows Weekly theme music is courtesy of Carl Franklin. Join Club TWiT for Ad-Free Podcasts! Support what you love and get ad-free shows, a members-only Discord, and behind-the-scenes access. Join today: https://twit.tv/clubtwit Sponsors: uscloud.com cachefly.com/twit
YOU ARE THE PRODUCT! But... are you? In Russia, Windows 11 uses you! Plus, something happened to Paul on the way to dual-booting Ubuntu 25.04 on Surface Laptop 7, but all is well! Also, you should be using Brave. But if you don't like/trust Chromium, Firefox 138 finally added profile management support. Windows Windows 11 24H2 preview update for April finally arrives Now we know why Microsoft waited: It wanted to announce the "general availability" of Recall, Click to Do, and "improved Windows Search" (we're still struggling with a name for that one) Dev and Beta (24H2) builds add a profanity filter, a Pen shortcut for Click to Do, improved Windows Search for work and school accounts, Accessibility flyout in Quick settings Microsoft (sort of) explains why Windows Insider Preview channels don't follow a logical order anymore Microsoft deprecates Map app in Windows 11 That makes sense. But also VBS Enclaves in pre-24H2 versions, which is interesting Corporate Microsoft says it will defend EU companies against US government Alphabet/Google is doing just great, thanks Intel earnings are flat, and that's as good as that news gets Samsung posts record revenues on strong S25 series sales Dev Build and Google I/O are coming in hot Google is holding a separate Android event for the first time, ahead of I/O What about Surface? At Build last year, the company announced Copilot+ PC AI Microsoft has an OpenAI problem - duh and/or hello Microsoft is part of an AI unholy quaternity on new Moto phones Duolingo announces controversial "AI first" strategy - And then announces 148 new AI-based courses Apple on Apple Intelligence: Just kidding! OpenAI on GPT-4o: Just kidding! ChatGPT goes shopping and OpenAI improves Deep Research Google updates NotebookLM audio overviews with support for over 50 languages YouTube starts testing AI overviews for videos - and Spotify is using AI for playlists Adobe updates Firefly models, adds third party support DuckDuckGo's Duck.ai now supports real-time model switching Meta launches a standalone AI app that no one should want Xbox Xbox-exclusive game Towerborne is here in preview on Xbox, PC, and Game Pass Tips and Picks Tip of the week: Be prepared App pick of the week: Firefox 138 RunAs Radio this week: Modern Work in 2025 with Karoliina Kettukari Brown liquor pick of the week: Highwayman Whisky Abbey 2024 Hosts: Leo Laporte, Paul Thurrott, and Richard Campbell Download or subscribe to Windows Weekly at https://twit.tv/shows/windows-weekly Check out Paul's blog at thurrott.com The Windows Weekly theme music is courtesy of Carl Franklin. Join Club TWiT for Ad-Free Podcasts! Support what you love and get ad-free shows, a members-only Discord, and behind-the-scenes access. Join today: https://twit.tv/clubtwit Sponsors: uscloud.com cachefly.com/twit
YOU ARE THE PRODUCT! But... are you? In Russia, Windows 11 uses you! Plus, something happened to Paul on the way to dual-booting Ubuntu 25.04 on Surface Laptop 7, but all is well! Also, you should be using Brave. But if you don't like/trust Chromium, Firefox 138 finally added profile management support. Windows Windows 11 24H2 preview update for April finally arrives Now we know why Microsoft waited: It wanted to announce the "general availability" of Recall, Click to Do, and "improved Windows Search" (we're still struggling with a name for that one) Dev and Beta (24H2) builds add a profanity filter, a Pen shortcut for Click to Do, improved Windows Search for work and school accounts, Accessibility flyout in Quick settings Microsoft (sort of) explains why Windows Insider Preview channels don't follow a logical order anymore Microsoft deprecates Map app in Windows 11 That makes sense. But also VBS Enclaves in pre-24H2 versions, which is interesting Corporate Microsoft says it will defend EU companies against US government Alphabet/Google is doing just great, thanks Intel earnings are flat, and that's as good as that news gets Samsung posts record revenues on strong S25 series sales Dev Build and Google I/O are coming in hot Google is holding a separate Android event for the first time, ahead of I/O What about Surface? At Build last year, the company announced Copilot+ PC AI Microsoft has an OpenAI problem - duh and/or hello Microsoft is part of an AI unholy quaternity on new Moto phones Duolingo announces controversial "AI first" strategy - And then announces 148 new AI-based courses Apple on Apple Intelligence: Just kidding! OpenAI on GPT-4o: Just kidding! ChatGPT goes shopping and OpenAI improves Deep Research Google updates NotebookLM audio overviews with support for over 50 languages YouTube starts testing AI overviews for videos - and Spotify is using AI for playlists Adobe updates Firefly models, adds third party support DuckDuckGo's Duck.ai now supports real-time model switching Meta launches a standalone AI app that no one should want Xbox Xbox-exclusive game Towerborne is here in preview on Xbox, PC, and Game Pass Tips and Picks Tip of the week: Be prepared App pick of the week: Firefox 138 RunAs Radio this week: Modern Work in 2025 with Karoliina Kettukari Brown liquor pick of the week: Highwayman Whisky Abbey 2024 Hosts: Leo Laporte, Paul Thurrott, and Richard Campbell Download or subscribe to Windows Weekly at https://twit.tv/shows/windows-weekly Check out Paul's blog at thurrott.com The Windows Weekly theme music is courtesy of Carl Franklin. Join Club TWiT for Ad-Free Podcasts! Support what you love and get ad-free shows, a members-only Discord, and behind-the-scenes access. Join today: https://twit.tv/clubtwit Sponsors: uscloud.com cachefly.com/twit
YOU ARE THE PRODUCT! But... are you? In Russia, Windows 11 uses you! Plus, something happened to Paul on the way to dual-booting Ubuntu 25.04 on Surface Laptop 7, but all is well! Also, you should be using Brave. But if you don't like/trust Chromium, Firefox 138 finally added profile management support. Windows Windows 11 24H2 preview update for April finally arrives Now we know why Microsoft waited: It wanted to announce the "general availability" of Recall, Click to Do, and "improved Windows Search" (we're still struggling with a name for that one) Dev and Beta (24H2) builds add a profanity filter, a Pen shortcut for Click to Do, improved Windows Search for work and school accounts, Accessibility flyout in Quick settings Microsoft (sort of) explains why Windows Insider Preview channels don't follow a logical order anymore Microsoft deprecates Map app in Windows 11 That makes sense. But also VBS Enclaves in pre-24H2 versions, which is interesting Corporate Microsoft says it will defend EU companies against US government Alphabet/Google is doing just great, thanks Intel earnings are flat, and that's as good as that news gets Samsung posts record revenues on strong S25 series sales Dev Build and Google I/O are coming in hot Google is holding a separate Android event for the first time, ahead of I/O What about Surface? At Build last year, the company announced Copilot+ PC AI Microsoft has an OpenAI problem - duh and/or hello Microsoft is part of an AI unholy quaternity on new Moto phones Duolingo announces controversial "AI first" strategy - And then announces 148 new AI-based courses Apple on Apple Intelligence: Just kidding! OpenAI on GPT-4o: Just kidding! ChatGPT goes shopping and OpenAI improves Deep Research Google updates NotebookLM audio overviews with support for over 50 languages YouTube starts testing AI overviews for videos - and Spotify is using AI for playlists Adobe updates Firefly models, adds third party support DuckDuckGo's Duck.ai now supports real-time model switching Meta launches a standalone AI app that no one should want Xbox Xbox-exclusive game Towerborne is here in preview on Xbox, PC, and Game Pass Tips and Picks Tip of the week: Be prepared App pick of the week: Firefox 138 RunAs Radio this week: Modern Work in 2025 with Karoliina Kettukari Brown liquor pick of the week: Highwayman Whisky Abbey 2024 Hosts: Leo Laporte, Paul Thurrott, and Richard Campbell Download or subscribe to Windows Weekly at https://twit.tv/shows/windows-weekly Check out Paul's blog at thurrott.com The Windows Weekly theme music is courtesy of Carl Franklin. Join Club TWiT for Ad-Free Podcasts! Support what you love and get ad-free shows, a members-only Discord, and behind-the-scenes access. Join today: https://twit.tv/clubtwit Sponsors: uscloud.com cachefly.com/twit
We define Chrome versus Chromium, explaining what each is and the difference between the two.
Chuck Joiner, David Ginsburg, Brian Flanigan-Arthurs, Eric Bolden, and Marty Jencius discuss discuss Meta blocking Apple Intelligence on iOS apps, raising concerns about AI platform restrictions and user privacy. The panel examines Google's repeated monopoly rulings, its dominance in ad tech, and AI partnerships. Synology's new policy requiring branded drives for high-end NAS devices sparks debate over user choice, costs, and alternatives. http://traffic.libsyn.com/maclevelten/MV25121.mp3 MacVoices is supported by Insta360 and their new Insta360 X5 360° 8K camera. Get a free invisible selfie stick worth $24.99 at store.insta360.com and use the promo code “macvoices”. Selfie stick offer available for the first 30 standard packages. MacVoices is supported by CleanMyMac by MacPaw, your ultimate solution for Mac control and care. Try CleanMyMac for 7 days free, then use the code “MacVoices20” for 20% off at CLNMY.com/MacVoices. Show Notes: Chapters: 00:06 Podcast Introduction 01:25 Meta vs Apple Intelligence 07:40 Google Declared Monopoly Again 12:48 The Google Monopoly Debate 17:53 Addressing Google's Market Control 25:41 Synology's New Drive Requirements Links: Meta blocks Apple Intelligence on Facebook and its other iOS appshttps://9to5mac.com/2025/04/16/meta-blocks-apple-intelligence-on-facebook-and-its-other-ios-apps/ Google Is Once Again Deemed a Monopoly, This Time in Ad Techhttps://www.wired.com/story/judge-rules-google-ad-business-monopoly/ In depth with Windows 11 Recall—and what Microsoft has (and hasn't) fixed https://arstechnica.com/gadgets/2025/04/in-depth-with-windows-11-recall-and-what-microsoft-has-and-hasnt-fixed/ That groan you hear is users' reaction to Recall going back into Windows https://arstechnica.com/security/2025/04/microsoft-is-putting-privacy-endangering-recall-back-into-windows-11/ Google pays Samsung an 'enormous' amount of money to pre-install Gemini on phoneshttps://www.engadget.com/ai/google-pays-samsung-an-enormous-amount-of-money-to-pre-install-gemini-on-phones-153439068.html Synology confirms that higher-end NAS products will require its branded drives https://arstechnica.com/gadgets/2025/04/synology-confirms-need-for-synology-branded-drives-in-newer-plus-series-nas/ Guests: Web Bixby has been in the insurance business for 40 years and has been an Apple user for longer than that.You can catch up with him on Facebook, Twitter, and LinkedIn. Eric Bolden is into macOS, plants, sci-fi, food, and is a rural internet supporter. You can connect with him on Twitter, by email at embolden@mac.com, on Mastodon at @eabolden@techhub.social, on his blog, Trending At Work, and as co-host on The Vision ProFiles podcast. Brian Flanigan-Arthurs is an educator with a passion for providing results-driven, innovative learning strategies for all students, but particularly those who are at-risk. He is also a tech enthusiast who has a particular affinity for Apple since he first used the Apple IIGS as a student. You can contact Brian on twitter as @brian8944. He also recently opened a Mastodon account at @brian8944@mastodon.cloud. David Ginsburg is the host of the weekly podcast In Touch With iOS where he discusses all things iOS, iPhone, iPad, Apple TV, Apple Watch, and related technologies. He is an IT professional supporting Mac, iOS and Windows users. Visit his YouTube channel at https://youtube.com/daveg65 and find and follow him on Twitter @daveg65 and on Mastodon at @daveg65@mastodon.cloud. Dr. Marty Jencius has been an Associate Professor of Counseling at Kent State University since 2000. He has over 120 publications in books, chapters, journal articles, and others, along with 200 podcasts related to counseling, counselor education, and faculty life. His technology interest led him to develop the counseling profession ‘firsts,' including listservs, a web-based peer-reviewed journal, The Journal of Technology in Counseling, teaching and conferencing in virtual worlds as the founder of Counselor Education in Second Life, and podcast founder/producer of CounselorAudioSource.net and ThePodTalk.net. Currently, he produces a podcast about counseling and life questions, the Circular Firing Squad, and digital video interviews with legacies capturing the history of the counseling field. This is also co-host of The Vision ProFiles podcast. Generally, Marty is chasing the newest tech trends, which explains his interest in A.I. for teaching, research, and productivity. Marty is an active presenter and past president of the NorthEast Ohio Apple Corp (NEOAC). Support: Become a MacVoices Patron on Patreon http://patreon.com/macvoices Enjoy this episode? Make a one-time donation with PayPal Connect: Web: http://macvoices.com Twitter: http://www.twitter.com/chuckjoiner http://www.twitter.com/macvoices Mastodon: https://mastodon.cloud/@chuckjoiner Facebook: http://www.facebook.com/chuck.joiner MacVoices Page on Facebook: http://www.facebook.com/macvoices/ MacVoices Group on Facebook: http://www.facebook.com/groups/macvoice LinkedIn: https://www.linkedin.com/in/chuckjoiner/ Instagram: https://www.instagram.com/chuckjoiner/ Subscribe: Audio in iTunes Video in iTunes Subscribe manually via iTunes or any podcatcher: Audio: http://www.macvoices.com/rss/macvoicesrss Video: http://www.macvoices.com/rss/macvoicesvideorss
He desinstalado Microsoft Edge de mi Mac y lo he cambiado por Vivaldi. Llevo semanas con él y me gusta mucho su diseño y filosofía. Lamentablemente, siempre se necesita un navegador basado en Chromium para ciertas cosas.
Mi navegador web principal es un fork de Firefox llamado LibreWolf, pero siempre es buena idea tener un navegador secundario para poder acceder a esos sitios donde Firefox falla, y si es basado en Chromium, mejor, y si es Chromium sin lo malo de Google, mejor que mejor. https://github.com/ungoogled-software/ungoogled-chromium https://github.com/NeverDecaf/chromium-web-store Te invito a debatir sobre este tema en el Foro de la Comunidad de TuPodcast https://foro.tupodcast.com Y otras formas de contacto las encuentran en: https://ernestoacosta.me/contacto.html Todos los medios donde publico contenido los encuentras en: https://ernestoacosta.me/ Si quieres comprar productos de RØDE, este es mi link de afiliados: https://brandstore.rode.com/?sca_ref=5066237.YwvTR4eCu1
Send us a textCybersecurity professionals, alert! A dangerous Chrome zero-day vulnerability demands your immediate attention. In this action-packed episode, Sean Gerber breaks down CVE-25-2783, a critical security threat that allows attackers to execute remote code simply by having users click malicious links. Though initially targeting Russian organizations, this exploit threatens Chromium-based browsers worldwide—including Chrome, Edge, Brave, Opera, and Vivaldi. Don't wait—patch immediately!The heart of this episode delivers 15 expertly-crafted CISSP practice questions focusing on Domain 4.2 network security concepts. Sean methodically explores essential topics including router load balancing capabilities, electromagnetic interference vulnerabilities, NAC implementation benefits, and optimal firewall configurations. Each question peels back another layer of network security knowledge, from identifying mesh topologies as offering superior fault tolerance to understanding how protocol analyzers diagnose VLAN performance issues.Advanced concepts receive equal attention with clear explanations of UDP timeout values in stateful firewalls, proper NIPS deployment strategies, VPN protocol security comparisons, broadcast storm mitigation techniques, and wireless security standards. Sean's straightforward breakdown of why WPA3 Enterprise provides superior protection and how ARP poisoning facilitates man-in-the-middle attacks transforms complex technical material into accessible knowledge that sticks.Whether you're actively studying for the CISSP exam or simply looking to strengthen your network security fundamentals, this episode delivers precision-targeted information in an engaging format. Visit CISSP Cyber Training for complete access to all practice questions covered and accelerate your certification journey today!Gain exclusive access to 360 FREE CISSP Practice Questions delivered directly to your inbox! Sign up at FreeCISSPQuestions.com and receive 30 expertly crafted practice questions every 15 days for the next 6 months—completely free! Don't miss this valuable opportunity to strengthen your CISSP exam preparation and boost your chances of certification success. Join now and start your journey toward CISSP mastery today!
Lords: * Dan * https://orionblasters.com/ * https://mollyjames.bandcamp.com/album/loved-by-life * Daniel Topics: * Could Dracula escape Groundhog Day? * How to know you're in a golden era * Indiana Jones is supposed to look good?? * https://www.youtube.com/watch?t=1019&v=f1fWB5HP7s8 * Where the Heart Is by F.S. Yousaf * https://media24.fireside.fm/file/fireside-uploads-2024/images/3/3597ddeb-e52e-4cda-a59c-c64600489fea/pMNUZSdU.jpg Microtopics: * Deciding to get a teleprompter on episode 283. * The Molly James Band. * Mid-century lounge music. * Describing yourself as a cross between Pink Floyd and Doja Cat. * Shooting a music video the day after the election. * The sun and the battery life racing each other to ruin your forest concert first. * What does Dracula get up to? Does he have hobbies? * A lawyer hired to buy Dracula a new house * Scrubbing all the proper nouns out of your fan fiction. * Dracula as smoldering sex bomb vs. Dracula as a weird old man. * Figuring out how to not cancel Dracula. * A D&D campaign where you need to recruit a therapist into the party as part of your goal is to convince Dracula to become a better person. * Dracula being verbally abused by all his wives. * Batman playing Flappy Bird while he waits behind the curtain to ambush the villain. * Extremely high powered Nerf rifles. * Joining a community and ascertaining what they need. * Living through a golden age and not realizing until later. * Feeling grateful for the good things you once had. * Being reluctant to push your awesome community because you're afraid it's going to grow too large. * Figuring out how to 3D print blasters. * Mentoring under Captain Slug. * Realizing that your hobby is suddenly your primary source of income. * How to be part of a burgeoning music scene. * The cool kid at GDC. * Ways Jim could've made Glittermitten Grove more accessible without losing the interesting game design. * Getting email from a parent saying that their kid wants to become a mechanical engineer because of you Nerf blaster design. * A video game that is the third best Indiana Jones film. * Who is this technology helping, and how to we stop listening to their opinions? * Playstation Four and a Half. * A game with a lot of whirling debris. * Finding new ways to make more expensive every day. * How you'd put a loot box in a Pico-8 game. * The mental health community arguing about when it's okay to sleep with your therapist. * A/B tasting topics to see which ones get more downloads. * Staying up late enough to get hungry. * What kind of salad you'd put Doritos in. * What kind of salad you'd put a Clif bar in. * Clif bars: fall off of us! * Disappointing dolmas. * Your everyday carry web browser. * The difference between Chrome and Chromium. * Why doesn't everyone just compile their own Firefox? * Bawling at the typewriter about not having the thing you're writing a poem about. * Deciding your book of love poetry to your therapist. * Saving your fan mail to be read at your funeral. * Archaeologists tooting Interesting exchanges written in cuneiform. * Future archaeologists training AI to peruse the entire corpus of tweets to find the choicest memes. * The time to look for an out. * Serenading the audience with the address they can mail cash to. * Where all the best Lords hang out.
Tune in as Automox's cybersecurity experts break down the latest vulnerabilities from Microsoft's March Patch Tuesday release. This explores recent Chromium-based vulnerabilities, a significant Microsoft Management Console flaw, and file system vulnerabilities impacting VHD files. Beyond the technical analysis, the discussion highlights essential practices, including security training, robust password management, and recognizing the dangers posed by untrusted sources. Whether you're an IT professional or a cybersecurity enthusiast, this podcast provides actionable insights to help safeguard your organization.
Coming up in this episode * Syncing the Notes * The History of Snaps * And How Much We Absolutely Adore Them 0:00 Cold Open 1:34 Seeking Syncthing 16:42 The History of Snaps 33:52 How'd 9 Years of Snaps Go? 1:01:54 Next Time 1:04:49 Stinger The Video Version https://youtu.be/izDzKkuEyRw It is all about the notes Leo goes back to basics and uses SyncThing (https://syncthing.net/) to move his markdown files around that he edits using a standard text editor (https://code.visualstudio.com/).
Eighteen TV platforms, one codebase—what could possibly go wrong? Tune in to find out how to tackle the technical and UX challenges of building for Android TV, Apple TV, Fire TV, Tizen, and more—all with React Native! In the 49th episode of React Universe On Air, Łukasz Chludziński (https://x.com/lukasz_app) teams up with Michael Khirallah (https://x.com/mkralla11), Senior Director of Engineering at DIRECTV, and Chris Trag (https://x.com/chris_trag), Developer Evangelist at Amazon, to discuss why cross-platform development is not just a time-saver but also a way to deliver a consistent user experience. You know that at Callstack, we're all about performance—and with devices like Samsung's Tizen TVs released in 2017 (running Chromium 47!), performance is a serious concern. That's why we asked our guests to share real-world techniques for optimizing TV apps, from architectural choices to strategies that avoid unnecessary performance hits on newer devices. The complexity of TV app development doesn't stop at coding, though. Our host and guests know it all to well, so they couldn't help but discuss how they balance unit, integration, automation, and manual testing, leveraging tools like AWS Device Farm and custom-built frameworks to ensure stability across all supported platforms. What's in it for you? Tips on automating QA without compromising thoroughness and why manual testing remains crucial for end-user experience. Want to get started with React Native TV app development? Download our guide
What were you doing at the age of 12? We'd wager to bet you weren't getting invited to Google I/O. On this episode, Corey chats with Alex Zenla, the founder and CTO of Edera. Only in her mid-20s, Alex already has more than a decade's worth of professional experience working in the tech industry. They discuss how Alex found her way into programming at a young age, her experiences with open source projects like the Dart Project and Chromium OS, and getting contacted by Google's lawyers as a preteen. You'll also get to learn about Alex's company, Edera, and their creative approaches to Kubernetes container security using Xen hypervisors. Did we forget to mention that there are multiple sidebars about Minecraft in this one? So grab your pick axe, put on your headphones, and a Google legal will be at your door by the time we wrap up this conversation.Show Highlights(0:00) Intro(0:54) The Duckbill Group sponsor read(1:28) What is Edera?(2:18) Who is the target customer for Edera's product(7:50) Breaking down the overhead makeup of Edera(10:28) How Edera sidesteps the problems with container isolation(13:20) Alex's history working with tech(15:40) The Duckbill Group sponsor read(16:23) How a phone call with a lawyer helped get Alex to Google I/O at the age of 12(18:55) Starting Alex's proper tech career thanks to a Dart library(21:24) The important role of Minecraft in Alex's life and career(23:40) The value of good networking (28:15) What it's been like for Alex to raise a Series A(29:56) Where you can find more from AlexAbout Alex ZenlaAlex Zenla is a technologist that has 10+ years experience in the full-time corporate world who is rebuilding the foundations of infrastructure to be secure-by-design.Alex grew an interest in computers at the age of 7, learning about hypervisors and hardware technologies. At the age of 11, she was inspired by the concept of Chrome OS to get involved in low level systems, where she contributed to the Chromium and Chromium OS projects. This led to being invited to Google I/O 2012 by the Chrome OS team at just the age of 12. Eventually, the Dart programming language came along, and Alex got deeply involved in the ecosystem, contributing to the language and standard library, and building core open source technologies. At the age of 14, she was hired by an IoT company called DGLogik to build an IoT platform that could scale across complex networks, launching my career in IoT. At DGLogik, Alex became deeply involved in Google's IoT technologies across multiple divisions, ultimately ending up working at Google on their IoT platform for their internal Real Estate. In 2024, she retired from the IoT data sphere and started Edera, a company that is making computing secure-by-design.LinksAlex on Bluesky: https://bsky.app/profile/alex.zenla.ioSponsorThe Duckbill Group: duckbillgroup.com
Today's episode is with Paul Klein, founder of Browserbase. We talked about building browser infrastructure for AI agents, the future of agent authentication, and their open source framework Stagehand.* [00:00:00] Introductions* [00:04:46] AI-specific challenges in browser infrastructure* [00:07:05] Multimodality in AI-Powered Browsing* [00:12:26] Running headless browsers at scale* [00:18:46] Geolocation when proxying* [00:21:25] CAPTCHAs and Agent Auth* [00:28:21] Building “User take over” functionality* [00:33:43] Stagehand: AI web browsing framework* [00:38:58] OpenAI's Operator and computer use agents* [00:44:44] Surprising use cases of Browserbase* [00:47:18] Future of browser automation and market competition* [00:53:11] Being a solo founderTranscriptAlessio [00:00:04]: Hey everyone, welcome to the Latent Space podcast. This is Alessio, partner and CTO at Decibel Partners, and I'm joined by my co-host Swyx, founder of Smol.ai.swyx [00:00:12]: Hey, and today we are very blessed to have our friends, Paul Klein, for the fourth, the fourth, CEO of Browserbase. Welcome.Paul [00:00:21]: Thanks guys. Yeah, I'm happy to be here. I've been lucky to know both of you for like a couple of years now, I think. So it's just like we're hanging out, you know, with three ginormous microphones in front of our face. It's totally normal hangout.swyx [00:00:34]: Yeah. We've actually mentioned you on the podcast, I think, more often than any other Solaris tenant. Just because like you're one of the, you know, best performing, I think, LLM tool companies that have started up in the last couple of years.Paul [00:00:50]: Yeah, I mean, it's been a whirlwind of a year, like Browserbase is actually pretty close to our first birthday. So we are one years old. And going from, you know, starting a company as a solo founder to... To, you know, having a team of 20 people, you know, a series A, but also being able to support hundreds of AI companies that are building AI applications that go out and automate the web. It's just been like, really cool. It's been happening a little too fast. I think like collectively as an AI industry, let's just take a week off together. I took my first vacation actually two weeks ago, and Operator came out on the first day, and then a week later, DeepSeat came out. And I'm like on vacation trying to chill. I'm like, we got to build with this stuff, right? So it's been a breakneck year. But I'm super happy to be here and like talk more about all the stuff we're seeing. And I'd love to hear kind of what you guys are excited about too, and share with it, you know?swyx [00:01:39]: Where to start? So people, you've done a bunch of podcasts. I think I strongly recommend Jack Bridger's Scaling DevTools, as well as Turner Novak's The Peel. And, you know, I'm sure there's others. So you covered your Twilio story in the past, talked about StreamClub, you got acquired to Mux, and then you left to start Browserbase. So maybe we just start with what is Browserbase? Yeah.Paul [00:02:02]: Browserbase is the web browser for your AI. We're building headless browser infrastructure, which are browsers that run in a server environment that's accessible to developers via APIs and SDKs. It's really hard to run a web browser in the cloud. You guys are probably running Chrome on your computers, and that's using a lot of resources, right? So if you want to run a web browser or thousands of web browsers, you can't just spin up a bunch of lambdas. You actually need to use a secure containerized environment. You have to scale it up and down. It's a stateful system. And that infrastructure is, like, super painful. And I know that firsthand, because at my last company, StreamClub, I was CTO, and I was building our own internal headless browser infrastructure. That's actually why we sold the company, is because Mux really wanted to buy our headless browser infrastructure that we'd built. And it's just a super hard problem. And I actually told my co-founders, I would never start another company unless it was a browser infrastructure company. And it turns out that's really necessary in the age of AI, when AI can actually go out and interact with websites, click on buttons, fill in forms. You need AI to do all of that work in an actual browser running somewhere on a server. And BrowserBase powers that.swyx [00:03:08]: While you're talking about it, it occurred to me, not that you're going to be acquired or anything, but it occurred to me that it would be really funny if you became the Nikita Beer of headless browser companies. You just have one trick, and you make browser companies that get acquired.Paul [00:03:23]: I truly do only have one trick. I'm screwed if it's not for headless browsers. I'm not a Go programmer. You know, I'm in AI grant. You know, browsers is an AI grant. But we were the only company in that AI grant batch that used zero dollars on AI spend. You know, we're purely an infrastructure company. So as much as people want to ask me about reinforcement learning, I might not be the best guy to talk about that. But if you want to ask about headless browser infrastructure at scale, I can talk your ear off. So that's really my area of expertise. And it's a pretty niche thing. Like, nobody has done what we're doing at scale before. So we're happy to be the experts.swyx [00:03:59]: You do have an AI thing, stagehand. We can talk about the sort of core of browser-based first, and then maybe stagehand. Yeah, stagehand is kind of the web browsing framework. Yeah.What is Browserbase? Headless Browser Infrastructure ExplainedAlessio [00:04:10]: Yeah. Yeah. And maybe how you got to browser-based and what problems you saw. So one of the first things I worked on as a software engineer was integration testing. Sauce Labs was kind of like the main thing at the time. And then we had Selenium, we had Playbrite, we had all these different browser things. But it's always been super hard to do. So obviously you've worked on this before. When you started browser-based, what were the challenges? What were the AI-specific challenges that you saw versus, there's kind of like all the usual running browser at scale in the cloud, which has been a problem for years. What are like the AI unique things that you saw that like traditional purchase just didn't cover? Yeah.AI-specific challenges in browser infrastructurePaul [00:04:46]: First and foremost, I think back to like the first thing I did as a developer, like as a kid when I was writing code, I wanted to write code that did stuff for me. You know, I wanted to write code to automate my life. And I do that probably by using curl or beautiful soup to fetch data from a web browser. And I think I still do that now that I'm in the cloud. And the other thing that I think is a huge challenge for me is that you can't just create a web site and parse that data. And we all know that now like, you know, taking HTML and plugging that into an LLM, you can extract insights, you can summarize. So it was very clear that now like dynamic web scraping became very possible with the rise of large language models or a lot easier. And that was like a clear reason why there's been more usage of headless browsers, which are necessary because a lot of modern websites don't expose all of their page content via a simple HTTP request. You know, they actually do require you to run this type of code for a specific time. JavaScript on the page to hydrate this. Airbnb is a great example. You go to airbnb.com. A lot of that content on the page isn't there until after they run the initial hydration. So you can't just scrape it with a curl. You need to have some JavaScript run. And a browser is that JavaScript engine that's going to actually run all those requests on the page. So web data retrieval was definitely one driver of starting BrowserBase and the rise of being able to summarize that within LLM. Also, I was familiar with if I wanted to automate a website, I could write one script and that would work for one website. It was very static and deterministic. But the web is non-deterministic. The web is always changing. And until we had LLMs, there was no way to write scripts that you could write once that would run on any website. That would change with the structure of the website. Click the login button. It could mean something different on many different websites. And LLMs allow us to generate code on the fly to actually control that. So I think that rise of writing the generic automation scripts that can work on many different websites, to me, made it clear that browsers are going to be a lot more useful because now you can automate a lot more things without writing. If you wanted to write a script to book a demo call on 100 websites, previously, you had to write 100 scripts. Now you write one script that uses LLMs to generate that script. That's why we built our web browsing framework, StageHand, which does a lot of that work for you. But those two things, web data collection and then enhanced automation of many different websites, it just felt like big drivers for more browser infrastructure that would be required to power these kinds of features.Alessio [00:07:05]: And was multimodality also a big thing?Paul [00:07:08]: Now you can use the LLMs to look, even though the text in the dome might not be as friendly. Maybe my hot take is I was always kind of like, I didn't think vision would be as big of a driver. For UI automation, I felt like, you know, HTML is structured text and large language models are good with structured text. But it's clear that these computer use models are often vision driven, and they've been really pushing things forward. So definitely being multimodal, like rendering the page is required to take a screenshot to give that to a computer use model to take actions on a website. And it's just another win for browser. But I'll be honest, that wasn't what I was thinking early on. I didn't even think that we'd get here so fast with multimodality. I think we're going to have to get back to multimodal and vision models.swyx [00:07:50]: This is one of those things where I forgot to mention in my intro that I'm an investor in Browserbase. And I remember that when you pitched to me, like a lot of the stuff that we have today, we like wasn't on the original conversation. But I did have my original thesis was something that we've talked about on the podcast before, which is take the GPT store, the custom GPT store, all the every single checkbox and plugin is effectively a startup. And this was the browser one. I think the main hesitation, I think I actually took a while to get back to you. The main hesitation was that there were others. Like you're not the first hit list browser startup. It's not even your first hit list browser startup. There's always a question of like, will you be the category winner in a place where there's a bunch of incumbents, to be honest, that are bigger than you? They're just not targeted at the AI space. They don't have the backing of Nat Friedman. And there's a bunch of like, you're here in Silicon Valley. They're not. I don't know.Paul [00:08:47]: I don't know if that's, that was it, but like, there was a, yeah, I mean, like, I think I tried all the other ones and I was like, really disappointed. Like my background is from working at great developer tools, companies, and nothing had like the Vercel like experience. Um, like our biggest competitor actually is partly owned by private equity and they just jacked up their prices quite a bit. And the dashboard hasn't changed in five years. And I actually used them at my last company and tried them and I was like, oh man, like there really just needs to be something that's like the experience of these great infrastructure companies, like Stripe, like clerk, like Vercel that I use in love, but oriented towards this kind of like more specific category, which is browser infrastructure, which is really technically complex. Like a lot of stuff can go wrong on the internet when you're running a browser. The internet is very vast. There's a lot of different configurations. Like there's still websites that only work with internet explorer out there. How do you handle that when you're running your own browser infrastructure? These are the problems that we have to think about and solve at BrowserBase. And it's, it's certainly a labor of love, but I built this for me, first and foremost, I know it's super cheesy and everyone says that for like their startups, but it really, truly was for me. If you look at like the talks I've done even before BrowserBase, and I'm just like really excited to try and build a category defining infrastructure company. And it's, it's rare to have a new category of infrastructure exists. We're here in the Chroma offices and like, you know, vector databases is a new category of infrastructure. Is it, is it, I mean, we can, we're in their office, so, you know, we can, we can debate that one later. That is one.Multimodality in AI-Powered Browsingswyx [00:10:16]: That's one of the industry debates.Paul [00:10:17]: I guess we go back to the LLMOS talk that Karpathy gave way long ago. And like the browser box was very clearly there and it seemed like the people who were building in this space also agreed that browsers are a core primitive of infrastructure for the LLMOS that's going to exist in the future. And nobody was building something there that I wanted to use. So I had to go build it myself.swyx [00:10:38]: Yeah. I mean, exactly that talk that, that honestly, that diagram, every box is a startup and there's the code box and then there's the. The browser box. I think at some point they will start clashing there. There's always the question of the, are you a point solution or are you the sort of all in one? And I think the point solutions tend to win quickly, but then the only ones have a very tight cohesive experience. Yeah. Let's talk about just the hard problems of browser base you have on your website, which is beautiful. Thank you. Was there an agency that you used for that? Yeah. Herb.paris.Paul [00:11:11]: They're amazing. Herb.paris. Yeah. It's H-E-R-V-E. I highly recommend for developers. Developer tools, founders to work with consumer agencies because they end up building beautiful things and the Parisians know how to build beautiful interfaces. So I got to give prep.swyx [00:11:24]: And chat apps, apparently are, they are very fast. Oh yeah. The Mistral chat. Yeah. Mistral. Yeah.Paul [00:11:31]: Late chat.swyx [00:11:31]: Late chat. And then your videos as well, it was professionally shot, right? The series A video. Yeah.Alessio [00:11:36]: Nico did the videos. He's amazing. Not the initial video that you shot at the new one. First one was Austin.Paul [00:11:41]: Another, another video pretty surprised. But yeah, I mean, like, I think when you think about how you talk about your company. You have to think about the way you present yourself. It's, you know, as a developer, you think you evaluate a company based on like the API reliability and the P 95, but a lot of developers say, is the website good? Is the message clear? Do I like trust this founder? I'm building my whole feature on. So I've tried to nail that as well as like the reliability of the infrastructure. You're right. It's very hard. And there's a lot of kind of foot guns that you run into when running headless browsers at scale. Right.Competing with Existing Headless Browser Solutionsswyx [00:12:10]: So let's pick one. You have eight features here. Seamless integration. Scalability. Fast or speed. Secure. Observable. Stealth. That's interesting. Extensible and developer first. What comes to your mind as like the top two, three hardest ones? Yeah.Running headless browsers at scalePaul [00:12:26]: I think just running headless browsers at scale is like the hardest one. And maybe can I nerd out for a second? Is that okay? I heard this is a technical audience, so I'll talk to the other nerds. Whoa. They were listening. Yeah. They're upset. They're ready. The AGI is angry. Okay. So. So how do you run a browser in the cloud? Let's start with that, right? So let's say you're using a popular browser automation framework like Puppeteer, Playwright, and Selenium. Maybe you've written a code, some code locally on your computer that opens up Google. It finds the search bar and then types in, you know, search for Latent Space and hits the search button. That script works great locally. You can see the little browser open up. You want to take that to production. You want to run the script in a cloud environment. So when your laptop is closed, your browser is doing something. The browser is doing something. Well, I, we use Amazon. You can see the little browser open up. You know, the first thing I'd reach for is probably like some sort of serverless infrastructure. I would probably try and deploy on a Lambda. But Chrome itself is too big to run on a Lambda. It's over 250 megabytes. So you can't easily start it on a Lambda. So you maybe have to use something like Lambda layers to squeeze it in there. Maybe use a different Chromium build that's lighter. And you get it on the Lambda. Great. It works. But it runs super slowly. It's because Lambdas are very like resource limited. They only run like with one vCPU. You can run one process at a time. Remember, Chromium is super beefy. It's barely running on my MacBook Air. I'm still downloading it from a pre-run. Yeah, from the test earlier, right? I'm joking. But it's big, you know? So like Lambda, it just won't work really well. Maybe it'll work, but you need something faster. Your users want something faster. Okay. Well, let's put it on a beefier instance. Let's get an EC2 server running. Let's throw Chromium on there. Great. Okay. I can, that works well with one user. But what if I want to run like 10 Chromium instances, one for each of my users? Okay. Well, I might need two EC2 instances. Maybe 10. All of a sudden, you have multiple EC2 instances. This sounds like a problem for Kubernetes and Docker, right? Now, all of a sudden, you're using ECS or EKS, the Kubernetes or container solutions by Amazon. You're spending up and down containers, and you're spending a whole engineer's time on kind of maintaining this stateful distributed system. Those are some of the worst systems to run because when it's a stateful distributed system, it means that you are bound by the connections to that thing. You have to keep the browser open while someone is working with it, right? That's just a painful architecture to run. And there's all this other little gotchas with Chromium, like Chromium, which is the open source version of Chrome, by the way. You have to install all these fonts. You want emojis working in your browsers because your vision model is looking for the emoji. You need to make sure you have the emoji fonts. You need to make sure you have all the right extensions configured, like, oh, do you want ad blocking? How do you configure that? How do you actually record all these browser sessions? Like it's a headless browser. You can't look at it. So you need to have some sort of observability. Maybe you're recording videos and storing those somewhere. It all kind of adds up to be this just giant monster piece of your project when all you wanted to do was run a lot of browsers in production for this little script to go to google.com and search. And when I see a complex distributed system, I see an opportunity to build a great infrastructure company. And we really abstract that away with Browserbase where our customers can use these existing frameworks, Playwright, Publisher, Selenium, or our own stagehand and connect to our browsers in a serverless-like way. And control them, and then just disconnect when they're done. And they don't have to think about the complex distributed system behind all of that. They just get a browser running anywhere, anytime. Really easy to connect to.swyx [00:15:55]: I'm sure you have questions. My standard question with anything, so essentially you're a serverless browser company, and there's been other serverless things that I'm familiar with in the past, serverless GPUs, serverless website hosting. That's where I come from with Netlify. One question is just like, you promised to spin up thousands of servers. You promised to spin up thousands of browsers in milliseconds. I feel like there's no real solution that does that yet. And I'm just kind of curious how. The only solution I know, which is to kind of keep a kind of warm pool of servers around, which is expensive, but maybe not so expensive because it's just CPUs. So I'm just like, you know. Yeah.Browsers as a Core Primitive in AI InfrastructurePaul [00:16:36]: You nailed it, right? I mean, how do you offer a serverless-like experience with something that is clearly not serverless, right? And the answer is, you need to be able to run... We run many browsers on single nodes. We use Kubernetes at browser base. So we have many pods that are being scheduled. We have to predictably schedule them up or down. Yes, thousands of browsers in milliseconds is the best case scenario. If you hit us with 10,000 requests, you may hit a slower cold start, right? So we've done a lot of work on predictive scaling and being able to kind of route stuff to different regions where we have multiple regions of browser base where we have different pools available. You can also pick the region you want to go to based on like lower latency, round trip, time latency. It's very important with these types of things. There's a lot of requests going over the wire. So for us, like having a VM like Firecracker powering everything under the hood allows us to be super nimble and spin things up or down really quickly with strong multi-tenancy. But in the end, this is like the complex infrastructural challenges that we have to kind of deal with at browser base. And we have a lot more stuff on our roadmap to allow customers to have more levers to pull to exchange, do you want really fast browser startup times or do you want really low costs? And if you're willing to be more flexible on that, we may be able to kind of like work better for your use cases.swyx [00:17:44]: Since you used Firecracker, shouldn't Fargate do that for you or did you have to go lower level than that? We had to go lower level than that.Paul [00:17:51]: I find this a lot with Fargate customers, which is alarming for Fargate. We used to be a giant Fargate customer. Actually, the first version of browser base was ECS and Fargate. And unfortunately, it's a great product. I think we were actually the largest Fargate customer in our region for a little while. No, what? Yeah, seriously. And unfortunately, it's a great product, but I think if you're an infrastructure company, you actually have to have a deeper level of control over these primitives. I think it's the same thing is true with databases. We've used other database providers and I think-swyx [00:18:21]: Yeah, serverless Postgres.Paul [00:18:23]: Shocker. When you're an infrastructure company, you're on the hook if any provider has an outage. And I can't tell my customers like, hey, we went down because so-and-so went down. That's not acceptable. So for us, we've really moved to bringing things internally. It's kind of opposite of what we preach. We tell our customers, don't build this in-house, but then we're like, we build a lot of stuff in-house. But I think it just really depends on what is in the critical path. We try and have deep ownership of that.Alessio [00:18:46]: On the distributed location side, how does that work for the web where you might get sort of different content in different locations, but the customer is expecting, you know, if you're in the US, I'm expecting the US version. But if you're spinning up my browser in France, I might get the French version. Yeah.Paul [00:19:02]: Yeah. That's a good question. Well, generally, like on the localization, there is a thing called locale in the browser. You can set like what your locale is. If you're like in the ENUS browser or not, but some things do IP, IP based routing. And in that case, you may want to have a proxy. Like let's say you're running something in the, in Europe, but you want to make sure you're showing up from the US. You may want to use one of our proxy features so you can turn on proxies to say like, make sure these connections always come from the United States, which is necessary too, because when you're browsing the web, you're coming from like a, you know, data center IP, and that can make things a lot harder to browse web. So we do have kind of like this proxy super network. Yeah. We have a proxy for you based on where you're going, so you can reliably automate the web. But if you get scheduled in Europe, that doesn't happen as much. We try and schedule you as close to, you know, your origin that you're trying to go to. But generally you have control over the regions you can put your browsers in. So you can specify West one or East one or Europe. We only have one region of Europe right now, actually. Yeah.Alessio [00:19:55]: What's harder, the browser or the proxy? I feel like to me, it feels like actually proxying reliably at scale. It's much harder than spending up browsers at scale. I'm curious. It's all hard.Paul [00:20:06]: It's layers of hard, right? Yeah. I think it's different levels of hard. I think the thing with the proxy infrastructure is that we work with many different web proxy providers and some are better than others. Some have good days, some have bad days. And our customers who've built browser infrastructure on their own, they have to go and deal with sketchy actors. Like first they figure out their own browser infrastructure and then they got to go buy a proxy. And it's like you can pay in Bitcoin and it just kind of feels a little sus, right? It's like you're buying drugs when you're trying to get a proxy online. We have like deep relationships with these counterparties. We're able to audit them and say, is this proxy being sourced ethically? Like it's not running on someone's TV somewhere. Is it free range? Yeah. Free range organic proxies, right? Right. We do a level of diligence. We're SOC 2. So we have to understand what is going on here. But then we're able to make sure that like we route around proxy providers not working. There's proxy providers who will just, the proxy will stop working all of a sudden. And then if you don't have redundant proxying on your own browsers, that's hard down for you or you may get some serious impacts there. With us, like we intelligently know, hey, this proxy is not working. Let's go to this one. And you can kind of build a network of multiple providers to really guarantee the best uptime for our customers. Yeah. So you don't own any proxies? We don't own any proxies. You're right. The team has been saying who wants to like take home a little proxy server, but not yet. We're not there yet. You know?swyx [00:21:25]: It's a very mature market. I don't think you should build that yourself. Like you should just be a super customer of them. Yeah. Scraping, I think, is the main use case for that. I guess. Well, that leads us into CAPTCHAs and also off, but let's talk about CAPTCHAs. You had a little spiel that you wanted to talk about CAPTCHA stuff.Challenges of Scaling Browser InfrastructurePaul [00:21:43]: Oh, yeah. I was just, I think a lot of people ask, if you're thinking about proxies, you're thinking about CAPTCHAs too. I think it's the same thing. You can go buy CAPTCHA solvers online, but it's the same buying experience. It's some sketchy website, you have to integrate it. It's not fun to buy these things and you can't really trust that the docs are bad. What Browserbase does is we integrate a bunch of different CAPTCHAs. We do some stuff in-house, but generally we just integrate with a bunch of known vendors and continually monitor and maintain these things and say, is this working or not? Can we route around it or not? These are CAPTCHA solvers. CAPTCHA solvers, yeah. Not CAPTCHA providers, CAPTCHA solvers. Yeah, sorry. CAPTCHA solvers. We really try and make sure all of that works for you. I think as a dev, if I'm buying infrastructure, I want it all to work all the time and it's important for us to provide that experience by making sure everything does work and monitoring it on our own. Yeah. Right now, the world of CAPTCHAs is tricky. I think AI agents in particular are very much ahead of the internet infrastructure. CAPTCHAs are designed to block all types of bots, but there are now good bots and bad bots. I think in the future, CAPTCHAs will be able to identify who a good bot is, hopefully via some sort of KYC. For us, we've been very lucky. We have very little to no known abuse of Browserbase because we really look into who we work with. And for certain types of CAPTCHA solving, we only allow them on certain types of plans because we want to make sure that we can know what people are doing, what their use cases are. And that's really allowed us to try and be an arbiter of good bots, which is our long term goal. I want to build great relationships with people like Cloudflare so we can agree, hey, here are these acceptable bots. We'll identify them for you and make sure we flag when they come to your website. This is a good bot, you know?Alessio [00:23:23]: I see. And Cloudflare said they want to do more of this. So they're going to set by default, if they think you're an AI bot, they're going to reject. I'm curious if you think this is something that is going to be at the browser level or I mean, the DNS level with Cloudflare seems more where it should belong. But I'm curious how you think about it.Paul [00:23:40]: I think the web's going to change. You know, I think that the Internet as we have it right now is going to change. And we all need to just accept that the cat is out of the bag. And instead of kind of like wishing the Internet was like it was in the 2000s, we can have free content line that wouldn't be scraped. It's just it's not going to happen. And instead, we should think about like, one, how can we change? How can we change the models of, you know, information being published online so people can adequately commercialize it? But two, how do we rebuild applications that expect that AI agents are going to log in on their behalf? Those are the things that are going to allow us to kind of like identify good and bad bots. And I think the team at Clerk has been doing a really good job with this on the authentication side. I actually think that auth is the biggest thing that will prevent agents from accessing stuff, not captchas. And I think there will be agent auth in the future. I don't know if it's going to happen from an individual company, but actually authentication providers that have a, you know, hidden login as agent feature, which will then you put in your email, you'll get a push notification, say like, hey, your browser-based agent wants to log into your Airbnb. You can approve that and then the agent can proceed. That really circumvents the need for captchas or logging in as you and sharing your password. I think agent auth is going to be one way we identify good bots going forward. And I think a lot of this captcha solving stuff is really short-term problems as the internet kind of reorients itself around how it's going to work with agents browsing the web, just like people do. Yeah.Managing Distributed Browser Locations and Proxiesswyx [00:24:59]: Stitch recently was on Hacker News for talking about agent experience, AX, which is a thing that Netlify is also trying to clone and coin and talk about. And we've talked about this on our previous episodes before in a sense that I actually think that's like maybe the only part of the tech stack that needs to be kind of reinvented for agents. Everything else can stay the same, CLIs, APIs, whatever. But auth, yeah, we need agent auth. And it's mostly like short-lived, like it should not, it should be a distinct, identity from the human, but paired. I almost think like in the same way that every social network should have your main profile and then your alt accounts or your Finsta, it's almost like, you know, every, every human token should be paired with the agent token and the agent token can go and do stuff on behalf of the human token, but not be presumed to be the human. Yeah.Paul [00:25:48]: It's like, it's, it's actually very similar to OAuth is what I'm thinking. And, you know, Thread from Stitch is an investor, Colin from Clerk, Octaventures, all investors in browser-based because like, I hope they solve this because they'll make browser-based submission more possible. So we don't have to overcome all these hurdles, but I think it will be an OAuth-like flow where an agent will ask to log in as you, you'll approve the scopes. Like it can book an apartment on Airbnb, but it can't like message anybody. And then, you know, the agent will have some sort of like role-based access control within an application. Yeah. I'm excited for that.swyx [00:26:16]: The tricky part is just, there's one, one layer of delegation here, which is like, you're authoring my user's user or something like that. I don't know if that's tricky or not. Does that make sense? Yeah.Paul [00:26:25]: You know, actually at Twilio, I worked on the login identity and access. Management teams, right? So like I built Twilio's login page.swyx [00:26:31]: You were an intern on that team and then you became the lead in two years? Yeah.Paul [00:26:34]: Yeah. I started as an intern in 2016 and then I was the tech lead of that team. How? That's not normal. I didn't have a life. He's not normal. Look at this guy. I didn't have a girlfriend. I just loved my job. I don't know. I applied to 500 internships for my first job and I got rejected from every single one of them except for Twilio and then eventually Amazon. And they took a shot on me and like, I was getting paid money to write code, which was my dream. Yeah. Yeah. I'm very lucky that like this coding thing worked out because I was going to be doing it regardless. And yeah, I was able to kind of spend a lot of time on a team that was growing at a company that was growing. So it informed a lot of this stuff here. I think these are problems that have been solved with like the SAML protocol with SSO. I think it's a really interesting stuff with like WebAuthn, like these different types of authentication, like schemes that you can use to authenticate people. The tooling is all there. It just needs to be tweaked a little bit to work for agents. And I think the fact that there are companies that are already. Providing authentication as a service really sets it up. Well, the thing that's hard is like reinventing the internet for agents. We don't want to rebuild the internet. That's an impossible task. And I think people often say like, well, we'll have this second layer of APIs built for agents. I'm like, we will for the top use cases, but instead of we can just tweak the internet as is, which is on the authentication side, I think we're going to be the dumb ones going forward. Unfortunately, I think AI is going to be able to do a lot of the tasks that we do online, which means that it will be able to go to websites, click buttons on our behalf and log in on our behalf too. So with this kind of like web agent future happening, I think with some small structural changes, like you said, it feels like it could all slot in really nicely with the existing internet.Handling CAPTCHAs and Agent Authenticationswyx [00:28:08]: There's one more thing, which is the, your live view iframe, which lets you take, take control. Yeah. Obviously very key for operator now, but like, was, is there anything interesting technically there or that the people like, well, people always want this.Paul [00:28:21]: It was really hard to build, you know, like, so, okay. Headless browsers, you don't see them, right. They're running. They're running in a cloud somewhere. You can't like look at them. And I just want to really make, it's a weird name. I wish we came up with a better name for this thing, but you can't see them. Right. But customers don't trust AI agents, right. At least the first pass. So what we do with our live view is that, you know, when you use browser base, you can actually embed a live view of the browser running in the cloud for your customer to see it working. And that's what the first reason is the build trust, like, okay, so I have this script. That's going to go automate a website. I can embed it into my web application via an iframe and my customer can watch. I think. And then we added two way communication. So now not only can you watch the browser kind of being operated by AI, if you want to pause and actually click around type within this iframe that's controlling a browser, that's also possible. And this is all thanks to some of the lower level protocol, which is called the Chrome DevTools protocol. It has a API called start screencast, and you can also send mouse clicks and button clicks to a remote browser. And this is all embeddable within iframes. You have a browser within a browser, yo. And then you simulate the screen, the click on the other side. Exactly. And this is really nice often for, like, let's say, a capture that can't be solved. You saw this with Operator, you know, Operator actually uses a different approach. They use VNC. So, you know, you're able to see, like, you're seeing the whole window here. What we're doing is something a little lower level with the Chrome DevTools protocol. It's just PNGs being streamed over the wire. But the same thing is true, right? Like, hey, I'm running a window. Pause. Can you do something in this window? Human. Okay, great. Resume. Like sometimes 2FA tokens. Like if you get that text message, you might need a person to type that in. Web agents need human-in-the-loop type workflows still. You still need a person to interact with the browser. And building a UI to proxy that is kind of hard. You may as well just show them the whole browser and say, hey, can you finish this up for me? And then let the AI proceed on afterwards. Is there a future where I stream my current desktop to browser base? I don't think so. I think we're very much cloud infrastructure. Yeah. You know, but I think a lot of the stuff we're doing, we do want to, like, build tools. Like, you know, we'll talk about the stage and, you know, web agent framework in a second. But, like, there's a case where a lot of people are going desktop first for, you know, consumer use. And I think cloud is doing a lot of this, where I expect to see, you know, MCPs really oriented around the cloud desktop app for a reason, right? Like, I think a lot of these tools are going to run on your computer because it makes... I think it's breaking out. People are putting it on a server. Oh, really? Okay. Well, sweet. We'll see. We'll see that. I was surprised, though, wasn't I? I think that the browser company, too, with Dia Browser, it runs on your machine. You know, it's going to be...swyx [00:30:50]: What is it?Paul [00:30:51]: So, Dia Browser, as far as I understand... I used to use Arc. Yeah. I haven't used Arc. But I'm a big fan of the browser company. I think they're doing a lot of cool stuff in consumer. As far as I understand, it's a browser where you have a sidebar where you can, like, chat with it and it can control the local browser on your machine. So, if you imagine, like, what a consumer web agent is, which it lives alongside your browser, I think Google Chrome has Project Marina, I think. I almost call it Project Marinara for some reason. I don't know why. It's...swyx [00:31:17]: No, I think it's someone really likes the Waterworld. Oh, I see. The classic Kevin Costner. Yeah.Paul [00:31:22]: Okay. Project Marinara is a similar thing to the Dia Browser, in my mind, as far as I understand it. You have a browser that has an AI interface that will take over your mouse and keyboard and control the browser for you. Great for consumer use cases. But if you're building applications that rely on a browser and it's more part of a greater, like, AI app experience, you probably need something that's more like infrastructure, not a consumer app.swyx [00:31:44]: Just because I have explored a little bit in this area, do people want branching? So, I have the state. Of whatever my browser's in. And then I want, like, 100 clones of this state. Do people do that? Or...Paul [00:31:56]: People don't do it currently. Yeah. But it's definitely something we're thinking about. I think the idea of forking a browser is really cool. Technically, kind of hard. We're starting to see this in code execution, where people are, like, forking some, like, code execution, like, processes or forking some tool calls or branching tool calls. Haven't seen it at the browser level yet. But it makes sense. Like, if an AI agent is, like, using a website and it's not sure what path it wants to take to crawl this website. To find the information it's looking for. It would make sense for it to explore both paths in parallel. And that'd be a very, like... A road not taken. Yeah. And hopefully find the right answer. And then say, okay, this was actually the right one. And memorize that. And go there in the future. On the roadmap. For sure. Don't make my roadmap, please. You know?Alessio [00:32:37]: How do you actually do that? Yeah. How do you fork? I feel like the browser is so stateful for so many things.swyx [00:32:42]: Serialize the state. Restore the state. I don't know.Paul [00:32:44]: So, it's one of the reasons why we haven't done it yet. It's hard. You know? Like, to truly fork, it's actually quite difficult. The naive way is to open the same page in a new tab and then, like, hope that it's at the same thing. But if you have a form halfway filled, you may have to, like, take the whole, you know, container. Pause it. All the memory. Duplicate it. Restart it from there. It could be very slow. So, we haven't found a thing. Like, the easy thing to fork is just, like, copy the page object. You know? But I think there needs to be something a little bit more robust there. Yeah.swyx [00:33:12]: So, MorphLabs has this infinite branch thing. Like, wrote a custom fork of Linux or something that let them save the system state and clone it. MorphLabs, hit me up. I'll be a customer. Yeah. That's the only. I think that's the only way to do it. Yeah. Like, unless Chrome has some special API for you. Yeah.Paul [00:33:29]: There's probably something we'll reverse engineer one day. I don't know. Yeah.Alessio [00:33:32]: Let's talk about StageHand, the AI web browsing framework. You have three core components, Observe, Extract, and Act. Pretty clean landing page. What was the idea behind making a framework? Yeah.Stagehand: AI web browsing frameworkPaul [00:33:43]: So, there's three frameworks that are very popular or already exist, right? Puppeteer, Playwright, Selenium. Those are for building hard-coded scripts to control websites. And as soon as I started to play with LLMs plus browsing, I caught myself, you know, code-genning Playwright code to control a website. I would, like, take the DOM. I'd pass it to an LLM. I'd say, can you generate the Playwright code to click the appropriate button here? And it would do that. And I was like, this really should be part of the frameworks themselves. And I became really obsessed with SDKs that take natural language as part of, like, the API input. And that's what StageHand is. StageHand exposes three APIs, and it's a super set of Playwright. So, if you go to a page, you may want to take an action, click on the button, fill in the form, etc. That's what the act command is for. You may want to extract some data. This one takes a natural language, like, extract the winner of the Super Bowl from this page. You can give it a Zod schema, so it returns a structured output. And then maybe you're building an API. You can do an agent loop, and you want to kind of see what actions are possible on this page before taking one. You can do observe. So, you can observe the actions on the page, and it will generate a list of actions. You can guide it, like, give me actions on this page related to buying an item. And you can, like, buy it now, add to cart, view shipping options, and pass that to an LLM, an agent loop, to say, what's the appropriate action given this high-level goal? So, StageHand isn't a web agent. It's a framework for building web agents. And we think that agent loops are actually pretty close to the application layer because every application probably has different goals or different ways it wants to take steps. I don't think I've seen a generic. Maybe you guys are the experts here. I haven't seen, like, a really good AI agent framework here. Everyone kind of has their own special sauce, right? I see a lot of developers building their own agent loops, and they're using tools. And I view StageHand as the browser tool. So, we expose act, extract, observe. Your agent can call these tools. And from that, you don't have to worry about it. You don't have to worry about generating playwright code performantly. You don't have to worry about running it. You can kind of just integrate these three tool calls into your agent loop and reliably automate the web.swyx [00:35:48]: A special shout-out to Anirudh, who I met at your dinner, who I think listens to the pod. Yeah. Hey, Anirudh.Paul [00:35:54]: Anirudh's a man. He's a StageHand guy.swyx [00:35:56]: I mean, the interesting thing about each of these APIs is they're kind of each startup. Like, specifically extract, you know, Firecrawler is extract. There's, like, Expand AI. There's a whole bunch of, like, extract companies. They just focus on extract. I'm curious. Like, I feel like you guys are going to collide at some point. Like, right now, it's friendly. Everyone's in a blue ocean. At some point, it's going to be valuable enough that there's some turf battle here. I don't think you have a dog in a fight. I think you can mock extract to use an external service if they're better at it than you. But it's just an observation that, like, in the same way that I see each option, each checkbox in the side of custom GBTs becoming a startup or each box in the Karpathy chart being a startup. Like, this is also becoming a thing. Yeah.Paul [00:36:41]: I mean, like, so the way StageHand works is that it's MIT-licensed, completely open source. You bring your own API key to your LLM of choice. You could choose your LLM. We don't make any money off of the extract or really. We only really make money if you choose to run it with our browser. You don't have to. You can actually use your own browser, a local browser. You know, StageHand is completely open source for that reason. And, yeah, like, I think if you're building really complex web scraping workflows, I don't know if StageHand is the tool for you. I think it's really more if you're building an AI agent that needs a few general tools or if it's doing a lot of, like, web automation-intensive work. But if you're building a scraping company, StageHand is not your thing. You probably want something that's going to, like, get HTML content, you know, convert that to Markdown, query it. That's not what StageHand does. StageHand is more about reliability. I think we focus a lot on reliability and less so on cost optimization and speed at this point.swyx [00:37:33]: I actually feel like StageHand, so the way that StageHand works, it's like, you know, page.act, click on the quick start. Yeah. It's kind of the integration test for the code that you would have to write anyway, like the Puppeteer code that you have to write anyway. And when the page structure changes, because it always does, then this is still the test. This is still the test that I would have to write. Yeah. So it's kind of like a testing framework that doesn't need implementation detail.Paul [00:37:56]: Well, yeah. I mean, Puppeteer, Playwright, and Slenderman were all designed as testing frameworks, right? Yeah. And now people are, like, hacking them together to automate the web. I would say, and, like, maybe this is, like, me being too specific. But, like, when I write tests, if the page structure changes. Without me knowing, I want that test to fail. So I don't know if, like, AI, like, regenerating that. Like, people are using StageHand for testing. But it's more for, like, usability testing, not, like, testing of, like, does the front end, like, has it changed or not. Okay. But generally where we've seen people, like, really, like, take off is, like, if they're using, you know, something. If they want to build a feature in their application that's kind of like Operator or Deep Research, they're using StageHand to kind of power that tool calling in their own agent loop. Okay. Cool.swyx [00:38:37]: So let's go into Operator, the first big agent launch of the year from OpenAI. Seems like they have a whole bunch scheduled. You were on break and your phone blew up. What's your just general view of computer use agents is what they're calling it. The overall category before we go into Open Operator, just the overall promise of Operator. I will observe that I tried it once. It was okay. And I never tried it again.OpenAI's Operator and computer use agentsPaul [00:38:58]: That tracks with my experience, too. Like, I'm a huge fan of the OpenAI team. Like, I think that I do not view Operator as the company. I'm not a company killer for browser base at all. I think it actually shows people what's possible. I think, like, computer use models make a lot of sense. And I'm actually most excited about computer use models is, like, their ability to, like, really take screenshots and reasoning and output steps. I think that using mouse click or mouse coordinates, I've seen that proved to be less reliable than I would like. And I just wonder if that's the right form factor. What we've done with our framework is anchor it to the DOM itself, anchor it to the actual item. So, like, if it's clicking on something, it's clicking on that thing, you know? Like, it's more accurate. No matter where it is. Yeah, exactly. Because it really ties in nicely. And it can handle, like, the whole viewport in one go, whereas, like, Operator can only handle what it sees. Can you hover? Is hovering a thing that you can do? I don't know if we expose it as a tool directly, but I'm sure there's, like, an API for hovering. Like, move mouse to this position. Yeah, yeah, yeah. I think you can trigger hover, like, via, like, the JavaScript on the DOM itself. But, no, I think, like, when we saw computer use, everyone's eyes lit up because they realized, like, wow, like, AI is going to actually automate work for people. And I think seeing that kind of happen from both of the labs, and I'm sure we're going to see more labs launch computer use models, I'm excited to see all the stuff that people build with it. I think that I'd love to see computer use power, like, controlling a browser on browser base. And I think, like, Open Operator, which was, like, our open source version of OpenAI's Operator, was our first take on, like, how can we integrate these models into browser base? And we handle the infrastructure and let the labs do the models. I don't have a sense that Operator will be released as an API. I don't know. Maybe it will. I'm curious to see how well that works because I think it's going to be really hard for a company like OpenAI to do things like support CAPTCHA solving or, like, have proxies. Like, I think it's hard for them structurally. Imagine this New York Times headline, OpenAI CAPTCHA solving. Like, that would be a pretty bad headline, this New York Times headline. Browser base solves CAPTCHAs. No one cares. No one cares. And, like, our investors are bored. Like, we're all okay with this, you know? We're building this company knowing that the CAPTCHA solving is short-lived until we figure out how to authenticate good bots. I think it's really hard for a company like OpenAI, who has this brand that's so, so good, to balance with, like, the icky parts of web automation, which it can be kind of complex to solve. I'm sure OpenAI knows who to call whenever they need you. Yeah, right. I'm sure they'll have a great partnership.Alessio [00:41:23]: And is Open Operator just, like, a marketing thing for you? Like, how do you think about resource allocation? So, you can spin this up very quickly. And now there's all this, like, open deep research, just open all these things that people are building. We started it, you know. You're the original Open. We're the original Open operator, you know? Is it just, hey, look, this is a demo, but, like, we'll help you build out an actual product for yourself? Like, are you interested in going more of a product route? That's kind of the OpenAI way, right? They started as a model provider and then…Paul [00:41:53]: Yeah, we're not interested in going the product route yet. I view Open Operator as a model provider. It's a reference project, you know? Let's show people how to build these things using the infrastructure and models that are out there. And that's what it is. It's, like, Open Operator is very simple. It's an agent loop. It says, like, take a high-level goal, break it down into steps, use tool calling to accomplish those steps. It takes screenshots and feeds those screenshots into an LLM with the step to generate the right action. It uses stagehand under the hood to actually execute this action. It doesn't use a computer use model. And it, like, has a nice interface using the live view that we talked about, the iframe, to embed that into an application. So I felt like people on launch day wanted to figure out how to build their own version of this. And we turned that around really quickly to show them. And I hope we do that with other things like deep research. We don't have a deep research launch yet. I think David from AOMNI actually has an amazing open deep research that he launched. It has, like, 10K GitHub stars now. So he's crushing that. But I think if people want to build these features natively into their application, they need good reference projects. And I think Open Operator is a good example of that.swyx [00:42:52]: I don't know. Actually, I'm actually pretty bullish on API-driven operator. Because that's the only way that you can sort of, like, once it's reliable enough, obviously. And now we're nowhere near. But, like, give it five years. It'll happen, you know. And then you can sort of spin this up and browsers are working in the background and you don't necessarily have to know. And it just is booking restaurants for you, whatever. I can definitely see that future happening. I had this on the landing page here. This might be a slightly out of order. But, you know, you have, like, sort of three use cases for browser base. Open Operator. Or this is the operator sort of use case. It's kind of like the workflow automation use case. And it completes with UiPath in the sort of RPA category. Would you agree with that? Yeah, I would agree with that. And then there's Agents we talked about already. And web scraping, which I imagine would be the bulk of your workload right now, right?Paul [00:43:40]: No, not at all. I'd say actually, like, the majority is browser automation. We're kind of expensive for web scraping. Like, I think that if you're building a web scraping product, if you need to do occasional web scraping or you have to do web scraping that works every single time, you want to use browser automation. Yeah. You want to use browser-based. But if you're building web scraping workflows, what you should do is have a waterfall. You should have the first request is a curl to the website. See if you can get it without even using a browser. And then the second request may be, like, a scraping-specific API. There's, like, a thousand scraping APIs out there that you can use to try and get data. Scraping B. Scraping B is a great example, right? Yeah. And then, like, if those two don't work, bring out the heavy hitter. Like, browser-based will 100% work, right? It will load the page in a real browser, hydrate it. I see.swyx [00:44:21]: Because a lot of people don't render to JS.swyx [00:44:25]: Yeah, exactly.Paul [00:44:26]: So, I mean, the three big use cases, right? Like, you know, automation, web data collection, and then, you know, if you're building anything agentic that needs, like, a browser tool, you want to use browser-based.Alessio [00:44:35]: Is there any use case that, like, you were super surprised by that people might not even think about? Oh, yeah. Or is it, yeah, anything that you can share? The long tail is crazy. Yeah.Surprising use cases of BrowserbasePaul [00:44:44]: One of the case studies on our website that I think is the most interesting is this company called Benny. So, the way that it works is if you're on food stamps in the United States, you can actually get rebates if you buy certain things. Yeah. You buy some vegetables. You submit your receipt to the government. They'll give you a little rebate back. Say, hey, thanks for buying vegetables. It's good for you. That process of submitting that receipt is very painful. And the way Benny works is you use their app to take a photo of your receipt, and then Benny will go submit that receipt for you and then deposit the money into your account. That's actually using no AI at all. It's all, like, hard-coded scripts. They maintain the scripts. They've been doing a great job. And they build this amazing consumer app. But it's an example of, like, all these, like, tedious workflows that people have to do to kind of go about their business. And they're doing it for the sake of their day-to-day lives. And I had never known about, like, food stamp rebates or the complex forms you have to do to fill them. But the world is powered by millions and millions of tedious forms, visas. You know, Emirate Lighthouse is a customer, right? You know, they do the O1 visa. Millions and millions of forms are taking away humans' time. And I hope that Browserbase can help power software that automates away the web forms that we don't need anymore. Yeah.swyx [00:45:49]: I mean, I'm very supportive of that. I mean, forms. I do think, like, government itself is a big part of it. I think the government itself should embrace AI more to do more sort of human-friendly form filling. Mm-hmm. But I'm not optimistic. I'm not holding my breath. Yeah. We'll see. Okay. I think I'm about to zoom out. I have a little brief thing on computer use, and then we can talk about founder stuff, which is, I tend to think of developer tooling markets in impossible triangles, where everyone starts in a niche, and then they start to branch out. So I already hinted at a little bit of this, right? We mentioned more. We mentioned E2B. We mentioned Firecrawl. And then there's Browserbase. So there's, like, all this stuff of, like, have serverless virtual computer that you give to an agent and let them do stuff with it. And there's various ways of connecting it to the internet. You can just connect to a search API, like SERP API, whatever other, like, EXA is another one. That's what you're searching. You can also have a JSON markdown extractor, which is Firecrawl. Or you can have a virtual browser like Browserbase, or you can have a virtual machine like Morph. And then there's also maybe, like, a virtual sort of code environment, like Code Interpreter. So, like, there's just, like, a bunch of different ways to tackle the problem of give a computer to an agent. And I'm just kind of wondering if you see, like, everyone's just, like, happily coexisting in their respective niches. And as a developer, I just go and pick, like, a shopping basket of one of each. Or do you think that you eventually, people will collide?Future of browser automation and market competitionPaul [00:47:18]: I think that currently it's not a zero-sum market. Like, I think we're talking about... I think we're talking about all of knowledge work that people do that can be automated online. All of these, like, trillions of hours that happen online where people are working. And I think that there's so much software to be built that, like, I tend not to think about how these companies will collide. I just try to solve the problem as best as I can and make this specific piece of infrastructure, which I think is an important primitive, the best I possibly can. And yeah. I think there's players that are actually going to like it. I think there's players that are going to launch, like, over-the-top, you know, platforms, like agent platforms that have all these tools built in, right? Like, who's building the rippling for agent tools that has the search tool, the browser tool, the operating system tool, right? There are some. There are some. There are some, right? And I think in the end, what I have seen as my time as a developer, and I look at all the favorite tools that I have, is that, like, for tools and primitives with sufficient levels of complexity, you need to have a solution that's really bespoke to that primitive, you know? And I am sufficiently convinced that the browser is complex enough to deserve a primitive. Obviously, I have to. I'm the founder of BrowserBase, right? I'm talking my book. But, like, I think maybe I can give you one spicy take against, like, maybe just whole OS running. I think that when I look at computer use when it first came out, I saw that the majority of use cases for computer use were controlling a browser. And do we really need to run an entire operating system just to control a browser? I don't think so. I don't think that's necessary. You know, BrowserBase can run browsers for way cheaper than you can if you're running a full-fledged OS with a GUI, you know, operating system. And I think that's just an advantage of the browser. It is, like, browsers are little OSs, and you can run them very efficiently if you orchestrate it well. And I think that allows us to offer 90% of the, you know, functionality in the platform needed at 10% of the cost of running a full OS. Yeah.Open Operator: Browserbase's Open-Source Alternativeswyx [00:49:16]: I definitely see the logic in that. There's a Mark Andreessen quote. I don't know if you know this one. Where he basically observed that the browser is turning the operating system into a poorly debugged set of device drivers, because most of the apps are moved from the OS to the browser. So you can just run browsers.Paul [00:49:31]: There's a place for OSs, too. Like, I think that there are some applications that only run on Windows operating systems. And Eric from pig.dev in this upcoming YC batch, or last YC batch, like, he's building all run tons of Windows operating systems for you to control with your agent. And like, there's some legacy EHR systems that only run on Internet-controlled systems. Yeah.Paul [00:49:54]: I think that's it. I think, like, there are use cases for specific operating systems for specific legacy software. And like, I'm excited to see what he does with that. I just wanted to give a shout out to the pig.dev website.swyx [00:50:06]: The pigs jump when you click on them. Yeah. That's great.Paul [00:50:08]: Eric, he's the former co-founder of banana.dev, too.swyx [00:50:11]: Oh, that Eric. Yeah. That Eric. Okay. Well, he abandoned bananas for pigs. I hope he doesn't start going around with pigs now.Alessio [00:50:18]: Like he was going around with bananas. A little toy pig. Yeah. Yeah. I love that. What else are we missing? I think we covered a lot of, like, the browser-based product history, but. What do you wish people asked you? Yeah.Paul [00:50:29]: I wish people asked me more about, like, what will the future of software look like? Because I think that's really where I've spent a lot of time about why do browser-based. Like, for me, starting a company is like a means of last resort. Like, you shouldn't start a company unless you absolutely have to. And I remain convinced that the future of software is software that you're going to click a button and it's going to do stuff on your behalf. Right now, software. You click a button and it maybe, like, calls it back an API and, like, computes some numbers. It, like, modifies some text, whatever. But the future of software is software using software. So, I may log into my accounting website for my business, click a button, and it's going to go load up my Gmail, search my emails, find the thing, upload the receipt, and then comment it for me. Right? And it may use it using APIs, maybe a browser. I don't know. I think it's a little bit of both. But that's completely different from how we've built software so far. And that's. I think that future of software has different infrastructure requirements. It's going to require different UIs. It's going to require different pieces of infrastructure. I think the browser infrastructure is one piece that fits into that, along with all the other categories you mentioned. So, I think that it's going to require developers to think differently about how they've built software for, you know
It's New Tunesday: new releases from the past week! Give the bands a listen. If you like what you hear, support the bands! Today's episode features new release by Philipp Strobel & Friedemann Kootz, Dunkelsucht, Massiv In Mensch & Endanger, Vintage Voltage, LazerPunk, Endanger, Casket Cassette, NNHMN, Crying Vessel, MonoMorte, Coloured Tears, Noble Savage, Balduvian Bears, Suprenova 1006, Corlyx, moonvampire, Haunt Me, Mortal Boy, Mantarochen, Abkantz, Peter Murphy, Extize, Caustic, Stahlgeist, Vol. A.D., Torul, Unify Separate, Causeway (ft. Hannah Lew), Veil Of Light, and Chromium!
Por fin hay una alternativa real para Arc Browser y se llama Zen Browser. Es básicamente un clon, con sus pros y sus contras, pero lo principal es que no usa Chromium, sino Firefox en su base, y ¡¡¡aleluya!!! tiene versión para Linux. Lo pueden descargar desde aquí: https://zen-browser.app/ Te invito a debatir sobre este tema en el Foro de Como Pienso Digo https://foro.comopiensodigo.com Y otras formas de contacto las encuentran en: https://ernestoacosta.me/contacto.html Todos los medios donde publico contenido los encuentras en: https://ernestoacosta.me/ Si quieres comprar productos de RØDE, este es mi link de afiliados: https://brandstore.rode.com/?sca_ref=5066237.YwvTR4eCu1
FY25 Q2 earnings, reasoning models, deprecation Hosts: Leo Laporte and Paul Thurrott For full show notes, visit https://twit.tv/shows/windows-weekly/episodes/918 Sponsors: zscaler.com/security 1password.com/windowsweekly uscloud.com
FY25 Q2 earnings, reasoning models, deprecation Hosts: Leo Laporte and Paul Thurrott For full show notes, visit https://twit.tv/shows/windows-weekly/episodes/918 Sponsors: zscaler.com/security 1password.com/windowsweekly uscloud.com
FY25 Q2 earnings, reasoning models, deprecation Hosts: Leo Laporte and Paul Thurrott For full show notes, visit https://twit.tv/shows/windows-weekly/episodes/918 Sponsors: zscaler.com/security 1password.com/windowsweekly uscloud.com
FY25 Q2 earnings, reasoning models, deprecation Hosts: Leo Laporte and Paul Thurrott For full show notes, visit https://twit.tv/shows/windows-weekly/episodes/918 Sponsors: zscaler.com/security 1password.com/windowsweekly uscloud.com
Microsoft reported that it earned a net income of $24.1 billion on revenues of $69.6 billion in the quarter ending December 31, the second quarter of its fiscal 2025. Those figures represent gains of 10 percent and 12 percent year-over-year (YOY), respectively. Microsoft Earnings Overview Not much going on with client-side products and services, so a focus on AI Productivity and Business Processes: $29.4 billion in revenues, up 14 percent YOY. This was 42.2 percent of Microsoft's earnings Intelligent Cloud: $25.5 billion in revenues, up 19 percent YOY. This was 36.6 percent of Microsoft's earnings More Personal Computing: $14.7 billion, unchanged from the year-ago quarter. (Literally flat YOY.) This was 21.1 percent of Microsoft's earnings Windows Microsoft testing AI-powered search in Windows 11 Dev New Canary build- Windows Midi Services preview, OneDrive resume, File Explorer folder resume Microsoft is experimenting with new Windows 11 UIs Microsoft Edge text rendering comes to all Chromium web browsers on Windows - That only took a few years Microsoft explains deprecation after using the term for decades AI Week 2 of submitting to our new Chinese overlords Gemini catapults into the lead for a few days as Gemini 2.0 becomes broadly available Inspired by DeepSeek, OpenAI releases reasoning model to free ChatGPT This comes after Microsoft added it to Copilot Reasoning vs. traditional models Also, DeepSeek R1 is on Azure AI Foundry and GitHub Sam Altman discusses DeepSeek, more OpenAI offers up an AI research assistant More Earnings (Lightning Round) Intel - $14.3 billion in revenues, down 7 percent AMD: Revenues up 24 percent, market share gains on Intel Apple - Record $124.2 billion in revenues, up 4 percent Alphabet/Google: Revenues at $96.47 billion, up 12 percent - CapEx expenditures closing in on MSFT Samsung - Revenues up 12 percent to $52.2 billion Spotify is profitable for full year for the first time Microsoft 365 Designer makes its way to Photos (Windows) and Microsoft 365 Copilot app (mobile) Microsoft is removing the VPN from Microsoft 365 Family and Personal Outlook for Mac to get email recall feature Xbox Starfield is coming to Game Pass Standard this month, more Game Pass titles Forza Horizon 5 is coming to PS5 Two Age of Empires titles are coming to PS5 Remember that Microsoft partnership with Start.gg? Me neither Nintendo revenues, Switch sales fall more than expected, will no longer beat DS this fiscal year Tips and Picks Tip of the week: It's time for an online account audit App pick of the week: Another week of big browser update RunAs Radio this week: Entra ID Protection with Corissa Koopmans Margarita of the week: 2 oz white tequila, 1.5 oz Triple Sec, 1 oz fresh lime juice. Hosts: Leo Laporte and Paul Thurrott Download or subscribe to Windows Weekly at https://twit.tv/shows/windows-weekly Check out Paul's blog at thurrott.com The Windows Weekly theme music is courtesy of Carl Franklin. Join Club TWiT for Ad-Free Podcasts! Support what you love and get ad-free shows, a members-only Discord, and behind-the-scenes access. Join today: https://twit.tv/clubtwit Sponsors: zscaler.com/security 1password.com/windowsweekly uscloud.com
Microsoft reported that it earned a net income of $24.1 billion on revenues of $69.6 billion in the quarter ending December 31, the second quarter of its fiscal 2025. Those figures represent gains of 10 percent and 12 percent year-over-year (YOY), respectively. Microsoft Earnings Overview Not much going on with client-side products and services, so a focus on AI Productivity and Business Processes: $29.4 billion in revenues, up 14 percent YOY. This was 42.2 percent of Microsoft's earnings Intelligent Cloud: $25.5 billion in revenues, up 19 percent YOY. This was 36.6 percent of Microsoft's earnings More Personal Computing: $14.7 billion, unchanged from the year-ago quarter. (Literally flat YOY.) This was 21.1 percent of Microsoft's earnings Windows Microsoft testing AI-powered search in Windows 11 Dev New Canary build- Windows Midi Services preview, OneDrive resume, File Explorer folder resume Microsoft is experimenting with new Windows 11 UIs Microsoft Edge text rendering comes to all Chromium web browsers on Windows - That only took a few years Microsoft explains deprecation after using the term for decades AI Week 2 of submitting to our new Chinese overlords Gemini catapults into the lead for a few days as Gemini 2.0 becomes broadly available Inspired by DeepSeek, OpenAI releases reasoning model to free ChatGPT This comes after Microsoft added it to Copilot Reasoning vs. traditional models Also, DeepSeek R1 is on Azure AI Foundry and GitHub Sam Altman discusses DeepSeek, more OpenAI offers up an AI research assistant More Earnings (Lightning Round) Intel - $14.3 billion in revenues, down 7 percent AMD: Revenues up 24 percent, market share gains on Intel Apple - Record $124.2 billion in revenues, up 4 percent Alphabet/Google: Revenues at $96.47 billion, up 12 percent - CapEx expenditures closing in on MSFT Samsung - Revenues up 12 percent to $52.2 billion Spotify is profitable for full year for the first time Microsoft 365 Designer makes its way to Photos (Windows) and Microsoft 365 Copilot app (mobile) Microsoft is removing the VPN from Microsoft 365 Family and Personal Outlook for Mac to get email recall feature Xbox Starfield is coming to Game Pass Standard this month, more Game Pass titles Forza Horizon 5 is coming to PS5 Two Age of Empires titles are coming to PS5 Remember that Microsoft partnership with Start.gg? Me neither Nintendo revenues, Switch sales fall more than expected, will no longer beat DS this fiscal year Tips and Picks Tip of the week: It's time for an online account audit App pick of the week: Another week of big browser update RunAs Radio this week: Entra ID Protection with Corissa Koopmans Margarita of the week: 2 oz white tequila, 1.5 oz Triple Sec, 1 oz fresh lime juice. Hosts: Leo Laporte and Paul Thurrott Download or subscribe to Windows Weekly at https://twit.tv/shows/windows-weekly Check out Paul's blog at thurrott.com The Windows Weekly theme music is courtesy of Carl Franklin. Join Club TWiT for Ad-Free Podcasts! Support what you love and get ad-free shows, a members-only Discord, and behind-the-scenes access. Join today: https://twit.tv/clubtwit Sponsors: zscaler.com/security 1password.com/windowsweekly uscloud.com
We're celebrating the 1.7 release of Gparted, the new hybrid approach to a queueing problem in the Linux kernel, and musing over the news that GTK5 won't have any X11 support. Then there's KDE news, a Thunderbird update, OpenAI's troubled relationship with that "open" element of their name, and the kernel's maintainer worries. For tips we have pw-v4l2 for Pipewire fun, certbot for HTTPS certificate wrangling, and rocminfo for examining your system's ROCM status. You can find the show notes at https://bit.ly/3Emasia and happy Linuxing! Host: Jonathan Bennett Co-Hosts: Ken McDonald and David Ruggles Download or subscribe to Untitled Linux Show at https://twit.tv/shows/untitled-linux-show Want access to the ad-free video and exclusive features? Become a member of Club TWiT today! https://twit.tv/clubtwit Club TWiT members can discuss this episode and leave feedback in the Club TWiT Discord.
On the eve of episode 600, we introduce our next challenge and explore the new wave of Linux phones.Sponsored By:Tailscale: Tailscale is a programmable networking software that is private and secure by default - get it free on up to 100 devices! 1Password Extended Access Management: 1Password Extended Access Management is a device trust solution for companies with Okta, and they ensure that if a device isn't trusted and secure, it can't log into your cloud apps. Support LINUX UnpluggedLinks:
First up in the news: Linux Mint 22.1 “Xia” released, Parallels can finally run x86 versions of Linux on Apple Silicon, German router maker is latest company to inadvertently clarify the LGPL license, Google and Linux Foundation form Chromium love club In security and privacy: Microsoft patches Windows to eliminate Secure Boot bypass threat, Then in our Wanderings: Joe enjoys prepares his rack , Dale does routing , and Eric shares 80s kid culture with his kid.
SteamOS is coming to a new Lenovo handheld as well as getting a general beta release, the WordPress drama continues to roll on, the 16GB Raspberry Pi 5 makes no sense to at least one of us (who now owns an N100 mini PC), the Linux Foundation seems to think Chromium-based browsers need a helping... Read More
SteamOS is coming to a new Lenovo handheld as well as getting a general beta release, the WordPress drama continues to roll on, the 16GB Raspberry Pi 5 makes no sense to at least one of us (who now owns an N100 mini PC), the Linux Foundation seems to think Chromium-based browsers need a helping... Read More
This week we talk browsers, with coverage of the Servo updates and the new Supporters of Chromium group in the Linux Foundation. The Raspberry Pi has a 16Gb model of the Pi 5, and not everyone is happy about it. KDE Plasma 6.3 has a public beta, Flatpack has released version 1.16, and Mint is on the cusp of releasing version 22.1. For tips we have kshift for quick or automated KDE re-theming, php -S for local php site testing, a quick tar howto, and pipewire-pulse for more pipewire and oulse audio fun. You can find the show notes at https://bit.ly/3BUzLqV Enjoy! Host: Jonathan Bennett Co-Hosts: Rob Campbell, Ken McDonald, and Jeff Massie Want access to the video version and exclusive features? Become a member of Club TWiT today! https://twit.tv/clubtwit Club TWiT members can discuss this episode and leave feedback in the Club TWiT Discord.
video: https://youtu.be/xtHmj__P-rY Comment on the TWIL Forum (https://thisweekinlinux.com/forum) This week in Linux, we have a lot to talk about. We're gonna talk about some alphas and some betas and also some big news from Valve. So we have KDE Plasma 6.3 beta that is coming out with System76 releasing the Alpha 5 of the COSMIC Desktop Environment and Valve announced that SteamOS is going to expand beyond the Steam Deck. All of this and so much more on this week in Linux, the weekly news show that keeps you up to date with what's going on in the Linux and open source world. Now let's jump right into Your Source for Linux GNews. Download as MP3 (https://aphid.fireside.fm/d/1437767933/2389be04-5c79-485e-b1ca-3a5b2cebb006/ad922b8c-d96d-4bf1-b973-31210aa07975.mp3) Support the Show Become a Patron = tuxdigital.com/membership (https://tuxdigital.com/membership) Store = tuxdigital.com/store (https://tuxdigital.com/store) Chapters: 00:00 Intro 00:38 KDE Plasma 6.3 Beta 08:10 Google and The Linux Foundation team up for 'Supporters of Chromium-based Browsers' 13:26 System76 Release COSMIC DE Alpha 5 17:59 Sandfly Security, agentless protection 19:34 GNOME Refine Tool 23:06 Lenovo Legion Go S with SteamOS 25:51 SteamOS expands beyond Steam Deck 29:09 The Mecha Comet 31:23 Support the show Links: KDE Plasma 6.3 Beta https://kde.org/announcements/plasma/6/6.2.90/ (https://kde.org/announcements/plasma/6/6.2.90/) https://kde.org/announcements/changelogs/plasma/6/6.2.5-6.2.90/ (https://kde.org/announcements/changelogs/plasma/6/6.2.5-6.2.90/) https://phabricator.kde.org/T17435 (https://phabricator.kde.org/T17435) http://blog.davidedmundson.co.uk/blog/adding-home-automation-to-kde/ (http://blog.davidedmundson.co.uk/blog/adding-home-automation-to-kde/) 17 KDE Tips = https://www.youtube.com/watch?v=zhPIwFC4qFs (https://www.youtube.com/watch?v=zhPIwFC4qFs) Google and The Linux Foundation team up for 'Supporters of Chromium-based Browsers' https://www.linuxfoundation.org/press/linux-foundation-announces-the-launch-of-supporters-of-chromium-based-browsers (https://www.linuxfoundation.org/press/linux-foundation-announces-the-launch-of-supporters-of-chromium-based-browsers) https://blog.chromium.org/2025/01/announcing-supporters-of-chromium-based.html (https://blog.chromium.org/2025/01/announcing-supporters-of-chromium-based.html) System76 Release COSMIC DE Alpha 5 https://blog.system76.com/post/cosmic-alpha-5-released (https://blog.system76.com/post/cosmic-alpha-5-released) Sandfly Security, agentless protection https://thisweekinlinux.com/sandfly (https://thisweekinlinux.com/sandfly) GNOME Refine Tool https://tesk.page/refine/ (https://tesk.page/refine/) https://www.omgubuntu.co.uk/2025/01/refine-advanced-tweak-tool-for-gnome (https://www.omgubuntu.co.uk/2025/01/refine-advanced-tweak-tool-for-gnome) Lenovo Legion Go S with SteamOS https://www.gamingonlinux.com/2025/01/lenovo-legion-go-s-with-valves-steamos-is-official-expected-to-launch-in-may/ (https://www.gamingonlinux.com/2025/01/lenovo-legion-go-s-with-valves-steamos-is-official-expected-to-launch-in-may/) https://www.theverge.com/2025/1/7/24338028/lenovo-legion-go-s-steam-windows (https://www.theverge.com/2025/1/7/24338028/lenovo-legion-go-s-steam-windows) SteamOS expands beyond Steam Deck https://store.steampowered.com/news/app/593110/view/529834914570306831 https://www.gamingonlinux.com/2025/01/valve-confirms-a-public-beta-of-steamos-is-coming-as-steamos-expands-beyond-steam-deck/ The Mecha Comet https://mecha.so/comet (https://mecha.so/comet) https://destinationlinux.net (https://destinationlinux.net) Support the show https://tuxdigital.com/membership (https://tuxdigital.com/membership) https://store.tuxdigital.com/ (https://store.tuxdigital.com/)
US Supreme Court oral arguments on TikTok ban begin, The Linux Foundation backs Chromium support, Automattic reduces contributions to WordPress core project. MP3 Please SUBSCRIBE HERE for free or get DTNS Live ad-free. A special thanks to all our supporters–without you, none of this would be possible. If you enjoy what you see you canContinue reading "Sports-Focused Streaming Service Venu Is Dead – DTH"
TikTok Ban, Chromium's Future, and Quantum Computing Debate | Hashtag Trending In today's episode of Hashtag Trending, host Jim Love discusses the intense legal battle over TikTok's fate as it heads to the U.S. Supreme Court, with the potential for a landmark free speech case. The episode also covers the Linux Foundation's initiative to make Chromium-based browsers truly open source, backed by tech giants like Google, Microsoft, Meta, and Opera. Lastly, the episode delves into NVIDIA CEO Jensen Huang's controversial prediction on quantum computing's future, which triggered significant market reactions and a counter-argument from D Wave CEO Alan Baratz. Tune in for these stories and more! 00:00 Introduction and Headlines 00:18 TikTok's Legal Battle and Potential Sale 01:53 Linux Foundation's Chromium Initiative 03:37 Quantum Computing Controversy 05:34 Conclusion and Upcoming Shows
The 16:9 PODCAST IS SPONSORED BY SCREENFEED – DIGITAL SIGNAGE CONTENT The UK software firm Evexi has an interesting story behind its move into digital signage - in that it was more a pull from a client than a push by the company itself. They got deeper into it because of a client's needs, and then a change in technology support that really forced the hand of the customer and Evexi. A few years on from that big moment, Evexi is growing out its CMS software business based around a very modern, headless platform and tools that the company says manage to bridge a need for being dead-simple to use but also deeply sophisticated and hyper-secure. CEO Andrew Broster relates in this podcast the story behind Evexi, and how it goes to market. There's also a very interesting anecdote in there about how lift and learn tech is more than just a visual trick for retail merchandising - with Broster telling how it was driving serious sales lift for a big whiskey brand. Subscribe from wherever you pick up new podcasts. TRANSCRIPT Andrew, thank you for coming on this podcast. Can you give me a rundown, like the elevator ride story of Evexi? Andrew Broster: Sure. Thanks for having me, Dave. My background is very technical. I spent about ten years prior to setting up Evexi running a managed service for a private cloud-based business. In 2015, Sky came to us through a partner and asked for an advertising platform to be built into pub networks, where they had 10,000 pubs under contract to sell Sky Sports to. We walked away and said, what was the question? But eight months later, the product was released into the pub network and it has nearly 2,700 pubs going live within just under 12 months and really from there, we were working with an existing CMS provider, Scala and we learned a lot of the pains with integrating into third-party systems, platforms, building, customer portals, because the traditional CMSs are not user friendly, and as a result, that was our first digital signage customer and our first project that we launched. So what would you call yourself when you were getting into this with Sky, were you like an independent software vendor who just did custom work for customers? Andrew Broster: Correct. Yeah, it was literally, “Hey, Andrew, we need to build this workflow portal.” We were trying to solve problems at a software level for end users through, in those days, it was actually still the channel and that was the first exposure we ever had to the channel. Okay. Now, though, you have your own product. Andrew Broster: Yes, at the end of 2018, early 2019, we launched Evexi, purely on the grounds of Sky needing a different CMS vendor because Scala was the end-of-life Samsung system on chip support and yeah, Evexi came live and we flipped 2,700 pubs overnight onto our platform, and we were talking about taking a big leap, that was a big leap for and a big learning curve And how do you do that overnight? The common perception would be if you're going to change 2,000 devices over you've got to visit 2,000 devices or you've got to Telnet into them or something or other and monkey around with each of them Andrew Broster: No, what we ended up doing was as we created a reboot script that was rewriting the URL from the URL launcher on a Samsung screen and instead of Scala, we flipped them remotely to ourselves. So with this business, you were asked to develop something for a specific client. Did you look at the marketplace and go, all right, we can do this for sure. We've got a client who wants it We can turn this into a larger business, but boy, there are already a lot of CMS software platforms out there, how do we differentiate ourselves? Andrew Broster: I don't think it was even that really. I think right back in the beginning my other shareholder said to me, is this a mistake? Are we going to just generate a lot of debt within the business? Is this a hard business to get into? I spent probably about three to four months, looking at the landscape, looking at companies, competitors, and companies that basically had one successful client and then struggled to grow out of the single client, and really from my point of view, it was, because I was very technical by nature, I wanted to be able to build a platform that was using the latest technologies. A lot of our competitors, less so now, but at the time in 2018-2019, were using a lot of aging software technologies, and scaling issues, so just single servers. I'm a network architect by trade. I wanted to build a cloud-based platform that uses the same technologies as Amazon AWS and Netflix, and that really for me was the ability to have what I call a native cloud product and not make the same mistakes that everybody else does, because when you're building a product and trying to go to market, you have to really try and avoid making all your competitors' mistakes. So you ended up with what I believe you describe as a headless CMS, right? Andrew Broster: Yeah, it's a headless CMS. By design it was headless, and then we put in a very simple UI because we had right back in those days, about 2,300 landlords wanting to publish their own content. So it really had to be very straightforward to use and we wanted to automate everything else in the backend. So things like rendering automatic web content, being able to have a platform that's open that anyone can build onto. I'm from an open-source background originally, so I wanted to make these tools readily available to all of the partners and the ecosystem we're working in. So when you say headless CMS, what does that mean for a typical end user? What I think about is that you've got creatives, people who are working on online products and so on, who don't want to back out of their normal workflow, platforms and log into something separate just to do digital signage. Andrew Broster: Correct, and for the larger companies integrating into our APIs, which are publicly available, means that we become an extension of their product suite rather than copy and pasting and moving content around. We just end up at the end of the line of the production, and then content gets scheduled, instead of having to log into another system. I'm a big fan of automating and integrating everything. What would be a good kind of reference example of companies that you're working with that you're allowed to talk about? Andrew Broster: Sky is the obvious one. We did a lot of work with David Lloyd, on some projects for their gyms. Johnny Walker and Diageo in South Africa. And they've integrated into our APIs as well, whereby, they had a lift and learn solution using Nexomsphere integrated into Evexi. They built their own web apps sitting on top of a platform for the customer user journey, and then every time you want to go and change products, they have their own merchandising platform. So it gives the whole user journey without even touching a backseat, to be honest with you, and we just turn into ultimately a distribution engine because what we're doing is providing the player to be sophisticated and be able to play whatever content has been built and developed, but the changing the scheduling and interaction of it is all done through our APIs. So you mentioned the Sky project. That's still fully going. What kind of footprint does that have at the moment? Andrew Broster: It still has around 2,000 screens. I think they're very heavily looking at the market at the moment, and seeing who else is doing it. Stone Gates are doing a great job at the moment, running out of a media platform into a pub network and I think it's fair to say we all collectively are just watching that to be honest with You're all watching it for? Andrew Broster: To see how that project evolves and whether it's going to be a success. I mean Sky were the early adopters of this in pub networks and I think like anything in this world, to be able to attract the big liquor brands and the beverage brands, you need to have a reasonable footfall, and that was always the argument right back in the beginning. How do you pump advertising revenue into your advertising network, unless you've got a footfall of half a million to three quarters of a million people. Right. You're doing a lot of work with Nexonsphere. I just did a podcast with them a couple of weeks ago. Andrew Broster: I know them well. I like what they do and it's interesting that “Lift and Learn” is something that's been around for 20 years, but it used to be really hard to do. Is that what's being used for Johnny Walker and could you describe it? Andrew Broster: Yes, it is exactly that. So if you walk into a liquor store in South Africa, you can pick up a product. It'll tell you about the product. You can pick up another product. It'll compare the two products, and then you follow the user journey on a screen after you've picked up the products to be able to inquire or pick up more information about the product. So in the Johnny Walker world, it's about understanding the different flavors of Johnny Walker and what the blend and what the mixes you have with the alcohol and the key to all of that is to understand who's using the product and to be able to provide that information back to the brand. For me, that was a great project for us because we had so little involvement. I know that sounds ridiculous, but when you have a technical partner who is very tech focused, very marketing focused and who knows how to build apps using documentation, we have very little interaction, but I think really the beauty of it is the numbers that are coming back now is that they're seeing across, I think it's about 160 to 180 sites, they're seeing between a 40 and 42 percent uplift in sales and the tills as a result of using learned because they're doing a lot of A/B testing. So we know it works, and for us, it's making the next must be integration. Now, you don't have these drop down menus, don't have a CMS that's completely and utterly configure-centric, just need to be able to build out your solution because no Lift and Learn solution is the same and you need to be able to get there in 5 or 10 minutes. Right, because you want this to be largely in the hands of the integrator, the provider, whoever. Andrew Broster: Our objective is to make the integrators' lives easy. If we can't make their lives easy, what's the point really from my point of view, frankly, of existing. They need to make money like we need to make money and the easiest way of doing that is just to make their lives easy. When you're on a journey of looking at getting into space and analyzing the other platforms that are out there, the other approaches and so on, what kind of conclusions did you draw about what you needed to do? Andrew Broster: How I looked at it was: We have many small customers and we have some very nice blue chip, large customers, and ultimately you need to make the small customers' lives very easy, three steps to be able to publish content and manage your content, and then when it comes to the big boys, you need to be able to become an extension of their existing workflows. Our goal really was, is to just build something that one is open, and two is very easy for an end user to use, because ultimately, in our space, we have systems integrators that are ultimately just resellers and they just resell the service and they're not technical, and then we have other integrators that we call our technical partners that are hugely technical. I want to be able to do stuff that we haven't even dreamt of yet, and it's the ability for them to be able to have that platform to do what they want. So if you're going to do headless, it sounds like you have to have that capability, but for the small to medium business customer, they're probably not going to use the headless element so you've got to have a full UX for them, right? Andrew Broster: But you've just got to give them a really easy journey. If they can use Facebook or they can use Instagram, they should be able to use a CMS. It should be as simple as that. Ultimately, our goal is login. In our world, it's, you've got three things. You've got a player, you've got media, and you've got to be able to publish it, and it shouldn't be more complicated than that because that's what the smaller clients want. They want to be able to schedule content and they want to be able to update content very easily. Is there a particular market vertical that you guys are strong in? Is it retail or is it QSR? Andrew Broster: It's a fight between the two at the moment. We're doing a lot more work with Elo, Micro Touch in the U.S. at the moment. So we are using Blue Star in the U.S. to sell through to the channel, and so QSR is an interesting space because of the Square integration. You can plug a square device in and a touch screen in and within 20 minutes you can have QSR running on a touch screen to be able to do the ordering. It's four clicks in our system. You authenticate against the Square, you choose your products and off you go. So that space for us is very exciting for us. In the retail side, I think predominantly because of the way we position our product for integrations into Nexomsphere and stuff like that, that makes it quite an attractive offering. With kiosk, and point of sale, I don't know that world all that well, but, Square, I think about it as transaction processing. Do you still have to jack into a point of sale system or is that something you can provide? Andrew Broster: No, we are ultimately like a silent salesman sitting there. So we're literally integrated straight into Square's APIs. We pull up the products and we're just another method of ordering. So we work and the integration works just like online ordering, but we're just presenting it on a pretty screen, which is touch enabled. So that integration for us Is key, but actually very simplistic Because you're doing from what I can tell on the web, a lot of kinds of interactive work and use portrait screens to do that. I see most digital science platforms as being very distinctly oriented around landscape and large format displays that don't have interactive. Is it hard to straddle the two? Andrew Broster: No, not really. At the end of the day, it's a player for us. We have customers who've got large LED screens which is great, works very well. I would say we're particularly strong in the portrait side of the world. But at the end of the day, all this technology doesn't work without any content creators. So we've got some very nice strategic content partners that do all of this work, which worked very well with our systems integrators. So you would just point to them when a customer asks, you say, “These guys can help you out?” Andrew Broster: Yeah, so if they don't have it in house and we say look, sure, no problem. We've got three or four of our preferred content partners who are actually quite tech and web app enabled, so they like to do some of the experiential stuff which ultimately then boils back down into the Nexomsphere world. So there again, it's a nice blend. I believe you got into this in part, to do the Sky thing, that at that point it was a system on chip displays. Is that accurate? Andrew Broster: Yes. So Sky has a very close relationship with Samsung, and the remit was that they had to be a Samsung screen system on chip. Now we're going back to 2015-2016 models, the very first generation way before Tizen. So yeah, that was the requirement, and off the back of that, it was, which CMS vendor can support these screens? Because in those days, system on ships didn't support portraits. You had to do clever stuff to make the content play in portrait in those days. That was the reality of it, and then, yes, in those early days, it was Scala that we originally integrated into. Then once Chris Regal and Stratacash bought Scala, that was the end of Samsung and SoC, right? Andrew Broster: It absolutely was. It was, I think the initial shock was, what do we do next? But as I said before, Sky came to us and said, look, we have to keep this advertising network running. We need it supported. We need a platform that can scale a lot further than it currently runs at the moment, and we welcome that challenge, really. Don't forget we, at the time we were only seven or eight strong, we're now nineteen strong straddling three countries. So we've grown up a lot since then, but for a company of that size at the time, it was quite a big challenge. One of the things that I've heard through the years with system on chip smart displays is as you alluded to when they first came out, they weren't very powerful, weren't very capable. I heard, as subsequent generations came along, they got quite good, they got quite powerful, but more recently, I've heard the opposite that because of the demands that are out there now for end devices that they can't handle everything, that they don't have the processing power to maybe do stuff that has aspects of AI related to it or anything else. I'm curious about your experience. Andrew Broster: I think if you look at it from a HD point of view, no issues, 4k, don't see any issues. We saw some early issues in around Tizen 4 particularly. So we're talking about three or four years ago. Tizen 6, 6. 5 and 7 have been reasonably good. Don't forget, we now integrate using Nexomsphere controllers, we're doing a lot of work with LIDAR, with Nexomsphere as well and predominantly these Tizen screens, they're just very dependent, not only on the processor, but on the Chromium version. If you're running a screen that's running a four year old Chromium version, you're going to have a whole ball ache when it comes to doing some cool stuff. But the later the Chromium release, the more feature rich, it actually becomes. So there's no issue handling the complexity of content? Andrew Broster: No, we have thousands of Samsung screens on our estate. They are in our world probably the most reliable devices. I have heard that there's been a push lately amongst end users to go to independent standalone media players and to decouple from the displays and not be relying on them. Are you hearing that in the community? Andrew Broster: Yep, we are. What's driving that? Andrew Broster: So just to summarize we support anything Tizen, let's just say anything Samsung WebOS. We support Linux, Windows, Pi5 as well but I wouldn't run an estate on a Pi5. We're seeing a lot of drive now down the Android route, and my background is security, and I've always had a huge aversion to going near Android players. But there are a couple of new parties involved in the market that we're starting to work with who are releasing what we call their own orchestration platform for supporting Android so they can roll out thousands of these devices, keep them updated, keep them online and healthy and I'm actually quite receptive to it because I've always been very allergic to it, but going back to your point, I think a lot of it is possibly some of the integration issues or some of the requirements for external devices to function. It took us nearly two years to get Samsung to open a USB port for us. People don't hang around for two years just to be able to have an integration port, being able to have an external device using that, which natively support, is actually a huge stepping stone and a huge advantage. Why is that? Andrew Broster: Because there's no compatibility issues. if I have to keep going back to Samsung every time I want to be able to have another driver to support over USB, and they turn around and say, two years later, yeah, guys, we finally decided that there's a big enough opportunity in the market to do it. We will consider it. That's all well and good, but the smaller, external media player companies, can move a lot quicker than that. Right. I did an event where I was supposed to be using Samsung kiosk for checkin… Andrew Broster: Oh, don't I know it. I just wanted to use a little thermal printer and they said, we don't have that because that needs a Windows driver and we don't have that, so too bad, so sad. Andrew Broster: Yep, absolutely. But just leave it at that. Andrew Broster: Put it this way. I mean we support the Samsung Kiosk on Tizen. They have a barcode and QR scanner. Does it work? Not really. They have a printer. Does it work? Yes, but it's only that printer. You can't plug anything else in it and it'd be supported because the Tizen operating system doesn't support it. So it's hardly surprising that people just go out and say, actually life's so much easier if I just plug another device into it, because I just know that the peripherals of work, and that for me is probably the approach I'd look at too. If I'm a large brand and I just want to roll out 1500s, let's call them devices, and then all of a sudden, the panel vendor says, no, we don't support that device. You can't wait for a decision to be made. You just got to get on with your project, and yes, that's a perfect space for media players. Because you've now been in this industry for some time, but spent a lot of time looking at it, where do you think things are at? Because I see far too many software competitors out there and I'm always amazed when a small startup contacts me and says, we're doing this too, here's what we're up to, and I'm thinking, why did you start this? There's so many competitors to begin with. What do you see and what will happen? Because I just see the herd being thinned out. Andrew Broster: I think what I'm carefully observing at the moment is the number of acquisitions that are taking place. We see it, if we look at grass, fish and dice, and the aggregation and the buying up of what I look at as like the supply chain and ultimately trying to go direct. I think that's for me, I think that opens more doors than it closes for us. Not only on the fact that, ultimately my business needs to have a value and it needs to be able to be, one day, I would like to walk away from this. From my point of view, looking at it and seeing one, competitor being swallowed up or acquired by systems integrators is a great thing. But two, it also leaves a very open to us because what then happens is you've got a UK based company buying from fragments like a what was a European digital signage software platform who's now actually realistically going to become a direct competitor because they will then start competing in the same space for the same customer base. For me, that's great. We get calls quite regularly saying, oh yeah, but yeah, we can't buy those licenses anymore because they're now a competitor. The board won't approve it. So from my point of view, it's great, and it's exciting, and for us, we're picking up new businesses as a result of it. What I'm seeing, which I'm quite enjoying at the moment is a lot of the hype around retail media. I did a podcast couple of weeks ago about it, with one of our systems integrators. Chris Regal is doing a great job of talking and educating the market. I think his insights are very valuable. I have a lot of respect for Chris. I have done all of these, even going back to when he acquired Scala, but I haven't yet seen a very good implementation of a retail media network. I don't travel the globe every day, but I do a fair amount of travel. But I think really for my business and other businesses our side, the retail media side of it is purely targeted messaging, ultimately, if you want me to look at it that way. I don't think that's exciting. Who would you describe as a good partner company and a channel to work with, because there are some integrators who I tend to call solutions providers because they truly understand it versus AV systems integrators who are really good at deploying stuff in workplaces and other kinds of spaces like that, but they don't understand content, they don't understand the software. They just put stuff in. Andrew Broster: Yeah, hang and bang as I call it. Yeah. I don't like to use that term because they don't like it, but that's... Andrew Broster: There's no disrespect. Yeah, to it, to any of those guys, everybody has their business model, right? We have this really nice blend of very sophisticated system integrators down to the ones that just want to look after the smaller end users, and they're as valuable to us as anybody, because we give them tools that they just go in and plug in and exercise. That's an easy route for us really, because we were selling a box product with an add on, and they can go in and install a box product with an add on and it's just two pieces of software for us. That's perfect. I think about end users and the enterprise level ones often wanting a fully managed solution where, look, we're going to outsource this thing to you guys, we'll give you direction and everything else, what we need, but you guys do it. Are you also seeing that with some of your channel partners that even relatively small deployments, they want that full managed solution? Andrew Broster: We are, and we're seeing more and more of it, and that's exactly where our systems integrators sit in that space, and that's great. More and more to be honest with you, I think, we saw years ago, like everybody wanting to move to the cloud and just push the problem away and trying to lower the cost of IT systems, right? I think what they're also trying to do now, certainly in the marketing side of these brands, is they want to be able to push that out and just know it's going to be looked after. It's easier to have a fully managed service for the systems integrator that has a help desk, a support system, people on the ground, technical experts and the partners that we work with, they're all certified Evexi Partners. We get maybe two or three calls a week from an escalation point of view with something, but the rest of it is handled by our systems integrators. That's a good situation. Andrew Broster: I always look at it erctainly the channel is we're like the software guys, we're not the help desk guys. We're the guys that want to build the software, look after the software and release more features in the software. The systems integrators are great at looking after the customer, supporting the customer and delivering everything to the customer. We fit in quite nicely. So it's either two things. Everything's going well, or they've given up on you. Andrew Broster: No, it's not, because I keep buying licenses, and that's a good thing. Absolutely. I believe you have a busy next few weeks coming up here. You're at NRF and then ISE. Andrew Broster: Yeah. So we're at four trade shows in the space of four months. Next year we are with our partner's Ergonomic Solutions, NRF, which will be great, really looking forward to that. Our US market footprint's growing, so we're enjoying that relationship, Blue Star is an integral part of that. We enjoy working with those guys. ISE, again, the Ergonomic's stand, we're showcasing a lot of new tech. So a lot of it is nice integrations with Nexomsphere as well. A lot of touch applications, experiential stuff. We're on the Nexomsphere stand with them as one of their supporting partners and we're on the Samsung stand, and then at the end of February, we go to Eurosys, which I find fascinating because it's a very different market and it's very retail focused. So we're there for a week and then we're at the Retail Tech Show again, and we'll be supporting three or four of our UK partners as well as Ergonomic Solutions as well at the Retail Tech Show. So it's a very busy beginning to the year. All right. I will let you get organized for all that. Thank you for taking some time with me. Andrew Broster: No problem at all. Thank you very much for having me.
The Department of Justice's proposal for Google to divest Chrome generates a debate on the pros, cons, and likelihood of that ever happening between Chuck Joiner, David Ginsburg, Eric Bolden, Brian Flanigan-Arthurs, Marty Jencius, Jeff Gamet, Web Bixby, and Jim Rea. The panel contrasts the implications for America's tech leadership and navigates the nuances of monopoly versus competition. Finally, Microsoft has a new small computer that looks suspiciously like one of our Apple favorites…but charges a subscription to make to work. Worth the money? What do you think? MacVoices is supported by the 2024 MacVoices Holiday Gift Guide. Great gift ideas to give and get from your MacVoices friends. Look for the shows in the feeds and on our YouTube and Vimeo channels, and check out the master list on the link above. Show Notes: Chapters: 00:03 The DOJ vs. Google04:32 Google's Monopolistic Concerns05:37 The Article's Credibility17:38 Broader Implications of DOJ Proposals18:28 Exploring the Verge Article22:05 Likelihood of Breakup22:44 Microsoft's Subscription Strategy25:07 The Rise of Online-Only Devices30:21 Evaluating Cost vs. Benefit35:23 Thanksgiving Traditions and Reflections47:08 Personal Thanksgiving Favorites Links: DOJ's staggering proposal would hurt consumers and America's global technological leadershiphttps://blog.google/outreach-initiatives/public-policy/doj-search-remedies-nov-2024/ The DOJ wants to force Google to sell Chrome. What would a Google-less Chrome mean for your browser?https://news.northeastern.edu/2024/11/22/doj-chrome-google-breakup/ Chromium (web browser)https://en.wikipedia.org/wiki/Chromium_(web_browser) Google's Government Foes Are Aiming Too Highhttps://www.wsj.com/tech/googles-government-foes-are-aiming-too-high-63ad5d43?mod=Searchresults_pos3&page=1 DOJ says Google must sell Chrome to crack open its search monopolyhttps://www.theverge.com/2024/11/20/24300617/doj-google-search-antitrust-chrome-breakup An investigation reveals how phone coordinates collected by US data broker Datastream expose the movements of US military and intelligence workers in Germanyhttps://www.wired.com/story/phone-data-us-soldiers-spies-nuclear-germany/ 'Graykey' Tool Used by Law Enforcement Can Only Partially Unlock iOS 18 Deviceshttps://www.macrumors.com/2024/11/19/graykey-ios-18-partial-unlock/ Microsoft announces Mac mini-sized PC, but it only works onlinehttps://9to5mac.com/2024/11/19/microsoft-mac-mini-desktop-pc/ Guests: Web Bixby has been in the insurance business for 40 years and has been an Apple user for longer than that.You can catch up with him on Facebook, Twitter, and LinkedIn. Eric Bolden is into macOS, plants, sci-fi, food, and is a rural internet supporter. You can connect with him on Twitter, by email at embolden@mac.com, on Mastodon at @eabolden@techhub.social, on his blog, Trending At Work, and as co-host on The Vision ProFiles podcast. Brian Flanigan-Arthurs is an educator with a passion for providing results-driven, innovative learning strategies for all students, but particularly those who are at-risk. He is also a tech enthusiast who has a particular affinity for Apple since he first used the Apple IIGS as a student. You can contact Brian on twitter as @brian8944. He also recently opened a Mastodon account at @brian8944@mastodon.cloud. Jeff Gamet is a technology blogger, podcaster, author, and public speaker. Previously, he was The Mac Observer's Managing Editor, and the TextExpander Evangelist for Smile. He has presented at Macworld Expo, RSA Conference, several WordCamp events, along with many other conferences. You can find him on several podcasts such as The Mac Show, The Big Show, MacVoices, Mac OS Ken, This Week in iOS, and more. Jeff is easy to find on social media as @jgamet on Twitter and Instagram, jeffgamet on LinkedIn., @jgamet@mastodon.social on Mastodon, and on his YouTube Channel at YouTube.com/jgamet. David Ginsburg is the host of the weekly podcast In Touch With iOS where he discusses all things iOS, iPhone, iPad, Apple TV, Apple Watch, and related technologies. He is an IT professional supporting Mac, iOS and Windows users. Visit his YouTube channel at https://youtube.com/daveg65 and find and follow him on Twitter @daveg65 and on Mastodon at @daveg65@mastodon.cloud. Dr. Marty Jencius has been an Associate Professor of Counseling at Kent State University since 2000. He has over 120 publications in books, chapters, journal articles, and others, along with 200 podcasts related to counseling, counselor education, and faculty life. His technology interest led him to develop the counseling profession ‘firsts,' including listservs, a web-based peer-reviewed journal, The Journal of Technology in Counseling, teaching and conferencing in virtual worlds as the founder of Counselor Education in Second Life, and podcast founder/producer of CounselorAudioSource.net and ThePodTalk.net. Currently, he produces a podcast about counseling and life questions, the Circular Firing Squad, and digital video interviews with legacies capturing the history of the counseling field. This is also co-host of The Vision ProFiles podcast. Generally, Marty is chasing the newest tech trends, which explains his interest in A.I. for teaching, research, and productivity. Marty is an active presenter and past president of the NorthEast Ohio Apple Corp (NEOAC). Jim Rea built his own computer from scratch in 1975, started programming in 1977, and has been an independent Mac developer continuously since 1984. He is the founder of ProVUE Development, and the author of Panorama X, ProVUE's ultra fast RAM based database software for the macOS platform. He's been a speaker at MacTech, MacWorld Expo and other industry conferences. Follow Jim at provue.com and via @provuejim@techhub.social on Mastodon. Support: Become a MacVoices Patron on Patreon http://patreon.com/macvoices Enjoy this episode? Make a one-time donation with PayPal Connect: Web: http://macvoices.com Twitter: http://www.twitter.com/chuckjoiner http://www.twitter.com/macvoices Mastodon: https://mastodon.cloud/@chuckjoiner Facebook: http://www.facebook.com/chuck.joiner MacVoices Page on Facebook: http://www.facebook.com/macvoices/ MacVoices Group on Facebook: http://www.facebook.com/groups/macvoice LinkedIn: https://www.linkedin.com/in/chuckjoiner/ Instagram: https://www.instagram.com/chuckjoiner/ Subscribe: Audio in iTunes Video in iTunes Subscribe manually via iTunes or any podcatcher: Audio: http://www.macvoices.com/rss/macvoicesrss Video: http://www.macvoices.com/rss/macvoicesvideorss
On today's episode of Hustle and Flowchart, I sat down with Helen Christoni, an expert in reverse osmosis (RO) water filtration and marketing. We delved deep into the dangers of tap water and the necessity of clean water and the effectiveness of RO systems. The episode covered important topics like how these systems work, why they are essential for health, especially for children, and the role of social media in spreading this crucial information. Our conversation also brought to light the entrepreneurial aspects of scaling a business rooted in wellness technology.Water Filtration MethodsHelen explained the difference in taste and quality between regular single filters and advanced reverse osmosis (RO) systems. RO systems like AquaTru use a four-stage filtration process to remove harmful contaminants such as forever chemicals, drug residues, and antibiotics. While many commercial bottle filling stations only address chlorine and lead, AquaTru tackles a wide range of pollutants.Importance of Changing FiltersChanging filters regularly in fridges and pitchers is crucial to avoid contamination. Neglecting this can result in more harm than good. Helen emphasized that even the best filters lose effectiveness over time, and timely replacements are necessary for maintaining water quality.AquaTru's Mission and ProductsHelen Christoni highlighted that AquaTru is the first patented countertop RO system designed specifically for families. The company just released AquaTru Pro for enterprise settings, equipped with certified bottle filling stations. These products aim to provide pure water, free of contaminants, for homes and businesses.Effective Filtration for ChildrenWe also talked about the importance of water filtration for children, advocating for heightened awareness about environmental toxins. By incorporating high-quality water filtration systems at home, parents can significantly reduce their kids' exposure to harmful chemicals.Utilizing the Environmental Working Group (EWG) WebsiteHelen suggested checking local water contaminants using the Environmental Working Group (EWG) website. This resource allows people to see what's in their tap water, giving them informed reasons to invest in quality water purification systems.Environmental Working Group (EWG) WebsiteSocial Media and Marketing StrategiesHelen stresses the pivotal role of social media in making complex scientific information relatable. Platforms like TikTok allow for shareable, bite-sized content that people can easily engage with. Instead of long-form content like webinars, focused, engaging videos spread the message of water purification more effectively.Partnering for ImpactStrong partnerships and authentic connections are crucial for AquaTru's business. Helen prefers genuine relationships over large-scale, impersonal campaigns. Success in their affiliate programs comes from having a small group of dedicated partners who share the company's mission and create genuine content.Addressing Water ContaminantsHelen shared her personal “aha moment” when she discovered several cancer-causing contaminants in her local water. This led to broader discussions about the limitations of boiling water and the persistence of chemicals like Chromium 6 and fluoride. AquaTru's certified to remove 84 contaminants, including microplastics, offers a solution to these health hazards.Personal Health Stories and MotivationHelen's journey from the beauty industry to wellness was fueled by a personal health crisis—severe osteoporosis due to early menopause. This experience reshaped her approach to...
Unredacted court filings from WhatsApp's 2019 lawsuit against NSO Group reveal the scope of spyware infections. Glove Stealer can bypass App-Bound Encryption in Chromium-based browsers. Researchers uncover a new zero-day vulnerability in Fortinet's FortiManager. Rapid7 detects an updated version of LodaRAT. CISA warns of active exploitation of Palo Alto Networks' Expedition tool. Misconfigured Microsoft Power Pages accounts expose sensitive data. Iranian state hackers mimic North Koreans in fake job scams. Australia warns its critical infrastructure providers about state sponsored embedded malware. An especially cruel cybercriminal gets ten years in the slammer. Guest Ambuj Kumar, Co-founder and CEO of Simbian, joins us to discuss how AI Agents may change the cyber landscape. We're countin' down the top ten least secure passwords. Remember to leave us a 5-star rating and review in your favorite podcast app. Miss an episode? Sign-up for our daily intelligence roundup, Daily Briefing, and you'll never miss a beat. And be sure to follow CyberWire Daily on LinkedIn. CyberWire Guest Guest Ambuj Kumar, Co-founder and CEO of Simbian, joins us to discuss how AI Agents are going to change the cyber landscape. Selected Reading 1,400 Pegasus spyware infections detailed in WhatsApp's lawsuit filings (The Record) Glove Stealer Malware Bypasses Chrome's App-Bound Encryption (SecurityWeek) watchTowr Finds New Zero-Day Vulnerability in Fortinet Products ( Infosecurity Magazine) LodaRAT: Established malware, new victim patterns (Rapid7 Blog) CISA Warns of Two More Palo Alto Expedition Flaws Exploited in Attacks (SecurityWeek) Microsoft Power Pages misconfigs exposing sensitive data (The Register) Iranian Threat Actors Mimic North Korean Job Scam Techniques (BankInfo Security) Hackers Lurking in Critical Infrastructure to Wage Attacks (BankInfo Security) Cybercriminal devoid of boundaries gets 10-year prison sentence (The Register) Top 200 Most Common Passwords (NordPass) Special voting request. Just when you thought voting was over for this year…It's time to vote…again! The N2K CyberWire hosting team of Dave Bittner, Maria Varmazis, and Joseph Carrigan have been nominated for the Creator of the Year category in the Baltimore region's 2024 Technical.ly Awards for their incredible work on the Hacking Humans podcast! If you're a fan of Hacking Humans, we'd be thrilled to have your support! Please cast your vote here. (Make sure you select the “Baltimore” region). Thanks for your vote! Voting ends Monday, November 18th, so don't delay! Share your feedback. We want to ensure that you are getting the most out of the podcast. Please take a few minutes to share your thoughts wit h us by completing our brief listener survey as we continually work to improve the show. Want to hear your company in the show? You too can reach the most influential leaders and operators in the industry. Here's our media kit. Contact us at cyberwire@n2k.com to request more info. The CyberWire is a production of N2K Networks, your source for strategic workforce intelligence. © N2K Networks, Inc. Learn more about your ad choices. Visit megaphone.fm/adchoices
The Dietary Guidelines for Americans is rampant with conflicts of interest—and its authors just whiffed on condemning ultra-processed foods; My husband's B12 levels are very high. Is this because of the supplements he takes?; With the help of CM Core and chromium, our hemoglobin A1c is trending downward!; How can I help a patient with gastroparesis due to diabetes?