Sr. Content Developer at Microsoft, working remotely in PA, TechBash conference organizer, former Microsoft MVP, Husband, Dad and Geek.
156958 stories
·
33 followers

Microsoft and Amazon Commit Billions to New AI Implementation Units for Businesses

1 Share
Microsoft is investing $2.5 billion in a new group "assisting clients with AI implementations," reports CNBC: [Microsoft] said Thursday that 6,000 employees will be embedded with clients, in a practice that's become known as forward deployed engineering [or FDE]... The announcement comes two days after cloud rival Amazon said it was putting $1 billion behind an FDE initiative to support fast-paced AI engagements. Leading AI labs Anthropic and OpenAI both established FDE groups in May, partnering with private equity firms, banks and consulting firms. Alongside its technology peers, Microsoft has sunk tens of billions of dollars into building data centers that run generative AI models. Microsoft has also released a variety of AI services, with mixed results. The Microsoft 365 Copilot AI assistant has yet to gain anything approaching ubiquity in the business world, and the GitHub Copilot coding agent has ceded market share to newer players. Microsoft's stock has slumped 21% this year, by far the worst performance among the mega-cap tech companies. One concern on Wall Street is that AI models that quickly compose code might threaten mature software companies... Microsoft has for years provided support and implementation services to customers. The company generated about $2.1 billion in revenue from enterprise and partner services in the March quarter, up 2.5% from a year earlier.

Read more of this story at Slashdot.

Read the whole story
alvinashcraft
52 minutes ago
reply
Pennsylvania, USA
Share this story
Delete

Microsoft’s Link to Windows removes ghost PCs from your Android phone ahead of its next big update

1 Share

I test Windows Insider builds on more Virtual Machines than I’d like to admit, and many of them used to leave ghost PCs behind in my Link to Windows app. Even after deleting the VM and sometimes after removing it from my Microsoft Account also, the PC name would still be there in the Linked PCs list, appearing disconnected and impossible to get rid of from the app. To my relief (and many others I presume), that’s finally changing.

You can now remove PCs you don't need from Link to Windows app

The Link to Windows Android app is rolling out a new Remove PC option that lets you delete a linked computer straight from your phone, no PC required. I’m running the beta version 1.26062.125.0-preprod, and the option showed up in Settings without much fanfare.

New option to remove PC from Link to Windows

I hadn’t even gone looking for it until I saw Zac Bowden talk about it online, and once I checked my own device, I could confirm it’s live for at least some beta testers too.

How to remove a PC from Link to Windows on Android

Open Link to Windows, tap your profile picture in the top left corner, and go to Settings.

Link to Windows Settings

Under Linked PCs, you’ll see every PC that has been paired with your Microsoft account through Phone Link. Next to each PC’s name is a small gear icon, and tapping it opens a dedicated screen for that device with its connection status at the top.

New individual settings option for linked PCs in Link to Windows app

The device screen has two options. Disconnect pauses the sync, and it’s reversible. Below it is Remove PC, and this deletes the entry for good.

Tap it, and a confirmation dialog reads “Remove [PC name]?” with a warning that removing the PC takes it off your account and your device list. There’s also a note that the PC might still show up on other mobile devices and Microsoft products, and if it does, you’ll need to remove it there too. Confirm, and the entry disappears from the Linked PCs list right away.

How to remove PC from Link to Windows

And in my testing, after removing the PC shown in the screenshot, I opened Devices on my Microsoft account and, sure enough, this PC wasn’t there anymore.

Device removed from account

Why removing a PC wasn’t possible until now

Turns out this wasn’t Microsoft dragging its feet on adding a simple UI. According to an Independent Advisor on Microsoft’s Q&A forum, an engineer confirmed that the Linked PCs list is stored in a backend database that isn’t publicly accessible, which explains why there was no way to delete individual entries from the app.

The advisor added that Microsoft was already working on it back in January, so this Remove PC button has apparently been months in the making.

One user from 2024 replaced a broken laptop and kept seeing the old device pop up every time they tried to send something from their phone, with no way to clear it out. Another asked a nearly identical question a year later and got no real fix either, just a workaround of signing out entirely and starting over.

