Recent content by nbaztec

  1. nbaztec

    once again i struck with pointers

    printf ("\n%d %d %d %d\n ", j, **k, *(k[0]+1), *k[3]) ; And use %ld instead of %d.
  2. nbaztec

    Big O notation

    You are correct, for an algorithm to not have a Big-Oh() or Theta(), it should be monotonically increasing in size n, i.e. not have an upper bound.
  3. nbaztec

    [For Sale] Cooler Master Elite 310 Cabinet + LG ODD

    [SOLD] Cooler Master Elite 310 Cabinet + LG ODD SOLD!! Model number and details: Elite 310 Cabinet Perfect condition. No scratches. No grease. No nothing. Working USB headers and Jacks Original carton and everything within (screws) LG ODD IDE. Working condition. Date of...
  4. nbaztec

    Build Your Rig! (XBlade)

    If you have a item/price/spec list of any items to update just send me over. Nothing to do with the mag :P
  5. nbaztec

    Build Your Rig! (XBlade)

    No criteria, just some members would occasionally help me with maintaining the list of products (since I fail to keep myself updated with the current h/w).
  6. nbaztec

    Build Your Rig! (XBlade)

    Even that requires quite an effort with new h/w releasing every fortnight. Nothing much I can do as of now.
  7. nbaztec

    Build Your Rig! (XBlade)

    Yeah, sorry about that. Lost out on volunteers long time back. As it turns out, maintaining a list of latest prices is a daunting task.
  8. nbaztec

    explain the below program.....

    Ok, this is retarded. Anyone found giving that example as h/w should be shot in the loins. First the explanation part, and to understand that, you need to have a brief idea of what pointers are: char *p = "Hello" is stored as: |H|e|l|l|o| here p points to the first memory location...
  9. nbaztec

    language for Web development

    ^this. But please don't throw around words like "advanced" that loosely - it's misleading.
  10. nbaztec

    Apple accuses Polish online food store A.pl for trademark infringement

    *www.youtube.com/watch?feature=player_embedded&v=wFeC25BM9E0
  11. nbaztec

    language for Web development

    What the ..? This is like saying C# is more advanced than C. Or a hammer is better than a pair of pliers. L stands for Linux. Linux v/s Windows as a web server, you decide which is better. The only thing PHP lacks is a better organization of function space (which is a humble mess), other than...
  12. nbaztec

    Post HTML5, Javascript & CSS3 queries here

    $("select").append("<option>" + i + "</option>"); The reason being your selector is incorrect. $("select option") selects each option $("select option").before("<option>" + i + "</option>"); inserts the new option before each option. So your code grows in complexity from O(n) to O(2^n) and...
  13. nbaztec

    {Help needed} N0ob needs help developing a web browser

    On the contrary, you have a text reader, which sends HTTP requests and yields the content. It is not a browser, the same thing can be achieved using `curl google.com` on *nix. What you do need to figure out is the exact thing you are having trouble with, i.e. rendering and for that you'll need...
  14. nbaztec

    sequence in Javascript

    Well yes and no. Every language serves a specific purpose, in case of JavaScript, yes, it's primarily used for client side scripting to enrich HTML pages. But who's to know if someone might need some algorithm to say parse input/yield a layout that resembles that pattern. The programmer ought to...
Top Bottom