- 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 (23)
- IT guy and CIO (1)
- Management (20)
- Politics (3)
- Science (18)
- Security (12)
- SQL Server (5)
- Web design (8)
Archives
- 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)
Monthly Archives: March 2014
Review for Osanda Malith’s Browser Freak utility
Automation is a practice and a skill that every IT professional should exercise. In penetration testing and security checks, automation is more than that; it is essential. Boring, tiring, repeated tasks, and tasks with many steps, if not left to … Continue reading
Posted in Security
Comments Off on Review for Osanda Malith’s Browser Freak utility
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
From SkyDrive to OneDrive
Now that SkyDrive is named OneDrive, you may have to update the HTML pages where you publish the links of everything you share from OneDrive. There is no need to change anything on your OneDrive and on your shares. The … Continue reading
Posted in Administration
Comments Off on From SkyDrive to OneDrive
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
Solving Problem 1 of Project Euler
As I understand it, Oppia.org, a project made by Google engineers, is about adaptive learning. Since there is a lot of merit in such an approach and since I am already familiar with such an approach from Microsoft’s exams, I … Continue reading
Posted in Development
Comments Off on Solving Problem 1 of Project Euler