
Simple ways to notify a user without a MessageBox in WinForms
When sending notifications in a WinForms app, a MessageBox is the only way to go… or is it? Let’s get creative and see what else we might do.

When sending notifications in a WinForms app, a MessageBox is the only way to go… or is it? Let’s get creative and see what else we might do.

Someone at work asked about whether we’d be able to use VS 2022 to work on our main WinForms app. It works just fine in VS 2019, so it should work in VS 2022, right? Except it doesn’t. What we get is white screens of brokenness whenever we try to open a Form in the designer. But why?

I was creating a document in Office365 the other day - something I’ve done a hundred times - but when I tried to paste with their custom right-click menu I was greeted with a popup telling me to download a browser addon. Well, that’s weird.

The week of NASA launching Artemis I is a good time to check a few of the many APIs that make tons of raw space data accessible for anyone to use.

If you’ve ever dug into the underpinnings of a browser extension, or maybe even created one yourself, you’ve seen the manifest.json file that acts as a sort of usage guide for an extension. Not the kind of usage guide most people would want to read, but it’s vital for browsers. The manifest file tells them what name and version to display, who the author is, what permissions to request access to, which icons to display, what css and js files to load and when. It’s important, but once you get the hang of it, pretty simple to implement. You create it and move on, only ever reopening it to bump the version when you’ve got something new to publish, and maybe requesting a new permission. ...

Can you create your own HTML tags? The answer is….. sorta. Yes and no. Not completely, but a little. Typical, I know.

Learning a little about programming could benefit anyone. If you want a fun intro to coding and logical thinking, check out Scratch!

Windows sets certain locations aside for apps, and makes them easily discoverable for devs to use. Let’s see how.

GitHub is an amazing set of tools around Git, but it’s lacking in certain areas. Where it fails to impress, browser addons often pick up the slack. Here’s 13 addons (plus a few honorable mentions) that will take your GitHub experience to the next level!

If you need to consume a webhook from another service, or verify the payload being sent from your own REST API endpoint, RequestBin can help. It intercepts and displays the contents of any call made to it. Here’s how to deploy your own instance in just a few minutes.