• Sparkbrowser - Your new favourite web browser!
    932 replies, posted
I told him about his broken download and failure to launch on his guestbook, and he DELETED the comment! LOL [editline]13th November 2010[/editline] Also, [CODE] private void ComboBox1_KeyUp(object sender, KeyEventArgs e) { if (true) { if (!(((Strings.InStr(this.ComboBox1.Text, ".net", CompareMethod.Binary) != 0) | (Strings.InStr(this.ComboBox1.Text, ".org", CompareMethod.Binary) != 0)) | (Strings.InStr(this.ComboBox1.Text, ".com", CompareMethod.Binary) != 0))) { if (!MySettingsProperty.Settings.autosearch) { this.ComboBox1.Text = this.ComboBox1.Text.Replace(" ", "_"); if (MySettingsProperty.Settings.wikipedia) { ((WebKitBrowser) this.TabControl1.SelectedTab.Controls[0]).Navigate("http://en.wikipedia.org/wiki/" + this.ComboBox1.Text); this.ComboBox1.Text = this.ComboBox1.Text.Replace("_", " "); } else { this.ComboBox1.Text = this.ComboBox1.Text.Replace("_", " "); this.ComboBox1.Text = this.ComboBox1.Text.Replace(" ", "+"); if (MySettingsProperty.Settings.Bing) { ((WebKitBrowser) this.TabControl1.SelectedTab.Controls[0]).Navigate("http://www.bing.com/search?q=" + this.ComboBox1.Text + "&go=&form=QBLH&qs=n&sk=&sc=8-4"); } else if (MySettingsProperty.Settings.Yahoo) { ((WebKitBrowser) this.TabControl1.SelectedTab.Controls[0]).Navigate("http://search.yahoo.com/search;_ylt=ApFTRjsulfhKYGFuXZvWsR6bvZx4?p=" + this.ComboBox1.Text + "&toggle=1&cop=mss&ei=UTF-8&fr=yfp-t-701"); } else if (MySettingsProperty.Settings.Youtube) { ((WebKitBrowser) this.TabControl1.SelectedTab.Controls[0]).Navigate("http://www.youtube.com/results?search_query=" + this.ComboBox1.Text + "&aq=f"); } else if (MySettingsProperty.Settings.AOL) { ((WebKitBrowser) this.TabControl1.SelectedTab.Controls[0]).Navigate("http://search.aol.com/aol/search?s_it=topsearchbox.search&v_t=comsearch50&q=" + this.ComboBox1.Text); } else if (MySettingsProperty.Settings.Commons) { ((WebKitBrowser) this.TabControl1.SelectedTab.Controls[0]).Navigate("http://us.yhs4.search.yahoo.com/yhs/search?fr=altavista&itag=ody&q=" + this.ComboBox1.Text + "&kgs=1&kls=0"); } else if (MySettingsProperty.Settings.yahooanswers) { ((WebKitBrowser) this.TabControl1.SelectedTab.Controls[0]).Navigate(" http://answers.yahoo.com/search/search_result;_ylt=Aq9hk9wFFlscOeyluHqhgMKe5HNG;_ylv=3?p=" + this.ComboBox1.Text + "&submit-go=Search+Y!+Answers"); } else { ((WebKitBrowser) this.TabControl1.SelectedTab.Controls[0]).Navigate("http://www.google.com/#hl=en&expIds=25657,26637,27059,27113,27219,27284,27357&sugexp=ldymls&xhr=t&q=" + this.ComboBox1.Text + "&cp=10&qe=d2lubmVycyBhcg&qesig=IucWJJcPYb8_6kdyo6gedA&pkc=AFgZ2tlFpJec6tP1gfxqHULXcYyGW9Nc7y37wvt6UeoanixC521EPLTX6PlCCkwtn8-uW1_3LOK3Iw-lQtVeTWE7rbRM4N0fUA&pf=p&sclient=psy&aq=f&aqi=g4g-o1&aql=&oq=" + this.ComboBox1.Text + "&gs_rfai=&pbx=1&fp=ddfbf15c2e2f4021"); } } if (((Strings.InStr(this.ComboBox1.Text, ".net", CompareMethod.Binary) != 0) | (Strings.InStr(this.ComboBox1.Text, ".org", CompareMethod.Binary) != 0)) | (Strings.InStr(this.ComboBox1.Text, ".com", CompareMethod.Binary) != 0)) { ((WebKitBrowser) this.TabControl1.SelectedTab.Controls[0]).Navigate(this.ComboBox1.Text); } } } else { ((WebKitBrowser) this.TabControl1.SelectedTab.Controls[0]).Navigate(this.ComboBox1.Text); this.ComboBox1.Text = this.ComboBox1.Text; this.TabControl1.SelectedTab.Text = this.ComboBox1.Text; } } this.ComboBox1.Text = this.ComboBox1.Text.Replace("+", " "); this.ComboBox1.SelectionStart = Strings.Len(this.ComboBox1.Text); this.TabControl1.SelectedTab.Text = ((WebKitBrowser) this.TabControl1.SelectedTab.Controls[0]).DocumentTitle; this.ComboBox4.Items.Add(this.ComboBox4.Items.Add(((WebKitBrowser) this.TabControl1.SelectedTab.Controls[0]).Url.AbsoluteUri)); } [/CODE] Wow. [editline]13th November 2010[/editline] LOL: SparkBrowser only works with .com, .net, .org, and .gov websites. FAIL: [CODE] private void Button1_Click(object sender, EventArgs e) { if ((Strings.InStr(this.TextBox1.Text, "http://www.", CompareMethod.Binary) != 0) && ((((Strings.InStr(this.TextBox1.Text, ".com", CompareMethod.Binary) != 0) | (Strings.InStr(this.TextBox1.Text, ".net", CompareMethod.Binary) != 0)) | (Strings.InStr(this.TextBox1.Text, ".org", CompareMethod.Binary) != 0)) | (Strings.InStr(this.TextBox1.Text, ".gov", CompareMethod.Binary) != 0))) { MyProject.Forms.Form1.ComboBox5.Items.Add(this.TextBox1.Text); } } [/CODE]
Amazingly enough NO call home stuff, and not suprisngly NOTHING more advanced then a Year 9 homework Assignment [editline]13th November 2010[/editline] [code] private void Label2_Click(object sender, EventArgs e) { this.ComboBox1.Text = this.ComboBox1.Text.Replace(" ", "+"); ((WebKitBrowser) this.TabControl1.SelectedTab.Controls[0]).Navigate("http://www.google.com/search?q=" + this.ComboBox1.Text + "&tbo=p&tbs=vid%3A1&source=vgc&hl=en&aq=f"); this.ComboBox1.Text = this.ComboBox1.Text.Replace("+", " "); } [/code] Dosn't even encode it properly, just a bare bones replacing spaces with + .... [editline]13th November 2010[/editline] oh and instead of just putting the text from the combo box INTO a variable, he changes the combobox text there and back. [editline]13th November 2010[/editline] posted this code snippet on his comments page
[QUOTE=nekosune;26022682]Amazingly enough NO call home stuff, and not suprisngly NOTHING more advanced then a Year 9 homework Assignment [editline]13th November 2010[/editline] [code] private void Label2_Click(object sender, EventArgs e) { this.ComboBox1.Text = this.ComboBox1.Text.Replace(" ", "+"); ((WebKitBrowser) this.TabControl1.SelectedTab.Controls[0]).Navigate("http://www.google.com/search?q=" + this.ComboBox1.Text + "&tbo=p&tbs=vid%3A1&source=vgc&hl=en&aq=f"); this.ComboBox1.Text = this.ComboBox1.Text.Replace("+", " "); } [/code] Dosn't even encode it properly, just a bare bones replacing spaces with + .... [editline]13th November 2010[/editline] oh and instead of just putting the text from the combo box INTO a variable, he changes the combobox text there and back. [editline]13th November 2010[/editline] posted this code snippet on his comments page[/QUOTE] He'll delete the comment as soon as he sees it. Also, it's funny because, if you saw before he deleted most of our conversation, I warned him about everything he was doing wrong. He said, and I quote, "All of your points are not valid". HAHAHA... Oh my...
[QUOTE=dag10;26022832]He'll delete the comment as soon as he sees it. Also, it's funny because, if you saw before he deleted most of our conversation, I warned him about everything he was doing wrong. He said, and I quote, "All of your points are not valid". HAHAHA... Oh my...[/QUOTE] I also tweeted him a codepaste of the code, and if he replies to that anyone on his twitter can see it
I replied to your guestbook comment. [editline]13th November 2010[/editline] Also, from my snipped above: [CODE] if (true) { ... [/CODE] I'm cracking up right now.
He has replied .... [quote=Sparkbrowser.com]That is win!.[/quote] [editline]13th November 2010[/editline] He deleted just yours now :-S [editline]13th November 2010[/editline] Posted on guestbook and twitter @ him the full Form1 code
doesn't even launch for me
[url]http://pastebin.com/rAu9frKW[/url] and I had to use an MSI extractor to get at it, the MSI was broke
[QUOTE=MisterMooth;26022978]doesn't even launch for me[/QUOTE] Doesn't launch for me either. Someone should tell him it's not launching for anybody... oh wait... he'll just delete them.
but I wanna try this amazing browser
[QUOTE=nekosune;26023009][url]http://pastebin.com/rAu9frKW[/url] and I had to use an MSI extractor to get at it, the MSI was broke[/QUOTE] He doesn't know C#, remember? Send it to him as VB.NET. :P
[QUOTE=dag10;26023083]He doesn't know C#, remember? Send it to him as VB.NET. :P[/QUOTE] Will send both :downs: prehapse he can see how alike they are then [editline]13th November 2010[/editline] [url]http://pastebin.com/B9zwDES1[/url] there in VB.NET too
He broke his guestbook. Does anyone have a cache of the old comment page's HTML?
It still seems to work :-S
shit shit wont even install... This guy is probably sitting in his chair fapping to "how to make a browser" tut on youtube [editline]13th November 2010[/editline] You know that car image he has?? He stole it from chrome. he says he made it
[url]http://twitter.com/#!/search?q=%23SparkBrowser[/url] SparkBrowser hashtag. I'll just leave it here.
[QUOTE=Qombat;26023429][url]http://twitter.com/#!/search?q=%23SparkBrowser[/url] SparkBrowser hashtag. I'll just leave it here.[/QUOTE] Added that to my tweets showing the pastebin with code in
[QUOTE=nekosune;26023449]Added that to my tweets showing the pastebin with code in[/QUOTE] Winnar.
You know with what he says about Safari, I wonder if we could point this out to Apple ...
Were retards involved in the making of this browser?
[QUOTE=Qombat;26023429][url]http://twitter.com/#!/search?q=%23SparkBrowser[/url] SparkBrowser hashtag. I'll just leave it here.[/QUOTE] Broken link.
[QUOTE=nekosune;26023489]You know with what he says about Safari, I wonder if we could point this out to Apple ...[/QUOTE] @SteveJobsCEO :v: [editline]13th November 2010[/editline] [QUOTE=dag10;26023503]Broken link.[/QUOTE] It's really not at all.
Does Safari /chrome have a dynamic page viewing system..........NO?NO Does Safari/chrome have a research feature..........NO/NO Does Safari/chrome have a home screen with apps..........NO/YES Does Safari/Chrome have an autosearch feature......NO/NO Does Safari/Chrome have snap pages..........NO/NO Does Safari /Chrome pause (slow down) when it refreshes..........YES/YES Guys im choking. haha... cant breathe
[QUOTE=nekosune;26023243]It still seems to work :-S[/QUOTE] I'm getting this: [IMG]http://grab.by/grabs/dd6c1e59044920290ef854f44539e0c8.png[/IMG] I see there's 6 entries however. Would you mind taking a big screenshot of them and posting it here for me? I'd love to see the comments and conversation :D
[QUOTE=Qombat;26023504]@SteveJobsCEO :v:[/QUOTE] I was thinking Email to apple complaints, saying [QUOTE]I was an apple customer until I saw this fine person say this about safari, now I wil never buy again and neither will all my friends[/Quote] And see how fast they move.
[QUOTE=Ninja Duck;26023498]Were retards involved in the making of this browser?[/QUOTE] Only one of them. [editline]13th November 2010[/editline] [QUOTE=nekosune;26023523]I was thinking Email to apple complaints, saying And see how fast they move.[/QUOTE] Hahaha do it. Post what you send, I'll modify and send as well.
[QUOTE=Qombat;26023504]It's really not at all.[/QUOTE] [IMG]http://grab.by/grabs/9991acf77255ae8e04316042e92f0f6f.png[/IMG]
Make sure you inform them of your disappointment at their lack of basic features that Christopher Reeves himself has implemented into SparkBrowser. [editline]13th November 2010[/editline] [QUOTE=dag10;26023543][img_thumb]http://grab.by/grabs/9991acf77255ae8e04316042e92f0f6f.png[/img_thumb][/QUOTE] [url]http://twitter.com/#!/ElliotSpeck[/url] Click the SparkBrowser hashtag.
Which dumbass thought releasing this browser was a GOOD idea?
[QUOTE=honkhonkimacar;26023551]Which dumbass thought releasing this browser was a GOOD idea?[/QUOTE] He did. :downs:
Sorry, you need to Log In to post a reply to this thread.