DDD Perth 2019 looks get bigger than 2018. 835 developers joined and more than 200 were in waiting list. Food got better than last year. Multiple coffee post was another small improvement as there was a massive queue last year on a single coffee post. What I couldn’t understand is that there were 6 tracks… Continue reading DDD Perth 2019
Category: web development
JavaScript best practice summary – Jonathan Mills from Pluralsight
Syntax – consistency is the king. Use semicolons. Use Linting. e.g. ESLint or JSHint Curly braces should start in the same line of command, which is different from C#, etc. Equality. Use === whenever possible. Write variable, function, caller in order. Behaviors – use strict mode. Use var if it’s not for a global variable… Continue reading JavaScript best practice summary – Jonathan Mills from Pluralsight
What should I learn in 2019
There is still a lot to learn more in C# world, e.g. DDD, functional style, clean code, etc. But, it’s about time to learn something other than C#. The list below is my personal priority on what to learn in 2019. .Net Core SSW in Sydney was using DotNetCore only (No .Net framework) from 4 years… Continue reading What should I learn in 2019
Tools and Libraries for an ASP.Net developer in 2018
Tools Resharper One of the most popular productivity tool for Visual Studio users. As Visual Studio keep adding the same functions introduced by Resharper, it’s getting pretty OK just use Visual Studio without Resharper. Still, I love using Resharper as it helps me focus on problem-solving. In particular, I like its continuous testing feature. Bad… Continue reading Tools and Libraries for an ASP.Net developer in 2018
Bundling Angular for production in Visual Studio 2015
There are many ways of bundling Angular SPA. One of the ways I followed is Code Project by Mark J. Caplin This article recommends gulp task script and SystemJs-builder. One thing I couldn’t make it work even I followed this article was bundling angular app for a production environment. This is because I started my Angular app following the… Continue reading Bundling Angular for production in Visual Studio 2015