User CKoenig - Stack Overflowmost recent 30 from stackoverflow.com2010-03-22T00:29:51Zhttp://stackoverflow.com/feeds/user/76051http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/759094/how-should-a-one-man-development-shop-document-their-code3How should a one-man development shop document their code?CKoenighttp://stackoverflow.com/users/760512009-04-17T05:04:56Z2009-05-16T01:47:22Z
<p>Hi,</p>
<p>please let me first describe my situation. I work in an IT department for a small-to-medium sized industrial-company and basically I'm the only real developer (sometimes a second guy joins in for his own projects). I programm mostly in C#/.net. Of course I only programm for internal need (Intranet, reporting, data-driven apps, some mobile apps, ...).</p>
<p>My question is how should I document my work? It's a highly dynamic environment (the features and bug fixes I implement are tested by me during production, and go live, often within a day. If I technical documentation like MSDN or even overview diagramms those would take me more time to sync than the whole programming process.</p>
<p>Also I feel it's a waste of time because I would be the only one who ever read it.</p>
<p>I do understand that if I get sick, leave, or forget this documentation would be valuable. </p>
<p>PS:well of course you are right - the quesion is how much and how/where.</p>
<p>I try using the XML-docu comments for the public exposed parts but as I'm a believer in self-documenting code the comments mostly restates in plain text what you can read from the method-head itself :(Maybe using the remarks section is the key but if you have 30 lines of code with a 15 line xml-comment in front it just looks dirty</p>
<p>(sorry for posting it here but our firewall rejects JSON :( )</p>
http://stackoverflow.com/questions/801319/winforms-gdi-draw-curve-for-a-chart/801346#8013463Answer by CKoenig for Winforms / GDI+ Draw curve for a chartCKoenighttp://stackoverflow.com/users/760512009-04-29T07:59:40Z2009-04-29T07:59:40Z<p>This is very simple - no need for any math - just use Graphics.DrawCurve instead of DrawPolygon/DrawLine (see the very good help on this function).</p>
http://stackoverflow.com/questions/799943/what-simple-non-trivial-usable-code-have-you-created-in-f/801332#8013321Answer by CKoenig for What simple, non-trivial, usable code have you created in F#CKoenighttp://stackoverflow.com/users/760512009-04-29T07:55:27Z2009-04-29T07:55:27Z<p>I like to use it whenever I have the need for parser support (nowadays you might call it DSL) and whenever I implement symbol-processing algorithms.</p>
<p>The latest productive code I've written in F# concerns filters (used to filter incomming messages to a logging service). I've got a couple of basic filters (that processes the subject, etc.) and higher-order logic filters that combine other filters with AND/OR/NOT operators.
The implementation simplifies such "expressions" by converting them to CNF, collecting by type and using special rules (like a < 5 && a < 10 => a < 5, etc.)
On top of this I createt a simple parser with fsyacc to give the users of this service a simpler way to create filters.</p>
<p>I guess the hole thing has in F# as many lines of code I would have needed with C# to write just the simplification ;)</p>
http://stackoverflow.com/questions/734525/getting-started-with-f/759788#7597881Answer by CKoenig for Getting started with F#CKoenighttp://stackoverflow.com/users/760512009-04-17T09:47:35Z2009-04-17T09:47:35Z<p>I still belive Expert F# is the best publication avaiable to get into F# and it covers almost everything.</p>
<p>The only problem is: like every newer "learn programming" book it don't contain a single excercise - so you will need to find something to do for yourself.</p>
<p>I recommend starting to play with Lists, the |> operator etc. and looking at the <a href="http://msdn.microsoft.com/en-gb/fsharp/default.aspx" rel="nofollow">F# Developer Center</a> (it more or less a collection of good blogs/sources and a good forum)</p>
http://stackoverflow.com/questions/753503/polygon-math/759527#7595270Answer by CKoenig for Polygon mathCKoenighttp://stackoverflow.com/users/760512009-04-17T08:28:47Z2009-04-17T08:28:47Z<p>If you know that the polygon in 3D is "flat" you can use the normal to transform all 3D-points of the vertices to a 2D-representation (of the points with respect to the plan in which the polygon is located) - but this still leaves you with defining the origin of this coordinate-system (but this don't really matter for your problem) and with the orientation of at least one of the axes (if you want orthogonal axes you can still rotate them around your choosen origin) - and this is where the trouble starts.
I would recommend using the Y-axis of your 3D-coordinate system, project this on your plane and use the resulting direction as "up" - but then you are in trouble in case your plan is orthogonal to the Y-axis (now you might want to use the projected Z-Axis as "up").</p>
<p>The math is rather simple (you can use the inner product (a.k.a. scalar product) for projection to your plane and some matrix stuff to convert to the 2D-coordinate system - you can get all of it by googling for raytracer algorithms for polygons.</p>
http://stackoverflow.com/questions/749264/covering-earth-with-hexagonal-map-tiles/759232#7592321Answer by CKoenig for Covering Earth with Hexagonal Map TilesCKoenighttp://stackoverflow.com/users/760512009-04-17T06:13:05Z2009-04-17T06:13:05Z<p>Well lots of people have made the point that you can't tile the sphere with hexagonal tiles - maybe you are wondering why.</p>
<p>Well - Euler statet (and there are lots of interesting and diffenernt proofs and even a hole book) that given a tile of the sphere in x Polygons with y Edges total and z vertices total (for examble a cube has 6 polygons with 12 egdes and 8 vertices) the formula "x - y + z = 2" allways hold (mind the minus).</p>
<p>(BTW: it's a topological statement so a cube and a sphere - or to be precise only their border - is really the same here)</p>
<p>If you want to use only hexagons to tile a sphere you end up with x hexagons, having 6*x edges but one edge is shared by two hexagons - so we only want to count 3*x of them, and 6*x vertieces but again each of them is shared by 3 hexagons so you end up with 2*x edges.</p>
<p>No using the formula: "x - 3*x + 2*x = 2" you end up with the false statement "0 = 2" - so you really can't use only hexagons.</p>
<p>That's why the classical soccer ball looks like he does - of course modern ones are more fancy but the basic fact remains.</p>
http://stackoverflow.com/questions/580356/abstract-algebra-and-programming/746454#7464541Answer by CKoenig for Abstract algebra and ProgrammingCKoenighttp://stackoverflow.com/users/760512009-04-14T05:34:25Z2009-04-14T05:34:25Z<p>Hmm ... sorry to say but I don't think it's wise to learn some fancy new programming languague in order to help you learn abstract algebra.</p>
<p>Yes some things in Haskell and other FP-languagues have something to do with categorie theory but I think you will learn about algebra best by doing you assigned exercises and problems and by reading algebra books with paper and pencil handy.</p>
<p>GAP and co. are used to help grown up group theorists to find new "monsters" - they are bad tools to learn group theorie.
Maybe you can have a look at this: <a href="http://freecomputerbooks.com/mathAlgebraBooks.html" rel="nofollow">http://freecomputerbooks.com/mathAlgebraBooks.html</a> - there are a lot of free books around this topic - but I prefer a real book and algebra books are not that expensive in gerneral.</p>
http://stackoverflow.com/questions/198501/books-resources-to-teach-myself-linear-algebra/746397#7463970Answer by CKoenig for Books & resources to teach myself Linear AlgebraCKoenighttp://stackoverflow.com/users/760512009-04-14T05:01:18Z2009-04-14T05:01:18Z<p>Hmm - for 3D programming you don't need all the fancy linear algebra stuff like abstract vector spaces, bases, eigenvectors, etc.</p>
<p>All you need is basic stuff like matrixmultiplication, the definition of the inner product (and some basic facts about it), definition of lines and plans with respect to normal vectors, etc.</p>
<p>All this is normaly covered in undergraduate analytic geometrie courses if I'm not mistaken.</p>
<p>But after all - if you don't want to play with your own renderering engine you gonna use DirectX, OpenGL or something similiar and then you will only need to know how to "address" a point in 3D with it's coordinates and maybe how to compute a normal vector to a "surface" - and in all those cases wikipedia or google will give you a helping hand.</p>
http://stackoverflow.com/questions/482866/f-cross-product-of-two-lists/629540#6295400Answer by CKoenig for F# - cross product of two listsCKoenighttp://stackoverflow.com/users/760512009-03-10T10:06:42Z2009-03-10T10:12:43Z<p>I recently needed something similar - I had to zip a list of sequences to a seqenz of lists - so [(a1,a2,a3,...);(b1,b2,b3,...);(c1,c2,c3,...)] -> ([a1;b1;c1], [a2;b2;c3], ...)</p>
<p>The following code will do this:</p>
<p>let rec listZip (sl : 'a seq list) =<br />
seq {<br />
match sl with<br />
| [] -> yield []<br />
| hd::tl -><br />
for h in hd do<br />
for t in listZip tl do<br />
yield (h::t)<br />
}</p>
http://stackoverflow.com/questions/629459/c-cannot-find-library-during-runtime/629500#6295000Answer by CKoenig for C# cannot find library during runtimeCKoenighttp://stackoverflow.com/users/760512009-03-10T09:57:12Z2009-03-10T09:57:12Z<p>The application will look for the .dll in the same path as the executable and in the path-env.
But as BtBh said: only use the off-switch if you put this assembly in the GAC.</p>
http://stackoverflow.com/questions/629143/how-to-write-to-the-main-exes-config-usersettings-section/629490#6294901Answer by CKoenig for How to write to the main exe's .config userSettings section?CKoenighttp://stackoverflow.com/users/760512009-03-10T09:53:47Z2009-03-10T09:53:47Z<p>I think yes - manually writing to the .config file is the only way.
Or you can let the administrator edit the .config-file himself.</p>
http://stackoverflow.com/questions/629159/streaming-video-from-a-live-webcam/629456#6294560Answer by CKoenig for Streaming video from a live webcamCKoenighttp://stackoverflow.com/users/760512009-03-10T09:41:13Z2009-03-10T09:41:13Z<p>You want to get the videostream from the client?
I don't think you can do this with silverlight nor with flash - both hide the hardware from the client machnine from your fingers - it's a security feature ;)</p>
<p>The only way I see is to let the customer download a stand-alone application that handles this (of course this will get nasty as soon as you want to provide apps for mac, linux, unix, windows, ...)</p>
<p>The problem is simple this: what you want is a way to let browers capture generic webcams and give the stream to your silverlight app - just think about this ... it's unlikely that we will ever see something like this.</p>
<p>Sorry.</p>
http://stackoverflow.com/questions/629414/adding-references/629442#6294422Answer by CKoenig for Adding referencesCKoenighttp://stackoverflow.com/users/760512009-03-10T09:33:30Z2009-03-10T09:33:30Z<p>I guess you want to load an type at runtime?
You can use Assembly.Load and reflection to do this.</p>
http://stackoverflow.com/questions/759094/how-should-a-one-man-development-shop-document-their-code/759103#759103Comment by CKoenig on How should a one-man development shop document their code?CKoenighttp://stackoverflow.com/users/760512009-04-17T05:17:04Z2009-04-17T05:17:04Zwell of course you are right - the quesion is how much and how/where.
I try using the XML-docu comments for the public exposed parts but as I'm a believer in self-documenting code the comments mostly restates in plain text what you can read from the method-head itself :(
Maybe using the remarks section is the key but if you have 30 lines of code with a 15 line xml-comment in front it just looks dirty