Home Blog Page 561

Building an OS for AI Agents

0

A New Startup Aims to Build an Operating System for AI Agents

Among the leaders of the new startup, /dev/agents, is Hugo Barra, Google’s former VP of Android product management, who says the company will revisit their “Android roots.” The startup is working on a cloud-based “next-gen operating system for AI agents” intended “for trusted agents to work with users across all of their devices.”

Background on AI Agents

AI companies are pushing AI agents as the next big leap in AI tools, promising digital assistants that can carry out tasks and make decisions autonomously and with little human input. Companies like Microsoft, Google, and OpenAI each have plans to launch some version of this concept as a product in the next few months.

/dev/agents’ Vision

“We can see the promise of AI agents, but as a developer, it’s just too hard to build anything good,” /dev/agents cofounder and CEO David Singleton told Bloomberg. He said the industry needs “an Android-like moment for AI.”

The company is working on a cloud-based operating system for AI agents that will require “new UI patterns, a reimagined privacy model, and a developer platform that makes it radically simpler to build useful agents.”

The Team Behind /dev/agents

Barra, who is serving as /dev/agents’ chief product officer, was a big public face for Android at Google, having managed the project during the early teens. He later worked for Xiaomi and then as the leader of Facebook’s Oculus VR team. Bloomberg notes that he and Singleton are joined at /dev/agents by CTO Ficus Kirkpatrick, an early Android engineer who was a VP of AR and VR at Meta, and chief design officer Nicholas Jitkoff, who worked on ChromeOS design.

Conclusion

/dev/agents aims to make it easier for developers to build AI agents by creating a cloud-based operating system that addresses the challenges of building useful and trustworthy AI agents. With a team of experienced leaders from the tech industry, the company is well-positioned to make a significant impact in the AI space.

FAQs

Q: What is /dev/agents?
A: /dev/agents is a new startup that aims to build an operating system for AI agents.

Q: Who is behind /dev/agents?
A: The company is led by Hugo Barra, Google’s former VP of Android product management, and David Singleton, /dev/agents’ CEO and former Google engineer.

Q: What is the goal of /dev/agents?
A: The company aims to make it easier for developers to build AI agents by creating a cloud-based operating system that addresses the challenges of building useful and trustworthy AI agents.

Q: When will /dev/agents launch its operating system?
A: The company has not announced a specific launch date for its operating system, but it is expected to launch in the near future.

Shapelab Lite

0

Shapelab Lite: The First Polygon-Based 3D Sculpting App for Standalone VR

Shapelab Lite is billed as the first polygon-based 3D sculpting app for some of the best VR headsets, Meta Quest 3S, Quest 3, and Quest Pro. Now available in early access, it brings professional-grade 3D sculpting to standalone VR, offering an affordable and portable solution that’s suitable for beginners and creators without access to PC equipment.

What is Shapelab Lite?

The options for 3D modelling continue to expand rapidly on top of the core tools we recommend in our pick of the best 3D modelling software, opening access to more people. VR is now bringing an extra dimension to the area, opening up new workflows, and Shapelab Lite is one of the newest releases.

Features

Shapelab Lite brings essential features from the Shapelab PCVR app to standalone VR at a more accessible price. Adapted for devices with lower processing power, it’s designed for immersive 3D sculpting using an intuitive interface that allows users to freely shape ideas in 3D space with enhanced control.

Users can create props, characters, and digital concepts for applications, games, and virtual worlds, from basic forms to complex designs. Shapelab reckons VR sculpting can provide a faster workflow and greater precision.

What’s New?

“We’re excited to bring the core features of Shapelab PCVR to standalone VR users, empowering a new wave of creators,” commented Daniel Andrassy, Chief Product Officer of Shapelab. at launch. “This is just the beginning of what we envision for the future of Shapelab Lite. As an early-access software, we’re actively listening to user feedback to guide future updates and ensure the app meets the needs of our community.”

Technical Details

The app is based on a polygon mesh foundation, and also includes dynamic topology, enabling on-the-fly adjustments of detail by tessellating or decimating polygons, adding flexibility where detail is needed. Shapelab notes that on standalone devices, users may notice performance limitations, with framerate drops around 1.5 million polygons. It recommends reducing polygon counts with low-resolution brushes or decimating the model using the Mesh Density tab to maintain performance.

