Connect with us

Tech

Substack launches a built-in recording studio

Published

on

Publishing platform Substack is continuing to invest in video content as it launches the Substack Recording Studio, a built-in mechanism for creators to pre-record and publish videos.

The studio, which is only available on the desktop, can support solo videos as well as conversations with up to two guests. Creators can add custom watermarks to their videos and share their screen with co-hosts. Once the recording is over, Substack auto-generates clips and thumbnails for sharing.

“Until now, creating video on Substack meant going live, or stitching together a separate stack of tools: a recording platform, a way to create and distribute clips, and something to design a thumbnail,” the company shared in a blog post. “Substack Studio brings all of those tools into one place.”

The post also notes that creators who have used audio or video on Substack in the past 90 days have grown revenue 50% faster than creators who haven’t.

Advertisement

Though Substack is predominantly known as a newsletter platform, the company has been showing a keen interest in video over the last few years, prioritizing updates that position it more like a Patreon competitor, encouraging creators to explore multimedia.

While Substack has allowed creators to upload videos since 2022, it began letting creators livestream and monetize videos last year, then launched a Creator Accelerator Fund of $20 million to help transition creators from other platforms to Substack.

Like Instagram, Substack also recently launched a TV app, which is available on Apple TV and Google TV. The app allows viewers to watch video posts and livestreams on TV and includes a TikTok-like “For You” row that provides further recommendations.

Despite the popularity of watching short-form videos on a phone, people seem to be turning to TV screens to watch longer-form content. Netflix has been making significant investments in bringing video podcasts to TV. On YouTube, viewers watched over 700 million hours of podcasts each month on living room devices (like TVs) in 2025, up from 400 million per month last year.

Advertisement

Source link

Continue Reading
Click to comment

Leave a Reply

Your email address will not be published. Required fields are marked *

Tech

Google finds that AI agents learn to cooperate when trained against unpredictable opponents

Published

on

Training standard AI models against a diverse pool of opponents — rather than building complex hardcoded coordination rules — is enough to produce cooperative multi-agent systems that adapt to each other on the fly. That’s the finding from Google’s Paradigms of Intelligence team, which argues the approach offers a scalable and computationally efficient blueprint for enterprise multi-agent deployments without requiring specialized scaffolding.

The technique works by training an LLM agent via decentralized reinforcement learning against a mixed pool of opponents — some actively learning, some static and rule-based. Instead of hardcoded rules, the agent uses in-context learning to read each interaction and adapt its behavior in real time.

Why multi-agent systems keep fighting each other

The AI landscape is rapidly shifting away from isolated systems toward a fleet of agents that must negotiate, collaborate, and operate in shared spaces simultaneously. In multi-agent systems, the success of a task depends on the interactions and behaviors of multiple entities as opposed to a single agent.

The central friction in these multi-agent systems is that their interactions frequently involve competing goals. Because these autonomous agents are designed to maximize their own specific metrics, ensuring they don’t actively undermine one another in these mixed-motive scenarios is incredibly difficult.

Advertisement

Multi-agent reinforcement learning (MARL) tries to address this problem by training multiple AI agents operating, interacting, and learning in the same shared environment at the same time. However, in real-world enterprise architectures, a single, centralized system rarely has visibility over or controls every moving part. Developers must rely on decentralized MARL, where individual agents must figure out how to interact with others while only having access to their own limited, local data and observations.

multi-agent reinforcement learning

Multi-agent reinforcement learning

One of the main problems with decentralized MARL is that the agents frequently get stuck in suboptimal states as they try to maximize their own specific rewards. The researchers refer to it as “mutual defection,” based on the Prisoner’s Dilemma puzzle used in game theory. For example, think of two automated pricing algorithms locked in a destructive race to the bottom. Because each agent optimizes strictly for its own selfish reward, they arrive at a stalemate where the broader enterprise loses.

Another problem is that traditional training frameworks are designed for stationary environments, meaning the rules of the game and the behavior of the environment are relatively fixed. In a multi-agent system, from the perspective of any single agent, the environment is fundamentally unpredictable and constantly shifting because the other agents are simultaneously learning and adapting their own policies.

Advertisement

While enterprise developers currently rely on frameworks that use rigid state machines, these methods often hit a scalability wall in complex deployments.

“The primary limitation of hardcoded orchestration is its lack of flexibility,” Alexander Meulemans, co-author of the paper and Senior Research Scientist on Google’s Paradigms of Intelligence team, told VentureBeat. “While rigid state machines function adequately in narrow domains, they can fail to scale as the scope and complexity of agent deployments broaden. Our in-context approach complements these existing frameworks by fostering adaptive social behaviors that are deeply embedded during the post-training phase.”

What this means for developers using LangGraph, CrewAI, or AutoGen

Frameworks like LangGraph require developers to explicitly define agents, state transitions, and routing logic as a graph. LangChain describes this approach as equivalent to a state machine, where agent nodes and their connections represent states and transition matrices. Google’s approach inverts that model: rather than hardcoding how agents should coordinate, it produces cooperative behavior through training, leaving the agents to infer coordination rules from context.

The researchers prove that developers can achieve advanced, cooperative multi-agent systems using the exact same standard sequence modeling and reinforcement learning techniques that already power today’s foundation models.

Advertisement

The team validated the concept using a new method called Predictive Policy Improvement (PPI), though Meulemans notes the underlying principle is model-agnostic.

“Rather than training a small set of agents with fixed roles, teams should implement a ‘mixed pool’ training routine,” Meulemans said. “Developers can reproduce these dynamics using standard, out-of-the-box reinforcement learning algorithms (such as GRPO).”

