This shortcut disappeared from my windows search. The executable is here: C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\IDE\devenv.exe
Category: Uncategorized
BlackJack
Old school BlackJack game for Windows. Need to move this to the web/mobile next! https://github.com/mcullinan44/BlackJackNet4.5 0 forks. 0 stars. 0 open issues. Recent commits: cleanup, Matt fix color, matt@mattcullinan.com test, matt@mattcullinan.com sfsfffd, matt@mattcullinan.com refactor, matt@mattcullinan.com
Package libicu60 is not available => solved
I keep getting this when trying to get dotnetcore running on linux: Package libicu60 is not available, but is referred to by another package. This may mean that the package is missing, has been obsoleted, or is only available from another source E: Package ‘libicu60’ has no installation candidate To solve this, I’ve done the… Continue reading Package libicu60 is not available => solved
Nullable booleans reconsidered
If you’re about to use a Nullable<bool>, I would consider using an Enum or other data structure instead. It may help you avoid mistakes when the meaning of NULL is not known. Recently, I mishandled a Nullable<bool>. I won’t go into the details of the mistake, but lets just say it was bad enough to require… Continue reading Nullable booleans reconsidered