Pricing and Availability

Shapelab Lite is available from the Meta store priced at $14.99. See Meta Quest prices below if you don’t yet have a headset.

Conclusion

Shapelab Lite is an exciting new development in the world of 3D sculpting, bringing professional-grade tools to standalone VR headsets. With its intuitive interface and powerful polygon-based foundation, it’s an accessible and affordable solution for creators of all skill levels.

FAQs

Q: What is Shapelab Lite?
A: Shapelab Lite is a polygon-based 3D sculpting app for standalone VR headsets, Meta Quest 3S, Quest 3, and Quest Pro.

Q: What are the key features of Shapelab Lite?
A: Shapelab Lite includes a polygon mesh-based foundation, optional dynamic topology mode, intuitive controls, standalone optimization, and accessibility for all skill levels.

Q: How much does Shapelab Lite cost?
A: Shapelab Lite is available from the Meta store priced at $14.99.

Q: Is Shapelab Lite available for PC?
A: No, Shapelab Lite is specifically designed for standalone VR headsets.

Q: Can I use Shapelab Lite on my Meta Quest headset?
A: Yes, Shapelab Lite is compatible with Meta Quest 3S, Quest 3, and Quest Pro headsets.

Programming Routines in 12 Programming Languages

0

Article

Over the past year, we’ve all come to know that ChatGPT can write code. I gave it a number of tests in PHP and WordPress that showed the strengths and weaknesses of ChatGPT’s coding capabilities.

But how far does ChatGPT’s coding knowledge extend? When I originally drafted this article in early 2023, I threw the classic "Hello, world" programming assignment against the 12 most popular languages in O’Reilly Media’s popularity rankings for 2023.

We’ve subsequently done a lot of analysis about programming language popularity, but even with this late 2024 update, I’m sticking with the original 12 languages we tested. While some of our 12 aren’t really massively popular languages, they’re still current and in use. This selection gives us a very good cross-section to better help us understand how well ChatGPT handles a wide range of languages.

Because "Hello, world" can often be coded in one line, I added a slight wrinkle, having ChatGPT present "Hello, world" ten times, each time incrementing a counter value. I also asked it to check the time and begin each sequence with "Good morning," "Good afternoon," or "Good evening."

This gives us a look at program flow and some intrinsic functions as well, but still keeps the code small enough that I can include a dozen screenshots in this article.

1. Java

ChatGPT describes Java as, "A general-purpose language used primarily for building desktop, web, and mobile applications, and known for its ‘write once, run anywhere’ philosophy."

Here’s ChatGPT’s code:

**2. Python**

ChatGPT describes Python as, “A general-purpose language used for data analysis, artificial intelligence, web development, and automation, and known for its readability and ease of use.”

**Here’s ChatGPT’s code:**

**3. Rust**

ChatGPT describes Rust as, “A systems programming language used for building high-performance and reliable software, and known for its memory safety and thread safety guarantees.”

**Here’s ChatGPT’s code:**

**4. Go**

ChatGPT describes Go as, “A systems programming language used for building scalable and efficient network and server applications, and known for its simplicity and built-in concurrency features.”

**Here’s ChatGPT’s code:**

**5. C++**

ChatGPT describes C++ as, “A systems programming language used for building operating systems, game engines, and high-performance applications, and known for its control over hardware and memory.”

**Here’s ChatGPT’s code:**

**6. JavaScript**

ChatGPT describes JavaScript as, “A client-side scripting language used for building interactive web applications, and known for its widespread use in web development and its ability to run in web browsers.”

**Here’s ChatGPT’s code:**

**7. C#**

ChatGPT describes C# as, “A general-purpose language used for building Windows desktop applications, games, and web applications, and known for its object-oriented features and integration with the .NET framework.”

**Here’s ChatGPT’s code:**

**8. C**

ChatGPT describes C as, “A systems programming language used for building operating systems, embedded systems, and high-performance applications, and known for its efficiency and low-level control.”

**Here’s ChatGPT’s code:**

**9. TypeScript**

ChatGPT describes TypeScript as, “A superset of JavaScript used for building large-scale web applications, and known for its optional static typing and advanced language features.”

**Here’s ChatGPT’s code:**