By exposing agents to interact with diverse co-players (i.e., varying in system prompts, fine-tuned parameters, or underlying policies) teams create a robust learning environment. This produces strategies that are resilient when interacting with new partners and ensures that multi-agent learning leads toward stable, long-term cooperative behaviors.

How the researchers proved it works

To build agents that can successfully deduce a co-player’s strategy, the researchers created a decentralized training setup where the AI is pitted against a highly diverse, mixed pool of opponents composed of actively learning models and static, rule-based programs. This forced diversity requires the agent to dynamically figure out who it is interacting with and adapt its behavior on the fly, entirely from the context of the interaction.

Advertisement
diverse multi-agent learning environment

Diverse multi-agent training

For enterprise developers, the phrase “in-context learning” often triggers concerns about context window bloat, API costs, and latency, especially when windows are already packed with retrieval-augmented generation (RAG) data and system prompts. However, Meulemans clarifies that this technique focuses on efficiency rather than token count. “Our method focuses on optimizing how agents utilize their available context during post-training, rather than strictly demanding larger context windows,” he said. By training agents to parse their interaction history to infer strategies, they use their allocated context more adaptively without requiring longer context windows than existing applications.

Using the Iterated Prisoner’s Dilemma (IPD) as a benchmark, the researchers achieved robust, stable cooperation without any of the traditional crutches. There are no artificial separations between meta and inner learners, and no need to hardcode assumptions about how the opponent’s algorithm functions. Because the agent is adapting in real-time while also updating its core foundation model weights over time across many interactions, it effectively occupies both roles simultaneously. In fact, the agents performed better when given no information about their adversaries and were forced to adapt to their behavior through trial and error. 

Multi-agent training

Multi-agent training works best when given a pool of diverse agents and allowed to explore the rules by themselves (source: arXiv)

Advertisement

The developer’s role shifts from rule writer to architect

The researchers say that their work bridges the gap between multi-agent reinforcement learning and the training paradigms of modern foundation models. “Since foundation models naturally exhibit in-context learning and are trained on diverse tasks and behaviors, our findings suggest a scalable and computationally efficient path for the emergence of cooperative social behaviors using standard decentralized learning techniques,” they write.

As relying on in-context behavioral adaptation becomes the standard over hardcoding strict rules, the human element of AI engineering will fundamentally shift. “The AI application developer’s role may evolve from designing and managing individual interaction rules to designing and providing high-level architectural oversight for training environments,” Meulemans said. This transition elevates developers from writing narrow rulebooks to taking on a strategic role, defining the broad parameters that ensure agents learn to be helpful, safe, and collaborative in any situation.

Source link

Advertisement
Continue Reading

Tech

‘It’s been 20 years, it’s surprising to me how little has changed’: Sonos CEO and former Pandora exec Tom Conrad reveals what he thinks is ‘holding us back’ from more music streaming innovation

Published

on

I spoke to Sonos CEO Tom Conrad recently, to discuss the launch of the company’s new Sonos Play and Sonos Era 100 SL speakers, and how the company’s big changes under his leadership influenced their development.

Naturally, we also discussed what really went wrong with the Sonos app disaster and how he’s directing the team the fix it, and I also asked Conrad whether the launch of Dolby Atmos FlexConnect is a danger or an opportunity for Sonos.

But given the fact that Conrad’s history includes 10 years at Pandora in the early days of music streaming — he was Chief Technology Officer when he left in 2024 — and that Sonos is so deeply connected to the music-streaming services, I wanted to ask what he thought about these services today, both in terms of working with them now on the Sonos app, and personally as a streaming pioneer.

Article continues below

Advertisement

New Sonos app home screen shown on an iPhone, held in a person's hand

(Image credit: Sonos)

“One of the things I’m really excited about in terms of our software roadmap is working more closely with our music service partners,” he begins. “All I really care about with with respect to listening to music on Sonos is getting the customer as quickly and seamlessly as possible to their outcome.

Source link

Continue Reading

Tech

RSAC’s Innovation Sandbox is where cybersecurity’s next giants are born

Published

on

Presented by RSAC


For two decades, the RSAC Innovation Sandbox contest has been the industry’s most reliable crystal ball. With over $50.1 billion in investments and more than 100 acquisitions across its alumni, the contest has an extraordinary track record of spotting cybersecurity’s future leaders before the rest of the world knows their names.

The contest’s track record also offers a story of generational innovation that speaks for itself, says Cecilia Marinier, vice president of innovation and scholars at RSAC.

“We see one founder buying another founder buying another founder,” Marinier says. “Think about the amount of accumulated knowledge, and how powerful it is to continue to build on such solid foundations.”

Advertisement

It’s a pattern that repeats throughout the Sandbox’s alumni network. Last year, Donnchadh Casey and James White, CEOs of Calypso AI sold their company to F5, whose current Chief Product Officer is Kunal Anand. Anand was on the RSAC 2016 Innovation Sandbox stage as co-founder of Prevoty. His company was bought by Imperva, which was the winner of the contest in 2007. It’s all resulted in a tight-knit cycle of founders, operators, and acquirers that continues to shape the cybersecurity ecosystem.

Oliver Friedrichs, currently GM of CrowdStrike appeared on the Innovation Sandbox stage twice, winning in 2016 with Phantom, which was acquired by Splunk. He then returned as a 2023 finalist with Pangea, which was later acquired by CrowdStrike. Ali Golshan, a 2017 finalist with StackRox, went on to sell Gretel AI to Nvidia. Rehan Jalil, the 2020 winner who brought Securiti AI to the stage, saw his company acquired by Veeam for $2.7 billion.

“That’s with a B,” Marinier notes, underscoring the scale of value emerging from the Sandbox alumni network. “Those numbers also speak for themselves.”

