Step 1. Install Homebrew in terminal ruby -e “$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)” Step 2. Install node and npm using Homebrew brew … More
Category: Information Technology
SQL supports pagination
We can query the items of a selected page. DECLARE @pageIndex INT=1 DECLARE @pageSize INT=10 SELECT * FROM myTable OFFSET … More
Embrace Azure
It’s ashamed to start learning Azure so late after having been an experienced .net developer for many years (since the … More
The McCafe Meetup v2.0 is available in Apple’s App Store
Protected: Your post title
There is no excerpt because this is a protected post.
show progress bar while retrieving data in a separate thread
private async void ShowAssessmentDetails(Guid assessmentEventID, int sectionNumber) { //… … More
Swift notes
1. To create an empty array or dictionary, use the initializer syntax. let emptyArray = [String]() let emptyDictionary = [String: … More
What is .Net Native?
.NET Native is an ahead-of-time (AOT) compilation process—it turns your managed .NET code into native machine code at compile time. … More
Choose an appropriate data access strategy
WinRT APIs provide a number of options for developers to work with data in their Windows Store apps. There options … More
Implementing and extending styles and templates
If you plan to use the style in multiple pages of your app, you should create it in App.xaml or … More