Search results

  1. Gnomo

    Problems with Gandalf

    Bombadil was not filmed. In the extra features on Fellowship they state that.
  2. Gnomo

    Problems with Gandalf

    Okay, so I will give you that D&D (along with most modern fantasy) would not be around had Tolken not written LotR. However, when Pippen has the line "we have the white wizard, that has to count for something" the audience fully expects Gandalf to do some pretty cool magic. Plus all of the...
  3. Gnomo

    Javascript & Mail Clients

    Okay, so I must have been really tired last night, because when I woke up this morning and started over (from scratch) I got Apple's examples to work. So, currently my javascript creates a iframe element and loads the php page into the iframe. In mozilla: the php page redirects the iframe...
  4. Gnomo

    Javascript & Mail Clients

    Okay, So I've decided to scrap the popUnder idea. I could only get it to work in Mozilla, and I have no idea why it was not working for other browsers. My New Idea is to, using javascript, create and iframe that will load the page I need and the just remove the element after a short...
  5. Gnomo

    Javascript & Mail Clients

    I had thought of that, however the problem is that the PHP page that loads in the pop-under uses header("location: $email"); to open the mail client. Since this is a redirect to an email address, their is no html output to the browser. I got the javascript working in Mozilla based browsers...
  6. Gnomo

    Javascript & Mail Clients

    I have a puzzle of a javascript that I could use help with. I am trying to come up with a method for putting email addresses into a website in such a way that they cannot be harvested by spambots (The javascript methods of "encoding" the email address are not secure enough IMHO), however my...
  7. Gnomo

    Extending my WiFi network - how?

    That is pretty good. I would make a few adjustments. 1. Set the access point to have a static address (ie. 192.168.0.2) 2. Set the router and access points subnet masks (if not already) to 255.255.0.0 3. Set the routers DHCP server to serve addresses from 192.168.1.1 thru...
  8. Gnomo

    Extending my WiFi network - how?

    Since you say that wireing is not a problem, I suggest you just buy a second base station and not worry about repeating the signal. As long as the base stations are in the same broadcast domain (ie. same subnet) they can have the same SSID (network name) and use different channels (ie. 1, 6...
  9. Gnomo

    Syncing iCal between two machines?

    There is a product on versiontracker called iSynCal. It allows you to sync calendars and tasks between macs, between accounts on a mac, or with your ipod. It currently does not have functionality to share address books. It uses Apple File Sharing, so you don't need .Mac or to publish...
  10. Gnomo

    Airport Extreme and External Antenna

    So, I am looking at getting an apartment that is just outside the range of my college's wireless network. I would like to use wireless bridging to extend the network to include the apartment. I am looking into getting a Airport Extreme base station and a directional antenna, but I want to...
  11. Gnomo

    php won't compile on Panther

    I'm trying to compile php 4.3.3 on my iBook 500 MHz (newly upgraded to 10.3). I can't use the module apple ships because I need other options added to the configuration (namely the calendar enabled because I have to work with Windoze servers and they don't like negative timestamps in the...
  12. Gnomo

    What Microsoft says about iTunes...

    I think M$ is just whining. They are afraid that other companies are going to start supporting AAC and WMA will go by the wayside.
  13. Gnomo

    Ban Anime???

    If they ban Anime, I'm moving to Japan. Who's with me?
  14. Gnomo

    php help

    Well, my guess is because you are missing a parenthesis in your if statement. You have 2 open and 3 close. Try changeing the code to this: <? if( (!$table_name) || (!$num_fields) ){ ... } ?> If that doesn't fix the issue (aka. you just made a typo on the forum) let me know and I will...
  15. Gnomo

    STOP Microsoft

    Let me guess: The email comes from security@microsoft.com right? And the attached file is called patch.exe? Guess what? That's the Dumaru virus. So don't blame M$ for those messages. While I agree that Windoze is crapola, I don't see a need to bash M$ for a virus that they didn't start.
  16. Gnomo

    Looking for PHP help

    PHP won't actually control how the browser renders the html that you send it, so it cannot control the scrollbars. You will have to use CSS for that. To change the header you could do this: <? function make_start_of_page( $title = '' ) { ... ?> <title><?=$title?></title> ... } ?> and...
  17. Gnomo

    Looking for PHP help

    When you say that you want to "use a picture site-wide" do you mean that you want to basically make a template for the site, or that you simply want each page to have this picture, but not necessarily in the same place? Templates are really easy to do in php. First you would create the...
  18. Gnomo

    Looking for PHP help

    I would be glad to offer my assistance. I am probably not the most knowledgable person when it comes to PHP, but I'll give it my best. Just post what you need help with and I (and maybe others) will help you with the coding until you feel comfortable enough to continue on by yourself. I...
  19. Gnomo

    php sessions

    I tried your sample code to see if it would work on my machine and I was given a parse error: However if I fix the code to read: echo "hi".$_SESSION['uid']; Then it works, but the only thing output is "hi"
  20. Gnomo

    Brushed metal initiative

    What makes you say this? Do you have a quote from Steve?
Back
Top