Does Agile Transform a Business?
jan 28,
2022
Let us talk about your day so far, perhaps it’s gone something like this: After your commute to work, you’ve arrived at the office, opened your laptop, and then sat back gazing out the window, dreaming of the upcoming weekend. Let’s analyse that seemingly mundane and normal situation… In the early 19th century, within the […]
How deMorgan’s Theorems Can Help Programmers
okt 12,
2021
Logic is an important aspect of programming and two important theorems in logic can be a big help to programmers. Basics of computer logic In software, logic is generally found in an if statement. This implements the idea that if some condition is true, then do something. For example, If the user clicks a link […]
Curing Python Envy with ML.Net
,
2021
Curing Python Envy with ML.Net In early May 2019, Microsoft released ML.Net 1.0, marking the graduation of ML.Net from research project to Release Candidate. In contrast with many machine learning platforms, which usually provide a Python API, ML.Net, as its name suggests, provides a direct interface for code targeting .Net core, whether written in C#, […]
C# Nullable References
apr 7,
2021
The Biggest New Thing in C# for Years But hang on – haven’t reference types always been nullable? That’s absolutely right. It’s fundamental to the way a reference type works. The variable doesn’t contain the data itself, but a reference to a separate memory location where the data is stored. Thus if there’s no data, […]
Using a Desktop Browser to Connect to Jupyter on Jetson Nano Edge Device
feb 16,
2021
Tunneling to Jupyter Jupyter is a terrific development environment, but I can’t have some bloated hogbeast browser taking up a lot of RAM when I fine-tuning machine-learning code on an edge device like the NVidia Jetson Nano. The solution is actually pretty easy. Move the browser side of the Jupyter equation to a desktop. There […]