See the 2026 RSAC top 10 finalists live on stage

This year’s Top Ten finalists take the stage at Moscone Center in San Francisco on Monday, March 23, each delivering a three-minute pitch to a panel of seasoned industry judges. The lineup reads like a map of enterprise security’s most urgent pressure points in 2026: agentic AI governance, non-human identity management, social engineering defense, supply chain provenance, and AI-native code security, among others.

Advertisement

Finalists include:

  • Charm Security: uses its agentic AI workforce to targets scams and human-centric fraud

  • Clearly AI: helps teams ship secure software fast by replacing manual work with AI-powered reviews

  • Crash Override: embeds in CI/CD to capture build execution data that APIs can’t access

  • Fig Security: finds and fixes broken security flows across the entire SecOps stack

  • Geordie AI: a security and governance platform purpose-built for AI agents

  • Glide Identity: verifies users instantly and securely—without passwords or SMS codes

  • Humanix: designed to stop social engineering attacks by detecting and responding to attacks on people

  • Realm Labs: enables enterprises to see inside the AI’s “brain” and monitor its thoughts during inference

  • Token Security: focused on governing AI agents and machine identities at enterprise scale

  • ZeroPath: replaces traditional SAST, SCA, and secrets scanning with a single AI-native engine capable of detecting complex business logic flaws.

“The most disruptive technology right now is obviously AI, and it’s bringing with it some brand-new security challenges that are being developed at the same rate that AI is evolving,” Marinier says. “Our finalists are bringing cutting-edge solutions for tackling those problems and beating those nefarious actors.”

Agentic AI, in particular, emerged as a dominant theme this cycle.

“Governance for AI, continuous monitoring, automation, SecOps resilience, everything from threat modeling to how to use agentic AI, and then controlling against agentic AI getting into systems, it’s all there in our top 10,” she says. “It’s the call to action to today and tomorrow’s security leaders.”

Advertisement

Who selects the winners, and why it matters

One of the less-discussed secrets behind the Sandbox’s track record is the rigor of its judging panel. This year’s panel includes:

  • Nasrin Rezai, SVP & CISO at Verizon

  • Larry Feinsmith, head of global technology strategy at JPMorganChase

  • David Chen, head of global technology investment banking at Morgan Stanley

  • Paul Kocher, cryptographer and entrepreneur

  • Niloofar Razi, operating partner at Capitol Meridian Partners

“We’re very careful about how we put together the panel,” Marinier explains. “They have to represent a variety of perspectives, including an eye for startups that are likely to have positive trajectories. They’re top leaders in the industry, who are able to recognize the companies that have risen above the noise.”

Critically, RSAC itself plays no role in the selection, she adds.

“The judges select these companies,” she says. “They have for the past 20 years, and they will be going into the future.” That independence, she argues, is a core reason why the contest carries such weight with the industry.

Advertisement

The $5 million investment for the future of finalists

Beginning in 2025, as part of the contest’s 20th anniversary, all 10 finalists receive a $5 million investment in the form of a SAFE note, funded by Crosspoint Capital. It’s still early days for measuring the full impact, but Marinier points to the trajectory of ProjectDiscovery, last year’s winner.

Funding launched ProjectDiscovery from a hopeful startup to a company with enough traction to hire industry professionals with experience and know-how, who wouldn’t have previously considered an early-stage startup. Not only did they have the funds, they had the recognition, and they were able to attract great talent because they’re obviously going somewhere.

“The money is ultimately about extending the runway,” Marinier adds. “The SAFE note gives finalists breathing room to scale infrastructure and capitalize on the visibility the contest generates, before the spotlight fades.”

RSAC’s broader innovation ecosystem

The Innovation Sandbox contest is the flagship, but it’s the centerpiece of a significantly larger innovation infrastructure that Marinier has built over the past decade. In that time, RSAC’s innovation programming has touched more than 1,000 companies across multiple programs.

Advertisement

Launch Pad, now in its sixth year, functions as the Sandbox’s “little brother,” a Shark Tank-style forum where earlier-stage companies receive real feedback from judges without a winner being declared, though some of those companies are already starting to “graduate” to the next level of industry success. The Early Stage Expo, featuring 78 companies this year, gives attendees a window into what’s coming down the pipeline, sitting alongside the conference’s 600 main exhibitors.

The Innovation Showcase runs year-round, not just during conference week, with live Q&A sessions between entrepreneurs and audiences that are then carried into RSAC’s new membership platform, an effort to sustain connections across the full year, not just the five days in San Francisco.

There’s also a dedicated track for investors and entrepreneurs, featuring VCs sharing forward-looking perspectives, sessions on fundraising strategy, and design partnership frameworks. And for the next generation, RSAC’s Security Scholars program selects 60 students from universities across the country, with 22 presenting research posters on Wednesday of conference week.

“The security scholars are presenting their research that could lead to nascent technology,” Marinier says. “They’re in theearly phase, working their way up the ladder. One day they’ll make it onto our stages, and after that, the world’s their oyster.”

Advertisement

Why RSAC Conference is unmissable

For anyone serious about the future of cybersecurity, whether you’re a CISO, a founder, an investor, or an engineer, Marinier makes the case plainly.

“Building a safer society requires bold ideas, and new technologies, and real-world solutions,” she says. “RSAC Conference is bringing together some the newest, the smartest, the most innovative security perspectives in the industry for critical conversations about solving the security problems the world faces.”

The RSAC Innovation Sandbox contest kicks off at Moscone Center on Monday, March 23 at 9:30 AM PT. Winners will be announced by approximately noon the same day.


Sponsored articles are content produced by a company that is either paying for the post or has a business relationship with VentureBeat, and they’re always clearly marked. For more information, contact sales@venturebeat.com.

