Oskar Gewalli's blog articles

0
comment
on 4/8/2019 12:14 PM
The bad There is a certain level of complexity associated with Kubernetes. Depending on how you get started, it can be a bit of a chore to get a cluster up and running. There are costs associated with having a stable cluster up and running. The good What does Kubernetes give you? It offers an environment for hosting docker services that is more portable between vendors. It allows you to run an environment locally mimicking your production environment. You are able to gradually roll out new versions of s[...]
>> Read the full article
.
0
comment
on 1/6/2019 1:32 AM
When you start out on F# your first thought might be: let square x = x * x let sumOfSquares n = [1..n] |> List.map square |> List.sum hey, that sort of looks like: public static class Utils { public static int SumOfSquares(int n) { return Enumerable.Range(1, n) .Select(i => i * i) .Sum(); } } Examples from F# for fun and profit: Sum of squares. At a first glance, F# looks sort like slightly different style of C#, where instead of using extension methods you[...]
>> Read the full article
.
0
comment
on 1/6/2019 1:32 AM
When you start out on f# your first thought might be: let square x = x * x let sumOfSquares n = [1..n] |> List.map square |> List.sum hey, that sort of looks like: public static class Utils { public static int SumOfSquares(int n) { return Enumerable.Range(1, n) .Select(i => i * i) .Sum(); } } Examples from F# for fun and profit: Sum of squares. At a first glance, f# looks sort like slightly different style of c#, where instead of using extension methods you us[...]
>> Read the full article
.
0
comment
on 10/26/2018 4:01 AM
Monoculture in agriculture has some definite downsides (lack of resilience, soil depletion, over reliance on fertilizer) Monoculture in buildings can cause people to feel lost. Once you move in, you want to change your house to fit your family and your interests. A suburb that started out with lots of very similar houses can end up with divergent colors, additions suited for different people, gardens with personal style. This should not be seen as a negative thing, it shows the history of the area a[...]
>> Read the full article
.
0
comment
on 10/26/2018 4:01 AM
Monoculture in agriculture has some definite downsides (lack of resilience, soil depletion, over reliance on fertilizer) Monoculture in buildings can cause people to feel lost. Once you move in, you want to change your house to fit your family and your interests. A suburb that started out with lots of very similar houses can end up with divergent colors, additions suited for different people, gardens with personal style. This should not be seen as a negative thing, it shows the history of the area a[...]
>> Read the full article
.
IntelliFactory Offices Copyright (c) 2011-2012 IntelliFactory. All rights reserved.
Home | Products | Consulting | Trainings | Blogs | Jobs | Contact Us | Terms of Use | Privacy Policy | Cookie Policy
Built with WebSharper