My Apps
-
Recent Posts
Archives
- March 2020
- June 2019
- May 2019
- August 2018
- September 2016
- August 2016
- July 2016
- April 2016
- September 2015
- May 2015
- April 2015
- June 2014
- April 2014
- March 2014
- June 2013
- February 2013
- January 2013
- December 2012
- September 2012
- August 2012
- July 2012
- May 2012
- April 2012
- March 2012
- February 2012
- January 2012
Categories
Negative Eddy on Twitter
- cool! Dall-E accepts "in the style of Sea of Thieves" bing.com/images/create/… #SeaOfThieves #BeMorePirate #Bing… twitter.com/i/web/status/1… 5 hours ago
- @aSteveCleary Next time someone asks me to do a talk about async I'm just going to send this link the day before an… twitter.com/i/web/status/1… 1 week ago
- RT @aSteveCleary: This is the best explanation of the async state machine I've ever read: devblogs.microsoft.com/dotnet/how-asy… It's also the *only* ex… 1 week ago
- RT @XboxWire: From an idea about spies to a pirate adventure celebrating its fifth anniversary - we spoke to key members of the @SeaOfThiev… 1 week ago
- With all the attention on #nostr lately, @bluesky has quietely shown up in the app store, but my invite has not 😡 4 weeks ago
Meta
Author Archives: Negative Eddy
WFH DIY Meeting Light Bulb
Honey, are you on the phone? When working from home, interruptions are a given. Sometimes its fine and other times I’m in a customer meeting and need privacy, but my family never knows which. My schedule changes during the day … Continue reading
Posted in automation, Azure, Tinkering
Leave a comment
Deploying a Virtual Assistant on the cheap
The Virtual Assistant Solution (VA) brings together all of the supporting components and greatly simplifies the creation of a new bot project including: basic conversational intents, Dispatch integration, QnA Maker, Application Insights and an automated deployment. Since it is designed … Continue reading
You’ve got a little bot in your Blazor there
Since Blazor is now officially not-experimental (meaning it is now officially in preview) I figured I’d try to mix it in with my other favorite thing right now… Bots! (For those of you unfamiliar with Blazor, the short description is … Continue reading
Raw threads and async lambdas
Using async methods/lambdas where they are not expected causes unexpected problems. The typical example I discuss with people is TaskFactory.StartNew() because its an easy way to create Tasks and some people reach for that instead of Task.Run(), but I recently … Continue reading
Quick dev directory cleanup tip
[Crosspost from my MSDN blog] When cleaning up drive space, the first thing I do is remove the ‘obj’, ‘bin’, and ‘packages’ directories from my development directories. They are temporary and will be rebuilt the next time I build the … Continue reading
C# Zork running on Ubuntu
So I’ve finally got my VSTS builds running on Ubuntu (and Windows). I haven’t installed Linux on a PC in well over a decade but it has come a long way in that time. Installed Ubuntu 16.04 on HyperV on … Continue reading
Posted in Dev Stuff, ZMachine, Zork
Leave a comment
Using C# to build 35 year old tech is fun
I’ve always been a fan of Zork. If you’ve been playing games awhile (and I mean a whiiiile) then you probably are too. For those of you who aren’t familiar with it, its the original text adventure game. No graphics. … Continue reading
Posted in Dev Stuff, Programming, Tinkering, ZMachine, Zork
Leave a comment
Do you have a Twinkie?
I want to be this guy. This guy who was behind us in line at the grocery store. …I’m standing there while the cashier rings up my cart, and I notice the guy behind me standing innocently doing nothing. Then … Continue reading
Posted in life
Leave a comment
Waaaaay oversimplified async/await plumbing
[cross posted from my MSDN blog] Often, when someone asks “how does this async await stuff actually work”? There is a lot of hand waving or someone says “just use reflection and look at it” but the real compiled code … Continue reading
Tasks are (still) not threads and async is not parallel
[cross posted from my MSDN blog] I talk to a lot of developers who are either new to .NET or are moving from an older version to the newer platform and tools. As such I’m always trying to think of … Continue reading
Posted in Dev Stuff, Programming
2 Comments