**10. R**

ChatGPT describes R as, “A language used for statistical computing and data analysis, and known for its powerful data manipulation and visualization capabilities.”

**Here’s ChatGPT’s code:**

**11. Kotlin**

ChatGPT describes Kotlin as, “A general-purpose language used for building Android apps, server-side applications, and web applications, and known for its conciseness and interoperability with Java.”

**Here’s ChatGPT’s code:**

**12. Scala**

ChatGPT describes Scala as, “A language used for building scalable and distributed applications, and known for its support for functional programming and its integration with the Java Virtual Machine.”

**Here’s ChatGPT’s code:**

**Final thoughts (and a little Forth)**

As a computer languages geek, I found this exercise super fun. That said, there are some things to keep in mind. First, I didn’t test all the code. Testing this many outputs is outside the scope of this article. That said, I did read through the generated code and, for most languages, the code looked good.

**Conclusion:**

My recommendations stand: use it as a tool, but test, test, and test.

**FAQs:**

**Q: How does ChatGPT generate code?**
A: ChatGPT uses a combination of natural language processing and machine learning algorithms to generate code.

**Q: What are the strengths and weaknesses of ChatGPT’s coding capabilities?**
A: The strengths of ChatGPT’s coding capabilities include its ability to generate code in a variety of programming languages, its ability to handle complex logic and algorithms, and its ability to provide accurate and efficient code. The weaknesses of ChatGPT’s coding capabilities include its limited ability to handle very large or complex projects, its limited ability to provide detailed comments and documentation, and its limited ability to provide debugging and testing support.

**Q: Can I use ChatGPT to generate code for my own projects?**
A: Yes, you can use ChatGPT to generate code for your own projects. However, it is important to note that ChatGPT is a tool and not a substitute for human expertise and judgment. It is important to review and test the generated code thoroughly to ensure that it meets your needs and is free of errors.

**Q: How do I get started with using ChatGPT for coding?**
A: To get started with using ChatGPT for coding, you will need to sign up for a free account on the ChatGPT website. Once you have an account, you can access the ChatGPT code generator and start generating code.

Major Zoom rebrands, prioritizing AI over video

0

Ask anyone what they think of when they hear the word Zoom, and they’ll probably say video calls. The conferencing app came into its own during the Coronavirus lockdown, with everything from HR meetings to birthday parties taking place via the software. But in a somewhat surprising move, it seems Zoom is keen to change the channel when it comes to its video-centric reputation.

Zoom Drops “Video” from Its Name, Embracing AI

Zoom has today relaunched as an ‘AI-first’ company, dropping ‘video’ from its name and going ‘far beyond video in the future of work’. Zoom is by no means the first company to embrace AI in its branding, but will shifting focus from its most famous feature to something altogether more zeitgeisty prove a wise move in the long-run?

A New Era for Zoom

Allow us to reintroduce ourselves. Today, we are officially dropping “video” from our legal name and will be known simply as Zoom Communications, Inc. The context: Although you may know Zoom as “Zoom,” until today our official legal name was “Zoom Video Communications Inc.” Until now, this accurately reflected the solutions we provided, as we were heavily focused on helping people around the world connect with one another using our video communications software,” announces Zoom’s CEO Eric S. Yuan in a blog post.

While that is still a priority, Zoom is now about so much more than video meetings. We are an AI-first company delivering modern, hybrid work solutions that enable you to collaborate seamlessly. And that’s why today, we are officially dropping “video” from our legal name. Starting today, we’ll be known simply as Zoom Communications Inc.

AI Companion and Digital Twin

Zoom has been keen to highlight its tools outside of video for a while. Back in 2021 the company debuted a new logo designed to emphasise its entire suite of features. ” With this new brand direction, Zoom is highlighting tools such as its new AI Companion. “Our AI assistant, Zoom AI Companion, is the heartbeat of our evolution into an AI-first company and is critical in helping our customers uncover new opportunities for greater productivity,” Yuan adds. “Over time, we believe these capabilities will translate into a fully customisable digital twin equipped with your institutional knowledge, freeing up a whole day’s worth of work and allowing you to work just four days per week.”

Risks and Rewards

