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 .NET 7 stuff you don't have to know about => "OSR allows long-running methods to switch to more optimized vers… twitter.com/i/web/status/1… 7 hours ago
- RT @daprdev: We are beyond excited to see Dapr used on board the International Space Station, helping NASA astronauts with glove monitoring… 1 day ago
- RT @craigshoemaker: 💡Are you ready for to start building microservices and containerized apps? 🎉Azure Container Apps is ready for product… 3 days ago
- RT @andygocke: Can't believe none of that "C# is turning into F#" people have noted that this is legal code in C# 11 https://t.co/sPcJLYZCYd 1 week ago
- When old friends suddenly invite you to go to France for a week but you have to decide right now. https://t.co/SaN6uLy1Tu 2 weeks ago
Meta
Tag Archives: Threading
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