Category: Coding
-
Evolution Of The JavaScript Loop
Sometimes, the way the syntax is changing can lead to huge improvements in coding and readability. One great example is JavaScript’s forEach.
-
Game Of Life JavaScript Implementation
An article about implementing and redesigning the Conway’s Game Of Life in JavaScript.
-
Multiple Values For The Same GET or POST Parameter in ASP.NET MVC
The main advantage of passing multiple values as the same parameter via GET or POST is that it will produce a neatly cast list as the input of the action method.
-
Formatting date, time, currency in various cultures
In today’s interconnected world, it’s important that online applications support different cultures. A bit on this theme, .NET support for this, and some analysis on various interesting formats.
-
LINQ to XML
Seems that LINQ to XML does not get near as much attention as LINQ to SQL, but that’s a shame since there is a lot going on here too. Here are some examples performed on RSS.
-
AutoHotkey Scripts
This little utility makes life a bit easier shortening the way to perform common tasks. Among other features, it provides a way to associate keyboard shortcuts with a scripted actions. You can have a look at explained scripts and download the scripts I use every day.
-
Regular expressions are a tool, not a problem
Regular expressions are a good tool that should be used when appropriate, as with other programming tools and patterns. But when used to solve a wrong kind of problem, you can easily run into even bigger problems.