Posts Tagged ‘simple’
C++ Programming site
New programming site where your taught whatever you request. He teachers about game engines, creating them from scratch. He teaches the basics of C++ to the more advanced areas as well.
I requested a few things on the site progrma wise and he made thme for me and taught me how to do it myself. He even helps me out on my side learnings with msn. Check it out guys, those wanting to learn programming or looking for a program you cant find. I’m sure this guy is willing to help.
So once again, those willing to learn some C++ progrmaming, or batch progrmaming, or really almost any language, just visit his site. I thought it was so good I decided to advertise his site in ways im able to as payment for him helping me out all the time.
There is no www. in the name, just type it as you see below.
http://CelestialCoding.com
c++ C++ Programming programming learn Learn Game Engine game engine GameEngine Gameengine VB Visual Basic vb visual basic batch bat .bat .cpp cpp CPP Cpp .Cpp C# c# .c .C Microsoft Visual Studio Site Online Free Tutorial visual microsoft studio site online free programing programming Programing Programming html xhtml php vbs visualbasic visual basic script ADO ASP XML xml java script javascript tutorial tutorials site program application walkthrough forum awesome simple easy
Duration : 0:6:5
Learn PHP Now - Simple OOP
http://phpvideos.net (for better quality)
Learn the very basics of Object Oriented programming in php
Duration : 0:6:16
Extending C: “Variable Variables” like PHP $$var
Tiny C library for a limited amount of dynamic strings. If you need more functionality, feel free to extend it, write your own linked lists or check out GTK’s glib GList object.
Examples:
if(dictionary(”moo”))
strcpy(dictionary(”moo”),”Something about cows.”);
puts(dictionary(”moo”));//prints Something about cows.
dictionary(”destroy()”);
Limitations:
1. Size of strings in this demo are limited to 99 characters (see CHARS in source code).
2. 100 bytes of memory (99 + the terminating NULL) are set aside for each and every word it does not find, so you can add definitions to them. This makes it very friendly and easy to use, but it may not be a good idea to use it in situations where you are looking up a lot of words that are not in the dictionary!
3. Uses fast linear searching, but for a very large dictionary you might want to use something else, the aforementioned GList or a database.
4. You are responsible for freeing the memory used by the dictionary upon program termination. You can do that using the _destroy method:
dictionary_destroy()
Or by passing “destroy()” as a string to the dictionary object directly, vis:
dictionary(”destroy()”);
5. (updated) Like malloc, this library now returns NULL when out of memory. You may desire to check for this.
6. Slightly obfuscated code for compactness. If you don’t like the formatting, run the free “indent” program (available for linux and windows) on it or use your text editor’s automatic indent feature.
The tiny dictionary library and demonstration program may be downloaded from my web site:
http://www.thenerdshow.com/index.php?page=dictionary
Duration : 0:6:49
PHP Basics: Advanced function
Not the trickiest example function, however this will teach you how to output a value created from within the function.
Duration : 0:7:18