Monthly Archives: May 2020

Huawei Matebook 13 CMOS setting

This short post let you know there is no CMOS setting screen In Huawei Matebook 13. Let say you have a Huawei i5, 512 SSD, and 16GB RAM Motebook 13 model. You might want to enable Virtualization to run Hyper-V, … Continue reading

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

Getting started with VBA in Office

This is nothing new, but I am amazed when I have seen this article posted in August 2019. This is also proven it is not about how cool you can code, it is about you can code something that can … Continue reading

Posted in .Net, Cloud, Community, Computers and Internet, Microsoft Office, Office 365 | Tagged , | 3 Comments

SSIS Foreach Loop Container using oreach ADO Enumerator

This post shows you a simple way to use SSIS Foreach Loop Container with Foreach ADO Enumerator. There are many examples out there. I just try to do a simplest one. This post expect you already know SSIS basic. I … Continue reading

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

C# Text to PDF library that works

the short post is to show you how to convert a text file to PDF using C#. There are many PDF library out there that need to pay. For this moment, I found a MigraDoc, http://www.pdfsharp.net/?AspxAutoDetectCookieSupport=1, that is free. Hope … Continue reading

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

Write Summation to For Loop C#

This post shows you how to convert a summation formula into for loop. If you see the summation formula like the one below. Writing in C# is still the like the one here https://chanmingman.wordpress.com/2020/05/24/write-simple-summation-to-for-loop-c/. public static long Sumation(long n) {     long … Continue reading

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

Write Simple Summation to For Loop C#

This post shows you how to convert a simple summation formula into for loop. If you see the summation formula like the one below. Writing in C# will be public static long Sumation(long n) {     long sum = 0;     sum … Continue reading

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

SQL Server Finding Lock and Blocking

This post shows you how to create a database lock in purpose. Only with that you can try to find the block session of the database. In this example I will use the Northwind database that everyone is familiar with. … Continue reading

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

How you get Malware into your computer by downloading movie

This post shows you one of the possible ways you get malware into your computer. For example, you are searching for Mulan 2020 online then you bumped into a site link this. Happy you click the Download. You will see … Continue reading

Posted in Cloud, Community, Computers and Internet, Operating System | Tagged , , , | Leave a comment

The World Map of C++ STL Algorithms

This short post shows you a very need map by Fluent C++. There are the STL library that you can try in C++. You can get the map here: https://www.fluentcpp.com/getthemap/

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

Android Emulator run on AMD chip

Finally Android emulator can run on AMD chip. I am using Ryzen 5. How to setup in up, follow this link https://developer.android.com/studio/run/emulator#install, when it is still valid.

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