My month long Windows Phone 8 ‘experiment’
Why Windows Phone 8?
My previous phone was an HTC Evo 4G and was using Sprint as my carrier. I was becoming incredibly frustrated with Sprint and their network, feeling like i was paying 100% for a 66% of the service. I couldn't make calls and if I was lucky enough for the call to go through, it was only a matter of time before it dropped. My contract was up on 12/8/2012 and I was looking at new phones.
Learning CIL Series – Part 3 – Branching
In Part 1 of the series we dove into the very basics of getting an application up and running in CIL. Part 2 covered methods in CIL and how to call and create our own methods. This part of the series is going to cover branching our CIL code. Branching is a very important concept in CIL because it is what allows us to have loops and control over our program flow
Reading Excel Column Names In C# using Excel.Interop
The other day I came across an interesting question on StackOverflow asking how to get column names using Excel Interop in .NET and I set out to find the answer. It is a unique question because many people don't care what column (as in letter, so "A","B", "ZZ", etc) their data is in and may dedicate the first row to friendly column headers (as you can't change the defaults in Excel). This is what I came up with:
One Liner Removing Non-Numerics From String – No Regex Required
I was inspired by Replacing strings using regex in .NET question on StackOverflow today and got to thinking if I would be able to do this without Regex. Then I was even more inspired by the comment by djdanlib:
Could I do this in one line?
Learning CIL Series – Part 2
In part 1 of the series we went over the "Hello World" in CIL. This post will cover creating and calling methods as well as introducing a few more instructions. We will be getting input from the user, an integer, and then adding 10 to it, in a method we create, and then display it on the screen. Let's get started!
Learning CIL Series – Part 1
This begins part 1 of a many part series on the Common Intermediate Language (formely known as MSIL) which I will refer to as CIL from now on. CIL is the assembly language of the .NET platform and is what all .NET languages ultimately get boiled down to. My reason for doing these tutorials is simple, I want to learn more about CIL and the .NET internals and what better way to do that than blogging and teaching others. Why do I want to learn about .NET internals as well as CIL? I’m creating a programming language that I want to target the .NET framework and I don’t want to be constrained by C#.
In Response To: Iterating Over A Tuple
Today I saw Tombatron's blog post on Iterating Over A Tuple about ways to iterate over a Tuple. While I must say it is a very bad idea to do this (if you want to store your data in something iterable, then use something other than a Tuple), I found a very interesting challenge in this.
Combinator Extension Method Initial Commit
The initial commit of my combinator extension methods is up at github, so please check it out at my github page
The B-Combinator In C#
My last post was implementing the K combinator in C# as an extension method. Today, I am moving on to the B-Combinator. The B combinator has the form:
B f g x = f(g(x))