You are here |
fsharpforfunandprofit.com | ||
| | | |
www.alkanesolutions.co.uk
|
|
| | | | This blog provides a simple example of using PowerShell to read and write JSON. | |
| | | |
www.erikschierboom.com
|
|
| | | | Note: this post is part of the F# Advent Calendar 2016. To hone my programming skills, I've been using exercism.io a lot. With Exercism, you can work on problems in over 30 different languages. In this blog post, we'll be solving exercism's wordy problem, which focuses on text-parsing. We'll be using F# as our language of choice and use various approaches to solve the problem. In the process, we'll do lots of refactoring. | |
| | | |
thepythoncorner.com
|
|
| | | | In 2016 I wrote a post about serialization in Python by using the pickle Python module. In this article, we will try to serialize Python objects by using another module: json. According to Wikipedia "JSON is an open-standard file format or data interchange format that uses human-readable text to transmit data objects consisting of attribute-value pairs and array data types (or any other serializable value)". But why you should use to use JSON instead of the official pickle module? Well, it depends on what you have to do... JSON is a safer protocol, it's human-readable and it's a standard adopted... | |
| | | |
www.softdevtube.com
|
|
| | 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, |