Search results

  1. perkeyone

    multiplication by juxtaposition and order of operations

    recently, as many of you may already know, several facebook polls have been created featuring ambiguously written equations, such as this one... upon seeing this question, my first reaction was that there couldnt possibly be that many dumb people... i took a moment to calculate it in my head...
  2. perkeyone

    mysql query ording problem

    i am having trouble sorting some information from my database. at one point in time when i ran my query in php the records came in a different order than when i ran the same query on mysql workbench. basically my problem is that i want to sort some info before aggregating it. the database has...
  3. perkeyone

    "onclick", "this", and popups

    i am trying to make a web page which has a dynamic form. this form will have an "pop" button on it which will open a pop-up. in the pop up there will be a field for input and a "add" button. when the pop-up's "add" button is pressed, the original page will have a button added to it. clicking...
  4. perkeyone

    how to not use tables

    im trying to learn how to do stuff without tables but i really dont know where to begin i know that i can use divs, spans, labels, lists, ect to accomplish anything a table can do but im not sure where to use each type of element and im not sure what css i would need to use just as an example...
  5. perkeyone

    more problems in ie

    ok so i am experiencing some problems between different browsers again. in firefox my form looks like this... but in ie it looks like this... ie doesnt seem to want to put input elements beside each other (on the same line going left to right) inside of a single data element, instead it puts...
  6. perkeyone

    page remembers value on refresh

    when i initially load this page it gives 2 alert messages. "0" and then "1" on refresh it alerts "1" and then "2"... why? i am expecting it to be reset to 0 and 1 each time but it doesnt. <?php echo "<input type=\"hidden\" value=0 id=\"selectcount\" name=\"selectcount\"/>"; echo "<script...
  7. perkeyone

    my css doesnt work in ie

    my style sheet has 2 id's "contacts" and "entry" "contacts" works fine with ie but "entry" does not i compared the two id's and found that they affect similar sectors and similar properties... so i dont understand what would be causing the problem. i used ie's developer tools (f12) to turn off...
  8. perkeyone

    sending emails in php

    I made an address book in php and would like users to be able to send emails to their contacts from it. Here is one of my failed attempts. <?php $to = "_@_.com"; $subject = "Test mail"; $message = "Hello! This is a simple email message."; $from = "_@_.com"; $headers = ""; $end="\n"; $headers...
  9. perkeyone

    balancing healing formulas

    so i want to make several healing spells in my map, but to make things interesting i want them to all be fundamentally different. a: provides the best healing for critically damaged units b: provides average healing in any scenario c: provides the best healing for noncritically damaged units i...
  10. perkeyone

    cliff types from two different tile sets

    is it possible to use outland's rough dirt cliffs and dungeon's man made square tile walls together in one map? i think it could be possible through importing and overwriting textures, but im not sure.
  11. perkeyone

    i decided to get back into map making

    i just installed wc3 and the expansion. im going to connect to bnet for updates. what add-ons for the editor should i use? obviously i am going to want to install newgen... but what else might i want? i hear that rtc got some major updates recently... is it worth trying now? and should i make 2...
  12. perkeyone

    python function to create a variable

    is it possible to make a function which will create a variable with a specified or unspecified name? for example, lets say i want a function which when called will make a new variable and name it with an underscore followed by the date and time it was made. "_jan5,2010@00:43" then i could...
  13. perkeyone

    pygame

    could anyone enlighten me as to what i need to install before using pygame? im under the impression that i need python, wxpython and pygame... additionally, which version of each of those programs should i install? does it matter that i am using a 64bit laptop? should i get 32bit python to go...
  14. perkeyone

    program skips an input prompt

    hey, im making a program to simulate a turing machine. the part where i enter the tape data gets skipped over when i debug. it outputs the prompt "Please input the initial tape configuration:" but then it immediately outputs the next prompt "Please input the maximum number of steps: " this is...
  15. perkeyone

    inputting chars to 2d array

    hey guys, i keep forgetting the syntax of cin.get and getchar etc anyways, i am trying to design a c++ program that will prompt for the user to input something like this and i want to store that input in a 2d array i want to ignore the spaces (so it wont matter if the user spaces it...
  16. perkeyone

    way to identify a computer

    in online games sometimes people misbehave and get their accounts banned but they make new accounts. so in order to prevent people form making new account and continuing to break rules, sometimes the player is IP banned, but an ip address can be changed. if the game requires a cd...
  17. perkeyone

    (c++)

    edit: solved
  18. perkeyone

    assembly language, messed up output

    x86 assembly i mean ive tried several things, but was unable to get this program to display the average correctly but failed the program uses some sort of c++ framework that my professor provided for us. http://frank.mtsu.edu/~rdetmer/CSCI3160/windows32.zip the only file from the project that i...
  19. perkeyone

    tutorial ideas i had

    i am considering making a few tutorials/snippets. please let me know in this thread ahead of time weather or not they would be useful/interesting/unnecessary/etc... before i make them. here are my tutorial ideas 1. pseudo multi-dimensional arrays (gui) 2. pseudo linked lists (gui) 3. weighted...
  20. perkeyone

    double inventory

    so i was just messing around in the object editor and i noticed you can give a hero two "inventory (hero)"'s in the normal ability field. then i tested it out and he can hold 12 items... BUT it only shows the second 6 items. so i was wondering if there was any way of switching back and forth...
Top