Dan Randolph
My Research Paper Links

Resume

I am currently searching for a Software Engineering position that requires C++. Here is my resume. Resume

Written Works and Programming Samples

C++ source code demonstrates vector sorting with the std::sort algorithm and compares sort times
with an improved QuickSort method.
VectorTest.zip
C++ source code demonstrates function templates and inheritance from the std::string class.
See the ReadMe.txt file for details.
CPPTemplate.zip
SQL Queries for Topological Relations with Minimum Bounding Rectangles
Slides
XML-RPC Transport Layer Protocol
Managing Software Development Projects
File Redistribution Scheduling Problem
schedule2.zip
Microsoft Equation Editor Tutorial
Paper on William Kahan

Web development tips

Do you have multiple domain names registered that you wish to manage in a single hosting account?
This javascript redirector code may be just what you need.
Here is a sample I use in my index.html page in the home directory:

<head>
<!--javascript redirector -->
<script
  type="text/javascript"
  language="JavaScript">
if ( window.location.href=="http://www.mapsharecorp.com/")
   location.replace("http://www.mapsharecorp.com/danrandolph/");
else if ( window.location.href=="http://mapsharecorp.com/")
   location.replace("http://www.mapsharecorp.com/danrandolph/");
</script>
...
Note that the window.location.href method gets the href. This is the URL that would otherwise be shown in your browser's "Address" list box.
The location.replace method instantly switches the current page to the new URL.

Thanks to the InnerPeace Webmaster ToolKit and their PageJumper Web Page Redirector Utility for getting me started on the right track.


Comments? Click on the "Sign Guestbook" button. Your e-mail address is not required unless you want a response.

About The Author


246 Dianna Dr
Littleton CO 80124

Telephone:
+1(303)799-3747

email: randolph246@hotmail.com

Education:

Graduate Student
2001-2003
University of Wyoming
Computer Science
Bachelor of Science
1986
University of Wyoming
Computer Science

Areas of Study

Graduate Research

I worked with Dr. Byunggu Yu's GIS research team. We created a prototype for the Relational Geographic Information System (RGIS). The system supports Internet access to GIS databases.

My work on the project was mainly on the middleware layer. Client applications communicate with a relational database through a middle layer in the RGIS system. The middle layer consists of functions to handle commands and data streams between the client and the server. It also contains the query processor. The query processor translates the client commands to SQL and sends these commands to the database server. It then collects the results from the server and sends the requested results back to the client.

Visit Dr. Yu's GIS Research Page for additional information.