Search results

  1. descalzo

    Delete me please?

    It takes two weeks to get suspended for inactivity. I don't know how much time after that they actually remove the account. It is more considerate to tell the admins that you are leaving so they can free up the resources quickly.
  2. descalzo

    Server or code?

    Are you inserting into an existing table? How many indexes do you have? Bulk inserting into a new table is much faster than inserting into a large established table.
  3. descalzo

    Lagging of updates in website

    I don't mean make your urls like that. I meant add a query string to the url in the address bar and reload if your browser (or your ISP or your proxy) won't clear the cache. That way you will see the latest version on the server.
  4. descalzo

    Lagging of updates in website

    If you cannot clear your cache for some reason, one trick is to add a fake query string to a page.... www.mysite.com/foo/baubles.html?something=nothing The browser and even proxies will grab the latest version of the page.
  5. descalzo

    Server or code?

    Insertions take more time for: size of row number of indexes on table size of table also, if the query inserts 100 rows at a time, it is more efficient than looping over 100 queries each inserting one row. If you have more than just the primary key on the table ( MyISAM ), you can...
  6. descalzo

    Ajax Captcha

    I looked at the page you want the script on. Do you mean you want to verify the captcha by Javascript like you are doing the rest of the fields?
  7. descalzo

    Guess Who Posts Next

    nope. I guess someone who thinks adamp is intentionally avoiding this thread.
  8. descalzo

    Vending Machine (Game)

    You get a buzzing sound. I insert the letter 'B'
  9. descalzo

    The Ctrl+V game

    throw new rddException(" $o .. $x .." . );
  10. descalzo

    I know.. Python Help again, but its not working..

    1. Write it from scratch in the FileManager 2. Forget the shebang lines 3. Name it whatever.py 4. Your htaccess file seems ok.
  11. descalzo

    I know.. Python Help again, but its not working..

    Why is it called myscript.cgi ? Try renaming it myscript.py Lastly, did you use the FileManager to write it, or did you upload it from a Windows machine?
  12. descalzo

    Can anybody help me to suggest the currect charecter encoding for these sites?

    utf-8 would work. This w3 validation of the site with encoding set to utf-8 instead of 'detect automatically' It says that:
  13. descalzo

    enable allow_url_fopen

    allow_url_fopen is enabled. But allow_url_include is disabled. Why not host the included file locally? Is it your file?
  14. descalzo

    Guess Who Posts Next

    Nope. Anyone but adamparkzer
  15. descalzo

    Count to 1 Million

    1605 and stayin' alive.
  16. descalzo

    Game: Ban the Person above you!!!!!!!!!!!

    Banned for noticing he used the same reason.
  17. descalzo

    Vending Machine (Game)

    You get a shot of vodka. I insert a shot glass.
  18. descalzo

    Word Association

    vodka
  19. descalzo

    C# - Run a command on shutdown

    I could probably write it for you in perl. What you do in perl is register a SIGNAL handler, since the system sends the running program a signal when the system is shutting down. Do they have signal handlers in C#? Then open the file and write the starting time. Then call sleep() in a...
  20. descalzo

    can somebody explain this to me

    <div> <p> nothing added here </p> <p> this has 0.5em top margin </p> <p> so does this</p> <span>not a paragraph, no added margin</span> <p>not adjacent sibling, no added margin</p> </div>
Top