Out of the corner of my eye

Exploring HumanStateSpace

Out of the corner of my eye header image 4

Entries Tagged as 'C++ dev'

Prevent user IE settings from overriding your WebObject’s font size

January 3rd, 2008 · 1 Comment

Problem
Company A’s app uses the WebBrowser control to view web pages under its own control, and wants to tightly couple the web page presentation to its app’s look and feel.
User B sets his Internet Explorer accessibility options to “Ignore font sizes specified on web pages“.
As a result, you may get issues where text overflows fixed […]

[Read more →]

Tags: C++ dev

Response to “signs you’re a crappy programmer”

December 2nd, 2007 · No Comments

Damien Katz blogged some “signs you’re a crappy programmer (and don’t know it)”, and the article ended up on the front page of Digg. Many of the comments criticised some of what he said, but I didn’t anywhere find what I felt should be the strongest criticism of “You think no function/method should have multiple […]

[Read more →]

Tags: C++ dev

Lazy programmers - why is ‘protected’ the default?

December 1st, 2007 · No Comments

Lots of programmers seem to use protected as the default access level, and I think it’s lazy.
I can kind of see the reasoning: you don’t want to expose your variables and private methods because the user of your class probably won’t know what they should be changing and what should be left alone, but you […]

[Read more →]

Tags: C++ dev