WPF Initial Focus
A violation of rule of least astonishment: in Windows Forms the focus is automatically set to the first element in tab order. In WPF (and in ASP.NET) it’s not the […]
A violation of rule of least astonishment: in Windows Forms the focus is automatically set to the first element in tab order. In WPF (and in ASP.NET) it’s not the […]
Finally, after reading books about WPF I started to actually work with it. As usual, I start with complaints 🙂 It turns out that renaming a WPF form, especially main […]
It used to be LAN, WAN, SAN, COM, DOM, ROM, TCP, UDP, FTP, CPM, IBM, JVM, then URL, XML, UML, … But it looks like the era of the TLAs […]
After trying to build a slightly above-toy-size project in F#, I came to the conclusion that with current tools it would be quite difficult to maintain a project of even […]
Typecast matters are complicated in F#. Unlike many other languages, F# does not perform implicit upcasts by default. E.g. if class Derived derives from Base, and we have let func( […]
As I mentioned in the previous post, F# types (as opposed to classes) cannot be null. That is, you cannot explicitly make them null, but you can still end up […]
F# has two kinds of data types – “classes” and “types”. Types are bags of bits, similar to C structs, only immutable (that’s C, without sharp). Classes are classes in […]
After exploring “lazy” keyword in F#, I was up for some disappointments: <DISCLAIMER> Fast forward to the year 2012: people from Microsoft’s “try F#” team pointed out that I got […]
Here is my view on F# after about two days of playing with it. Disclaimer: I am just starting with F#. Some annoyances I talk about may be really insignificant […]
I was on a very intense project which was abruptly canceled. So, now I can a) write to the blog again and b) do some interesting stuff. This post is […]