It’s time to stop blaming Internet Explorer | NCZOnline
A couple of days ago, Smashing Magazine published an article entitled, Old Browsers Are Holding Back The Web. The author of this article that old browsers are
View Original Article on nczonline.net
Shared by 1 person
More from this website
Blink and the end of vendor prefixes | NCZOnline (nczonline.net)
When Google announced that it was forking WebKit into Blink, there was a lot of discussion around what this would mean for web developers, and if the WebKit
What kind of a software engineer do you want to be known as? | NCZOnline (nczonline.net)
Around this time every year, companies start doing their annual reviews. Coincidentally, software engineers start wondering what their peers and managers will
What technical recruiters can learn from online dating | NCZOnline (nczonline.net)
I'm on LinkedIn just like most people in the tech industry. If you're like me, you probably get random messages through LinkedIn from technical recruiters
You can’t create a button | NCZOnline (nczonline.net)
One of the most important aspects of accessibility is managing focus and user interaction. By default, all links and form controls can get focus. That allows
JavaScript APIs you’ve never heard of (and some you have) | NCZOnline (nczonline.net)
This week I was scheduled to give a brand new talk at YUIConf entitled, JavaScript APIs you've never heard of (and some you have). Unfortunately, a scheduling
The “thank you” that changed my life | NCZOnline (nczonline.net)
There's so much rampant negativity in the world and on the Internet that it can be hard to deal with some days. It seems like more and more, I'm seeing people
ECMAScript 6 collections, Part 2: Maps | NCZOnline (nczonline.net)
Maps, like sets, are also a familiar topic for those coming from other languages. The basic idea is to map a value to a unique key in such a way that you can
Computer science and JavaScript: Merge sort | NCZOnline (nczonline.net)
Merge sort is arguably the first useful sorting algorithm you learn in computer science. Merge sort has a complexity of O(n log n), making it one of the more
Thoughts on TypeScript | NCZOnline (nczonline.net)
Earlier this week, Microsoft released TypeScript, a new compile-to-JavaScript language for application scale JavaScript. My initial reaction was
Computer science in JavaScript: Insertion sort | NCZOnline (nczonline.net)
Insertion sort is typically the third sorting algorithm taught in computer science programs, after bubble sort and selection sort. Insertion sort has a
Computer science in JavaScript: Selection sort | NCZOnline (nczonline.net)
Not too long ago, I wrote about the bubble sort algorithm, which is typically the starting point for sorting algorithm instruction. Bubble sort is a pretty