Advertisement

Source link

Continue Reading

Tech

AI-generated Slopoly malware used in Interlock ransomware attack

Published

on

AI-generated Slopoly malware used in Interlock ransomware attack

A new malware strain dubbed Slopoly, likely created using generative AI tools, allowed a threat actor to remain on a compromised server for more than a week and steal data in an Interlock ransomware attack.

The breach started with a ClickFix ruse, and in later stages of the attack, the hackers deployed the Slopoly backdoor as a PowerShell script acting as a client for the command-and-control (C2) framework.

IBM X-Force researchers analyzed the script and found strong indicators that it was created using a large language model (LLM), but could not determine which one.

Evidence pointing to AI-assisted development includes extensive commentary in the code, structured logging, error handling, and clearly named variables. All this is rare in human-developed malware.

Advertisement

They attributed the attack to a financially motivated group they track as Hive0163, “whose main objective is extortion through large-scale data exfiltration and ransomware.”

According to the researchers, Slopoly is rather unsophisticated, although its deployment in ransomware operators’ attack chains indicates that AI tools are actively used to accelerate custom malware development, which can help evade detection.

Although comments in the Slopoly script describe it as a “Polymorphic C2 Persistence Client,” IBM X-Force did not find any feature that would allow modifying its own code during execution.

“The script does not possess any advanced techniques and can hardly be considered polymorphic, since it’s unable to modify its own code during execution,” reads the IBM report.

Advertisement

“The builder may, however, generate new clients with different randomized configuration values and function names, which is standard practice among malware builders.”

IBM X-Force researchers believe that Slopoly was generated by a builder that inserted configuration values, such as beaconing intervals, command-and-control addresses, mutex names, and session IDs.

The malware is deployed in C:\ProgramData\Microsoft\Windows\Runtime\, and its main functions include:

  • Collecting system information
  • Sending a heartbeat beacon every 30 seconds to /api/commands
  • Polling for commands every 50 seconds
  • Executing received commands via cmd.exe
  • Sending command output back to the C2 server
  • Maintaining a rotating persistence.log file
  • Establishing persistence through a scheduled task named “Runtime Broker”

The commands it supports allow downloading and executing EXE, DLL, or JavaScript payloads; running shell commands and returning the results; changing beaconing intervals; updating itself; or exiting its own process.

The attack IBM observed started with a ClickFix social engineering flow, and deployed multiple malware components besides Slopoly, including the NodeSnake and InterlockRAT backdoors.

Advertisement
The observed attack chain
Attack chain deploying Slopoly in a later stage
Source: IBM X-Force

Interlock ransomware emerged in 2024 and was an early adopter of the ClickFix social engineering technique, and later also the FileFix variant.

The threat group has previously claimed attacks against high-profile organizations such as the Texas Tech University System, DaVita, Kettering Health, and the city of Saint Paul, Minnesota.

The Interlock ransomware payload observed in the attacks reported by IBM is a 64-bit Windows executable delivered via the JunkFiction loader.

It can execute as a scheduled task running as SYSTEM, and uses Windows Restart Manager API to release locked files, appending the ‘. !NT3RLOCK’ or ‘.int3R1Ock’ extensions on their encrypted copies.

IBM reports that Hive0163 may also have associations with the developers behind Broomstick, SocksShell, PortStarter, SystemBC, and the Rhysida ransomware operators.

Advertisement

Malware is getting smarter. The Red Report 2026 reveals how new threats use math to detect sandboxes and hide in plain sight.

Download our analysis of 1.1 million malicious samples to uncover the top 10 techniques and see if your security stack is blinded.

Source link

Continue Reading

Tech

Microsoft’s Copilot Health Uses AI to Turn Scattered Medical Records into Something You Can Actually Understand

Published

on

Microsoft Copilot Health AI Medical Records
Microsoft has just launched Copilot Health, a completely new feature of its AI assistant that functions as a health hub, deciphering your medical records and fitness tracker data to identify key health trends. Users get started by simply creating a dedicated tab in Copilot and give authorization to import data from the appropriate sources.



The system then collects data from electronic health records at over 50,000 hospitals and clinics across the United States via a business named HealthEx. Then there are lab reports from companies such as Function. More than 50 fitness devices are now connected, including Apple Health trackers, Oura rings, Fitbits, and other wearables. When users give the go-ahead, the system collects data on activity levels, sleep patterns, heart rates, and step counts.

Sale


ASUS ROG Xbox Ally – 7” 1080p 120Hz Touchscreen Gaming Handheld, 3-month Xbox Game Pass Premium…
  • XBOX EXPERIENCE BROUGHT TO LIFE BY ROG The Xbox gaming legacy meets ROG’s decades of premium hardware design in the ROG Xbox Ally. Boot straight into…
  • XBOX GAME BAR INTEGRATION Launch Game Bar with a tap of the Xbox button or play your favorite titles natively from platforms like Xbox Game Pass…
  • ALL YOUR GAMES, ALL YOUR PROGRESS Powered by Windows 11, the ROG Xbox Ally gives you access to your full library of PC games from Xbox and other game…


Once everything is connected, the AI does a nice job of sorting through the data and creating easy-to-read summaries. It searches for patterns that could have gone overlooked otherwise. A protracted period of restless nights could be attributed to changes in daily mobility or other factors identified in the records. Test findings that were previously collected individually are now gathered in one place, allowing the tool to identify potential correlations. Their responses will also include references to credible sources, such as summaries prepared by Harvard Health specialists.

Advertisement

