Jonathan C Dickinson

1,760
reputation
365 views

Registered User

name Jonathan C Dickinson
member for 1 year
seen Dec 1 at 19:59
website
location Pretoria, South Africa
age 22
Jonathan Dickinson is a software engineer at SourceCode. He started programming at the tender age of eight, and has been hooked ever since. He likes a whole bunch of technologies, mainly to do with .Net, but occasionally dabbles with other ones.
Nov
27
awarded  Nice Answer
Nov
10
comment Fixed point math in c#?
just to qualify that more; the FPU doesn't start doing wierd things the most common calculation (units/timeElapsed) starts doing strange things.
Nov
10
comment Fixed point math in c#?
@kquinn the problem is framerate. If one machine is doing the calculations at 60hz where another is at, say, 42.567hz IEEE/float arithmetic starts doing wierd things.
Oct
27
accepted FontFamily question
Oct
21
awarded  Popular Question
Oct
2
awarded  Yearling
Sep
2
awarded  Necromancer
Aug
25
comment Marshalling CodeElements to an IntPtr in C#
@dtb - read! It said it has made a difference in the past; even though it seems as it should not - the MSIL generated is NOT identical and the interop layer might see the keyword as pertinent. In pure .Net to .Net calls it would, agreed, have no effect.
Aug
24
answered Marshalling CodeElements to an IntPtr in C#
Aug
24
comment Why are c/c++ floating point types so oddly named?
Very good explanation. You might want to add that some libraries/languages call a float a single.
Aug
23
accepted C# Generics
Aug
16
awarded  Necromancer
Aug
13
accepted Redirect ConfigurationManager to Another File
Aug
13
answered Redirect ConfigurationManager to Another File
Jul
30
accepted word wrap for label in winforms
Jul
30
answered word wrap for label in winforms
Jul
28
asked Redirect ConfigurationManager to Another File
Jul
22
comment MMC .Net Runtime Version
Nope - not going to 2.0. I had a bunch of custom classes (e.g. thread-safe collections) that are now in the framework; so I got rid of them. On top of that I am not (yet) using dynamic, but will be. I guess it will have to wait for an update. Thanks for the help though. Well earned bounty!
Jul
22
comment MMC .Net Runtime Version
Thanks. I am going to give this a shot - how badly do I need them? 6000 LOC that I wrote personally that have since been upgraded to Framework 4...
Jul
21
comment Integrated Security
Ah you freaken SAVIOUR!!!! The only thing I could find on the tubes was that there was a wrapper - not where it was! Thanks a million.
Jul
21
comment MMC .Net Runtime Version
@mfawzymkh yep - that is where I am sitting
Jul
20
comment Potential other uses of a jabber server
Just thought of one: XMPP meetings. Sort of like Live Meeting or such.
Jul
20
comment Potential other uses of a jabber server
Not going to shamelessly plug in an answer; so you might want to keep an eye on what I am up to - might spawn a few ideas. Right now it's still a development blog; but I will be posting ideas and applications of xmpp soon: jonathan.dickinsons.co.za/blog/category/… Look at the one about XMPP and K2.
Jul
20
awarded  Tumbleweed
Jul
13
asked MMC .Net Runtime Version
Jun
24
answered What is the best way to draw skinnable “buttons” in a video game?
Jun
24
comment How do you select a transparency color of a JPEG in XNA ?
Do not use JPEG for this! JPEG will changes the colors of your image so your color key will be 'spotty' (if at all present). Rather use PNG 24, or PNG 32 (and using 32 will save you from the color key in the first place).
Jun
24
comment Projecting a sphere onto a cube
You should look at starting with a cube and tessellating it. You may notice a singularity if your sphere is one derived from trigonometric functions (the landscape will 'pinch' at the poles). If you do it that way your mapping problem disappears.
Jun
24
comment D3DERR_INVALIDCALL error, TeamCity builder
I would go for (2). As a solution to (1) he could install the DX SDK - it has the reference device, which wouldn't cause these problems.
Jun
24
comment Any suggestions for a crash course on design patterns?
that is a fantastic overview. thanks for all the links and pointers - maybe I will have a look at doing a few more sessions.
Jun
24
comment What’s your favorite “programmer ignorance” pet peeve?
@Ian - it does. Look at the intellisense icon for the field.
Jun
23
comment WPF v/s System.Drawing
You shouldn't imply that there are not that many differences. They are HUGE.
Jun
23
answered Make +y UP, Move Origin C# System.Drawing.Graphics
Jun
23
comment Is it good idea to shift from Web Development to Windows Development
Best answer in my honest opinion.
Jun
23
comment System.OutOfMemoryException
You are going to have to page those records! 1.3 million is A LOT - and well, as the .Net runtime is saying - it has run out of memory.