While the company’s AI push certainly makes sense, reframing the entire brand around it does seem a little… impulsive. Sure, AI isn’t quite the passing fad that, say, NFTs were, but focussing solely on the ‘next big thing’ does feel like one way of ensuring you’ll need to rebrand again in a few years’ time. Mark Zuckerberg’s obsession with the metaverse seems a little quaint now that AI has usurped it as a buzzword – but his company is stuck with the name ‘Meta’.

Conclusion

Time will tell whether Zoom’s new brand direction proves successful – and helps establish its reputation as a brand that offers more than just video. But as we’ve seen with the disastrous Jaguar rebrand this month, it can be extremely risky for a brand to ignore its heritage.

FAQs

Q: Why is Zoom dropping “video” from its name?
A: Zoom is shifting its focus from video-centric solutions to AI-powered tools and hybrid work solutions.

Q: What does this mean for Zoom’s video conferencing capabilities?
A: Zoom’s video conferencing capabilities will still be available, but the company is expanding its offerings to include AI-powered tools and digital twin technology.

Q: Will Zoom’s rebranding affect its existing customers?
A: No, Zoom’s rebranding will not affect its existing customers. The company’s services and products will remain the same, with the new branding reflecting the company’s expanded focus on AI and hybrid work solutions.

Q: What is Zoom’s AI Companion?
A: Zoom’s AI Companion is an AI-powered assistant that helps customers uncover new opportunities for greater productivity and collaboration.

Q: What is Zoom’s digital twin technology?
A: Zoom’s digital twin technology is a fully customisable digital representation of an individual’s institutional knowledge, allowing them to work more efficiently and effectively.

US to Introduce New Restrictions on China’s Access to Cutting-Edge Chips

0

US Export Controls on China: Did the Measures Succeed in Limiting Beijing’s AI Ambitions?

Background

The US government has been imposing export controls on China aimed at limiting its ability to manufacture advanced silicon for years. This move was intended to curb China’s growing ambitions in the field of artificial intelligence (AI). However, a recent development has raised questions about the effectiveness of these controls.

Huawei’s Latest AI Training Chip

Chinese tech giant Huawei has sent samples of its latest AI training chip, called Ascend, to customers, including ByteDance, the parent of TikTok, and Baidu, China’s leading search engine and autonomous driving systems. This move has sparked concerns that the company may be able to train large AI models without relying on US-made chips.

Export Restrictions

Export restrictions on China’s AI sector began under the first Trump administration. In 2019, several up-and-coming Chinese AI firms were added to the entity list, requiring US firms to obtain a special license to do business with them. The Biden administration further tightened the controls in October 2022, limiting exports of cutting-edge GPU chips, including those made by Nvidia.

Impact Assessment

It is challenging to gauge the impact of these controls, and some experts question whether they are driving China to make more rapid advances in chipmaking, reducing its reliance on American companies. A report by the Center for Strategic and International Studies argued that China had already begun ramping up investment in domestic chipmaking before the US government implemented the export controls.

Recent Developments

In late 2023, Huawei unveiled the Mate 60, a smartphone featuring an advanced chip from Chinese chipmaker SMIC. This announcement raised concerns about SMIC’s progress in advancing its own manufacturing techniques. However, further analysis indicated that Huawei and SMIC were still reliant on foreign suppliers.

Conclusion

The effectiveness of US export controls on China’s AI ambitions remains uncertain. While the measures may have initially slowed China’s progress, they may have also driven the country to invest in domestic chipmaking and develop alternative solutions. As the global AI landscape continues to evolve, it is crucial for policymakers to reassess their approach to addressing the potential risks and challenges posed by China’s growing capabilities.

FAQs

Q: What are the US export controls on China?
A: The US government has imposed export controls on China aimed at limiting its ability to manufacture advanced silicon for years.

Q: What is Huawei’s latest AI training chip?
A: Huawei’s latest AI training chip is called Ascend, which has been sent to customers, including ByteDance and Baidu.

Q: What is the impact of the export controls?
A: It is challenging to gauge the impact of the controls, and some experts question whether they are driving China to make more rapid advances in chipmaking, reducing its reliance on American companies.

Favourite Coffee Machine

0

My Journey to Becoming a Coffee Connoisseur