Microsoft built this new feature to make it easier for users to prepare for doctor appointments. Many people arrive at tests unsure of what to ask or unable to recall critical details from previous appointments. Copilot Health sort of allows people to organize their thoughts ahead of time. Users are given suggestions for inquiries based on their own data. It also includes a feature that allows users to search for doctors based on their specialty, location, languages spoken, and insurance coverage.

Microsoft Copilot Health AI Medical Records
All interactions are kept separate from ordinary Copilot chats, which is important for privacy reasons. Data is encrypted regardless of whether it is stored or transferred. Users have complete control: disconnect any source, remove stored information, or just stop sharing entirely. Microsoft assures that the data will never be utilized to train their larger AI algorithms. The company has even received third-party certification for how it handles this type of situation, such as the ISO/IEC 42001 standard, which examines how to employ AI responsibly. A team of over 230 doctors from around the world assessed the approach and provided recommendations on how to make it safer.

Microsoft Copilot Health AI Medical Records
This launch comes at a busy time for consumer AI in healthcare. OpenAI, Anthropic, and Amazon already have technologies in place to handle personal records in a secure setting. Microsoft is using this as an opportunity to demonstrate their experience with health-related data, since they receive over 50 million health-related questions every day. Executives characterize the tool as a minor step toward gaining a better knowledge of medical conditions, but emphasize that it is a long way from providing actual diagnoses or treatment.

For the time being, the tool is only available in English and is limited to persons over the age of 18 in the United States. A waitlist allows users to participate in an early group that helps shape the experience. Microsoft intends to add languages, voice functions, and other geographies later on.

Source link

Advertisement
Continue Reading

Tech

Meta is testing clickable links in Instagram captions for verified subscribers

Published

on

Instagram has long limited users’ ability to share links, restricting link-sharing to Stories, Reels and user profiles. But that might now be changing. The company has started to test clickable links inside of post captions for subscribers to Meta Verified.

The new feature, which has been a long-requested update from creators, was spotted by blogger Andrea Valeria, who posted screenshots of a clickable Substack link she was able to add to an Instagram post. According to Valeria, an in-app message indicated she could share up to 10 links a month.

Meta confirmed to Engadget that it’s testing links in captions for subscribers to Meta Verified, but didn’t provide details on how many people have access to the feature or if it will be widely available. It does seem to be somewhat limited, however, as the link on Valeria’s post appears on Instagram’s mobile app, but now when viewing the same post on Instagram’s website.

Instagram’s restrictions on link-sharing have been a notable part of the platform since its early days. The limitation helped kickstart an entire industry of “link in bio” platforms like Linktree, which help creators direct followers to off-platform websites based on what they share on Instagram. If Meta begins implementing the feature widely, it could drastically change how creators are able to interact with their followers (although a 10-link per month limit would likely still require “link in bio” solutions).

Advertisement

The test is also the latest way that Meta has experimented with making link-sharing a paid feature. The company has also recently tested restricting creators’ ability to share links on Facebook by requiring a Meta Verified subscription. Meta Verified for creators starts at $14.99 a month, with the most expensive plans costing $499.99 a month.

Source link

Continue Reading

Tech

What skills can help with changing workplace responsibilities?

Published

on

In modern working environments, where responsibilities often blend together, it takes a degree of skill to navigate transforming expectations.

Artificial intelligence (AI), automation and technological advancements have certainly changed how we engage with work. In some cases, the burden of heavy work has been alleviated; in others, there is a sense of anxiety around excessive use leading to an atrophying of skills. 

But whether you are a firm believer, or an AI sceptic, it remains unlikely, especially if you are working within STEM, that your work has been unaffected by these advancements – particularly in day-to-day expectations for a role.

So, what skills can professionals in 2026 deploy to navigate a workplace undergoing a rebirth of sorts?

Advertisement

Talk it out

Arguably one of the more important skills at your disposal when navigating a changing working landscape is the ability to communicate well – not just with your employer, but your co-workers and any others affiliated with your place of work. During a period of transition, where you might find that your responsibilities are morphing or merging, it is crucial that you be able to succinctly and accurately communicate any concerns you may have, especially if you are confused about your role and how it is evolving.

In the workplace, much as in regular life, it is an advantage to be able to assess your needs, request necessary resources and confirm what is expected of you. You can’t perform to the best of your ability if you don’t fully understand the job itself – so ask. 

All for one 

Related to good communication, you need to be able to work with others if you are to develop new skills in an evolving workplace. If you find that more is expected of you and there are elements of your role that exceed your current abilities, then teamwork, mentorship and opportunities to work-shadow can help you get back on track; before long, you could be the one showing others the ropes.

By embracing a collaborative workspace and committing to the exchange of ideas and new processes, you can develop your skills quickly and be part of a team that is diverse in its capabilities. This approach also has the potential to expose you to new opportunities, as you are more likely to be seen as capable of moving between teams and projects. 

Advertisement

Tidy up

Organisation is another soft skill that often lends itself to success in a career in a rapidly changing space. This is for the very simple reason that if you are perhaps balancing too many plates at once, skills in organisation can help you power through.

Like many skills, organisation actually encompasses a range of other abilities – for example, time management, communication, delegation, strategic planning, goal tracking and analytical thinking, to name a few. If you make an effort to be more organised, you may find that you work better under pressure, and have time to learn the new and changing elements of your job without too much disruption to your schedule. 

Not everyone is going to be naturally organised. It can take practice, but if you start small – by making lists, becoming more detail-oriented and being more aware of how you are spending your time – you may find yourself better prepared for the larger challenges that crop up along the way. 

Open your mind

One important skill that we perhaps don’t hear about enough in a working context has to be the skill of empathy, which is the ability to understand and share how another person feels or views a situation. In the working environment, we can often, be it accidental or purposeful, become siloed, making it more difficult to recognise when another person is struggling, falling behind or needs a dig-out.

