(Isaac Levin) I am humble to be a part of the 2nd Annual C# Advent Calendar. Thank you to everyone who helped put it together and contributed. My blog post is hopefully a fun one not to be taken too seriously.
Community
Importing Data from MongoDB to MySQL using Python
(Paulo Jesus) MySQL Shell 8.0.13 (GA) introduced a new feature to allow you to easily import JSON documents to MySQL.
Object Types with Getters and Setters
(Michael McLaughlin) This article is for you when you know the basics about how you work Oracle’s object types. It teaches you how to write effective getters, setters, comparators, and static methods.
Build a Node.js console app with the JavaScript SDK to manage Azure Cosmos DB SQL API data
This tutorial shows you how to build a Node.js console application to create Azure Cosmos DB resources and query them.
ngOnChanges() Life Cycle Hook Only Gets Invoked If Calling Context Actually Provides Input Bindings In Angular 7.1.1
(Ben Nadel) The other day, when experimenting with the “Definite Assignment Assertion” in TypeScript, I stumbled upon the fact that my mental model for the ngOnChanges() life cycle hook in Angular was inaccurate.
MySQL X DevAPI Connection Pool with Connector/Python
(Jesper Krogh) If you have an application that need to use multiple connections to the MySQL database for short periods of times, it can be a good to use a connection pool to avoid creating a new connection and going through the whole authentication process every time a connection is needed.
How to Reference Azure Storage Files from Cloud Shell
(Melissa Coates) Recently I used Azure Cloud Shell for the first time. This is a quick post to show how I referenced the file share in Azure Storage to communicate with Cloud Shell.
Complex Filter Conditions In Power BI Reports Using Visual-Level Filters And Measures
(Chris Webb) While Power BI has a lot of great functionality for filtering the data that appears in a visual using visual-level filters there are going to be situations where you need more control over how filtering works, and in this blog post I’m going to show you how you can use visual-level filt
Database Fundamentals #20: Using the JOIN Operator, Inner Join
(Grant Fritchey) It is entirely possible to try to JOIN two tables on almost any field, as long as the two data types can, in some way, be made to reconcile to each other, you can try to join the tables.
Java Integer Cache – Why Integer.valueOf(127) == Integer.valueOf(127) Is True
(Naresh Joshi) In an interview, one of my friends was asked that if we have two Integer objects, Integer a = 127; Integer b = 127; Why a == b evaluate to true when both are holding two separate objects?
