• CIPWTTKT&GC V0x0F (v15): Scoot and Deeps Drama Diaries
    25,625 replies, posted
How do I boot windows 7 from an external HDD on an iMac?
[QUOTE=chrishind10;32253209]How do I boot windows 7 from an external HDD on an iMac?[/QUOTE] If you're lucky, you should just be able to hold the Option key during bootup to bring up the little boot menu, where you should be able to select your drive. But this rarely works due to shit support for "legacy" OS booting. You can also try [url=http://refit.sourceforge.net/]rEFIt[/url]..
I have a USB2.0 150Gb external drive with windows 7 on, do I just hit option + command + shift + delete and pick my drive out to boot from?
[QUOTE=Derpmeifter;32251572]no? that only works if the website actually supports a secure connection last year just adding https worked even if it wasn't secure[/QUOTE] obv
[QUOTE=Brt5470;32252960]I'm on hold with dell. trying to get the u3011 with two discounts. "please be under 1200...." [editline]12th September 2011[/editline] Welp, I bought it. : |[/QUOTE] Why would anyone even buy a monitor for $1200? I know that you do some fancy video-editing stuff, but still...
[QUOTE=VistaPOWA;32253735]Why would anyone even buy a monitor for $1200? I know that you do some fancy video-editing stuff, but still...[/QUOTE] You need to experience these kind of monitors to understand it. I had debated between getting three 27" 120hz monitors, but I wanted color clarity when I was doing my photo editing and video editing. It's not really that overpriced when you consider the size of a 30" LCD, then consider than it's IPS, then you consider it has twice the resolution of most people's 1080p monitors, and you consider the color ranges it can produce. It's expensive but worth it. Edit: Ultimately, I hope to own three of these kinds of monitors. I know 120hz 2D is amazing , but the color accuracy started bugging me on my TN panel at home, but my TN panel at home still is a fantastic monitor. I recommend the 2509m.
Fucking libSDL... took me three days just to get it to link properly (the only SDL code I had was "#include <SDL.h>"). Kept getting retarded "WinMain() Undefined" errors. I still don't entirely know how I fixed it.
[QUOTE=Brt5470;32253970]You need to experience these kind of monitors to understand it. I had debated between getting three 27" 120hz monitors, but I wanted color clarity when I was doing my photo editing and video editing. It's not really that overpriced when you consider the size of a 30" LCD, then consider than it's IPS, then you consider it has twice the resolution of most people's 1080p monitors, and you consider the color ranges it can produce. It's expensive but worth it. Edit: Ultimately, I hope to own three of these kinds of monitors. I know 120hz 2D is amazing , but the color accuracy started bugging me on my TN panel at home, but my TN panel at home still is a fantastic monitor. I recommend the 2509m.[/QUOTE] I'm not a great user of photo editing/anything that requires good colour reproduction but I does bug me that since I bought my two U2312 Dells my middle older Dell monitor (not IPS) looks off.
On the subject of monitors, I love my u2311h's but they do ghost quite a bit, considering getting a 2ms 23 inch TN panel to put in between my two 2311h's, eyefinity AND a non-ghosting main screen to game on. win/win at a low price. suggestions for said 23" TN panel anyone?
So, you want Linux? But you also want to run Windows? Virtualization bitch, boom. [img]http://i.imgur.com/UvO1Y.png[/img] Too bad it doesn't work quite as well as I was hoping, looks like I'll have to kill that experiment. I'll probably try switching to Windows as the host.
Is that CoLinux?
[QUOTE=esalaka;32254440]Is that CoLinux?[/QUOTE] I think it's VirtualBox's seamless mode.
[QUOTE=sim642;32254453]I think it's VirtualBox's seamless mode.[/QUOTE] Thanks, now I gotta try it!
Someone halp please, I'm trying to make a php script that counts to a number and then adds up those numbers. The adding up isn't working :v: There's a also a '+' too many that I can't seem to get rid of :saddowns: [PHP]<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html;charset=utf-8" > <title></title> </head> <body> <?php $teller = 0; $getal = 13 ; echo ('$getal = ' . $getal . " <br><br>"); while ($teller <= $getal){ echo ("$teller + " ); $teller ++; } echo ("= "); ?> </body> </html>[/PHP] it outputs as [HTML]$getal = 13 0 + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + 11 + 12 + 13 + = [/HTML]
I figured this thread out of all the places (more like GMan cough) would know: Is the duration of signals in Morse code defined by some standard?
[QUOTE=nikomo;32256102]I figured this thread out of all the places (more like GMan cough) would know: Is the duration of signals in Morse code defined by some standard?[/QUOTE] As far as I know, no. There's standards for how long they should be relative to each other (a dash should be four times as long as a dot, IIRC), but the absolute speed is variable. However, you should probably check Wikipedia.
[QUOTE=mobrockers2;32254732]Someone halp please, I'm trying to make a php script that counts to a number and then adds up those numbers. The adding up isn't working :v: There's a also a '+' too many that I can't seem to get rid of :saddowns: [PHP]<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html;charset=utf-8" > <title></title> </head> <body> <?php $teller = 0; $getal = 13 ; echo ('$getal = ' . $getal . " <br><br>"); while ($teller <= $getal){ echo ("$teller + " ); $teller ++; } echo ("= "); ?> </body> </html>[/PHP] it outputs as [HTML]$getal = 13 0 + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + 11 + 12 + 13 + = [/HTML][/QUOTE] Store the values in an array, add them all up at the end.
[QUOTE=Blaberry;32256201]Store the values in an array, add them all up at the end.[/QUOTE] What? No, that's a bad solution. Use an accumulator variable: [code]$teller = 0; $getal = 13 ; $total = 0; echo ('$getal = ' . $getal . " <br><br>"); while ($teller <= $getal){ echo ("$teller + " ); $teller++; $total += $teller; } echo ("= ");[/code] Or something like that (my PHP is rusty). Much more memory-efficient (something I learned the hard way, by doing such a calculation for several thousand numbers).
Scrapping Morse code because I can't be arsed to learn it. However, I figured out a system everyone in my class already knows. Testing shit in Minecraft with redstone.
[QUOTE=gman003-main;32256285]What? No, that's a bad solution. Use an accumulator variable: [code]$teller = 0; $getal = 13 ; $total = 0; echo ('$getal = ' . $getal . " <br><br>"); while ($teller <= $getal){ echo ("$teller + " ); $teller++; $total += $teller; } echo ("= ");[/code] Or something like that (my PHP is rusty). Much more memory-efficient (something I learned the hard way, by doing such a calculation for several thousand numbers).[/QUOTE] Today I learned.
[QUOTE=Derpmeifter;32250443]things are blocked for the weirdest things on this filter. TPB is blocked for pornography instead of p2p, deviantart is blocked for pornography, and so was facepunch until it was changed to Message Boards a short while ago, which can just be ignored. Googling the name of a popular game returns a block page, as does anything related to usenet. It's much better than last year, though, when you could bypass any of them by adding "https://" to the beginning of a URL.[/QUOTE] FUCK THEY FIXED THE HTTPS:// WORKAROUND ON M86?! Fuccccccck. Well there goes YouTube.
[QUOTE=Blaberry;32256201]Store the values in an array, add them all up at the end.[/QUOTE] Haven't learned array's yet so are not allowed to use them for assignments :v:
[QUOTE=Blaberry;32256456]Today I learned.[/QUOTE] Yeah, the experience I had was "write code that freezes up the computer for over an hour". Of course, I was dealing with a lot more numbers (couple million, probably - I don't remember exactly what I was doing, but I do remember it was dealing with permutations and had a lot of nested for() loops). Rewrote it to update a counter, it ran in under a second.
[QUOTE=gman003-main;32256285]What? No, that's a bad solution. Use an accumulator variable: [code]$teller = 0; $getal = 13 ; $total = 0; echo ('$getal = ' . $getal . " <br><br>"); while ($teller <= $getal){ echo ("$teller + " ); $teller++; $total += $teller; } echo ("= ");[/code] Or something like that (my PHP is rusty). Much more memory-efficient (something I learned the hard way, by doing such a calculation for several thousand numbers).[/QUOTE] Thanks, but it looks like something went wrong :v: [code]$getal = 13 0 + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + 11 + 12 + 13 + = 105[/code] Because 0 + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + 11 + 12 + 13 = 91 [code]$getal = 12 0 + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + 11 + 12 + = 91[/code] It seems to count one too many??
[QUOTE=mobrockers2;32256671]Thanks, but it looks like something went wrong :v: [code]$getal = 13 0 + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + 11 + 12 + 13 + = 105[/code] Because 0 + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + 11 + 12 + 13 = 91 [code]$getal = 12 0 + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + 11 + 12 + = 91[/code] It seems to count one too many??[/QUOTE] [php] $teller = 0; $getal = 13 ; $total = 0; echo ('$getal = ' . $getal . " <br><br>"); while ($teller <= $getal - 1){ echo ("$teller + " ); $teller++; $total += $teller; } echo ("= "); [/php] Might fix it.
[QUOTE=pdkm931;32256769][php] $teller = 0; $getal = 13 ; $total = 0; echo ('$getal = ' . $getal . " <br><br>"); while ($teller <= $getal - 1){ echo ("$teller + " ); $teller++; $total += $teller; } echo ("= "); [/php] Might fix it.[/QUOTE] Tried that before, while it does work it also cuts the 13th number from the echo [code]$getal = 13 0 + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + 11 + 12 + = 91[/code]
[QUOTE=mobrockers2;32256671]Thanks, but it looks like something went wrong :v: [code]$getal = 13 0 + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + 11 + 12 + 13 + = 105[/code] Because 0 + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + 11 + 12 + 13 = 91 [code]$getal = 12 0 + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + 11 + 12 + = 91[/code] It seems to count one too many??[/QUOTE] Figured it out - it's incrementing it AFTER it prints it. [code]$teller = 0; $getal = 13 ; $total = 0; echo ('$getal = ' . $getal . " <br><br>"); while ($teller < $getal){ $teller++; echo ("$teller + " ); $total += $teller; } echo ("= ");[/code] That should do it.
Redstone can choke on a fucking dick.
[QUOTE=gman003-main;32256859]Figured it out - it's incrementing it AFTER it prints it. [code]$teller = 0; $getal = 13 ; $total = 0; echo ('$getal = ' . $getal . " <br><br>"); while ($teller < $getal){ $teller++; echo ("$teller + " ); $total += $teller; } echo ("= ");[/code] That should do it.[/QUOTE] That does exactly the same thing as the -1 pdkm suggested, doesn't work.
I don't want to sound arrogant, but... that seems like a really, really simple problem. [php] $getal = 13; $totaal = 0; for ($i = 1; $i <= $getal; $i++) { $totaal += $i; echo $i; if ($i < $getal) { echo ' + '; } } echo " = $totaal"; [/php]
Sorry, you need to Log In to post a reply to this thread.