Escape analysis is a method for determining the dynamic scope of pointers.
Read MoreSoftware development
2019-02-10
2019-01-01
In Golang the general recommendation is to use pointer receivers if there is a need to modify the data structure.
But then the question is can we still use value receivers even if we need to modify data?
Read More
2017-06-29
Applicative Functors in Haskell extend on the idea of Functors.
Functors are things that can be mapped over. Another way of looking at functors
is as values with an added context. For instance, Maybe values have the extra context that they may have failed. Whit lists, the context is that the value can actually be several values or none.
Read More
2017-06-28
A Functor in Haskell is a type class.
What is a type class?
A type class represents a set of variables that have certain properties.
For example in Haskell the Eq type class represents things that can be equated.
The Show type class serves as an interface for things that can be displayed as strings.
Read More
2009-07-16
I came to America with only 2 bags, a green card in my pocket and a head full of dreams. Building a game as a personal project helped me in my search for a job. I was looking for a job as a game developer so I built a car racing game.
Read More