Recently I started a somewhat involved project that should make it much easier for me to design web pages: The last time I worked a large project it became increasingly difficult to manage all the code as the project grew. But as I’ve come to adopt classes and objects it has become much easier to implement and manage code. I’m use to writing large chunks of code consisting mainly of variables, loops and functions. I usually try to organize this code by separating different types of functions into different files: I still end up with a mess of functions. Some functions only being used once. And a mass of code I have to sift through to figure out how some variable is being used (or misused). One thing I love about objects and classes is the organization. If I have a range of variables associated to only one purpose then I can use an object related to a purpose to store specific properties for very specific functions. For example with mouse tracking I do som...
I've wanted a desktop database program that I could customize for some time now. Actually there have been a number of programs I've wanted that require a database. But since Microsoft Access is a bit costly and Open Office has yet to release good documentation on programming their "Base" software I've been out of luck. Recently I've been learning C# well enough that I decided to dive into this project to see if I could do it. Turns out that I CAN! I've found C# to be really easy to pick up. As a result of my study efforts, I developed a rudimentary database engine and a contacts program that implements this engine. I found a bogus contacts list CSV file on the internet and wrote a simple import function so I could experiment with my database. So all these contacts are BOGUS (or at least they should be). Once I had the primary database function set up in the engine I could write an "add-on" library that the engine incorporates into itself a...
In OpenOffice Tutorial #2 I show you how to use styles, numbered and bulleted lists to create a simple document. The Nerd Cave Web Development and Tech Support http://www.the-nerdcave.com https://twitter.com/NerdCave2 https://www.facebook.com/nerdcaverts https://nerdcaverts.blogspot.com/ https://www.youtube.com/channel/UCsbWaHrV2VfDn_vSoCkmzmw
Comments
Post a Comment