Posts

Showing posts from 2020

EBOOK GIVEAWAY: Hands-On Microservices with C# 8 and .NET Core 3

Image
Are you ready to win an eBook copy of our new book from Packt?  We're giving away ten free eBook copies of our new book!  My co-author Gaurav Aroraa and I recently finished our book: You can find the book here: Hands-On Microservices on Packt's Site Hands-On Microservices on Amazon.com First, I want to thank Gaurav (a Microsoft MVP award winner) for bringing me in on this book. It's been a lot of fun to work with him and with Packt on the book. This is Gaurav's third run on this topic, including a version on  .NET Core 2.0  (which I wrote the foreword for) and the  original release of .NET Core  (which I also wrote the foreword for). Both are also from Packt. While I'm linking to my co-author's books, you should also check out his recent related Packt book,  Hands-On Design Patterns with C# and .NET Core . That book was co-written by another member of our blog team, Jeffrey Chilberto (check out his recent hit  Azure on the Cheap blog post ). Tha

Have you ever noticed that the titles of books are getting longer?

Image
Here's one of my new books: That doesn't seem too long. But here's how the title really looks (and how it shows up in Amazon.com): Hands-On Microservices with C# 8 and .NET Core 3: Refactor you monolith architecture into microservices using Azure, 3rd Edition And it's not just the publisher. I also recently published this book from Apress: Cloud Debugging and Profiling in Microsoft Azure: Application Performance Management in the Cloud And then I also co-wrote this one from No Starch Press (teach your kids to code, age 10+): Learn to Program with Small Basic: An Introduction to Programming with Games, Art, Science, and Math They're all pretty long, right? I think I'm going to set a personal goal to write a book with a painfully long title now. Let's see how far we can get with this. What do you think?    - Ninja Ed

Why is there a giant Joker playing card in the Batcave?

Image
Let's say the murderous clown of crime sent you a giant portrait of himself. Why, exactly, would you hang it in the Batcave? Riddle me that, Batman.    - Ninja Ed PS: New books! Cloud Debugging and Profiling in Microsoft Azure: Application Performance Management in the Cloud Hands-On Microservices with C# 8 and .NET Core 3: Refactor you monolith architecture into microservices using Azure, 3rd Edition And my first book... teach your kids to code (age 10+): Learn to Program with Small Basic: An Introduction to Programming with Games, Art, Science, and Math    Have you ever noticed that the titles of books are getting longer?

NEW UPDATES: Small Basic Website 2.2 & Small Basic Online 1.0

Image
We're following up to our previous announcements about Small Basic Website and SBO:  NEW UPDATES: Small Basic Website 2.1 & Small Basic Online 0.91 NEW RELEASE: Small Basic Online Public Preview (v0.9) We haven't been blogging enough about what's going on, so let's see if we can change that! Our progress continues! From 2019's efforts, we made some updates! Big thanks to our 2019  Hackathon website team:  Casey Schaertl , Peter Durham, Ian Johnson, Andrew Cook, Debbie Chang, Ken O. Bonn, Angela Vu, Maira Wenzel, Austin Suarez, Devagnanam Jayaseelan, Liz Bander, and Duncan Chalmers. Small Basic Website 2.2 is a set of improvements from our 2019 Hackathon efforts, including the release of Small Basic Online 1.0.  Here is SB Website 2.2: What's New - SB Website 2.2: Home Page : Updated Design : Our design is simplified, without the rotating banner. The color/brand is more consistent now with green. Our Download and Online

Mainframe Rehosting articles on Microsoft Docs!

Image
On  3/13/19 , we mentioned that we now have a Mainframe Rehosting section on Microsoft Docs! Also on  2/19/19 , we announced our Mainframe Migration articles on the Azure Architecture Center's Azure Cloud Adoption Framework.  Now, we're back to talk (write) about our latest Mainframe Rehosting articles on Microsoft Docs! Updated Get Started article:  First up is our updates to our  Get Started  article. We have new sections about: Mainframe migration  - A quick explanation and link to the Mainframe Migration guide in Azure CAF.  Micro Focus rehosting platform  - We now include a link to our new Docker Container article. TmaxSoft OpenFrame on Azur e - With a new section in Mainframe Rehosting, we explain the two new articles. Considerations  - This section gives a high-level tour of considerations to keep in mind for Compute, High availability and failover, Scalability, Storage, and Backup & Recovery. These link out to various articles, including the new Co

Hello Moon Tutorial - Small Basic Featured Program

Image
Today we're going to do a very simple Small Basic tutorial. We're going to say hello to the moon! Boot up Small Basic, and let's get started! You can find Small Basic over at  http://www.SmallBasic.com   Also check out the Small Basic blog: http://aka.ms/SmallBasicBlog And here is my Small Basic book (with Majed):  http://aka.ms/SmallBasicBook   Type this in: =============== GraphicsWindow.TItle = "Hello Moon: The Program" GraphicsWindow.Width = 320 GraphicsWindow.Height = 240 GraphicsWIndow.DrawImage("C:\Small Basic\backgroundbmp", 0, 0) GraphicsWindow.BrushColor = "White" GraphicsWindow.FontSize = 50 GraphicsWindow.DrawText(10, 120, "Hello Moon!") =============== Great. Except it will throw an error, because you don't have the image! Here's what you do... 1. Download this image (right-click and Save it): 2. Be sure to save it where you want it! 3. Then update the