tech blog

Stacked sessions and pull requests in the GitHub Copilot app

I want you to look at this screenshot for a moment from the GitHub Copilot app. It’s a small one, it’s got a lot of icons, and it tells the most glorious story that I’m really excited about. This image is a set of stacked sessions. They’re a series of tasks in the same repository, where each session builds off each other! More on those below, but first, why is this screenshot so magical? We need to go back more than a decade to start. I have this very old repo of mine for a personal app. I first made it ages ago (end of 2014-ish), and it’s done what I want it to do (it’s like a personal “life” dashboard of calendars and smart devices in my home and task management) for all those years. I occasionally do some updates, but those have gotten harder and harder to wrangle. My dependencies had gotten old. Embarrassingly old. I was using React 15 (which was released in 2016), Less for CSS pre-processing, and a version of react-bootstrap from around that time. Yes, you read that right. Bootstrap. This was old. Trying to untangle this absolute mess before AI would have taken me weeks. I had tried and given up before. It’s not the largest app in the world, but it’s juuuust big enough that it would be painful, and the juice was simply not worth the squeeze. …but we do have AI now, and so I fired up the GitHub Copilot app, added the repo, and got started. First step: Could I one-shot this? No. I tried though! This is the prompt that I used in Plan mode: I want to modernize the frontend for this project. I first wrote a lot of this code more than 10 years ago and it should be cleaned up a lot. I’m thinking we start either using Tailwind or just vanilla CSS (please vet everything to help me decide), we remove all Less (etc), and clean everything up accessibility-wise and responsiveness-wise. Right now I really want to just focus on styles, and then slowly but surely organize and consolidate the React functionality. It might be worth modernizing dependencies, too. Let’s come up with a plan around this before diving in. 1. Nothing is sacred, it’s okay if we have to completely start over some parts 2. Links should change colors and add underlines on hover/focus 3. Input boxes should have a smaller border radius in general, and their labels should be cleaner 4. There should be good wrapping and a max-width on containers so that an input box doesn’t span an entire wide monitor. I passed this into Claude Opus 4.8 got a Rubber Duck review from GPT-5.5, and had to do quite a bit of back-and-forth to make decisions. Once I got to a place I was happy with, I hit “go” and let the app go to town on my project to see if it would work! …it didn’t, and it was my fault. Second step: Realizing I had tried this before So, remember when I said I’d “tried and given up before?” Turns out, I actually had an old devbranch where I actually had modernized some parts, and didn’t realize the compatibility issues I’d run into. But, that was a good thing! When I ran the new version from this session, I realized that I was branching off main, but that my current deployment that I was using regularly was using my partially updated version on dev. So, some wanted features that I had made for myself needed to be included in this set of changes. But, the changes were just big enough that I actually had to apply those changes to the devbranch to save my sanity a bit, rather than pull in the devchanges to main. Pre-AI… my word, this would have made me pull my hair out in frustration. I was admittedly frustrated here, too. I had spent time and tokens trying to get this running with what I thought was a decent plan. But! I was able to switch gears (and sessions) with a simple ask, which was way cooler than I expected it to be: All was not wasted! Copilot made a new session for me, closed the pull request I had attempted, and ported my styling decisions to changes it was applying to the dev branch. Third step: Findings after testing Whew, okay, so I had a good branch going, and a pull request I was decently happy with. As I started testing, though, I couldn’t help but notice some old warnings in my console. My heart filled with dread as I saw old references to findDOMNodeand componentWillReceiveProps, functions I personally hadn’t touched in years and years. Ugh. Those references were not in my codebase as much anymore, but they were in react-bootstrap. I opened up Plan mode again, because I needed to figure out if an upgrade would work, or if I should remove the library entirely: Do you think we should remove react-bootstrap entirely (and replace with a modern alternative), or just upgrade/migrate existing components? Running this gave me a decent plan, talked through the options, and recommended replacing the library entirely. Fourth step: Stacking a session on top of the other I needed to make sure my changes were safe from the existing work, but the react-bootstrap replacement felt like a lot of scope creep for what I was currently doing. I’ve found that in a lot of my “agentic” engineering work, it’s particularly hard to avoid that kind of scope creep. Because I don’t have to write all the code myself, it’s so tempting to make 10,000 line pull requests that take care of all of the things I want to do! Which is really just a new form of procrastination, ha. So, instead of making this mega pull request for myself to test, I broke it up with a new session, and prompted: Let’s make a pull request for

tech blog

Turn one giant AI-generated pull request to a reviewable stack

