User Profile

Collapse

Profile Sidebar

Collapse
themadjester
themadjester
Last Activity: Jul 22 '09, 02:44 AM
Joined: Mar 21 '08
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • themadjester
    started a topic simpler html/JS --> php conversion
    in PHP

    simpler html/JS --> php conversion

    Hello,

    I am fairly new to web and am making a page I am happy with, however I am wonding if my method is flawed. Currently what I do is load everything into a monster sized sting in my php script like:
    Code:
    function printContent(){
    $string = "\n<div id='" . $someID . "\n'>" . $content . "\n</div>\n";
    $string .= "more stuff here...";
    echo $string;
    }
    ...
    See more | Go to post

  • If anyone could answer any of these questions it would help in trouble shooting ;)
    1) Is there any significant difference between VGA and DVI protocall (for the given circumstance)? Basically is there a reasonable possabilityDVI is my problem, or is that kind of thing unlikely.

    In hardware device manager, under monitor I have three display devices listed:
    a) Default monitor
    b) Plug and play monitor
    c) Default...
    See more | Go to post

    Leave a comment:


  • yea, its a tricky thing. Part of the problem I believe is drivers that are stepping on each others toes since they share so many settings

    When I was researching the problem, on one forum for dell users some people solved a similar problem by changing their windows/nvidia settings in a special order in relation to their function keys built into the laptop... Did not solve my problem however.

    Interresringly when my computer...
    See more | Go to post

    Leave a comment:


  • I feel silly having not mentioned this despite my wall of text: Windows XP, fully updated
    See more | Go to post

    Leave a comment:


  • themadjester
    replied to suggest me some tool
    I am learning too.

    I recommend for tools: notepad++. Everything is written in plain text, the files are saved as the extensions. As mentioned this is the best way to learn. You could, if you really wanted to everything in windows notepad.
    If you use JavaScript get the firebug addon for firefox and use to check runtime errors etcetera

    For making multiple pages I suggest you use PHP. Or use javascript and do everything...
    See more | Go to post

    Leave a comment:


  • themadjester
    replied to Hanging System
    if you have been doing any over clocking, voltage changing etc... make sure your bios settings are all default. A processor crash will cause the system to hang (or so I found when I under volted my laptop).

    This just another thought too: check your memory. You could try changing it and seeing if the system becomes stable, or running a diagnostic tool
    See more | Go to post

    Leave a comment:


  • themadjester
    replied to Sound is not working in Windows XP
    IF that does not work... make sure you reboot... it seems obvious but if you like to hibernate your machine this could be overlooked, I have seen it happen that for mysterious PC reasons sound cuts out until a restart
    See more | Go to post

    Leave a comment:


  • Trouble configuring duelview with new LCD panel

    So, to increase efficiency, and to get away from my old poorly lit laptop monitor (LT) I purchased a very nice LG 23' LCD. The screen is nice.. and I am happy with it except for one thing:

    I am unable to set it as the primary display in duelview (which is kind of important)

    In a word it is confounding.

    the system is a Toshiba P100 with a Gforce 7200 go

    I can use the new LCD as on its own...
    See more | Go to post

  • I am now somewhat certain that this occurs only when the wireless card is enabled
    See more | Go to post

    Leave a comment:


  • It was installed. As suggested I uninstalled it however the problem persists. I am using XP as I mentioned but does anyone here know how this problem manifests itself under vista?
    I ask because I am assuming no other network users have this problem, however perhaps Vista is not so verbose as XP.
    See more | Go to post

    Leave a comment:


  • nope. death before vista IMO >.>
    See more | Go to post

    Leave a comment:


  • Yea, I tried that when the issue began.

    I have tried both using a static and a dynamic IP address, I get the same error both ways. I have a done the ipconfig -release/renew stuff before.

    Currently I am using a static IP, and I know there is no address conflict with the address as it is out of the DHCP range of the router, and no one else could/ would be using the address (I have changed it a number of times to be sure)....
    See more | Go to post

    Leave a comment:


  • I had though i replied to this half a week ago but network connection is incredibly unstable and my reply apparently did not make it.

    by servers I believe you mean a mail server or a print server or some general machine that is doing the routing.
    luckily to simplify things this is not the case. I am however dual booting and have apache installed on both partitions if you mean that kind of server.

    I have changed...
    See more | Go to post

    Leave a comment:


  • peristsant (clientside?) ip address conflict

    This is weird, I know what an IP address conflict is, and how to avoid it, but this problem seems atypical - and apparently client side?

    Basically I have a router internet network, it is DHCP and the range [was] 100-199

    Now, to my knowledge myself and everyone else on the network is using DHCP (non techies).

    some things I have tried are:
    - I changed the address range from 100-199 to 150-199 to force my...
    See more | Go to post

  • themadjester
    replied to excel equation scientific notation
    &gt;.&lt; ugh

    And that I understand since math in high school. however

    regular SN form is:

    1.8*10^4 or 1.8E4... etc

    But if you look at it (more closely at the first term in the polynomial) you will see that this show as
    -6E-06E^6 .
    I say, this makes very little sense.
    it would work out to be -6*10^1 - 06*10^6
    or
    -6*10*-06*10^6 which also means...
    See more | Go to post

    Leave a comment:


  • themadjester
    started a topic excel equation scientific notation

    excel equation scientific notation


    (hover cursor over box to see image of formula that cannot be copied correctly from excel (rabble rabble rabble))

    So I made a 6th degree equation from a trendline in excel...

    If anyone can tell me what this is supposed to mean they can have a cookie* >.>. I know scientific notation, but it seems to me that regular SN is not good enough for microsoft, I mean, why would they put another value after the E? thats...
    See more | Go to post

  • themadjester
    replied to can i protect folder in usb drive.
    Keep in mind however that the file name can be seen as I understand it so perhaps you would want to make the names vague or perhaps rar the files before zipping them
    See more | Go to post

    Leave a comment:


  • themadjester
    replied to basic
    in C
    great to know ;) I just saw some people had written state machines without so I didnt want to learn to apply an unnecessary step.

    Thanks everyone for the help, and any tips on learning optimal structure for OOP are of coarse appreciated.

    Cheers
    See more | Go to post

    Leave a comment:


  • themadjester
    replied to basic
    in C
    so I have been going over this some more because I am very much beginning to see how advantageous this [using a state machine] can be, especially if I can have the switch move between output states and read in states quickly, updating the list of outputs making my program better handle simultaneous inputs.

    That being said I am having a problem. I sort of got to it above and thought it was a simple case of to break or not to break......
    See more | Go to post

    Leave a comment:


  • themadjester
    replied to basic
    in C
    I hadn't even known one could change the focus of the switch in this way. Pretty neat, maybe the state machine stuff they taught me in school is in some way useful ;)

    question though:
    I was going through the c implementation you added (to make sure it made sense to me before I got to OO)
    I was confused by "state = 0" since there is no case 0: or default:
    Also I had to remove break; since it was breaking from...
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...