Search results

  1. siddes

    "Balagurusamy" or "yashwant kanetkar"

    My 2 bits: 1) Nothing can beat raw curiosity. I've referred to almost 20 books (all downloaded) on VBScrpt, Javascript and other web technologies. And I'm only a hobbyist. If you're really serious, scour C/C++ forums. You'll learn a lot. 2) Forget the language, get your logic right. By...
  2. siddes

    which are the programming languages of future.....

    Brother, just a thought. I've programmed in GWBASIC, QBASIC, C++, Javascript, VB6/.Net, WAC and now PHP. And I've realized that it doesn't matter what language you're learning, what matters is the logic. Also, top programmers rarely sit and code, they just create the flowchart and hand it...
  3. siddes

    Gaming Video

    Thanks a lot guys :p
  4. siddes

    Gaming Video

    Hi ppl, Made this video way back in 2004, for a sociology project on gamers as a subculture (BMM 1st sem) Please tell what you think of it. *www.youtube.com/watch?v=Q-nUSjTtJGA Thanks
  5. siddes

    Recommend book for learning HTML, CSS.

    b213.net download as many as you want
  6. siddes

    How to stop form submission redirecting to PHP page?

    Found the problem. Its in the jQuery code $.post("q.php", {'uname: username, ucomment: usercomment'}, alert("done")); The values passed to the php file should not contain inverted commas $.post("q.php", {uname: username, ucomment: usercomment}, alert("done"));
  7. siddes

    How to stop form submission redirecting to PHP page?

    Well, I'm having a little problem. The code from where I submit my comments is <html> <head> <script src="jquery.js"> </script> <script> $(document).ready(function() { $('#submitForm').bind('submit', function() { var username = $('#uname').val(); var usercomment =...
  8. siddes

    Little Javascript/Cookie Help..

    You cannot store the cookies in a file through Javascript, unless you use JScript and your target uses Internet Explorer.
  9. siddes

    How to stop form submission redirecting to PHP page?

    Hi, I'm working on a comments system and whenever I click on submit, the page redirects to the php file. I don't want this happening, I just want to submit my data to the file using ajax, have the php file write that data to another file without any kind of response except success or failure...
  10. siddes

    Shutdown pc with a Timer

    To all those who said "Nice trick" Learn batch commands and basic DOS programming. Stuff like this has been going on for ages. I personally have been using it to start uTorrent at 2 AM, start downloading and then stop at 7:56 AM and shutdown the PC.
  11. siddes

    Mainstream Value PC Builder's Guide

    Nice essay. Clearly written.
  12. siddes

    Editing website content online

    Rohan's right, you need a CMS. In my experience, Joomla is the best. The March 08 Digit even has a 200+ mb video on how to get a basic site up and running in 30 mins, using Joomla.
  13. siddes

    Is this a spyware infection?

    Can you tell us the path in that registry key in the second image you've put up. The path is more important here. By the way, from the icon it looks like a .bat or .cmd file, most probably in c:\windows or c:\windows\system32
  14. siddes

    Need to backup IE7 files, Plz Guide..

    You can't directly copy paste, IE files since you don't know which DLLs it uses. Guess you'll have to start all over with IE6, though I recommend you switch to FireFox
  15. siddes

    Do you know about any sites offering sorcecodes, controls etc?

    Get them API books on ebookee.com
  16. siddes

    Need to upgrade/buy new PC for under 15k

    Hey, I just saw this ad a couple days back for an eSys Wizard PC. It had 300GB HDD, and 2GB ram for something like 9 to 10 k, but excluding the monitor and Windows. i think your friend should go for that.
  17. siddes

    is this possible??

    Use Folder Lock And this virus thing of yours will not work with bigger files. Lets say your music or photo collection.
  18. siddes

    Build me a KILLER GAMING pc

    I'm not kidding. I have this Photoshop book written by some chap who works for Adobe themselves. And he's gone on to describe how Photoshop behaves with 2GB, 4GB, above 4GB and 16GB RAM. Then he coolly mentions that any serious graphic designer should at least have 16GB ram with 2 Core2Duos or...
  19. siddes

    Ghost in windows

    So when Bush is caught a few years down the line, all news articles with the phrase 'Bush hid the facts' will appear as |||||||| ??
  20. siddes

    Suggestion for college project

    I'd made a killer database system using QBASIC way back in class 10. And oh, what graphics I had included. Those were the days. QBASIC is still killer.
Top Bottom