Monthly Archives: December 2014

Launch SQL, Visual Studio Using Remote Desktop App from Windows Phone 8.1

This is pretty useful for anyone that need to connect to their azure virtual machine on the go.

Posted in Uncategorized | Leave a comment

CS1020 Island Lab 1 Ex 3

Link to the question – Island Lab 1 Ex 3

Posted in NUS, SoC | Tagged , | Leave a comment

CS1020 Transformation Lab 1 Ex 1

Link to the question – Transformation Lab 1 Ex 1

Posted in NUS, SoC | Tagged , | Leave a comment

CS1020 Palindrome Lab 0 Ex 3

Link to the question – Palindrome Lab 0 Ex 3

Posted in NUS, SoC | Tagged , , | Leave a comment

CS1020 Matrix Lab 0 Ex 2

This is a continuation of the series of code related to CS1020. Link to the question – Matrix Lab 0 Ex 2

Posted in NUS, SoC | Tagged , | Leave a comment

CS1020 HelloWorld Lab 0 Ex 1

As I had recently completed my CS1020 Data Structures and Algorithms I module at School of Computing in National University of Singapore, I decided to share some of my code used in the module. As there are quite a few set … Continue reading

Posted in NUS, SoC | Tagged , | Leave a comment

Async/await not reacting as expected in Console App

If you had to use an await call in a .net Console app, you would definitely notice that the await is simply skipped over. This is because await only ensure that the rest of the code in the current async … Continue reading

Posted in C#, Console | Tagged , | Leave a comment

C# 6 Features – “Await in catch and finally blocks.”

The C# team had recently announced a few new features for C# 6 that will ships with VS 2015. One of the feature that caught my attention is “Await in catch and finally blocks.” Recall that I actually had a … Continue reading

Posted in C# | Tagged , | 1 Comment