I’m not sure exactly when I became a ‘coffee person’. Where once I baulked at the "don’t talk to me until I’ve had my coffee" types, now I’d really prefer it if, for God’s sake, you would stop talking to me until I’ve had my coffee(s). I think it might have something to do with my Moccamaster coffee maker – something that was gifted to me two Christmases ago and that I now could hardly live without.

The Moccamaster KBGV Select: A Game-Changer

The Moccamaster KBGV Select is a product that was gifted to me two Christmases ago, and it has changed the way I approach my daily routine. It’s a coffee maker that’s not only functional but also stylish, with a design that wouldn’t look out of place in a kitchen from any of the last five decades. Firing up the Moccamaster is my favourite part of my morning, and I’m so (unhealthily) attached to it that I have been known to take it on holiday with me. Utterly impractical? Yes. Worth it? Kind of.

A Limited-Time Offer

Right now, the Moccamaster KBGV Select is 30% off on Amazon, bringing the price down from $329 to $230. If it sounds a lot for a coffee maker, let me tell you – it’s almost worth it for the design alone.

Design and Performance

The Moccamaster KBGV Select is not just a pretty face. It’s also a high-performance coffee maker that can brew up to 10 cups at a time. It features a stainless steel thermal carafe and a unique hot plate that keeps your coffee at the perfect temperature for hours. Whether you’re a coffee connoisseur or just a casual fan, this machine is sure to impress.

A Deal Worth Taking Advantage Of

If you’re in the market for a new coffee maker, this deal is definitely worth taking advantage of. The Moccamaster KBGV Select is a top-of-the-line product that’s hard to find at a price this low. Don’t miss out on this opportunity to upgrade your morning routine.

Conclusion

In conclusion, the Moccamaster KBGV Select is a game-changer for coffee lovers. Its unique design, high-performance brewing capabilities, and affordable price make it a must-have for anyone who appreciates a good cup of coffee. Don’t miss out on this limited-time offer and upgrade your coffee game today.

Frequently Asked Questions

Q: What is the Moccamaster KBGV Select?
A: The Moccamaster KBGV Select is a high-performance coffee maker that features a unique design and can brew up to 10 cups at a time.

Q: Is the Moccamaster KBGV Select worth the price?
A: Yes, the Moccamaster KBGV Select is a top-of-the-line product that’s hard to find at a price this low.

Q: Is the Moccamaster KBGV Select available in the UK?
A: Yes, the Moccamaster KBGV Select is available in the UK, although the deal is not as good, with a 5% discount bringing the price down from £229 to £217.

KFC x Burger King Collab

0

KFC and Burger King Team Up for the Best of Both Worlds

Collaborative Cuisine: The BBF Burger

In a surprising turn of events, KFC and Burger King have put aside their rivalry to launch an exclusive collaboration, introducing the BBF Burger. This unique offering combines the best of both brands, featuring a sesame seed bun, iceberg lettuce, and melted cheddar cheese. Customers can choose between KFC’s signature fried chicken, Burger King’s flame-grilled beef, or a plant-based alternative, complete with a special white BBQ sauce.

A Harmonious Blend

According to La Parisien, the two brands have "decided to put their rivalry aside" (for now) in what they’re calling "the collab of the century." The BBF Burger is now available in France, marking the beginning of a new era for the fast-food giants.

A Musical Tribute

To celebrate their newfound friendship, KFC and Burger King have released a playful ad featuring employees from both brands singing War’s classic hit "Why Can’t We Be Friends?" The campaign has also taken over their social media channels, with profile pictures swapped out to display both brand logos, commemorating their harmonious union.

A Visual Treat

Check out the ad campaign in action:

[Insert YouTube video]

A New Standard for Branding

In a time when fast-food chain rivalry is becoming stale, it’s refreshing to see KFC and Burger King break the mold and work together. This collaboration not only showcases the best of both brands but also promotes a message of unity and friendship. Who knows? Maybe this is the start of a new trend in the fast-food industry.

FAQs

Q: Where can I find the BBF Burger?
A: The BBF Burger is currently available in France.

Q: What are the options for the burger patty?
A: Customers can choose between KFC’s signature fried chicken, Burger King’s flame-grilled beef, or a plant-based alternative.

Q: Is this a limited-time offer?
A: As of now, there are no plans to make the BBF Burger a permanent menu item, but we’ll keep you updated on any future developments.

