Explore >> Select a destination


You are here

blog.bittersweetryan.com
| | codewithstyle.info
5.3 parsecs away

Travel
| | One thing that I have to do rather often when writing JavaScript code is to combine properties from two objects into a single object. UPDATE: This ar
| | wesbos.com
3.2 parsecs away

Travel
| |
| | ilya-sher.org
7.0 parsecs away

Travel
| | Background Let's look at the following piece of code (in an abstract programming language) : if chairs { for chair in chairs { clean(chair) } } The Problem It's more code that we would like to have. What's holding us back? chairs can be null, which is not an array (aka list), therefore requiring the...
| | www.softdevtube.com
23.8 parsecs away

Travel
| Passing data through a pipeline of transformations is an alternative approach to classic Object-Oriented Programming (OOP). The LINQ methods in .NET are designed around this, but the pipeline approach can be used for so much more than manipulating collections. This presentation looks at pipeline-oriented programming and how it relates to functional programming, the open-closed principle,