(Peter Sun) Create a C# WPF app to read Twitter tweets and retweets via REST API with grouping related users / friends by categories. As a bonus, tweets can be saved in Azure / Cloud, and viewed in an Azure website.
Other News
Exploring OLTP in SQL Server 2019 (Part 2)
Enabling In-Memory OLTP in new and existing databases To create a new database and enable In-Memory OLTP in it, you can use the following script: CREATE DATABASE DemoOLTPDB ON PRIMARY ( NAME = DemoOLTPDB_data, FILENAME = ‘D:dataDemoOLTPDB.mdf’, size=500MB ), FILEGROUP DemoOLTPDB_IMOLTP_FG CONTAINS MEMORY_OPTIMIZED_DATA ( NAME = DemoOLTPDB_FG_Container, FILENAME = ‘D:dataDemoOLTPDB_FG_Container’ ) LOG ON ( NAME = ExamBook762Ch3_IMOLTP_log, FILENAME = ‘D:dataDemoOLTPDB_log.ldf’,...
You Are A Coder
(Grant Fritchey) So, you say you’re a DBA. I say you’re not. You say you’re a system administrator. I say you’re wrong. We are all coders now. Every single one of us.
Clearing Some Things Up Regarding the CICS-Db2 for z/OS Interface
(Robert Catterall) Not long ago, a very experienced Db2 for z/OS person contacted me with some questions about the CICS-Db2 interface. He mentioned that he did this because he was having trouble finding the information he was seeking in the product documentation.
Mastering Java exceptions, Part 2: Advanced features and library types
(Jeff Friesen) JDK 1.0 introduced a framework of language features and library types for dealing with exceptions, which are divergences from expected program behavior.
Computer things they didn’t teach you in school #2 – Code Pages, Character Encoding, Unicode, UTF-8 and the BOM
(Scott Hanselman) OK, fine maybe they DID teach you this in class. But, you’d be surprised how many people think they know something but don’t know the background or the etymology of a term.
Data annotations object graph validation is coming to Blazor
(Gunnar Peipman) Future versions of Blazor will support cascading data annotations support meaning that validation of child components is also supported. First experimental bits were released counted hours ago with .NET Core 3.1 Preview 2.
Confusion Over this.mappings And expandPath() Not Working In Lucee CFML 5.3.3.62
(Ben Nadel) So, I’ve spent the last 3-hours this morning trying to understanding why my this.mappings configuration in my Application.cfc ColdFusion component “wasn’t working” in Lucee CFML 5.3.3.62.
MySQL InnoDB Cluster Network Reliability Parameters
(Ivan Ma) MySQL InnoDB Cluster is easy to configure and deploy. This article is written to provide 3 group replication parameter settings which may contribute to the stability and reliability of the Network in MySQL InnoDB Cluster.
A refreshing look at PIVOT
(Connor McDonald) We had an AskTOM question come in recently where our customer was very excited about the PIVOT operator in SQL which lets you transpose rows to columns.
