Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by mrampton

  1. mrampton

    encoded_polyine lib for google maps

    Sorry, a comment I attempted to post on John-Scott's blog (of http://blog.portable-eggplant.org/) had a bunch of the code removed from it. Just posting it here so it's not lost. Hey John, So I was out of town for the weekend (without internet access even!!). But by trimming I simply mean...
  2. mrampton

    PHP5 with Apache2 problem -- simplexml related?

    schwotte, Thanks for the reply -- sorry to take so long in getting back. I tried your solution and saw some small progress but still was unable to get php working correctly. Instead i went through and backed up all my config files and reinstalled all my php and apache packages (turns out...
  3. mrampton

    Difficulty parsing gpx file with libxml-ruby

    Hey guys, I'm hoping that someone with more xml experience can see the easy explanation as to why i'm having difficulties here. Basically I'm attempting to extract elements from a gpx file (xml file for gps data). I had this working in rexml but it was TERRIBLY slow. And, I can actually get...
  4. mrampton

    PHP5 with Apache2 problem -- simplexml related?

    Hey guys, So I'm having problems with php5 on apache2. Basically, instead of the server executing the php scripts, it prompts you to dl the source. The php files in question are for my wiki (dokuwiki) which was running fine until i upgraded my solaris10 box the other night (using blastwave...
  5. mrampton

    how to overload operator[] for use in 2d array class

    Perf, Thanks. You're right it does work. I was just staring at it too long and had my client testing it out right before i overwrote the entire array with clean data (ugh...). Thanks for the info on std::vector as well.
  6. mrampton

    how to overload operator[] for use in 2d array class

    Hi. I'm trying to figure out how to overload operator[] for use in a 2d array of ints class: TwoDArray. I need to be able to access the array data using normal 2d array notation like this: TwoDArray temp; // constructors set to temp[10][10] temp[5][6] = 2; My TwoDArray class inherits a 1d...
  7. mrampton

    wchar_t and unicode help

    I'm having some trouble getting a line of unicode printed to the screen properly. I'm calling: wc_message(L">¡¢£¤¥¦§¨©ª«­®¯"); Where wc_message() is: void wc_message (wchar_t *text) { wchar_t mstring[256]; swprintf(mstring, L"MESSAGE: %s\n", text); wprintf(mstring); fwprintf(test_log...

Part and Inventory Search

Back
Top