Monthly Archives: October 2020

CTO October 2020 articles and resources

These are the good reads found in this month. Hearing The World Through Machine Learning https://www.forbes.com/sites/louisaxu/2020/10/15/hearing-the-world-through-machine-learning/?ss=bigdata&sh=18770ba74e9f Why are Processes Important? This for a good read for those CIO, CTO that does not believe in processes and keep thinking processes are … Continue reading

Posted in .Net, Cloud, Community, Computers and Internet, CTO, Data Platform | Tagged , | Leave a comment

View Blazor error on the gold bar

This blog article shows you how to look at the exception in Blazor app. You will see the error bar like the one below when there is an error but not sure how to view the detail of the error. … Continue reading

Posted in .Net, Cloud, Community, Computers and Internet | Tagged , | Leave a comment

SharePoint Online resources

This blog article shows you the resources for SharePoint online and some of the resources can be used for SharePoint on premise too. SharePoint documentation https://docs.microsoft.com/en-us/sharepoint/?WT.mc_id=DP-MVP-36769 Introduction to SharePoint in Microsoft 365 https://docs.microsoft.com/en-us/sharepoint/introduction/?WT.mc_id=DP-MVP-36769 Guide to the modern experience in SharePoint … Continue reading

Posted in .Net, Cloud, Community, Computers and Internet, Microsoft Office, sharepoint | Tagged , | Leave a comment

How intuitive is design pattern

How intuitive is design pattern? Let look at 2 code blocks below. The first one is Microsoft MSMQ to send a message to the queue server. protected static void Enqueue() {     MessageQueue mq;     mq = new MessageQueue(@”.\Private$\myqueue”);     System.Messaging.Message mm = … Continue reading

Posted in .Net, Cloud, Community, Computers and Internet, Data Platform | Tagged , , , | Leave a comment

The columns in table tablename do not match existing primary key or UNIQUE constraint

This short article is to resolve the error “The columns in table tablename do not match existing primary key or UNIQUE contraint”. If you are not new to database especial Microsoft SQL database then this is something you are familiar … Continue reading

Posted in .Net, Cloud, Community, Computers and Internet, Data Platform | Tagged | Leave a comment

6 steps to build a holistic security strategy with Microsoft 365 free ebook

For most organizations, security continues to be a number one priority. The reality is that yesterday’s security models with layered perimeter defenses are simply no longer relevant in an always-on world with myriad devices and access points. But with many … Continue reading

Posted in .Net, Cloud, Community, Computers and Internet, CTO, Microsoft Office, Office 365 | Tagged | Leave a comment

HttpContent does not contain a definition for ReadAsAsync

The blog article shows you one of the possible ways to resolve the error “HttpContent does not contain a definition for ReadAsAsync”. When you have a code looks like the one below. HttpClient client = new HttpClient(); client.BaseAddress = new … Continue reading

Posted in .Net, Cloud, Community, Computers and Internet | Tagged | 1 Comment

Azure Service Bus getting started

This article shows you what is Azure Service Bus and how do you utilize it. You can see the prerequisites from the link at the bottom of this article. Azure Service Bus is an enterprise integration message broker from Microsoft … Continue reading

Posted in .Net, Cloud, Community, Computers and Internet | Tagged , | Leave a comment

100GB hard disk space allocation is enough for C drive

This article is advising you do not allocate 100GB for your C drive. They are still many act smart people out there keep telling the CIO 100GB hard disk space for C drive is enough for the developers in the … Continue reading

Posted in .Net, Cloud, Community, Computers and Internet, CTO | Tagged | Leave a comment

MSMQ send remote private Queue message not appear

This article shows you one of the possibilities why the remote private queue is not showing after you have sent. First you declare the message queue. As you can see from the code below the server name is OS:WIN-DL44PDBKCA4. public … Continue reading

Posted in .Net, Cloud, Community, Computers and Internet, Data Platform | Tagged , | 1 Comment