• Computer illiterate people who think they know things V8: Mandrith appreciation Station.
    4,999 replies, posted
[QUOTE=thf;27195206]Some computers at my school still use Firefox [b]2.0[/b][/QUOTE] Still beats IE :v:
[QUOTE=kaze4159;27194512]Remember that Sparkbrowser thing? [url]http://sparkbrowser.com/[/url] Holy mother of god he's using a barely edited template [editline]5th January 2011[/editline] [url]http://christopherreevesofficial.com/[/url] Even this uses the same template, with even less edits[/QUOTE] I don't know why but that "Spark-OS" always seems to annoy me when I read about it.
Okay, I am going to try Sparkbrowser. How big is the setup of other browsers? Under 40mb? Firefox 3.6 install file is abut 10mb. I know that Reeves included something with it so it would run. But why? WHY? Edit: There are no agreement and stuff in installer. And also : [img]http://i526.photobucket.com/albums/cc350/Hentsu/sparkfail3.png?t=1294164843[/img] Edit2: [img]http://i526.photobucket.com/albums/cc350/Hentsu/sparkfail4.png?t=1294165049[/img] FUCK YOU, I AM NOT GOING TO DOWNLOAD MORE STUFF! (Media tagged for rage) [media]http://i284.photobucket.com/albums/ll37/Geesaroni/RageFace.png[/media] Edit3: In Sparkbrowser. (Media tagged for Sparkshit) First look/homepage. [media]http://i526.photobucket.com/albums/cc350/Hentsu/sparkbrowser1.png[/media] And trying to go to facepunch.com [media]http://i526.photobucket.com/albums/cc350/Hentsu/sparkfail5.png[/media] Edit4: Search fail or smth. It is hidden. [media]http://i526.photobucket.com/albums/cc350/Hentsu/sparkfail6.png [url]http://i526.photobucket.com/albums/cc350/Hentsu/sparkfail7.png[/url] [/media] Also, Trying to go to like an page with .ee or .se or .ru etc. wont go to the page, but will go to Google.´ Edit5: Should I do a video about how slow it is? And how hard is it to use it with Sparkshit smart search on? Also, You aren't able to go to Wikileaks. Cool :downs:
Apparently he thinks wikileaks hacks banks :downs:
Sparkbrowser almost crashed while loading LMAO Pics. Would somebody help me with searching the page in LMAO pics (From 70-72, can't remember in which one it was) the superduper U JELLY spam? Where somebody posted 10000x10000 U JELLY pics. Or something like that.
Just tried Sparkbrowser. Sluggish piece of crap. I bet he only put in a WebBrowser Control and binded the buttons to it. Also, this URL autocomplete thing is a piece of crap. It doesn't suggest, it just takes control. If I type Fac, then it automatically loads Facebook. Tomorrow, I will make a better browser than this piece of shite.
Fucking sparkbrowser!!! I press enter, it goes to google, anywhere! Even when typing, trying to use search or when going to a site. [editline]4th January 2011[/editline] [QUOTE=VistaPOWA;27197387]Just tried Sparkbrowser. Sluggish piece of crap. I bet he only put in a WebBrowser Control and binded the buttons to it. Also, this URL autocomplete thing is a piece of crap. It doesn't suggest, it just takes control. If I type Fac, then it automatically loads Facebook. Tomorrow, I will make a better browser than this piece of shite.[/QUOTE] Go to settings and turn off Sparkbrowser Smart Search.
[QUOTE=tratzzz;27197401]Fucking sparkbrowser!!! I press enter, it goes to google, anywhere! Even when typing, trying to use search or when going to a site. [editline]4th January 2011[/editline] Go to settings and turn off Sparkbrowser Smart Search.[/QUOTE] Already uninstalled. I better start working on the Facepunch Browser.
I am not going to uninstall it, but wait and see what people tell me to do with it. Other than uninstalling it. I mean like, testing security and shit. Wait, I need to download VirtualBox or smth then.
Oh shit. He made a video of the browser!! [media]http://www.youtube.com/watch?v=vGBkLeEZ6FA[/media]
228 bit encryption :wtc: Cant stop laughing at this guy, he can fill up a whole thread with all his content
[QUOTE=Tobba;27197977]228 bit encryption :wtc: Cant stop laughing at this guy, he can fill up a whole thread with all his content[/QUOTE] Yea there's that thread already. It's filled with his bullshit. :v: [url]http://www.facepunch.com/threads/1020084-Sparkbrowser-Your-new-favourite-web-browser!?highlight=sparkbrowser[/url]
I feel like he is making a parody because he says "Sick" and "win" so much. But then I realize he is being serious. See guys, now he is TRUE content. He thinks he knows what he is talking about, but is completely and utterly clueless.
Who's a rich fuck? Buy Spark OS so we can see how bad that is too.
Almost finished that "walking through a program in ludicrous detail" thread. Here, someone double-check my assembly: [code]_main: MOVL $4, %rax; load x1 to AX MOVL $1, %rbx; load x2 to BX MOVL $5, %rcx; load y1 to CX MOVL $1, %rdx; load y2 to DX CVTSI2SS %rax, %xmm0; convert AX to floating-point, store on XMM0 CVTSI2SS %rbx, %xmm1; convert BX to floating-point, store on XMM1 CVTSI2SS %rcx, %xmm2; convert CX to floating-point, store on XMM2 CVTSI2SS %rdx, %xmm3; convert DX to floating-point, store on XMM3 ; if (x2 > x1){ CMP %rax, %rbx; comparison JG xflip; if x1 > x2, goto xflip FLD %xmm0; push XMM0 (x1) onto FPU stack FLD %xmm1; push XMM1 (x2) onto FPU stack JMP do_x_sqrd; goto do_x_sqrd xflip: ; x1 is > x2 FLD %xmm1; push XMM0 (x1) onto FPU stack FLD %xmm0; push XMM1 (x2) onto FPU stack do_x_sqrd: ; do the (x2 - x1)^2 thing FSUB %st0, %st1; subtract and push result onto stack FLD %st0; push onto stack again FMUL %st0, %st1; multiply and push result onto stack ; clear unneeded registers, to prevent overflow FFREE %st1 FFREE %st2 FFREE %st3 FFREE %st4 ; (y2 > y1) ? CMP %rcx, %rdx; comparison JG yflip; if y1 > y2, goto yflip FLD %xmm2; push XMM2 (y1) onto FPU stack FLD %xmm3; push XMM3 (y2) onto FPU stack JMP do_y_sqrd; yflip: FLD %xmm3; push XMM3 (y2) onto FPU stack FLD %xmm2; push XMM2 (y1) onto FPU stack do_y_sqrd: FSUB %st0, %st1; subtract and push result onto stack FLD %st0; push onto stack again FMUL %st0, %st1; multiply and push result onto stack FADD %st0, %st6; add dx^2 and dy^2, and push it onto the stack FSQRT %st0; calculate the square root ; and we're done[/code] BTW, the thread is about 2300 words, if Notepad++ can count right.
[QUOTE=gman003-main;27199466]Almost finished that "walking through a program in ludicrous detail" thread. Here, someone double-check my assembly: [code]_main: MOVL $4, %rax; load x1 to AX MOVL $1, %rbx; load x2 to BX MOVL $5, %rcx; load y1 to CX MOVL $1, %rdx; load y2 to DX CVTSI2SS %rax, %xmm0; convert AX to floating-point, store on XMM0 CVTSI2SS %rbx, %xmm1; convert BX to floating-point, store on XMM1 CVTSI2SS %rcx, %xmm2; convert CX to floating-point, store on XMM2 CVTSI2SS %rdx, %xmm3; convert DX to floating-point, store on XMM3 ; if (x2 > x1){ CMP %rax, %rbx; comparison JG xflip; if x1 > x2, goto xflip FLD %xmm0; push XMM0 (x1) onto FPU stack FLD %xmm1; push XMM1 (x2) onto FPU stack JMP do_x_sqrd; goto do_x_sqrd xflip: ; x1 is > x2 FLD %xmm1; push XMM0 (x1) onto FPU stack FLD %xmm0; push XMM1 (x2) onto FPU stack do_x_sqrd: ; do the (x2 - x1)^2 thing FSUB %st0, %st1; subtract and push result onto stack FLD %st0; push onto stack again FMUL %st0, %st1; multiply and push result onto stack ; clear unneeded registers, to prevent overflow FFREE %st1 FFREE %st2 FFREE %st3 FFREE %st4 ; (y2 > y1) ? CMP %rcx, %rdx; comparison JG yflip; if y1 > y2, goto yflip FLD %xmm2; push XMM2 (y1) onto FPU stack FLD %xmm3; push XMM3 (y2) onto FPU stack JMP do_y_sqrd; yflip: FLD %xmm3; push XMM3 (y2) onto FPU stack FLD %xmm2; push XMM2 (y1) onto FPU stack do_y_sqrd: FSUB %st0, %st1; subtract and push result onto stack FLD %st0; push onto stack again FMUL %st0, %st1; multiply and push result onto stack FADD %st0, %st6; add dx^2 and dy^2, and push it onto the stack FSQRT %st0; calculate the square root ; and we're done[/code] BTW, the thread is about 2300 words, if Notepad++ can count right.[/QUOTE] :psyduck:
-double post-
[QUOTE=B!N4RY;27199708]:psyduck:[/QUOTE] Oh, come on. It's not that difficult to figure out. There's more comments than code!
[img]http://gyazo.com/cdee37590483fcf297b7d3483e8b587d.png[/img]
[QUOTE=Erp2;27199875][img_thumb]http://gyazo.com/cdee37590483fcf297b7d3483e8b587d.png[/img_thumb][/QUOTE] There's no way anyone is this stupid. You'd have to be brain-dead. Hell, even zombies show more intelligence than this.
I don't see any illiteracy other than "at" not being capitalized, but that's regular illiteracy, not computer illiteracy.
GOTOs? Learn structured programming, whippersnapper! :bahgawd:
[QUOTE=ButtsexV2;27200021]I don't see any illiteracy other than "at" not being capitalized, but that's regular illiteracy, not computer illiteracy.[/QUOTE] Well, then, go buy me a TV ad. Your budget is $500. Hint: you can't even buy a TV-quality camera for that much, and $500 would buy you about half a second of airtime on the Home Shopping Network. [editline]4th January 2011[/editline] [QUOTE=VistaPOWA;27200134]GOTOs? Learn structured programming, whippersnapper! :bahgawd:[/QUOTE] It's assembly - there is no other way. Literally.
[QUOTE=gman003-main;27200136]It's assembly - there is no other way. Literally.[/QUOTE] Bah, you already commented on it... VistaPOWA just showed how you can point out the illiterates. Especially when they just repeat things they hear on the forum without knowing what they are repeating.
he thinks his browser is ub3rl33t because he can make a program in vb.shit and put a web control in it WOWOWOWOWOWO
[QUOTE=gman003-main;27200136]Well, then, go buy me a TV ad. Your budget is $500. Hint: you can't even buy a TV-quality camera for that much, and $500 would buy you about half a second of airtime on the Home Shopping Network. [editline]4th January 2011[/editline] It's assembly - there is no other way. Literally.[/QUOTE] Oh dear, I forgot [/sarcasm].
[QUOTE=gman003-main;27200136]Well, then, go buy me a TV ad. Your budget is $500. Hint: you can't even buy a TV-quality camera for that much, and $500 would buy you about half a second of airtime on the Home Shopping Network.[/QUOTE] oh god I didn't see that part also skimming over your assembly, it all looked at least structurally correct but I didn't spend that much time reading it
[QUOTE=Squad;27200198]Bah, you already commented on it... VistaPOWA just showed how you can point out the illiterates. Especially when they just repeat things they hear on the forum without knowing what they are repeating.[/QUOTE] You guys fail to see sarcasm.
I'm writing an article on PC building for my school newspaper, and maybe after that XBox vs. PC gaming. Also, my teacher couldn't load some iBooks on her iPad, so one student suggested "Turn it off then turn it back on, sometimes you have too many files for it to load!" :frog:
CPU thread is out.
Sorry, you need to Log In to post a reply to this thread.