Link to Windows and Phone Link keeps getting better

Link to Windows and Phone Link are two of my favorite apps in the Windows and Android ecosystem. They take two operating systems that share nothing in common architecturally and make them talk to each other well enough that I can lock my PC, send files, sync my clipboard, and a lot more.

File sending from Link to Windows to PC

Cross-device resume now lets a Vivo browser tab or an M365 Copilot document jump straight to your PC’s taskbar, and the Android app looks nothing like the barren shortcut list it used to be.

Old Link to Windows and new Link to Windows

The Phone Link team isn’t slowing down, either. Phone Link’s X account posted in March about MVP Summit and teased that more features are on the way to Phone Link and cross-device experiences. The handle isn’t exactly active on social media.

Months passed before this remove PC option was even shown in beta, so whatever was being hinted at back then is likely still working its way down the pipeline.

Phone Link social media post

The option to remove PC from Link to Windows is limited to the preprod beta channel for now, so don’t be surprised if it takes a while to reach the stable app.

The post Microsoft’s Link to Windows removes ghost PCs from your Android phone ahead of its next big update appeared first on Windows Latest

Read the whole story
alvinashcraft
2 hours ago
reply
Pennsylvania, USA
Share this story
Delete

Links For You (7/5/26)

1 Share

In my last links post, I hinted that I may have some good news on the job front, and if you follow me on LinkedIn you already know that I've signed on to my next gig. Tomorrow morning I'll share on here (and on LI) details about the new gig, but I am beyond excited about this new job. With that out of the way, how about some happy links for what's going to be a really dang good week?

JavaScript in the Shadows

