Search:

Type: Posts; User: Harsh Gupta

Page 1 of 13 1 2 3 4

Search: Search took 0.23 seconds.

  1. Poll: Re: tyrannosaurus rex vs spinosaurus aegypticus

    John Hammond :bigyello:
  2. Replies
    14
    Views
    1,873

    Re: Django book

    umm .... and which section of that page gave you this idea?
  3. Replies
    14
    Views
    1,873

    Re: Django book

    I would not mind that same person teaching me how to display that onto a webpage using Python and Django framework. :P
  4. Replies
    14
    Views
    1,873

    Re: Django book

    Yes, I already went through it. In my opinion, I didn't find that tutorial very useful. In fact, I found this online book, djangobook.com better than that so called official tutorial.

    Also, one...
  5. Replies
    14
    Views
    1,873

    Django book

    Hello all,

    @Mods,
    Sorry, if this post doesn't belong here. I was not sure where to put this and also I need some urgent answer to my question. If there is some other appropriate place for this...
  6. Re: [SERIOUS] Free YouTube downloader program?

    Try JDownloader. http://jdownloader.org/.

    It is somewhat annoying to use initially, but once you get a hang of it, easy as riding a bike.

    To improve the downloading speed, increase the Max....
  7. Re: display Stored Procedure in Gridview

    You need to give some value to ID. Say:
    int ID = 1; //or some input from user
    cmdGrid.SelectCommand.Parameters.Add("@iID", SqlDbType.Integer, 5, ID);

    //or simply...
  8. Replies
    31
    Views
    13,098

    Re: The most amazing VB6 Code ever

    Shouldn't it be in either VB6 Codebank or General Programming discussion? Chit-chat seems really inappropriate.

    Although, none of my business since you are a moderator. Just giving my 2 cents.
  9. Re: [SERIOUS] Need some final year project topics for Computer Science

    Background segmentation (sometimes also called Foreground segmentation or Background-Foreground differentiation) in videos.

    Basically, we try to highlight foreground objects in videos by encoding...
  10. Replies
    7
    Views
    714

    VS 2005 Re: Gaps between my images?

    Hi,

    Can you post a screenshot of the page? Also, if possible, post the markup, CSS and any form of code (JS or server-side) that in some way modifies the style of images and/or div.
  11. Replies
    8
    Views
    1,381

    VS 2005 Re: Clearing the cache all the time???

    Hi,

    It's been a long time since I used .Net in any form. Let's see if my memory still serves right. Still a long shot.

    Although, if you change any file like css, js, images etc. on the server,...
  12. Thread: Good Dog!

    by Harsh Gupta
    Replies
    9
    Views
    703

    Re: Good Dog!

    More of a Lazy Girl than a Good Dog! :bigyello:
  13. Re: how to make multiple web app instances read the same file?

    Apart from using locks, if the file contents are not changing frequently, you may try caching it. Reading from cache is much faster than reading from file.

    @Gary, have you tried thread...
  14. Replies
    4
    Views
    622

    Re: Seeing The Sunrise

    I thought you were from India? Specifically from Mumbai?

    If you want to buy original edition, then it is going to cost you a lot, whether you buy from Amazon or other online vendors, including...
  15. Re: how to make multiple web app instances read the same file?

    Are you closing the file once you read its content? If you are not, then 1 session will keep the file open (meaning that file is locked for that session) and other sessions will not be able to use...
  16. Replies
    5
    Views
    2,697

    3.0/LINQ Re: C# Casting Issues

    Try:

    ((BonusBox)bonusBoxes[0]).getPosY()

    In fact, you should not use ArrayList. Use generic List instead. That way, casting would not be needed:

    List<BonusBox> bonusBoxes = new...
  17. Replies
    11
    Views
    4,418

    Re: call stored proc asynchronously

    Calling a stored procedure asynchronously inadvertently means calling a server-side function asynchronously. So using regular AJAX call to a server-side function in which you write logic to execute...
  18. Poll: Re: How Long Before mendhak Posts In Chit Chat Again?

    I guess a beautiful (prince)ss kissed him and he is no longer a 3-eyed froggy. :afrog:
  19. Windows 7 - Operating System not found and BIOS not detecting HDD

    Hello,
    I have HP Pavilion dv9000 series laptop and yesterday it suddenly stopped working (while I was just chatting) and rebooted itself. Upon rebooting, first it stuck at initial screen (BIOS one)...
  20. Replies
    27
    Views
    2,064

    Re: India Wins The World Cup !!

    What?!? You too are wasting 9 other pizzas.
  21. VS 2008 Re: BC30506: Handles clause requires a WithEvents

    Place it with all other declarations of controls. It could be on top of your page, or in Page_Init function, depending on the structure of your page.

    Also, it could be possible that this control...
  22. Re: What is the meaning of Open Source Softwares?

    http://fc04.deviantart.net/fs71/f/2010/141/1/d/Facepalm_Cat___Motivational_by_L4D2_fan.jpg
    .
    .
    .
    .
    .
    .
    I should get some sleep now!!!
  23. [RESOLVED] What is the meaning of Open Source Softwares?

    Hello all,

    I was reading an article by Steve Yegge titled "Wikileaks To Leak 5000 Open Source Java Projects With All That Private/Final Bullshit Removed".

    My basic understanding for Open-Source...
  24. Replies
    3
    Views
    619

    Re: Modern file hosting sites?

    Github!

    Edit: Oh, I am not using it right now, but planning to use it in near future.
  25. Replies
    3
    Views
    780

    VS 2010 Re: RegEx not splitting string

    Can you post the string you are trying to split?
  26. Replies
    6
    Views
    1,699

    Re: Wikipedia type URL

    Most probably .Net Fx 4.0 and SharpDevelop.
  27. Replies
    6
    Views
    1,699

    Re: Wikipedia type URL

    I believe the answer lies in URL rewriting. Found this example.

    I have yet to try it though.

    Any more ides/thoughts/sample would be much appreciated.
  28. Replies
    6
    Views
    1,699

    Wikipedia type URL

    Hello,

    It's been a long time I did any web development, and I feel I need to brush up few things.

    I may have known this before but can't seem to recall it right now. Until now, a typical URL...
  29. Replies
    17
    Views
    1,840

    Re: [SORT OF URGENT] List of manga

    You can call them (Bolen books, that specific store) and ask if somebody could help you.
  30. Replies
    1
    Views
    1,155

    Netbooting Ubuntu (Minimal Desktop)

    Hello,

    Happy New Year to you all !!!

    Ok, my current scenario is that I need to install Ubuntu (Minimal Desktop Ubuntu) on my system. Also, I am planning to install Arch-Linux too.

    Firstly,...
  31. Replies
    36
    Views
    2,603

    Poll: Re: Important: Fold or scrunch?

    :bigyello:

    I actually searched before posting here. So I cannot take the credit for guessing, I guess. :ehh:
  32. Replies
    36
    Views
    2,603

    Poll: Re: Important: Fold or scrunch?

    I guess, A GUESS, OP is talking about toilet paper. Like how do you use them, by folding or scrunching them before using.

    EDIT: I am not a native English speaker.
  33. Replies
    3
    Views
    975

    Re: Natural Language Processing

    And I am loving that too. :p
  34. Replies
    3
    Views
    975

    Natural Language Processing

    Studying right now....... and it rocks !!! :cool:

    It helped my GPA take a lesson in skydiving though. :(

    Oh, and Python is awesome, loving it. :thumb:
  35. Replies
    18
    Views
    3,729

    Re: AMD Phenom II Quad Core (P920)

    I diagree with that too. My friend had a Sony Vaio which doesn't looked like it is all about looks and not performance. I found the look to be too ordinary to have good performance. But it sucked my...
  36. Replies
    18
    Views
    3,729

    Re: AMD Phenom II Quad Core (P920)

    I do favor desktops but laptops have their own advantages. Collaboration is one that comes to mind.

    Anyways, I am student right now and may move from here within next 5-6 months. At this point of...
  37. Replies
    18
    Views
    3,729

    Re: AMD Phenom II Quad Core (P920)

    Actually I was interested in getting an Asus Laptop but couldn't find anything decent within my budget.

    I am not interested in getting a Duo-Core when I can get a Quad-Core in same price range.
    ...
  38. Replies
    18
    Views
    3,729

    Re: AMD Phenom II Quad Core (P920)

    This system has 6 Lithium-ion cells battery. It is possible to increase battery life by replacing it with 8 cells or 9 cells battery. I recall that there is also 12 cell battery option but I guess...
  39. Re: [Serious] What do you do to improve concentration ...

    @NSA,
    I could be depressed because I always find it difficult to find a job. Blame it on my bad luck, but me being an introvert makes it difficult for hiring manager to select me (I guess they can...
  40. Re: [Serious] What do you do to improve concentration ...

    Hello,

    Sorry for so late post. Been unwell for past few days.

    @penagate,
    I can say that I am not that competitve but avoids working in groups. I have never been a party person, doesn't like to...
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width