We live in a world where everyone wants to have access to your online data, and most of the time we give that data willingly by either allowing some app in Facebook to access our contacts and personal information, or by signing up to some website using Twitter, either way we give up our personal […]
Update Multiple Columns in SQL Server
Here we want to update EmployeeNumber in Table1 from EmployeeNumber in Table2 where the id is 108912.
Date Range Validation in JavaScript ES5 and One-Liner ES6
Snippet to validate a date range where the start date cannot be greater than the end date in JavaScript, the ES5 way and the better one-liner ES6 way.
The Dependency Service or Group Failed To Start – Wireless Error
After cleaning a Windows computer from malware, I ran into this strange issue when attempting to connect to the internet. The computer was showing a big red X over the wireless icon and upon opening the Network and Sharing Center I would see the error message The Dependency Service or Group Failed To Start. I […]
Video Tutorial: How to Connect Kodi to Your Synology NAS DSM (DiskStation Manager) Home Server
Having a NAS to store files is great, but having a NAS as a media server is awesome. If one of your purposes to have bought a Synology NAS was to have it as a media server, then having Kodi in your PC/Mac/Fire TV is a must. By now you probably know that your Synology […]
Filter Select List Options (Typeahead) in JavaScript ES6
JavaScript ES6 snippet to filter the options in a select list.
Calling Instructure Canvas LMS API in C# ASP.NET MVC Using RestSharp
In this example I am calling the Canvas LMS API to get a list of enrolled students, including their grades, for a specific course.
Online Markdown Editor – GitHub Flavored
So I spent this past weekend creating an Online Markdown Editor. I used React.js…
Five Code Challenges in ReactJS
I have been learning React.js for some time now and just a few days back I came across this blog post with 5 code challenges, from the dead simple Hello World to reading users from an API using Axios. Below are the challenges and my solutions.
HackerRank Solution in ES6 Javascript to Challenge: Arrays – Left Rotation
My solution to HackerRank challenge Left Rotation found under Data Structures > Arrays > Left Rotation.