Advertisement

In times of workplace transition, it can be frustrating having to figure out new technology, policies and processes in what feels like a relatively short space of time. So, it’s important that you give yourself and others a little grace, recognising that the chaos that accompanies change is very rarely permanent. 

Furthermore, by being empathetic and putting yourself in another person’s shoes, so to speak, you can approach challenges from a new perspective, perhaps even improving your own problem-solving abilities and interpersonal relationships.

Empathy is a powerful soft skill to have in your back pocket, as it can help you create crucial connections, improve the workplace dynamic and further develop your other soft skills. Many employers nowadays expressly recruit those who can show their skills in this area, so it is definitely one for STEM professionals to consider.   

Don’t miss out on the knowledge you need to succeed. Sign up for the Daily Brief, Silicon Republic’s digest of need-to-know sci-tech news.

Advertisement

Source link

Continue Reading

Tech

15 Best Puzzle Games For Android And iOS In 2026

Published

on

Among the various games we have played, puzzle games have been a part of our childhood, and we all have loved the way such games acted as brain teasers and helped stimulate our nervous system.

As we grow up, we need such mind-teasing games for the healthy working of our brain cells. And as most of our time is spent online, why not make room for online puzzles and keep our brains refreshed?  Therefore, my new list will include the best puzzle games you should consider downloading on your device for all the perplexity you need.

15 Best Puzzle Games For Android and iOS 

1. Worldle91

Worldle91 home screen

The popular NYT word guessing game Wordle isn’t a secret to anyone. In fact, it’s the most popular game today, which has kick-started a whole world of online games, and the latest addition is Worldle91. It’s for geography nerds who need to guess countries from their silhouettes.

The game shows you a country outline, and your job is to guess which country it is. After each guess, the game provides helpful clues such as distance, direction, and proximity to the correct answer. Using those hints, you have six attempts to figure out the right country.

  • Pros: Unique geography-based puzzle, great learning tool
  • Cons: Can get tricky if your geography knowledge is limited
  • Availability: Web / Mobile browsers

2. Mineweeper91

Minesweeper91 puzzle game

If you’ve ever used a Windows PC in the early 2000s, chances are you’ve already played Minesweeper. Minesweeper91 is the modern version of the classic game, where the goal is actually quite simple. You need to reveal all the safe cells without triggering a hidden mine.

Each revealed tile displays a number indicating how many mines are in the surrounding eight cells. Using logic and deduction, you mark suspected mines and clear the rest of the board.

Advertisement
  • Pros: Classic logic puzzle, easy to learn but hard to master
  • Cons: Can feel punishing if you make one wrong guess
  • Availability: Web / Mobile browsers

3. Sudoku91

Sudoku91 puzzle game

Sudoku91 takes the classic Sudoku puzzle and improves it with a cleaner interface and several customization options. The basic rule remains the same: fill the 9×9 grid with numbers from 1 to 9 without repeating them in rows, columns, or 3×3 sections. However, Sudoku91 adds multiple difficulty levels ranging from Easy all the way to Evil for players who want a real challenge.

What makes it stand out is the flexibility. You can customize the theme, highlight conflicts, toggle notes, and even use keyboard shortcuts for faster gameplay.

  • Pros: Clean UI, multiple difficulty levels, customization options
  • Cons: Advanced levels can be extremely challenging
  • Availability: Web / Mobile browsers

4. Hocus

Hocus is a mind-bending perspective puzzle game. It is currently one of the top-rated puzzle games on the Play Store right now. In this game, your goal is to get a cube to the red finish marker as fast and efficiently as possible. It might look easy to play but can be pretty challenging.

One of the most incredible things about this game is that it lets you create and play other user-created puzzles. With over 100 puzzles, you can easily play this game for a few hours whenever you are bored.

  • Pros: Pick up and play game, easy to learn
  • Cons: Can get repetitive
  • Availability: Android and iOS

5. Threes

Amid all the available puzzle games online, Threes has a similar concept of sliding tiles to form a particular number, in this case, three and its multiples. When you start playing the game, it will give you a walk-through on how to play it so that it gets easier for you.

Threes: best problem solving games

It follows a simple drill of sliding the tiles and joining them to add the two titles. Even though it is an easy process, it will still take a while to join the tiles. It starts with making a three, followed by other multiples of three. Each step expects you to make one, and you have to use your brain while sliding to form the desired number.

The game has ease of flow, and once you start playing it often, you will enjoy it, and sliding tiles to form numbers will be your everyday goal.

Advertisement
  • Pros: Addictive in a good way
  • Cons: Can stutter sometimes
  • Availability: Android and iOS

6. Mekorama

Mekorama is an adorable 3D puzzle game just like Treasure Tracker and Monument Valley. In this game, you control a cute little robot and navigate it through different puzzle rooms, each with different mechanics. Due to the variety in obstacles, the game keeps being fresh.

Whenever you finish a level, you unlock five more. So you won’t ever feel stuck, and the progression will be pretty open-ended. With over 50 levels to unlock, the game is quite a delight for those who like a challenge but want a laid-back experience.

  • Pros: Looks quite good considering its a mobile game
  • Cons: Might not run properly on older phones
  • Availability: Android and iOS

7. Chess light – Puzzle Game

Chess Lite

Chess light is a puzzle game based on, you guessed it, “Chess!”. The game puts you in over 180 different chess scenarios where you have to find a way to win. The game is free and comes with no ads, which is rare for games these days.

There are even six different difficulty options if you find the game is hard or too easy. You can even receive a hint if you feel like you are stuck. Fans of chess will definitely want to check this game out.

  • Pros: Huge variety of puzzle combinations
  • Cons: Have to know the basic rules of chess
  • Availability: Android and iOS