Get Ready for a Taste of the Future

Stay tuned for more updates on this exciting collaboration and other thrilling developments in the world of fast food. For more news on branding and design, check out our latest articles and stay ahead of the curve.

How I Bought Meta Ray-Bans for 20% off on Black Friday

0

Meta Ray-Ban Smart Glasses: A Black Friday Deal to Beat

I don’t think anyone — not even Meta — expected last year’s Ray-Ban smart glasses to be as big of a hit as they have been. However, packing a slew of useful features into a widely accepted form factor has made them one of the most successful tech gadgets in recent years. Since reviewing them a year ago, I still wear mine whenever I work, travel, or go out for walks.

A Competitive Offer

That’s why I’m spotlighting one of the most competitive offers on the smart glasses yet, with both Meta and major retailers selling the wearable for 20% off, bringing the starting price down to just $239. The best part? Amazon will even bundle a $90 gift card when you checkout with the code ‘WAYFARER90’.

Key Features

I won’t get into the nitty-gritty of the Meta Ray-Bans, but their core features include:

  • A 12-megapixel ultra-wide lens for capturing photos and videos
  • Bluetooth audio playing
  • Meta AI for conversing and asking questions

I’ve found the camera capability ideal for when I’m recording footage of me testing and demoing products at briefings, conventions, and trade shows. It’s also handy when driving, and I want a shot of my scenic views.

Updates and Limitations

Since publishing my review, Meta has rolled out several updates to the glasses that have made them even more worth the investment. These include:

  • Recording up to three minutes (instead of one minute)
  • Remembering things for you thanks to its multimodal AI
  • Translating conversations (though it’s limited to Spanish for now)

There are more features to come, of course.

Availability and Deal Details

Notably, this Black Friday offer applies to every frame and style of the Meta Ray-Bans except for one: the limited-edition release from October. But for just about everything else, you can pick up a pair, including with transition lenses and prescriptions, for 20% off and with a free $90 Amazon gift card, the best deal I’ve seen for the wearables yet. You’ll want to act fast, as the offer will run while supplies last. When in doubt, check listings from major retailers like Amazon and Best Buy if your preferred design is no longer available on the Ray-Ban website.

Conclusion

Deals are subject to sell out or expire at any time, though ZDNET remains committed to finding, sharing, and updating the best product deals for you to score the best savings. Considering this offer is for a refurbished product, inventory is even more important than timing, so keep an eye out for the stock of the model that interests you the most.

Frequently Asked Questions

Q: What is the starting price of the Meta Ray-Ban smart glasses?
A: The starting price is $239, with a 20% discount.

Q: What are the key features of the Meta Ray-Ban smart glasses?
A: The key features include a 12-megapixel ultra-wide lens, Bluetooth audio playing, and Meta AI for conversing and asking questions.

Q: What is the duration of the recording feature?
A: The recording feature is up to three minutes.

Q: Is the translation feature limited to a specific language?
A: Yes, the translation feature is currently limited to Spanish.

Q: How long will this offer run?
A: The offer will run while supplies last.

Q: Can I purchase this deal from other retailers?
A: Yes, you can check listings from major retailers like Amazon and Best Buy if your preferred design is no longer available on the Ray-Ban website.

Linking Renewable Energy Sources to the Grid with AI

0

Unlocking the Power of AI to Speed Up the Connection of New Energy Projects to the Grid

The US Department of Energy (DOE) has announced $30 million in funding available through its Artificial Intelligence for Interconnection (AI4IX) program to speed up the connection of new energy projects to the grid. The goal is to foster partnerships between grid operators and software and energy project developers to get new sources of electricity online faster.

The Challenge: A Backlog of New Energy Projects

The process of connecting new energy projects to the grid is currently slow, with some projects taking up to seven years to complete. This has resulted in a massive backlog of 2,600 gigawatts of new energy generation and storage projects awaiting interconnection. This is roughly twice the amount of capacity the US currently has for generating electricity.

The Cause of the Delay: Inefficient Manual Process

The slow interconnection process is attributed to a manual process for reviewing applications, which is labor-intensive and prone to errors. Utilities and grid operators need project developers to complete a series of studies to determine the necessary grid upgrades and their cost. This process can lead to significant delays, particularly when applications are incomplete or missing information.

