- I understand that, unfortunately, anything I write, can and will be used against me.
Search this blog
This blog\’s RSS feed
Categories
- Administration (27)
- Art (4)
- Cloud (11)
- Development (45)
- Education (25)
- IT guy and CIO (1)
- Management (20)
- Politics (3)
- Science (18)
- Security (12)
- SQL Server (5)
- Web design (8)
Archives
- March 2024 (1)
- February 2024 (1)
- December 2021 (1)
- March 2021 (2)
- February 2021 (1)
- January 2019 (1)
- December 2018 (4)
- November 2018 (6)
- October 2018 (3)
- August 2018 (1)
- June 2018 (1)
- April 2018 (1)
- February 2018 (1)
- January 2018 (1)
- December 2017 (1)
- November 2017 (1)
- October 2017 (2)
- September 2017 (3)
- August 2017 (1)
- July 2017 (1)
- May 2017 (3)
- April 2017 (2)
- September 2016 (1)
- June 2016 (1)
- October 2015 (1)
- September 2015 (5)
- August 2015 (3)
- July 2015 (1)
- March 2015 (1)
- September 2014 (1)
- August 2014 (7)
- July 2014 (2)
- June 2014 (2)
- May 2014 (4)
- April 2014 (1)
- March 2014 (8)
- February 2014 (6)
- January 2014 (3)
- December 2013 (3)
- November 2013 (2)
- October 2013 (1)
- September 2013 (2)
- August 2013 (1)
- July 2013 (2)
- June 2013 (8)
- February 2013 (3)
- November 2012 (2)
- October 2012 (2)
- September 2012 (5)
- August 2012 (4)
- July 2012 (3)
- June 2012 (9)
- May 2012 (1)
- April 2012 (1)
- February 2012 (1)
- January 2012 (1)
- September 2011 (2)
- August 2011 (1)
- June 2011 (3)
- May 2011 (1)
- April 2011 (1)
- March 2011 (1)
- February 2011 (2)
- October 2010 (1)
- January 2010 (1)
- November 2009 (1)
- October 2009 (1)
- May 2009 (1)
- April 2009 (4)
- March 2009 (3)
- December 2008 (1)
- October 2007 (1)
- September 2006 (1)
- August 2006 (4)
- December 2005 (1)
- November 2005 (1)
- October 2005 (1)
- September 2005 (1)
- August 2005 (1)
- July 2005 (1)
- November 2004 (1)
- July 2004 (1)
- February 2004 (1)
- July 2003 (1)
- March 2003 (1)
- May 2002 (1)
Category Archives: Development
The IO Monad
It is time to study the most important and most intuitive Monad: the IO Monad. IO stands for Input/Output. IO is considered a side effect and it is treated as such. This is why Haskell has a Monad especially for … Continue reading
Posted in Development
Comments Off on The IO Monad
Creating state with IORef
In my previous blog post, I wrote about the State Monad and how it cannot be used to create a stateful counter. Fortunately, there are many ways and additions in Haskell (like special libraries, etc.) that can be used to … Continue reading
Posted in Development
Comments Off on Creating state with IORef
The disappointing State Monad
So far in my blog posts, we have encountered Monads and have studied them, in order to understand how they behave and how they work. But we have not seen real examples of real Monads in the real professional programming … Continue reading
Posted in Development
Comments Off on The disappointing State Monad
NumberMania solver
Main points NumberMania solver is an application I just finished creating, which helps you solve the NumberMania puzzles that the puzzles site Brain Teasers provides. The site also makes these puzzles available at its own community in Google plus named … Continue reading
Posted in Development
Comments Off on NumberMania solver
Evaluation of Skills
Main points “Evaluation of Skills” is test taking software that I developed for the evaluation of prospective and current employees and as an educational toy. You can download an evaluation version of Evaluation of Skills from the link. If you … Continue reading
Posted in Development
Comments Off on Evaluation of Skills
MasterMind solver
In July 2003, I wrote a blog post titled “An Excel VBA macro that solves MasterMind”. In that blog post, I presented a program that solved MasterMind. I wrote the program in VBA and it runs inside Excel. It is … Continue reading
Posted in Development
Comments Off on MasterMind solver
Trees as Monads
We first encountered trees in Haskell in my blog post titled “Trees in Haskell”. In that blog post we studied binary trees. Then we continued our study of binary trees in my blog post titled “Examples of Functors in Haskell”. … Continue reading
Posted in Development
Comments Off on Trees as Monads
The difference between function application and bind in Haskell
If you have read my blog posts so far, you will have understood the difference between normal function application in Haskell and the monadic bind (>>=). What I essentially talk about, is the difference between f x and x >>= … Continue reading
Posted in Development
Comments Off on The difference between function application and bind in Haskell
The List Monad
Like Maybe, [] is also a type constructor elevated into a Functor, Applicative, and Monad. The code that turns [] into a Functor follows: instance Functor [] where fmap = map The previous code can be written equivalently: instance … Continue reading
Posted in Development
Comments Off on The List Monad
The Maybe Monad
Maybe is predefined and built in Haskell. Maybe is a type constructor whose definition is built-in as: data Maybe a = Nothing | Just a Its meaning as a type constructor is that Maybe accommodates cases where there might be … Continue reading
Posted in Development
Comments Off on The Maybe Monad