8. Brain It On

Brain It On: best puzzle games

Brain It On is an apt puzzle app to use when you want to challenge your brain. When I used the app, I could not help but scratch my head into how exactly can I play the simplest-looking game. The game works in a horizontal format and has a number of levels to reach.

You have to begin playing without doing much; open up the app, and select the first level (the first few levels are unlocked while others are locked), and start puzzling. Before you start, you have to make any shape of your choice on a plain canvas, beginning the main way of playing the game.

Advertisement

This means that the app needs you to do something on the canvas to execute a particular task. For instance, there will be a situation wherein you have to make something so that a glass kept on the canvas falls on the ground.

As the levels increase, the difficulty of the puzzle increases, which makes Brain It On one of the best Android puzzle games as well as on iOS. Furthermore, you can upgrade the app to get rid of ads.

  • Pros: Simple UI
  • Cons: Need to watch ads for hints
  • Availability: Android and iOS

9. Monuments Valley

Monuments Valley is a puzzle video game wherein you are required to use your brain and help the character reach the destination. Anyone talking about puzzle games ought to mention Monument Valley. Hence, it had to make an entry on my list of best puzzle games.

Monument Valley: best puzzle games

While in the game, you have to play to puzzle to start playing the actual. The game is interesting as it has a 3D setting, and it is pretty fun to play.

The only drawback of the game is that it is a paid app, which slightly gets disappointing. Nonetheless, if spending money on apps is not a problem for you, Monuments Valley 1 and 2 are must-have puzzle games.

  • Pros: Intriguing concept
  • Cons: Paid app
  • Availability: Android and iOS

10. Empty

Empty

Empty is a puzzle game similar to Monuments Valley, at least in terms of its artistic design. It’s a very zen-like puzzle game with a laid-back approach. Meaning you can play the game and not feel frustrated but rather healed.

The gameplay is quite simple, where you have to clear the room by rotating it. The game aims to teach us the value of simplicity in life with each level. It is entirely free and comes without any ads, which is quite rare for a game nowadays.

Advertisement
  • Pros: Relaxing music and style
  • Cons: Simplistic gameplay
  • Availability: Android and iOS

11. Two Dots

The Two Dots Puzzle game moves around the two dots present on the app. You have to connect the dots in a way they meet each other, and a connection between the two is formed. 

When you open up the app, the app will give a gist of how to play the game by letting you connect the two dots available on the screen. Once the process gets completed, you can start with the first level of the game, which will eventually take you up the hill of the more and more levels (with new ways of playing).

Two Dots: Best games to tease your brain

Keep in mind that you can connect the dots horizontally, vertically, or form a right-angle but can’t connect them diagonally. Additionally, you get limited moves, so you have to hurry up and use your brain before you make a move.

When you are at a particular level, you will be given some targets to make you cross the level. The initial levels are pretty straightforward, and you will feel like a pro until you reach more levels and realize it’s not as easy as it appeared.

  • Pros: Engaging
  • Cons: Can lag sometimes
  • Availability: Android and iOS

12. Escape Puzzle Game

Escape Puzzle Game

Escape Room is one of the puzzle types wherein you have to look for objects smartly. The game has a storyline where a girl introduces you to the game’s concept, following which you can start playing.

With a medieval backdrop, the game also provides you with a limited number of hints so that you move ahead with ease in situations when you get stuck.

The game begins with the first level (and moves up more levels), wherein you have to find a given number of objects and use them in the scene itself. You will have to tap on the various things placed and find the hidden things or combine two things to repair an item — the possibilities of proceeding ahead are many.

Advertisement

While the Escape Room is intriguing, the difficulty level makes it one of the well-suited puzzles for adults. However, kids can also play it to sharpen their brains.

  • Pros: Story format
  • Cons: Adverts
  • Availability: Android

13. Move The Block

Move The Block is one of the classic sliding puzzles (among free puzzles) where you are required to slide the objects (in this case, blocks) to win the puzzle. The puzzle game has a number of levels under Basic, Premium, and Old categories (eight to be precise), with each level coming with sub-levels.

move the block

When you start with the first level, you will be guided around the game and the options available for you to use and play with ease. The game is an interesting one, and as you move forward, you won’t even realize how addictive the game will get, and you will end up playing it more than the allotted time period.

Of course, as you move up the levels, the levels will get difficult, and you might need the help of the hints available at your disposal. This is where the game’s drawback appears; to get each clue, you have to watch an ad video that makes it annoying.

  • Pros: Daily Rewards
  • Cons: Mid-gameplay ads
  • Availability: Android and iOS

14. Jigsaw Puzzles Real

If you haven’t played a jigsaw puzzle, have you ever played a puzzle at all? One of the classic puzzle games of all time, the game’s name is enough to be one of the best free online jigsaw puzzles.

The game follows the simple process of joining the puzzle pieces and forming a single picture. The app provides you with various options to choose from: be it pictures related to nature, animals, aerial, and many more, and you can pick the ones you like and arrange the jigsaw puzzle.

Jigsaw: best puzzle games

Before the pieces are spread around, you will be given a small glimpse of the whole picture to start playing. You can further view the image again and again to get a better idea.

The game makes sure it twists your brain and acts as an element of nostalgia when jigsaw puzzles are actual board games.

Advertisement
  • Pros: Various Puzzle options
  • Cons: Ads, ads, ads
  • Availability: Android and iOS

15. Skillz

Skillz is one of the mobile puzzle games that tease your brain and puts your brain to some good use.

