Jump to content
xisto Community

galexcd

Members
  • Content Count

    1,313
  • Joined

  • Last visited

Everything posted by galexcd

  1. He's not asking how to do it, from his question, I think he is just wondering if that code IS posting to sql. I do not see any ajax in that code. All of the values are being stored in cookies not sql. If you want to modify that sonesay has some great options for you.
  2. Haha any time opaque. I feel special that I got my own post dedicated only to me! As for the site, its a little basic but I had really short notice. Velma is telling me about your birthday and I'm like, "Oh my gosh better do something!". Your website domain changer sure didn't make it easy. It kept denying me because it wouldn't let opaque be in the name, so i had to settle with opa-que.So anyway I'm glad to hear you had a great day with your family.Until next time: Bye!
  3. Opaque! Happy Birthday! I was going to search google for some random images for your present, but then I had an idea. Here is your gift: (the hide/show tag is the wrapping paper. Except its some super cool warping paper that re-wraps itself at a click of a button ) Hidden Were you expecting an image? Well guess again. CLICK HERE! Oh and I'll email you some cake
  4. Happy birthday!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! (see your birthday topic for your present)

  5. My "circles don't exist" topic really started some fierce debate. Some people belived me, some people didn't, and some people got caught up in the whole .9~=1 thing. So just to cause more havoc I decided to post my theories on area! SO...Lets say I've got a two dimentional circle. Radius X. So the area of this two dimentional circle is piX^2. Alright so lets look at a cylinder. Lets say we take this circle and start turning it into a 3-dimensional object. We start pulling on either side and we make it into a cylinder. So mathamaticly I should be able to get the area of this cylinder by multiplying the area of the top by its height. Lets say the height is 4. If we take the original two dimensional cylinder and multiply it by 4, it would have no depth to it since each cylindar has a depth of 0 since they are all 2-dimensional. So that means all objects that have any depth at all have infinite area.So does this mean that every object, every thing we touch and see is actually infinitely big?
  6. WHAT? I didn't post this! Oh wait, did I? Was my mind reset? Haha just kidding...Well I'm glad that you guys enjoy my topic. When I was first thinking about it, it seemed like a great idea to post but while I was writing it, it started to sound really weird so I apologize. So first to address TrueFusion. You brought up a point I forgot to mention, because of course if everything was how it was before your memory was tampered with then you would realise that something was up, but I was thinking of everything just being reset when your memory was reset. Like you would never know you are reliving your past experiances over and over.
  7. I haven't posted one of these in a while mainly because I haven't had the time to do it with midterms and other nasty school stuff constantly being shot at me. So right now I'm just sitting here with my laptop killing time and thinking. What a perfect environment to do a new theoretical question!P.S. in my last theoretical question thread somebody mentioned that my thread was way too long for a very simple question. I assume he meant my "ultimate question" at the end. I just want to clarify that that is not really the whole point of the thread. I just add at the very end the question that inspired me to write the thread. Most of my ideas are put into the body so don't just skip to the end question and read that. The main content for the thread is in the body! So without further ado... MEMORIES- I am a computer scientist so I really have no medical background but does anybody really know how our memories work? How they are stored in our minds. The amazing part is that they are the only record we have of our past. I read somewhere that there is not a cell in your body that was there 7 years ago. Your body constantly makes new cells and gets rid of the old ones, but if that is true what links us to ourselves. Are our memories the only thing that makes myself me? Well sure I guess there is DNA but the only way we can see that is our appearance, which changes anyway. What if you somehow found out that what you remember was not what you actually did. What if your memories were a lie? So this brings me to my ultimate question for this thread.... What if you were trapped in the same time lapse for your entire life but you didn't know it. What if your life is only a few hours long and after those hours are up then your mind was restored how it was two hours ago and then you relive the same two hours again without realizing it. And everything you remember from before those two hours never really happened, they are just false memories... I know its a stretch but I find myself thinking this a lot especially when I am really looking forward to something. I think "what if I never get to that point in time? What if I am constantly reliving the hours before it and never experience it?
  8. I just realised something. Cutting off my left pinky would interfear with typing. It would have to be my left thumb. I don't use that finger at all when typing, it sure would make holding a cup in my left and annoying though. Hmm Ok i got it, use some futuristic knife and finger reatacher to have myself missing my left thumb when typing but my left pinky when I'm not... Hmm that would be annoying...
  9. Woah, I am very surprised that such a big company did this to you. I live in California, and I have dish network, but I have just hooked up my receivers by myself and never had anybody come out to install it except for the satellite dish itself. I have never had any strange expences on my bill but after reading this I will be sure to look out more. I wonder if perhaps the division in warsaw isn't as honest as the division here in los angeles. But I think you should go public with this. This is an outrage.
  10. Why would you go from linux to windows. Thats a step down. Thats like if you died and you went to heaven, and then you were like "I'm heaven addicted I think i'm going to go back down to hell"... Seriously.
  11. Well for sci-fi i'll have to go with firefly and EUReKA, best two shows ever made, but when I feel like a comedy/cartoon I like The Simpsons, Family Guy, and American Dad. (oh what a coincidence, all 3 on fox sundays right after each other ) Yeah but they sure made it funnier!
  12. You become a Newbie[Level 2] at exactly 25 posts. You stop being a newbie at 50 posts. Post quoted: #292849
  13. explode takes a string and breaks it up into an array while implode "glues" an array back together, so if you used explode and implode you would have to do something like this: implode("+",explode(" ",$string));which is a huge waste of code and processor time. I would suggest using str_replace if you want to use php for this. str_replace(" ","+",$string); If you don't want to use php javascript has a very similar function: string.replace(" ","+"); If you gave me some code on your website I could help implement it for you.
  14. Yeah anywhere before that sql query i told you to change is fine, but if I were you I'd put it at the begining of the file just incase you wanted to change how many rows per page are displayed quickly.
  15. All languages do this, but the largest int is over 2 billion so I'm pretty sure nobody has reached that.
  16. Yup, drop can be used for deleting tables, and it can even be used for deleting an entire database if you want.
  17. I won't be as vague as grampa Jim was... Basically you'll want to add this bit of code to your sql query: $results = mysql_query("select * from tblguestbook order by guestid desc LIMIT ".($rowsperpage*(is_numeric($_GET['page'])?($_GET['page']-1):0)).", ".($rowsperpage*(is_numeric($_GET['page'])?$_GET['page']:1)).";"); And then at the beginning define the variable "$rowsperpage" $rowsperpage=5;
  18. <sarcastic>They need to make a second internet. Its the only explanation. They need to start over and make it better. They need to make it a big truck, because this internet isn't a big truck. You can't just dump stuff on it.The internet is a SERIES OF TUBES! If we keep dumping all this junk on the internet and it clogs them up. Thousands of gallons of drano are used each year to unclog the internet. </sarcastic> (I'm glad that Ted knows his stuff because I sure didn't know that)But all seriousness, I don't think they can go around deleting stuff. I'm no network admin, but I know that we are just connecting to other computers and servers, and they aren't going to go hack into others computers and start erasing stuff. If anything is going to happen is domain names are going to perhaps be revoked, and we might even need a new top level domain suffix (or whatever they are called).
  19. Yes it is. Flash has a function called loadvariables which can get and send data from a webpage (such as a php page). Syntax is: loadVariables ( " url " , level/ " target " [ , variables ])The url is the url of the php file, the target is what symbol will be receiving the variables, and variables is an optional parameter if you want to send data. For example if you wanted to send a username and password to the php page "login.php" you would use this code: loadVariables("login.php","_root","username="+username+"&password="+password);and on login.php have it output success=true if the login was valid and success=false if the login was invalid, then you can have flash access that info through the variable "_root.success"
  20. I don't get it it just keeps counting down and when it hits 0 it goes back to a really high number. How do i get the picture?
  21. Just so you know you don't have to jailbreak it to add your own widgets. Those can easily be added by anyone and can be programmed by anybody who has html/css/javascript experiance. Thats all they are programmed in! Only some complex programs that usually are for malicious intentions require the ipod to be jailbreaked first, but since its the ipod and not the iphone, it dosn't have too much more power. On the iPhone on the other had, people have gotten other phone services to work on their iPhone...
  22. Awesome find truefusion. I'll be sure to visit it often. This is the kind of help i think the world needs. I don't think the government should get involved with this stuff. People are perfectly capable of helping those in need by themselves and this is a great example.
  23. OOOooo better idea: Wireless keyboard. That way you are free to jam without any cables tieing you down
  24. Copied from http://en.wikipedia.org/wiki/IPod_touch. Next time read the forum rules before posting... [hr=noshade] Anyway about the iPod touch. I had the chance to try one at the apple store durring the leopard party. It is increadable. It is much thiner than the iPhone, and once the second generation comes out I'll be sure to get one! [/hr]
  25. As much as I think that there are too many accidents on the road today I do not like your idea about the breath test. It would only work if there was a law instated that all automobiles must have this just like the one about the seatbelts. I don't like the government telling me what needs to be installed in MY PROPERTY. Once i buy the car it is my property, and I don't like my own property deciding whether I can use it or not. As for the fingerprint recognition I do like that idea because it could be a feature in a car to prevent theft.
×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.