- 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)
Category Archives: Development
About computer languages, IDEs, and human rights
I do not find tasteful or nice to have to use needy IDEs like Visual Studio. I like to use Notepad for programming. Visual Studio is very demanding when it comes to resources like CPU, Memory, Hard Disk, Operating System … Continue reading
Posted in Development
Comments Off on About computer languages, IDEs, and human rights
Google doodle programming for kids solutions
Today (2017-12-04) Google published a doodle that has to do with programming for kids. Although this is the way kids should learn how to program, the doodle is incredibly difficult and should address only seasoned programmers. The way kids should … Continue reading
Posted in Development
Comments Off on Google doodle programming for kids solutions
Learn how to count in any numbering system
In this blog post, I will teach you how to count in any numbering system. I have also created a program that counts in any numbering system and I will show you this program in the second part of this … Continue reading
Posted in Development
Comments Off on Learn how to count in any numbering system
Individual bit manipulation techniques in assembly
The unit of information is the bit. It takes only one binary digit, either the value 0 or the value 1. A byte is comprised of 8 bits. People created the byte as an ordered set of 8 bits. And … Continue reading
Posted in Development
Comments Off on Individual bit manipulation techniques in assembly
The most important facts about code reuse
Code reuse can happen in two levels, one simple and one advanced. At the simple level, you create a function and you use that function instead of copying and pasting. At the advanced level, in OOP you use inheritance, whereas … Continue reading
Posted in Development
Comments Off on The most important facts about code reuse
Arrow talk
On the Stack Overflow site, I found a great question titled Monads vs. Arrows. Essentially the OP (original poster) asks: “… When should I use monads and when should I use arrows?”. I answered the question and since I believe … Continue reading
Posted in Development
Comments Off on Arrow talk
Cheat sheet for Monads in Haskell
Let M be a Type Constructor, Functor, and Monad. As a Type Constructor, M can map a type a to the type M a. As a Functor, M can also map a function f to the function M f, using … Continue reading
Posted in Development
Comments Off on Cheat sheet for Monads in Haskell
The most significant FAQs about Haskell
Question: Function application and composition versus bind (>>=) Answer: For the following discussion, a, b, and c are built in Haskell data types. We use normal function composition when we compose a function a -> b with a function b … Continue reading
Posted in Development
Comments Off on The most significant FAQs about Haskell
The examples in the Parsec users guide
Parsec is a free, industrial strength, monadic parser combinator library for Haskell, by Daan Leijen. You can find the users guide in the Parsec documentation. In this blog post, I am going to list the examples that Daan Leijen includes … Continue reading
Posted in Development
Comments Off on The examples in the Parsec users guide
A mature look into Monads
In previous posts concerning Haskell, I have talked a lot about Monads. The monadic concept is one of the most important topics in Haskell. It is one of its cornerstones. It is what makes Haskell excel. It is what makes … Continue reading
Posted in Development
Comments Off on A mature look into Monads