As one of the new proposals for JavaScript, the ShadowRealm API is pretty interesting. It allows for the creation of a realm, or in my mind, an environment, with JavaScript that is 100% disconnected from the main environment of your browser window. Mat Marquis gives a great introduction to this in Soon We Can Finally Banish JavaScript to the ShadowRealm over on CSS Tricks. (If for some reason you've never heard of css-tricks, you should absolutely bookmark it and make it part of your required reading.) Mat's introduction is a pretty fun read as well.

Brownies for Storage

I'm a sucker for anything browser-storage related, and Brownies is a great example of that. Brownies is a library that wraps cookies, Web Storage, and IndexedDB, all in one. Here's an example from their docs:

import { cookies, local, db } from 'brownies';

cookies.token = 42;     // Set it
let t = cookies.token;  // Get it
delete cookies.token;   // Eat it

local.token = 42;       // Set it
let t = local.token;    // Get it
delete local.token;     // Del it

// db is ASYNC so read is different
db.token = 42;          // Set it
let t = await db.token; // Get it
delete db.token;        // Del it

This looks quite delicious. It's probably not fair to say it is a wrapper for IndexedDB as from what I can see, it's just doing a key/value store and not letting you specify custom object stores and such. In fact, the docs for db seem to be missing, and the repository doesn't have issues enabled so I'm going to have to find another way to leave that feedback, but check it out nonetheless. (I sent the author an email about this.)

Don't use JavaScript!

My first two links were JavaScript related, so why not advise against JavaScript in my third link? While not an "anti" JavaScript resource, NoLoJS is a resource showing multiple different UX/UI components that can be built with no, or at least little, JavaScript. As I discovered last week, there's a lot you can do with CSS and removing JavaScript dependencies is just one benefit.

Just For Fun

Yesterday was July 4th which means hot dogs and fireworks and that's all... right? Unsurprisingly, there's quite a few examples of fireworks being rendered in HTML. Here's one fun example that's pure CSS:

See the Pen Pure CSS Fireworks by Eddie Lin (@yshlin) on CodePen.

Read the whole story
alvinashcraft
2 hours ago
reply
Pennsylvania, USA
Share this story
Delete

Week in Review: Most popular stories on GeekWire for the week of June 28, 2026

1 Share

Get caught up on the latest technology and startup news from the past week. Here are the most popular stories on GeekWire for the week of June 28, 2026.

Sign up to receive these updates every Sunday in your inbox by subscribing to our GeekWire Weekly email newsletter.

Most popular stories on GeekWire

Read the whole story
alvinashcraft
5 hours ago
reply
Pennsylvania, USA
Share this story
Delete

EV Batteries Defy Expectations, Last Hundreds of Thousands of Miles

2 Shares
247,000 miles on an EV battery? So says the owner of a U.K.-based used-car sales company that specializes in Evs, who tells the Wall Street Journal EV batteries keep performing well even after several hundred thousand miles. "They are proving themselves to be exceptionally reliable." After five years on the road, the average EV will still be able to drive up to 95% of its original range, according to Recurrent, a data-science company that provides a battery-monitoring tool for EVs — better than many in the auto industry expected... Potential new car buyers' fear of having to pay for a battery replacement is the number one reason they choose to steer clear of EVs, according to a 2025 survey from industry research firm AutoPacific. When early EVs hit the market, buyers' concerns were well-founded. Roughly one in 12 EVs built from 2011 to 2016 have had to have battery replacements. But new data shows that more modern EVs are doing better so far. Among EVs built from 2022 on, 0.3% have had battery replacements, according to a 2025 study from Recurrent. As battery technology has advanced, EVs have avoided problems like the ones that plagued the original Nissan Leaf when it hit the market in 2010, for example. Those cars lacked the battery-cooling technology that is in newer EVs, and they made headlines for wearing down quickly. Buyer perception hasn't quite caught up, according to Scott Case, co-founder and chief executive of Recurrent... The newest battery-powered EVs have lifespans comparable to internal-combustion-engine vehicles, even when driven more miles, according to Viet Nguyen-Tien, a research officer at the London School of Economics who focuses on Evs. Improvements in car batteries' chemical contents, battery-management systems and thermal regulation have been the difference in making batteries last longer and cost less, Nguyen-Tien said. Battery prices have fallen more than 90% since 2010, according to a BloombergNEF report from late last year. Industry analysts say battery-replacement costs are also improving as more EVs are designed for repairability in the long-haul. An out-of-warranty battery replacement can cost anywhere from $5,000 to $16,000, depending on the manufacturer, according to Recurrent. But many EV manufacturers have shifted to allow smaller components of their battery packs to be repaired, which can allow owners to avoid the full costs of a battery replacement, Case said. EV batteries aren't without their challenges, though. A battery that is frequently fast-charged with high power loses its range, on average, at twice the rate of a battery charged at a lower power, according to telematics company Geotab. Frequently charging a battery to 100%, or letting it rest at 0% for extended periods, can also reduce range long-term. And EVs regularly deliver less range in extreme cold or heat. The article also includes two new projections on EV adoption: "The share of new EVs sold is expected to nearly double to 11% of new-car sales in the U.S. by 2030, according to industry consulting firm AlixPartners." "Globally, EVs already make up 15% of new-car sales and are expected to form nearly a quarter of the global market by 2030, according to AlixPartners."

Read more of this story at Slashdot.

Read the whole story
alvinashcraft
5 hours ago
reply
Pennsylvania, USA
Share this story
Delete

Mac Power Users 856: iOS 27 Beta Features and Siri AI

1 Share

David bought his MacBook Pro at the perfect time, then we discuss Siri AI, iOS 27 beta, and the cultural reception of AI.

This episode of Mac Power Users is sponsored by:

Links and Show Notes:

Sign up for the MPU email newsletter and join the MPU forums. You can watch the podcast over on YouTube.

Credits

The Mac Power Users
Stephen Robles
David Sparks

The Editor
Jim Metzendorf

The Fixer
Kerry Provanzano

More Power Users: Ad-free episodes with regular bonus segments
Submit Feedback
Safari Describe Extensions macOS 27 - YouTube




Download audio: https://www.podtrac.com/pts/redirect.mp3/mgln.ai/e/613/clrtpod.com/m/pscrb.fm/rss/p/traffic.libsyn.com/relaympu/mpu856.mp3
Read the whole story
alvinashcraft
5 hours ago
reply
Pennsylvania, USA
Share this story
Delete
Next Page of Stories