Well, today is the day to drop the second release version of the build system for the C3DL library. In this new version I've updated the build system to allow users to decide whether or not they want to include the debugging utilities when they download the library.
Now I've been having some permission issues with matrix, so the actual web interface may or may not work...
You can give it a try in my test box over here C3DL Build System Tester.
All the source code and library files can be found in my github repo over here: Github Repo
*In the coming days I plan to move the system into the main C3DL repo at Cathy's request*
Looking forward to 0.3 Release, I'm planning to allow for more customization in regards to which parts of the library you can include / exclude. More on this as it develops!
Tuesday, November 16, 2010
Tuesday, November 9, 2010
Spawning a google map from a web page
I looked through some of the google maps API tutorials and found this bit of sample code that you can change around and modify to suit your needs. I've also made it so you can make a map pop up when you click on an object on your web page. Check out my mini demo here:
Google Maps Demo
And if you want to delve deeper into the API check out their docs here:
Google Maps API Tutorial
Google Maps Demo
And if you want to delve deeper into the API check out their docs here:
Google Maps API Tutorial
Tuesday, November 2, 2010
Dreaded ^M problem
Just making a quick post for myself in case I encounter this problem in the future
vi -b myfile.sh
:1,$s/^M//g
Quick info: when moving files from windows to unix you may end up getting funny character information in the file. In order to see these characters in vi, we've got to use the -b switch. The second command listed above will automatically find those symbols and remove them.
**The ^M is actually [ctrl]+v and [ctrl]+M**
Source and more information
vi -b myfile.sh
:1,$s/^M//g
Quick info: when moving files from windows to unix you may end up getting funny character information in the file. In order to see these characters in vi, we've got to use the -b switch. The second command listed above will automatically find those symbols and remove them.
**The ^M is actually [ctrl]+v and [ctrl]+M**
Source and more information
Subscribe to:
Posts (Atom)