How AI Can Help

The DOE is exploring the use of AI to streamline the interconnection application process. AI algorithms can quickly identify deficient applications and notify their authors, reducing the time spent on reviewing and correcting errors. Utilities can also use AI software trained on accurate applications to speed up the process.

The Benefits of AI in Energy

New solar and onshore wind farms are generally cheaper sources of electricity than coal or gas and do not produce air pollution or contribute to climate change. The benefits of AI in energy are reflected in the types of energy infrastructure being built in the US, with over 94% of new energy capacity waiting to connect to the grid being carbon-free, primarily solar, wind, and battery-based.

The Future of AI in Energy

The DOE is accepting proposals for the first round of AI4IX funding through January 10th, 2025, with awardees expected to be announced in winter 2025. Despite promises to undo Joe Biden’s clean energy legacy, the Trump administration has not specifically targeted funding from the Bipartisan Infrastructure Law, which funds the AI4IX initiative. Additionally, the incoming administration’s commitment to "make America the AI capital of the world" could lead to a focus on deregulation in the energy sector, potentially benefiting AI data centers.

Conclusion

The US Department of Energy’s AI4IX program aims to harness the power of AI to speed up the connection of new energy projects to the grid. With AI, utilities and grid operators can reduce the time spent on reviewing and correcting errors, getting new sources of electricity online faster. As the demand for electricity from data centers is expected to rise 160% by 2030, getting more electricity generation online will remain a priority for the DOE moving forward.

FAQs

Q: What is the goal of the AI4IX program?
A: The goal of the AI4IX program is to speed up the connection of new energy projects to the grid using artificial intelligence.

Q: How much funding is available for the AI4IX program?
A: The US Department of Energy has announced $30 million in funding available for the AI4IX program.

Q: What is the current process for connecting new energy projects to the grid?
A: The current process is manual and labor-intensive, with utilities and grid operators requiring project developers to complete a series of studies to determine necessary grid upgrades and their cost.

Q: How can AI help in the energy sector?
A: AI can help in the energy sector by streamlining the interconnection application process, reducing the time spent on reviewing and correcting errors, and enabling utilities to use AI software trained on accurate applications to speed up the process.

Procedural Paradise

0

Rockstar Games’ GTA 6 Trailer Sparks Speculation About Procedural Object Generation

Despite the release of the GTA 6 trailer, Rockstar Games still isn’t giving too much away about the highly anticipated game. But fans think they may have just gleaned a technical detail.

Reddit Users Uncover Procedural Object Generation in RAGE Engine

Over on Reddit, someone has pointed out that the profile of Rockstar’s principal engine programmer on LinkedIn highlights work on procedural object generation in the RAGE engine, backing up previous rumors.

What Does Procedural Object Generation Mean for GTA 6?

The latest version of Rockstar’s RAGE engine for GTA 6 appears to feature procedural object generation, meaning the game can create objects differently each time, adding variety and realism to the world.

Development Tool or Player-Facing Feature?

While procedural object generation could add variety and realism to the game world, it seems most likely that it’s a development tool and that players won’t be aware of the finished result.

For example, the tech could save devs from having to add every tree and bush individually, but players may not know which objects were placed in this way.

Previous Rumors and Theories

Fans had previously predicted that GTA VI would make use of Take-Two patents for procedural interiors, which could help create more realism. There was even a theory that characters will be able to gain or lose weight depending on their lifestyle.

Conclusion

While the specifics of GTA 6’s procedural object generation remain unclear, it’s clear that Rockstar Games is investing in cutting-edge technology to create a more immersive gaming experience. As more details emerge, fans will be eagerly awaiting the game’s release.

FAQs

Q: What is procedural object generation?
A: Procedural object generation is a technique that allows games to create objects differently each time, adding variety and realism to the game world.

Q: How will procedural object generation affect gameplay?
A: It’s unclear whether procedural object generation will affect gameplay directly. It’s possible that the tech will be used as a development tool to save time and resources, rather than being a feature that players can interact with.

Q: Will players notice procedural object generation?
A: It’s unlikely that players will notice procedural object generation in the final game. The tech will likely be used behind the scenes to create a more realistic and varied game world.