The app lets you decide if you want to play as a single-player or play a multi-player game. Upon choosing, there will be a number of levels, and you will be taken to the first level. As a reminder, other levels will be locked until you pass the initial ones. Hence, skipping levels is not an option. In addition to this, there is an option to replay the game if you weren’t satisfied with your previous performance.

Skillz: best puzzle games

The levels include searching for a particular number or letter among the same numbers or letters, thus testing your brainpower and speed. The game proves pretty addictive as the urge to cross all the levels takes over once you start playing it. However, the presence of ads is a problem.

  • Pros: Single/Multi-Player option
  • Cons: Time-based gameplay
  • Availability: Android and iOS

Types Of Puzzles

For those who think that puzzles are all about finding the puzzle pieces and completing a jigsaw, you need to know that there are many kinds of puzzles available for us to play with. These include riddles, trivia puzzles, math puzzles, pattern guessing, logic puzzles, and many more. This list contains puzzles such as trivia, sliding, logic, paper-and-pencil puzzles, among its various types. Hence, read on for more:

Frequently Asked Questions

1. Are puzzle games good for you?

Online puzzle games keep your mind sharp. Just as we need a physical workout to maintain our fitness, we need mind exercises (in the form of puzzles and more) for brain fitness. I hope my list of best free Android puzzle games (iOS too) acts as a helping tool to keep you busy in something productive other than just social media.

2. Do puzzle games help with problem solving?

It’s a well-known fact that video games improve problem-solving skills. One research even says that children’s creativity is enhanced by playing any kind of video game, including violent games. However, that’s not the case when the children use other forms of technology, such as a computer or cell phone.

Do let me know which games from our best puzzle games list you liked the most. If you have more suggestions to make, I will take them and add the best ones to my list.

Advertisement

Until then, keep on puzzling your brain and make it fitter and better!

Also Read: Best Android Games To Enjoy Mobile Gaming

Source link

Continue Reading

Tech

Tragedy or Triumph? Hamnet on 4K UHD Disc: Review

Published

on

Much like Frank Costanza, I like to proclaim fiercely “I’m going in fresh!” whenever I watch a movie for the first time, but that approach backfired with Hamnet. Unbeknownst to me, it’s a non-spoiler that the story is a bit of historical fiction about “Will” Shakespeare, his wife Anne Hathaway (“Agnes” here) and their kids, adapted from the book by Maggie O’Farrell. The details are all right there on the back of the disc case, but nowhere on the poster image, and the big reveal in a dialogue name-drop doesn’t arrive until well past the halfway mark.

So, as director Chloe Zhao’s movie played out at her trademark ponderous pace (see her 2020 Oscar-winner Nomadland), I found myself jotting down “WHAT IS THIS MOVIE EVEN ABOUT?” It’s a lot of slice-of-life stuff about a free spirit and suspected witch (Jessie Buckley) and the Latin tutor (Paul Mescal) who falls for her, their ups and downs, his restless soul, and eventually a great personal loss. The raw, visceral, naturalistic acting by the two leads in particular carries us along no doubt, but without the knowledge of who they are and where they’re headed–the creation and debut of The Tragedy of Hamlet, Prince of Denmark–I’m not sure why we’re supposed to care.

Cinematographer Łukasz Żal brings us his bold, symmetrical compositions in a native 4K Dolby Vision image that perfectly fills the screen at a 16:9 aspect ratio with no black bars, resplendent with crisp focus that reveals individual blades of grass, countless freckles and the nuanced weave of fabric. The costumes are quite deliberate in their design, and their colors and subtle imperfections tell us much about the characters who wear them. The forest takes on varied shades of green, while the rich shadows are full of life.

While the Dolby Atmos audio is certainly not attempting to impress, it displays a refined brilliance nonetheless, notably in the way it reproduces nature. The wind often sounds like the woods themselves are breathing, a choice that leans into the local legend surrounding the mysterious Agnes. Dialogue is cleanly recorded although I missed the occasional word here and there for the accents.

Zhao’s audio commentary covers a wide range of topics and adds much to our appreciation of the film. So too do the three short featurettes, in which cast and crew discuss the acting, various technical aspects of the production and the prevailing quest for authenticity. Universal’s “collector’s edition” also includes an HD Blu-ray of the movie with the same extras plus a 4K digital copy.

Advertisement

The awards and nominations for Hamnet have been piling up, so I’d love to know if anyone else experienced the same confusion, or if I’m the only one who missed the boat.

Movie Details

  • STUDIO: Universal Pictures Home Entertainment
  • FORMAT: Ultra HD 4K Blu-ray (March 3, 2026)
  • THEATRICAL RELEASE YEAR: 2025
  • ASPECT RATIO: 1.78:1
  • HDR FORMATS: Dolby Vision, HDR10
  • AUDIO FORMAT: Dolby Atmos with TrueHD 7.1 core
  • LENGTH: 125 mins.
  • MPAA RATING: PG-13
  • DIRECTOR: Chloé Zhao
  • STARRING: Jessie Buckley, Paul Mescal, Emily Watson, Joe Alwyn, Jacobi Jupe, Olivia Lynes, Noah Jupe

Our Ratings

★★★★★★★★★★ Picture

★★★★★★★★★★ Sound

★★★★★★★★★★ Extra

Where to buy:

Advertisement. Scroll to continue reading.
Advertisement

Source link

Continue Reading

Tech

Valve says its loot boxes are more like trading cards than gambling

Published

on


New York Attorney General Letitia James sued Valve in February, arguing that mystery boxes in Counter-Strike 2, Dota 2, and Team Fortress 2 constitute “quintessential gambling” because players pay for a chance to obtain rare cosmetic items that can carry significant monetary value and be traded for real money.
Read Entire Article
Source link

Continue Reading

Trending

Copyright © 2025