Think about the last big feature you shipped. Be honest. Did you cram it into one giant pull request, or did you split it into smaller scoped pull requests? For years, you have silently had to decide between watching a pull request grow so large that reviewing it becomes a nightmare or breaking it into a chain of smaller pull requests that you have to babysit, sync by hand, and untangle conflicts every time a change is introduced below. Both options have trade-offs. One is hard to review, while the other is hard to maintain. Your decision that day leans towards the less painful option. Now add coding agents. They are incredibly productive and are projected to drive a 50% productivity gain across every SDLC stage by 2028, according to Gartner. But, they can’t take away the choice of how you structure your pull requests. They amplify the need to make it. In this post, follow along with an example of how you can use stacked pull requests to simplify reviews. A closer look: Adding product search to a shopping assistant Let’s say you issue a prompt to add product search to a shopping assistant, walk away and minutes later, literally, you come back to review, steer, and approve. But look closely at what tends to land in that single pull request: A new data model and its seed data An API route and its validation The client wiring and the UI and the empty/fallback/error states …all of this and more in one ginormous 1,000+ line diff. For agents largely trained on how code has traditionally been written over the years, this pattern is their default way of shipping. Let’s play this out. You want to add product search on as existing web application and your starting state is: A mock AI Assistant showing responses from a random-line generator Inconsistent product data hardcoded and scattered across components No catalog module, no API, no data layer—no nothing An issue is opened to implement the feature, and a typical flow would be to create a feature branch, assign it to a coding agent (or multiple custom agents), get a first draft of the whole implementation code and updated tests… …you read the code (well, you maybe read the code). Then, you still need to manually verify feature behavior and make any necessary updates, push and open a pull request with its long-yet-shallow AI generated description, ensure CI checks are green, and self-review diff then request reviewers. You get started… <reviewer’s hat> Reviewer: 1,721 lines changed!! This description isn’t very helpful. I’ll review this later. </reviewer’s hat> And what follows is familiar: The large pull request becomes hard to review—so it just…sits there. Reviewers lose context and the feedback quality drops. It becomes even slower to merge. This kicks off a manual, messy, time-consuming process that’s prone to conflicts before the feature lands, and it eventually lands under-reviewed. GitHub stacked pull requests Stacked pull requests introduce a different and better structure of delivery. The principle is simple: decomposition. Instead of shooting for a single pull request that addresses the issue in its entirety, you break down the feature into logical layers and identify the dependency chain to arrive at your desired goal. This gives you, and your agents, a native way to decompose work that otherwise lands in a giant pull request into a chain of small, focused and independently reviewable layers. That large pull request that’s hard to review becomes a stack of smaller, logically ordered pull requests, each scoped to a single concern, small enough to hold in a reviewer’s head and with just enough context naturally flowing from the previously reviewed pull request. Let’s make it happen. The stack structure Let’s look at the steps involved when decomposing the problem and arranging the layered stack. First, and importantly, set the stack base. This matters because CI checks and merge rules throughout the stack management lifecycle get evaluated against the stack base. Then, identify the core foundational unit of work and put it closer to the base (lowest in the stack), and layer dependent work above it. Stack Layer (L#)/Branch  What to ship  Depends on  L1 (feat/catalog-data)  A typed catalog with seed data, validation, and a data access module  main (stack base)  L2 (feat/search-api)  Validated /api/products/search endpoint  feat/catalog-data  L3 (feat/chat-grounding)  Chat calls the API and answers from real product data  feat/search-api  L4 (feat/grounded-ui)  Product citation cards + state  feat/chat-grounding  Now the independent concerns are clear: data, API, wiring, UX, making it possible to allocate different reviewer audiences for each. Data is reviewed by a data owner, UX by a UI owner. GitHub’s native support for stacked pull requests can be launched from the pull request UI and extends seamlessly to the terminal with the gh stack CLI. Install the stacked pull requests CLI extension Run the following: gh extension install github/gh-stack In ancient times, you’d be set to start working. Not today though. There are agents working alongside you. These agents need to learn how stacks work and how to create and manage them on your behalf. The gh-stack skills teaches them this. gh skill install github/gh-stack Or, if you prefer: npx skills add github/gh-stack For the specific feature from the above example, your development workflow has custom agents, each with defined work streams and that follow a strict scoping discipline to achieve the goal of small, single-scoped pull requests. Layer/branch  Agent  L1 (feat/catalog-data)  Data modeler agent  L2 ( feat/search-api)  Backend agent  L3 ( feat/chat-grounding)  Frontend agent  L4 ( feat/grounded-ui)  Frontend agent  The last piece of the setup is to confirm CI exists. As mentioned earlier, each pull request will be evaluated against the stack base, and these checks will run for every layer. Now the work begins. Layer one: Data catalog foundation Most agent workflows today are automated and execute autonomously in loops, but for the sake of illustration, we’ll cover each step at a time. At this point, all agents are familiar with how stacked pull requests work, so a typical workflow at

tech blog

How the GitHub legal team used Copilot CLI to streamline their workflows

Whether you are just starting out or are not in a technical role at all, you likely already have the skills you need to build your own tools. If you have ever thought “I’m not technical enough to build that,” this post is for you. Let me introduce the team. We are lawyers, program managers, and business professionals—not engineers. A large part of our work is often repetitive, like reviewing the same kinds of contracts over and over or answering the same legal questions, and our prior guidance is frequently recycled. These are problems AI could help solve, but we lacked confidence in how to build the right tools. That is where GitHub Copilot CLI came in. We asked for what we wanted in plain language, plugged into our repos, and saw real changes fast. “I could never code” turned into “I just built something,” and that habit spread on its own until every one of us was building something. What follows are two real accounts of people who did exactly that. Plus, watch the videos for two additional stories. Why I built an internal drafting style guide The following is a first-person account from Ngandu Kasuku, Principal Product Counsel. I’m a product attorney, but commercial work remains a sizable part of my practice. Around March or April, I found myself buried in partnership deals involving data, infrastructure, and product integrations. No two deals looked quite alike, so each new matter felt like starting over. I started using Copilot CLI to manage the surge, which helped, but also had some problems. Then, after seeing what others had built with Copilot, I realized I wasn’t thinking big enough. Instead of using AI for one task at a time, I could build something around the way I work. So, I created a contract drafting tool using Copilot CLI. I called it terms-ai, which I admit isn’t the most original name. I started by scaffolding the project and storing key documents in a repository. This gave me one place to organize and version the instructions, drafting resources, and workflows that guide the AI. That structure made the results more consistent and reduced the copying and pasting that had slowed me down when I was using a library of prompts. One of the tool’s main features is an internal drafting style guide. Since my days as a commercial lawyer, I’ve favored plain language. I never understood why contracts needed words like “heretofore” and “therewith.” When I discovered that an entire legal drafting movement shared this view, I used its principles as the foundation for my style guide. I also built a library of agreements I had already completed. Now, when an existing partner sends over an addendum or a new agreement, the tool can draw on that earlier work. These agreements remain in an approved, access-controlled internal environment. The tool and its general workflow are open source. The agreements and other sensitive information aren’t part of the open source repository. Since I began using terms-ai, I’ve cut my review and drafting time roughly in half. My provisions are more consistent across agreements, and the drafts reflect the plain style I prefer. The tool still has a long way to go. But the biggest lesson wasn’t that AI could help me draft faster. It was that I could use AI to build a tool around my own judgment, experience, and way of working. How I built legal workflows without writing traditional code The following is a first-person account from Jesse Geraci, Online Safety Counsel. I started with a narrow problem. We needed to analyze source code quickly and accurately to evaluate DMCA (Digital Millennium Copyright Act) notices. The original project began as a set of GitHub Copilot instructions for recurring tasks like DMCA triage, comparing code, license checks, and circumvention review. We wanted to turn the messy, one-off prompt work that everyone was doing independently into something repeatable that a legal team could trust to gather the right facts and analyze the data consistently. I was surprised at how far I could go without engineering support. The core “programming” was plain-language files consisting of workflow instruction sets, policy reference materials, and templates for writing reports. Instead of writing source code, I was able to use my language crafting skills as a lawyer to build structured legal judgment into the workflow itself. It grew from there. We added different analysis modes for clients and lawyers (with faster outputs and escalation recommendations for clients, and deeper review and both-sides arguments for lawyers) and integrated external data sources. When I handed the workflow off to the team, they started using it right away and asked Copilot to do more. That foundation has since evolved into a full desktop app for running predefined legal workflows in a clean interface. Building the desktop app required writing some code (a lot of code, actually), but the core instructions used to customize workflows are easily edited and customized in the app using plain language. The app we created has now expanded well beyond only code analysis for DMCA notices. It includes instructions for many in-house workflows like contract review, NDA triage, risk assessment, compliance checks, and response drafting. Under the hood, it can route work through reusable skills and agents (intake, playbook alignment, risk scoring, evidence verification, escalation routing, report assembly), but the important part is not technical complexity—it’s that legal teams can still control behavior in readable Markdown. For me, the key lesson was that I don’t need to wait for the perfect software vendor—or become a full-time developer myself—to build serious AI tooling. If you can clearly define your methodology, your standards, and your output format, GitHub Copilot makes it easy to operationalize that knowledge. My legal Copilot is not a replacement for legal judgment, and it shouldn’t be treated that way. It’s a structured decision-support system designed to keep human review central while making legal analysis more consistent, more transparent, and more scalable. Check out the eyeball tool

tech blog

Looking back on Microsoft’s FY26: From AI experimentation to Frontier Transformation

Throughout this past fiscal year, customers across every industry and segment moved from AI experimentation to deploying AI for real-world business outcomes. They unlocked innovation and created new opportunities for growth. We saw the emergence of Frontier Firms as they moved beyond efficiency gains to focus on human ambition and embed AI at the core of how they operate. Successful customers are building an intelligence platform so their unique IQ — their knowledge, data, workflows, applications and expertise — can continuously compound, ensuring the value of AI accrues to the customer, not the model. They have a trust platform that is pervasive, with the ability to manage, govern, secure and measure AI across every business process. Everything we are doing at Microsoft is empowering Frontier Transformation: Copilot enables AI in the flow of human ambition, Microsoft IQ amplifies and protects an organization’s IQ and Agent 365 is the trust platform that enables observability at every layer of the stack. Businesses are not static, and neither are the AI systems that support them. As organizations evolve, AI systems must continuously learn and improve. Agentic workflows need to be built, observed and tuned against the outcomes organizations seek and the ROI they demand. Microsoft’s open, model-diverse and heterogenous platform powers that improvement loop. We also recently announced Microsoft Frontier Company, bringing our AI engineering approach to customers around the world to help them build these AI systems to accelerate measurable business outcomes. Throughout the past year, we saw customers put these capabilities to work in powerful ways — embedding AI into core business processes, building agentic systems, strengthening security, accelerating innovation and creating new sources of value. The stories below highlight organizations leading Frontier Transformation, demonstrating how intelligence, trust and human ambition come together across industries. To advance its journey to become a global AI-powered company, Atos Group deployed Microsoft 365 Copilot to 56,000 employees across 54 countries — from consultants to engineers to frontline workers — and was one of the first organizations globally to adopt Microsoft 365 E7: The Frontier Suite. Using Microsoft Foundry, Microsoft Copilot Studio and Agent 365, Atos is building, operating and governing a growing ecosystem of 19,000 AI agents through a unified operating model that brings together productivity, security, compliance and agent governance. As Atos embeds secure agentic AI across its workforce, the company is creating a repeatable model to continuously improve thousands of agents at scale while applying the same playbook to help customers accelerate adoption across highly regulated industries. Facing state-sponsored threats and complex global operations, ASM is strengthening cyber resilience with Microsoft Security Copilot, helping protect the intellectual property behind advanced semiconductor manufacturing. By bringing threat investigations into a unified AI-powered experience, ASM enables analysts to investigate incidents faster, apply consistent decision-making across global operations and accelerate the development of cybersecurity talent. The company reduced incident triage time by 68%, cut laptop compromise investigations from 25 minutes to eight and now saves 337 hours each week on investigations while redeploying 20% of its security operations staff to governance, risk and compliance initiatives. Banco Popular Dominicano, the largest private-sector bank in the Dominican Republic, transformed operational risk management from periodic, sample-based reviews into continuous, AI-powered supervision. Using AURA — an ecosystem of specialized agents built on Microsoft Copilot Studio and Microsoft Power Platform — the bank monitors 100% of its operational risk universe in real time, up from roughly 40% coverage, and can automatically analyze changes, validate controls and surface issues as they occur. The shift has delivered seven times greater analytical capacity, reduced manual operating effort by 70%, achieved 98% methodological accuracy and enabled continuous processing of approximately 80,000 documents per week and more than 300 cases per day. Just as importantly, risk teams have moved from reacting to problems after the fact to anticipating and preventing deviations before they occur. These results demonstrate the power of AI democratization. By enabling business teams to build intelligent solutions themselves through low-code tools, Banco Popular transformed operational risk management while fostering a culture of innovation led by domain experts. To help reduce the manual burden for employees while meeting the pharmaceutical industry’s strict data security requirements, Cactus Life Sciences modernized scientific workflows with Microsoft 365 Copilot and agents. The company has deployed more than 30 custom automation agents to streamline document review and structure data extraction and information retrieval across scientific writing and project management teams. Supported by a centralized knowledge repository and the Copilot Champions community, the company reports efficiency improvements of approximately 35% to 50% in structured data extraction. By automating labor-intensive tasks and maintaining human review and quality controls, the company is enabling scientific writers to focus on deeper analysis, synthesis and delivering exceptional science to clients. Chow Tai Fook is redefining luxury retail with Microsoft 365 E5, Microsoft Purview, Microsoft Azure OpenAI Service, Microsoft Fabric and Microsoft Foundry. The company has deployed over 400 customized AI agents supporting more than 24,000 employees, with millions of AI interactions each month and core business-process efficiency gains exceeding 70%. Through its AI Fook super-agent ecosystem, frontline associates can instantly access product expertise, inventory insights and personalized recommendations, helping drive sales conversion improvements of up to 57% while delivering hyper-personalized omnichannel experiences at scale. With hundreds of AI agents operating across the business, Chow Tai Fook is creating a foundation where customer, product and operational intelligence can be applied across every interaction, helping personalize experiences and improve decision-making across its global retail network. To accelerate AI adoption, EY moved AI from experimentation into enterprise-wide transformation. After deploying Microsoft 365 Copilot to 150,000 employees and realizing a 15% productivity gain, the firm is expanding the Microsoft 365 Frontier Suite across its global workforce of more than 400,000 people, embedding agentic AI capabilities across the enterprise. As Client Zero, EY is applying Microsoft technologies across its own operations, including Microsoft Power Platform, Microsoft Copilot Studio, Microsoft Azure, Microsoft Foundry and Microsoft Fabric. The results include 95% faster lead times, a more than 37% reduction in finance

tech blog

Rethinking security for the age of AI

Why security needs a new Cyber Stack — Introducing Project Perception The physics of cybersecurity are changing. Autonomous systems can now reason, adapt and operate continuously. At the same time, the cost of offense is falling, while the volume, velocity and complexity of what must be secured continues to grow. Attackers can generate exploits faster, scale campaigns further and operate with unprecedented efficiency. The approaches built for a world of human actors cannot keep pace with a world of AI, agents and machine-speed attacks. Security needs a new Cyber Stack. A new Cyber Stack must continuously perceive risk across the entire digital estate, reason across vast amounts of context and take action at machine speed. It must learn and adapt as environments evolve, helping organizations stay ahead of threats. And because security is ultimately a human mission, it must amplify defenders with better insights and more powerful ways to act. The defining characteristic of the next generation of security systems will not be their ability to generate more alerts. It will be their ability to continuously perceive, reason and act. That vision led us to build Project Perception. A new agentic security system designed for the realities of AI. It turns signals into real-time protections using AI to defend against AI. Project Perception brings together signals, context, models and specialized agents into a continuously learning system of defense. It can reason, prioritize and act at machine speed while keeping humans firmly in control and empowering them with powerful new workflows. Project Perception is based on a simple idea: effective defense requires continuous understanding of how an attacker sees the world, how a defender evaluates risk and how protections are improved over time. To accomplish this, Perception coordinates three classes of specialized agents. Red team agents identify potential paths to compromise before an attacker can exploit them. Blue team agents investigate, reason over context and determine what represents meaningful risk. Green team agents take corrective actions and strengthen defenses across the environment. Working together, these agents form a closed-loop system that continuously discovers, evaluates and improves an organization’s security posture. A system like Project Perception is only as effective as the visibility it has, the actions it can take, the experience of the teams building it and the models it can use. Microsoft brings together all four. We see across identities, endpoints, applications, data, clouds and AI systems, providing broad visibility across the digital estate. Equally important, we can help customers take action across those environments. Combined with decades of security research, threat intelligence and real-world operational experience defending organizations, these capabilities shape how Project Perception reasons, prioritizes and responds. Security is a 24/7 mission. Organizations need protection that is highly effective, continuously available and affordable at scale. That requires more than access to the most capable model. It requires applying the right model to the right task. Project Perception adopts a multi-model architecture that combines frontier and specialized cyber models, optimizing for both quality and cost. As part of this multi-model strategy, we are committed to bringing customers the best models for each security task, including innovating with our own specialized models. The first scenario is software vulnerability management, bringing MAI-Cyber-1-Flash inside MDASH, our software vulnerability multi-model team of agents. MDASH with MAI-Cyber-1-Flash delivers 96% on CyberGym, an industry leading benchmark, +12 points above Mythos. And this same configuration delivers almost 50% of cost savings vs. the current MDASH configuration in market today. That’s the power of a well-tuned, multi-model system with access to uniquely rich historical training data. Next, Project Perception will take advantage of MAI-Cyber-1-Flash for many more security workflows, beyond the software vulnerability scenario. We are bringing this vision to customers around the world through Project Perception, which enters public preview on August 3. YouTube Video Click here to load media A Cyber Stack built for agentic security Delivering agentic security requires more than adding agents to existing workflows. It requires a new Cyber Stack, designed from the ground up. The stack begins with signals and sensors that provide awareness across the digital estate. Security context transforms those signals into token-efficient understanding that agents can use. Models provide intelligence and reasoning. A harness coordinates models and agents across security workflows. Agents apply that intelligence across security workflows and actuators translate decisions into protection. Together, these layers create a continuous learning system that can understand risk, adapt to changing conditions and improve security outcomes over time. While each layer provides important capabilities, the power of Project Perception comes from how they work together. Security context built for AI Effective reasoning requires more than raw signals. Agents need context. Microsoft transforms its breadth of visibility, threat intelligence and security expertise into a security context that connects security data, knowledge and semantics across the digital estate. The result is a continuously updated representation of an organization’s assets, identities, relationships, risks and activities that gives agents a shared, near real-time, understanding of the environment they are helping to defend. This shared understanding is foundational to how Project Perception operates. Rather than forcing agents to continuously gather, correlate and reconstruct context from raw signals, it provides them with immediate and token-efficient access to the information they need to reason over risk, prioritize actions and make decisions. By grounding every interaction in this rich security context, Project Perception improves the accuracy and consistency of reasoning while reducing the time, compute and cost required to operate at scale. A multi-model architecture built for security No single model will be optimal for every security task. Effective cyber defense requires applying the right model to the right problem at the right time. For Project Perception, the right model is determined by the combination of quality, reliability, latency and cost. Rather than relying on a single model, Project Perception adopts a multi-model architecture that continuously selects the capabilities best suited to the task, optimizing for both effectiveness and economics. Because security is an always-on mission, sustainable economics are essential to operating protection at scale. This approach

tech blog

Why Anthropic backs open-weight AI models but still won’t sign Nvidia CEO’s letter

Anthropic CEO Dario Amodei said open-weight AI models can be a public good, but rejected claims that broader access to AI gives cyber defenders the upper hand against threat actors. Anthropic CEO Dario Amodei has sought to clarify the Claude-maker’s position on open-weight AI models after facing heat for being the lone major frontier AI company to not sign an open letter against the US government’s proposed curbs on some Chinese AI models. After days of remaining conspicuously silent, Amodei said that Anthropic has never advocated for a ban on open-weight models as a means of protecting its business. He also said that such models – whose weights are freely available for developers to download, modify, and deploy on their own infrastructure – should be considered a public good provided they do not come with “dangerous capabilities”. “They don’t cost anything besides the compute needed to run them, and they provide value to businesses, developers, and researchers,” Amodei wrote in a blog post on Monday, July 27. However, he stopped short of endorsing a letter penned by Nvidia CEO Jensen Huang that urged policymakers not to impose broad “premature restrictions” on open-weight AI models. The letter has since been signed by over two dozen companies, including Meta, Microsoft, OpenAI, Google, and SpaceX. While Amodei does not want the US to ban open-weight models, he said that the Trump administration should instead focus on “keeping powerful chips out of authoritarian hands, stopping industrial-scale distillation, and requiring safety testing of all sufficiently capable models, open and closed.” Silicon Valley has been debating open versus closed software for decades. However, artificial intelligence (AI) has significantly raised the stakes. Last week, OpenAI disclosed that a handful of its most advanced AI models broke containment during a test of their cybersecurity abilities, gained access to the internet, and hacked the servers of AI developer platform Hugging Face. In his blog post, Amodei does not explicitly mention OpenAI but has hyperlinked to a news report of the incident.

tech blog

Powering America’s Genesis Mission: Microsoft’s commitment to scientific discovery

Today, we’re excited to share a long-term commitment to the Department of Energy’s (DOE) Genesis Mission, backed by a $60 million investment designed to accelerate AI for science and the breakthroughs it can deliver for the country. This deepened commitment includes Microsoft’s new Scientific Partnership Advancing Research & Knowledge coordination hub and program office, otherwise known as SPARK, that is focused on facilitating collaboration and scientific discovery for the Genesis Mission. The Genesis Mission represents an ambitious vision, bringing together DOE’s 17 National Laboratories, world-class experimental facilities, decades of irreplaceable scientific data and next-generation computing into a single, unified platform capable of transforming how science gets done. The critical goal of the Genesis Mission is to double the productivity and impact of American research and innovation within a decade by embedding AI directly into the scientific process. It’s a bold step forward and exactly the kind of moonshot that defines American science. At Microsoft, we believe that this goal is not only achievable, but also essential as a national security imperative and an economic engine for generations to come. With this commitment and the launch of SPARK, we’re ready to partner fully in this mission and build on our collaborations across government and with academia. Microsoft investing in AI for science Today, Microsoft’s $60 million investment package will begin to accelerate AI for science in support of DOE and the National Laboratories. As sustained scientific impact requires more than infrastructure alone to enable lasting scientific outcomes, Microsoft’s investment package is structured in two parts: $40 million in Azure compute and AI credits, distributed over three years, to power the large-scale AI and scientific workloads at the heart of the mission. This gives researchers room to train, simulate and iterate at a scale that matches their ambition. $20 million in solution engineering enablement services. Dedicated engineering, architecture, deployment, adoption and acceleration support to turn cloud and AI capacity into operational scientific outcomes. This investment helps ensure that the Genesis Mission advances in practice and in principle. Together, this investment reflects a simple conviction: While infrastructure opens the door, it is people, expertise and disciplined delivery that carry discoveries across the finish line. Microsoft is committing to both. Introducing SPARK: Microsoft’s catalyst for advancing scientific partnerships Great partnerships need more than good intentions and good technology — they need a clear way to work together. So, alongside this commitment, we are standing up a new program office and coordination hub: SPARK, or Scientific Partnership Advancing Research & Knowledge. SPARK is the single front door and coordination hub for Genesis Mission collaboration with Microsoft. SPARK orchestrates the full breadth of what Microsoft brings to bear: program, technical, research, engineering, security, compliance, partner and field teams into one clear, consistent path from first idea to deployed science. SPARK is built around five commitments: A dedicated Genesis Mission Program Management Office. This office handles intake, prioritization, a disciplined sprint-and-checkpoint cadence and a steady operational interface with DOE for alignment, reporting and sustained partnership. An AI for Science Center of Excellence. An integrated delivery team that moves use cases from concept to secure, compliant, scalable implementation, with enablement through office hours, hackathons and training grounded in responsible AI and reproducible research. Optimization of Azure credits. Ensures computing resources are directed toward the projects where they can accelerate science most. Management of technical services. Dedicated support to help labs adopt and operationalize AI-for-science capabilities, delivered by Microsoft teams and select partners. Joint research and development. A focused set of Genesis Mission-aligned challenge problems, co-developed by Microsoft researchers and DOE scientific leadership, with milestones, publications and IP governed by mutually agreed terms. Underneath SPARK sits the full breadth of Microsoft’s secure, FedRAMP-authorized cloud and AI portfolio. This includes Microsoft Azure infrastructure, Microsoft Foundry and Zero Trust security through Microsoft Defender, Sentinel and Entra. Azure capabilities will help extend the DOE’s American Science Cloud capabilities by providing computing, AI, data and collaboration services that complement existing scientific infrastructure. Together, these capabilities will help accelerate discovery, enable secure collaboration across institutions and provide researchers with flexible access to advanced technologies and resources. This will enable DOE and National Laboratory scientists to move faster from hypothesis to discovery, without compromising the security, reproducibility and governance that mission-critical research demands. Accelerating science with Microsoft Discovery and Quantum Microsoft’s new commitments build on capabilities we recently announced through Microsoft Discovery and Microsoft Quantum. They are designed to accelerate scientific research and will support the Genesis Mission’s ambition to bring AI, advanced computing and emerging technologies more deeply into the scientific process. To enable a unified research platform for Genesis Mission work, Microsoft will provide access to Microsoft Discovery, our integrated platform that unites AI models, simulation, data and experimental workflows driven by advanced cognition rooted in scientific method, within a single governed environment. Microsoft Discovery, now generally available, includes support for autonomous lab orchestration, integration of Microsoft Research’s AI models for science, continuous AI learning through the scientific loop and agentic memory, advances in Discovery Bookshelf for data curation and scalable indexing and deeper integration and multi-hop reasoning over enterprise science data estates, including data governance. Together, these capabilities are designed to help researchers move more quickly from data to insight, from simulation to experiment, and from promising idea to scientific breakthrough. We also recently announced the preview of the Microsoft Discovery app, a local desktop experience that helps researchers, students and scientific teams begin working with Microsoft Discovery today. Our support for the Genesis Mission will include access to the Microsoft Discovery app to enable DOE and National Laboratory teams with early access to its capabilities. Microsoft’s recent quantum progress further strengthens the foundation for Genesis Mission work. With Majorana-based quantum advances, including more reliable topological qubits and a roadmap toward scalable quantum computing, Microsoft is helping move quantum from long-range research toward practical scientific capability. For DOE and National Laboratory teams, that progress can open new ways to model complex materials, chemistry, energy systems and national security challenges that are

tech blog

Microsoft expands Azure AI and HPC infrastructure with AMD

AI workloads are scaling faster than any single infrastructure approach can support — with more models, new agent-driven workloads and surging compute demand driving the need for greater specialization across the stack. To meet this need, Microsoft continues to evolve Azure’s infrastructure, including expanding its AI fleet with AMD’s most advanced AI and high-performance computing (HPC) solutions. Our approach to AI infrastructure is designed to support the breadth of how AI systems are built and run. We closely work with industry innovators like AMD as well as our own purpose-built silicon and systems to provide customers with a comprehensive, open and heterogenous platform to achieve the best performance, cost and energy efficiency outcomes. Building on our close collaboration with AMD, Microsoft is bringing AMD’s latest Helios AI platform and next-generation EPYC datacenter processors to Azure. These technologies will power three upcoming Azure offerings: HDv2 VMs for data processing, HXv2 VMs for electronic design automation (EDA) and ND MI455X v7 VMs for AI inference workloads. Expanded infrastructure for inference, AI data systems and chip design YouTube Video Click here to load media Built for AI data systems — Azure HDv2 CPU infrastructure is essential to the performance and efficiency of modern AI systems. AI accelerators depend on high-density, power-efficient CPU compute to process data, coordinate workloads and keep pipelines running at scale. Without this, training jobs don’t have enough data to learn from, and agents don’t have enough capacity to perform tasks on behalf of customers. Azure HDv2 virtual machines are one of our latest offerings designed from the ground up to eliminate these bottlenecks and empower massive agentic workload adoption. Co-designed with AMD, HDv2 VMs expand Azure’s portfolio of purpose-built solutions for the most demanding CPU workloads from AI customers, including data preparation, search, reinforcement learning and agent coordination at scale. Featuring nearly 500 physical 6th Gen AMD EPYC CPU cores, 4 terabytes of RAM, 32 terabytes of local NVMe storage and 400 Gb Azure Boost networking, HDv2 VMs are built for the workload needs of our most demanding AI customers. Optimized for silicon design and technical computing — Azure HXv2 The AI era has created tremendous need and opportunity for firms developing the silicon products that power this infrastructure. For this reason, Azure HX virtual machines, launched in partnership with AMD in 2023 and featuring AMD’s unique 3D V-cache technology, have seen significant adoption among silicon design firms working to bring more capable and efficient AI silicon to market. Today, we are announcing the next step in our workload optimized journey for these customers, HXv2. HXv2 virtual machines build on and extend the strengths of HX. They both continue the differentiation Azure offers for RTL simulation workloads by again employing 3D V-cache technology, while offering significant improvements to single threaded performance and memory. HXv2 VMs will feature 176 AMD 6th Gen EPYC CPU cores with a clock frequency of more than 5 GHz, 50% more addressable cache per core and VM sizes with nearly 2 or 4 terabytes of RAM, helping customers optimize their workloads to memory needs. Azure HXv2 is also designed to support a broader range of technical computing workloads including scientific simulation, engineering analysis and other distributed memory applications. The significantly increased per VM and per core performance, and the inclusion of 800 Gb InfiniBand, enable large-scale MPI-based simulations and make HXv2 an ideal fit for a wide variety of HPC customers. AMD, a leading HX-series customer, highlights this impact directly: “Engineering teams are pushing the limits of simulation, chip design and scientific computing. At AMD, we experience those demands firsthand as we design future AMD EPYC CPUs and AMD Instinct GPUs. Azure HX is an important platform for scaling complex EDA workloads, and we’re excited about Azure HXv2, which is designed to deliver even greater performance and scalability. We look forward to continuing our collaboration with Microsoft as we help advance infrastructure for the world’s most demanding engineering and scientific workloads.” — Mark Papermaster, Executive Vice President and CTO, AMD The HXv2 also leverages Microsoft’s long-standing collaboration to optimize Synopsys AI-powered EDA solutions on Azure: “As AI compute continues to push the limits of semiconductor design, our collaboration with Microsoft on the Azure HX-series demonstrates a shared vision for enabling customers to deliver next-generation AI systems with precision and scale in accelerated design cycles. These systems have enabled Synopsys customers to reliably and efficiently leverage cloud-based compute, extending EDA workloads beyond traditional infrastructure constraints so they can meet ambitious development schedules while maximizing design quality and delivering dramatic performance gains.” — Shankar Krishnamoorthy, Chief Product Development Officer, Synopsys Production-scale AI inference — ND MI455X v7 ND MI455X v7 is designed for the reasoning, search and agentic workloads behind modern AI services. Powered by the AMD Helios rackscale solution, it expands Azure’s infrastructure options for large-scale inference and is designed to deliver strong performance and efficiency for demanding AI workloads. Together, these new capabilities expand Azure capabilities while giving customers more flexibility to choose the right compute for each unique AI workflow: from inference, to data systems, to chip design. Customer choice is a core design principle built directly into Microsoft Azure, and we’re excited to bring AMD’s most advanced innovations at production scale. To learn more about Azure’s high-performance computing and AI infrastructure capabilities, visit Azure.com. Scott Guthrie is responsible for a set of hyperscale cloud computing solutions and services including Azure, Microsoft’s cloud computing platform, generative AI solutions, data platforms and information and cybersecurity. These platforms and services help organizations across the globe solve urgent challenges — and transform for the future. The post Microsoft expands Azure AI and HPC infrastructure with AMD appeared first on The Official Microsoft Blog. ​AI workloads are scaling faster than any single infrastructure approach can support — with more models, new agent-driven workloads and surging compute demand driving the need for greater specialization across the stack. To meet this need, Microsoft continues to evolve Azure’s infrastructure, including expanding its AI fleet with AMD’s most advanced AI and high-performance computing… The post Microsoft expands Azure AI and HPC

tech blog

ITMAITY is Now MSME & West Bengal Trade Registered – Building Trust Through Excellence

At ITMAITY, every milestone reflects our commitment to delivering reliable, innovative, and customer-centric technology solutions. We are proud to announce that ITMAITY is officially registered under the Ministry of Micro, Small & Medium Enterprises (MSME), Government of India, and holds West Bengal Trade Registration, reinforcing our dedication to transparency, compliance, and business excellence. This achievement is more than a certification—it is a promise to our clients that they are partnering with a legally recognized, trusted, and growth-oriented technology company. Why This Matters for Our Clients Choosing a registered business provides confidence, accountability, and long-term reliability. With our official registrations, clients can expect: At ITMAITY, your trust remains our greatest achievement, and we strive to exceed expectations with every project we undertake. Our Registration Details Trade Registration No.: 3224 UDYAM Registration No.: UDYAM-WB-20-0068620 These registrations demonstrate our commitment to operating with professionalism, credibility, and adherence to industry standards. Our Services ITMAITY offers a complete range of digital and IT solutions to help businesses establish, grow, and succeed in today’s competitive market. 🌐 Website Design & Development Professional, responsive, and SEO-friendly websites designed to strengthen your online presence. 📱 Mobile App Development Custom Android and iOS applications built to enhance customer engagement and streamline operations. 💻 Custom Software Solutions Scalable software tailored to automate business processes and improve efficiency. 📢 Digital Marketing Results-driven SEO, social media marketing, Google Ads, and branding strategies to accelerate business growth. 🎨 Graphic Design & Video Editing Creative branding solutions, marketing creatives, promotional videos, and visual content that leave a lasting impression. 🤖 AI Automation & IT Solutions Intelligent automation, workflow optimization, and modern technology solutions that improve productivity. 🖥️ Hardware & Networking Solutions Reliable IT infrastructure, networking, installation, maintenance, and technical support for businesses of all sizes. Why Choose ITMAITY? When you partner with ITMAITY, you receive more than just IT services—you gain a technology partner committed to your success. Let’s Build Something Great Together Whether you’re a startup, entrepreneur, educational institution, or established enterprise, ITMAITY is here to transform your ideas into powerful digital solutions. Together, let’s innovate, grow, and build a smarter future with technology. 📞 Contact ITMAITY 🌐 Website: www.itmaity.com 📧 Email: info@itmaity.com 📱 Phone: +91 87590 27112 ITMAITY – Solutions | Services | Satisfaction Your Trust, Our Commitment. Let’s Grow Together.

business

Celebrate the Divine Spirit of Subha Rath Yatra with ITMAITY

As the sacred festival of Subha Rath Yatra fills hearts with devotion, faith, and positivity, ITMAITY extends its warmest wishes to you and your family. May the blessings of Lord Jagannath bring peace, prosperity, happiness, and good health into your life. This auspicious occasion reminds us that every journey becomes meaningful when guided by faith, unity, and kindness. Just as Lord Jagannath’s magnificent chariot inspires millions to move forward with hope and devotion, we at ITMAITY remain committed to helping businesses progress with innovative digital solutions and reliable technology services. Our Services At ITMAITY, we empower businesses with comprehensive IT solutions, including: Our goal is to help organizations embrace digital transformation through innovative, scalable, and customer-focused technology solutions. A Festival of Faith and New Beginnings Rath Yatra symbolizes the journey toward success, positivity, and spiritual growth. May this sacred celebration inspire fresh opportunities, stronger relationships, and continued achievements in every aspect of your life. Let us walk together on the path of Devotion, Unity, and Happiness. Jai Jagannath! From the entire ITMAITY family, we wish you a blessed and joyous Subha Rath Yatra. May Lord Jagannath shower his divine blessings upon you and your loved ones today and always. Contact ITMAITY 🌐 Website: www.itmaity.com📧 Email: info@itmaity.com📞 Phone: +91 87590 27112 Follow ITMAITY on social media for the latest updates, technology insights, and business solutions. Happy Subha Rath Yatra! 🙏🚩

tech blog

Why Dell Technologies is Ranked #1 in Enterprise Storage

Dell is No. 1 in enterprise storage worldwide. But share is the result, not the story. Here is what is actually driving the growth.   ​  ​Dell is No. 1 in enterprise storage worldwide. But share is the result, not the story. Here is what is actually driving the growth. PowerStore Blog | Dell

business, tech blog

VOIP Solutions by ITMAITY: Smarter Calls, Better Business

In today’s fast-moving business world, communication is one of the biggest keys to success. Whether you run a small business, call center, clinic, agency, showroom, or service-based company, managing calls professionally can improve customer experience and increase business growth. That’s why ITMAITY brings advanced VOIP, Cloud Dialer, and IVR solutions to make your business communication smarter, faster, and more reliable. With ITMAITY’s VOIP service, you don’t need to buy multiple numbers for different agents or departments. With one number, multiple agents can be assigned, helping your team manage calls smoothly from a single communication system. Why Choose ITMAITY VOIP Services? ITMAITY provides a complete cloud-based calling solution designed for modern businesses. Our VOIP system helps you connect with customers more professionally while saving time and reducing calling management issues. Key Features One Number, Multiple AgentsAssign multiple team members under one business number and manage calls without confusion. Cloud Dialer SupportMake and receive calls through a smart cloud-based dialing system. IVR SetupCreate a professional caller experience with automated call routing like “Press 1 for Sales, Press 2 for Support.” Call RecordingKeep records of customer conversations for quality improvement and training purposes. Agent Tracking & NotesTrack agent performance, call details, and important customer notes easily. Better Customer HandlingNever miss important business calls and manage customer communication in an organized way. Perfect for Every Business ITMAITY VOIP solutions are suitable for: Corporate offices, digital marketing agencies, clinics, hospitals, travel agencies, real estate businesses, sales teams, customer support teams, service centers, e-commerce businesses, and call centers. One Number. Unlimited Possibilities. A professional calling system helps your brand build trust. With ITMAITY’s VOIP and Cloud Dialer solutions, your business can simplify communication, connect better with customers, and grow faster. For reliable VOIP, Cloud Dialer, IVR, and business communication solutions, connect with ITMAITY today. Website: www.itmaity.comEmail: info@itmaity.comContact: +9187590 27112

tech blog

The latest in our company transformation

Amy Coleman, EVP and Chief People Officer, shared the following communication with employees today. When I stepped into this role, I promised to communicate more openly with you and share the “why” behind our decisions. Today we are eliminating around 4,800 roles, about 2.1% of our global workforce, as we focus our people, investments, and energy on the priorities that will keep Microsoft positioned to deliver for customers in a fast-changing industry. The people whose jobs are impacted today are our colleagues and friends. They have made meaningful contributions to Microsoft, and we are deeply grateful for everything they have done. Decisions like these are never easy, and you have my commitment that we are always looking for ways to reduce the need for job eliminations. Whenever possible, our priority is to place people into new roles aligned to the company’s highest priorities and greatest areas of opportunity. Over the past year, we have redeployed more than 4,000 employees into new roles, including another 500 this month. We will also transition four of our gaming studios to operate under new management, with the goal of preserving both their intellectual property and ongoing projects. In addition, more than 30% of eligible employees chose to participate in our recent voluntary retirement program, and we will continue exploring similar approaches in the future. While this doesn’t change the difficulty of today’s news, we will continue to do everything we can to create opportunities for our people, reduce the need for job eliminations where possible, and responsibly support those affected with care and respect. The “why” is this: Our business is changing because the world around it is changing. The way technology is built, deployed, and used is transforming faster than at any point in my time here. Our customers’ needs are shifting, the business models that serve them are shifting, and that means the work itself – what we do, where we focus, and how we’re organized – has to transform too. Companies don’t get to choose whether their industry changes; they only get to choose whether they change with it. That means we will need to adjust resources and roles and shift how we operate so we can have the greatest impact for our customers. I also want to be direct that the roles eliminated today are not being replaced by AI. At the same time, what is true is that AI is changing how work gets done. Some of the tasks we do every day can now be automated, and that means we all need to keep learning, keep building new skills, and keep adapting as the work evolves. Our customers are navigating this same shift, and they’re counting on us to help them through it. We can’t do that well unless we’re doing it ourselves. This comes down to two commitments: making the decisions needed to drive differentiated customer value, and supporting the people affected by them. First, we will make the hard changes required to build differentiated products and services that deliver differentiated customer value. We are aligning our investment, people, and energy to our business priorities. Today’s changes mostly fall within our Commercial and XBOX organizations. In our Microsoft Commercial Business, they build on last week’s Frontier Company announcement, reshaping how we work and embedding our engineering experts alongside customers so we can help them accelerate their technology deployments. In XBOX, we are restructuring to position the business for long-term success. Engineering teams across the company will also evolve their structure and priorities to meet customer needs and innovate for the future. Second, we will do this thoughtfully.  As mentioned above, we are working on alternative solutions to job eliminations, and beyond this, we will continue to invest in equipping employees with new skills, including in AI. For those who are impacted, we provide financial support and resources to help them take their next step. I know many of you want to help those who are leaving but aren’t sure how. Reach out and check in on your colleagues. Use your network to bring people together, share what makes them exceptional, and help create connections to opportunities that might not happen otherwise. We are still early on this journey, and there will be more changes ahead; other parts of our business will need to make similar changes. Each time, you can hold us to the two commitments. During my time at Microsoft, I’ve seen this company reinvent itself again and again. What makes that possible has always been our people – their resilience, creativity, and willingness to keep learning. Thank you for everything you bring to Microsoft. Amy Read more: Resetting XBOX. The post The latest in our company transformation appeared first on The Official Microsoft Blog. ​Amy Coleman, EVP and Chief People Officer, shared the following communication with employees today. When I stepped into this role, I promised to communicate more openly with you and share the “why” behind our decisions. Today we are eliminating around 4,800 roles, about 2.1% of our global workforce, as we focus our people, investments, and… The post The latest in our company transformation appeared first on The Official Microsoft Blog.  Featured, The Official Microsoft Blog The Official Microsoft Blog

tech blog

Microsoft Frontier Company: AI engineering that amplifies and protects your intelligence

The pace of AI adoption is moving incredibly fast. Customers have moved well beyond experimentation and understand the importance of adopting AI to transform their business. They are now concentrating on delivering measurable business outcomes and demonstrating a return on their AI investments, while ensuring their intelligence is amplified and their IP is protected. Today we are introducing Microsoft Frontier Company, a new operating business focused on delivering Frontier Transformation through AI for our customers around the world. It will provide a unique combination of skills inclusive of deep industry knowledge, change management and continuous improvement experience, and enterprise-grade AI engineering expertise. This goes beyond what has been labeled as Forward Deployed Engineering (FDE) and will be the largest, most capable, outcome-driven engineering organization in the industry. We are making a $2.5B investment in Microsoft Frontier Company, embedding 6,000 industry and engineering experts at customers to co-design, co-innovate, deploy and continuously improve AI systems at scale based on measurable business outcomes. I recently wrote more about my conviction that Intelligence + Trust are the two most important components of any AI solution and how our customers can use different levers to manage cost. Companies need to establish an intelligence platform so their unique IQ — their proprietary data, expertise, workflows and decision-making processes — compounds over time from within, using their choice of models to build AI solutions and workflows. They need a trusted platform that allows them to observe, govern, manage and secure AI solutions across every layer of the technology stack, using FinOps to assess their ROI. Enterprise AI engineering expertise with deep industry knowledge is required to build a system that acts as a continuous loop of improvement between the two platforms to fine tune agentic business processes, ensuring that a customer’s intelligence compounds over time and delivers real business outcomes. This is what Microsoft Frontier Company was built to do: focus on end-to-end Frontier Transformation, enabling customers to amplify their IQ with AI while refining their differentiated value in the markets that they serve. Early results demonstrate meaningful impact: Our engineers and industry experts partnered with LSEG (London Stock Exchange Group) to embed AI into LSEG Workspace, helping finance professionals ask complex questions and get quick answers across structured and unstructured financial content. The solution is underpinned by a foundation that is iteratively refined through client feedback and real-time user testing that accelerates each cycle and steadily improves model quality and scope. From LSEG to Land O’Lakes to Unilever to Novo Nordisk, our differentiated approach is already delivering measurable outcomes on our customers’ Frontier Transformation journeys. To achieve scale, we will work closely with our partner ecosystem to extend this unique value to our customers across all markets and segments globally. We have robust FDE partnerships with our Global SI partners, including Accenture, Capgemini, EY, KPMG, PwC and others. Central to this approach is a principle that is non-negotiable: a customer’s IQ is protected. Their data, their IP, their competitive advantage — none of it is used to train models in ways that commoditize what differentiates them in their industry. Satya put it clearly recently: there is no societal permission for an AI future that eats the intelligence of the companies it’s deployed inside. We built Microsoft Frontier Company to make sure that does not happen. We protect that intelligence with a model-diverse, open, heterogeneous AI platform. Customers shouldn’t be locked into a single model any more than they should be locked into a single technology vendor. Microsoft’s platform gives organizations the flexibility to run the right model for each scenario — whether it comes from OpenAI, Anthropic, Microsoft AI, open source or a specialized model tuned for a specific industry — without ceding control to any one of them. To lead this new organization, I have asked Rodrigo Kede Lima to be the President of Microsoft Frontier Company. Rodrigo brings 30 years of industry experience, and for the past six at Microsoft has led enterprise-wide transformations as a sales leader in the Americas and Asia. He has been at the forefront of helping customers and partners translate technology shifts into business outcomes, and understanding how platform innovation, engineering and partner ecosystem collaboration come together to drive growth. I am excited about all the things that Microsoft Frontier Company will do for our customers to realize the gains of Frontier Transformation. At the end of the day, it comes down to Intelligence + Trust and empowering our customers to achieve meaningful outcomes and a return on their investments. Learn more at www.microsoft.com/en-us/frontier-company. Judson Althoff is the chief executive officer of Microsoft Commercial Business. He is responsible for the product strategy, sales, services, support, marketing, operations and revenue growth of the company’s commercial business, which operates in more than 120 regional and national subsidiaries globally. The post Microsoft Frontier Company: AI engineering that amplifies and protects your intelligence appeared first on The Official Microsoft Blog. ​The pace of AI adoption is moving incredibly fast. Customers have moved well beyond experimentation and understand the importance of adopting AI to transform their business. They are now concentrating on delivering measurable business outcomes and demonstrating a return on their AI investments, while ensuring their intelligence is amplified and their IP is protected. Today… The post Microsoft Frontier Company: AI engineering that amplifies and protects your intelligence appeared first on The Official Microsoft Blog.  Featured, The Official Microsoft Blog, AI, Frontier Transformation, Microsoft Frontier Company The Official Microsoft Blog

tech blog

Why Expensive GPUs Sit Idle

GPU utilization is a data problem before it is a compute problem, and the three forms of data are how you solve it.   ​  ​GPU utilization is a data problem before it is a compute problem, and the three forms of data are how you solve it. AI Data Platform Blog | Dell

tech blog

When Architecture Fights Gravity, Operations Pay the Tax.

Why “unified namespace” is a polite way of pretending data has no mass, and what the three forms of data actually let you move.   ​  ​Why “unified namespace” is a polite way of pretending data has no mass, and what the three forms of data actually let you move. AI Data Platform Blog | Dell

business, tech blog

🔒 One Click Can Cost Your Business: How to Protect Yourself from Phishing Attacks by ITMAITY

In today’s digital world, cybercriminals are becoming smarter every day. A single click on a fake email can compromise sensitive business data, expose customer information, and result in significant financial losses. Phishing attacks remain one of the most common cybersecurity threats—but with awareness and caution, they are preventable. What is a Phishing Attack? A phishing attack is a fraudulent attempt to steal sensitive information such as passwords, banking details, or company data by pretending to be a trusted source. These emails often appear to come from legitimate organizations and encourage users to click malicious links or download infected attachments. How to Stay Protected ✅ Verify the Sender Always check the sender’s email address carefully. Cybercriminals often use addresses that look similar to genuine ones but contain subtle differences. 🔗 Inspect Links Before Clicking Hover over links to preview the destination URL before clicking. If the link looks suspicious or unfamiliar, avoid opening it. 🛡️ Stay Alert Be cautious of emails creating urgency, requesting confidential information, or offering unexpected rewards. When in doubt, verify with the sender through an official communication channel. Why Cybersecurity Matters Every employee plays a vital role in protecting an organization’s digital assets. Building a culture of cybersecurity awareness can significantly reduce the risk of phishing attacks and data breaches. Stay Secure. Stay Smart.Protect your business by staying informed and thinking before you click. Why Choose ITMAITY? At ITMAITY, we help businesses strengthen their digital security through reliable IT solutions, cybersecurity awareness, and technology services tailored to modern business needs. Whether you’re a startup or an established enterprise, our team is committed to helping you build a safer and smarter digital workplace. 📞 Contact Us Company: ITMAITY📧 Email: info@itmaity.com📱 Phone: +91 87590 27112🌐 Website: www.itmaity.com

tech blog

Raiganj Business Summit 2026 – A New Era of Business Networking Begins!

ITMAITY Presents the Raiganj Business Summit 2026 ITMAITY is proud to announce the Raiganj Business Summit 2026, an exclusive networking and collaboration platform designed to bring together influential leaders, entrepreneurs, professionals, and aspiring innovators under one roof. This landmark event will serve as a hub for business growth, strategic partnerships, knowledge sharing, and meaningful connections, making it one of the most anticipated business gatherings in Raiganj. Why Attend? The Raiganj Business Summit 2026 is more than just an event—it’s an opportunity to connect with people who shape industries and communities. Who Will Be Joining? Whether you’re a business owner, startup founder, student, or professional, this summit offers valuable opportunities to learn, network, and grow. Event Highlights Participants can look forward to an exciting and engaging experience featuring: Every aspect of the event has been thoughtfully planned to create an inspiring environment where ideas transform into opportunities. Event Details 📍 Venue: Bidhan Mancha, Raiganj 🗓️ Tentative Schedule: October 2026 (Before Durga Puja) This will be the first-ever business summit of its kind in Raiganj, creating a unique platform for collaboration between businesses, government representatives, educational institutions, and future leaders. Why ITMAITY? At ITMAITY, we believe that strong communities are built through collaboration, innovation, and meaningful relationships. The Raiganj Business Summit reflects our commitment to empowering businesses and creating opportunities that drive regional growth. Our mission is simple: Connect • Collaborate • Grow Be a Part of History Don’t miss the opportunity to become part of Raiganj’s biggest business networking event. Whether you’re looking to expand your professional network, discover new business opportunities, or gain industry insights, the Raiganj Business Summit 2026 is the place to be. Everyone is Invited! Let’s build stronger connections, inspire innovation, and shape the future of business together. Contact ITMAITY 📧 Email: info@itmaity.com 📞 Phone: +91 87590 27112 We look forward to welcoming you to Raiganj Business Summit 2026—where ideas meet opportunities and partnerships create success.

Scroll to Top