<?xml version="1.0" encoding="UTF-8"?><rss
version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
> <channel><title>Comments on: Internet Explorer 8 Ad Blocking Gets Easier With Adblock IE</title> <atom:link href="http://www.ghacks.net/2009/04/19/internet-explorer-8-ad-blocking-gets-easier-with-adblock-ie/feed/" rel="self" type="application/rss+xml" /><link>http://www.ghacks.net/2009/04/19/internet-explorer-8-ad-blocking-gets-easier-with-adblock-ie/</link> <description>A technology news blog covering software, mobile phones, gadgets, security, the Internet and other relevant areas.</description> <lastBuildDate>Sun, 12 Feb 2012 07:04:03 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <item><title>By: Rekrapg</title><link>http://www.ghacks.net/2009/04/19/internet-explorer-8-ad-blocking-gets-easier-with-adblock-ie/comment-page-1/#comment-1401821</link> <dc:creator>Rekrapg</dc:creator> <pubDate>Thu, 12 Jan 2012 02:21:25 +0000</pubDate> <guid
isPermaLink="false">http://www.ghacks.net/2009/04/19/internet-explorer-8-ad-blocking-gets-easier-with-adblock-ie/#comment-1401821</guid> <description>looks like cut off bottom :(
# Add final lines for XML
Add-Content $File3 &quot;`n`n&quot;</description> <content:encoded><![CDATA[<p>looks like cut off bottom :(</p><p># Add final lines for XML<br
/> Add-Content $File3 &#8220;`n`n&#8221;</p> ]]></content:encoded> </item> <item><title>By: Rekrapg</title><link>http://www.ghacks.net/2009/04/19/internet-explorer-8-ad-blocking-gets-easier-with-adblock-ie/comment-page-1/#comment-1401820</link> <dc:creator>Rekrapg</dc:creator> <pubDate>Thu, 12 Jan 2012 02:17:48 +0000</pubDate> <guid
isPermaLink="false">http://www.ghacks.net/2009/04/19/internet-explorer-8-ad-blocking-gets-easier-with-adblock-ie/#comment-1401820</guid> <description>I&#039;ve got a script going to update to fanboy&#039;s latest &amp; greatest for IE8.  It&#039;s powershell, so obviously older version of winblows (like me at work on XP) will require to install that first.  Basically, downloads the TPL&#039;s from fanboy, removes non-filters, converts to XML, ready for import :)
# Set the file names for the downloaded and converted files. I have used HHmm in file name as I tested a lot, but can remove if doing once daily.
$File1 = &quot;fanboy-adblock_{0:dd.MM.yyyy-HHmm}.txt&quot; -f (Get-Date)
$File2 = &quot;fanboy-tracking_{0:dd.MM.yyyy-HHmm}.txt&quot; -f (Get-Date)
$File3 = &quot;ie8-fanboy-adblock-{0:dd.MM.yyyy-HHmm}.xml&quot; -f (Get-Date)
# Download adblock and tracking files
$WebClient = New-Object System.Net.WebClient
# If auth required for network uncomment below line
#$WebClient.Credentials = New-Object System.Net.Networkcredential(&quot;Username&quot;, &quot;Password&quot;)
$WebClient.DownloadFile( &quot;http://www.fanboy.co.nz/adblock/ie/fanboy-noele.tpl&quot;, &quot;C:\Utils\Adblock\$File1&quot; )
$WebClient.DownloadFile( &quot;http://www.fanboy.co.nz/adblock/ie/fanboy-tracking.tpl&quot;, &quot;C:\Utils\Adblock\$File2&quot; )
# Filter text file cleanup - remove first lines not relating to filters
(gc $File1) &#124; ? {(1..12) -notcontains $_.ReadCount} &#124; sc $File1
(gc $File2) &#124; ? {(1..8) -notcontains $_.ReadCount} &#124; sc $File2
# Filter text file cleanup - remove hash lines (non-filters)
(Get-Content $File1) -notmatch &quot;#&quot; &#124; Out-File $File1
(Get-Content $File2) -notmatch &quot;#&quot; &#124; Out-File $File2
# Create XML file and add initial lines to XML
New-Item $File3 -type file
Add-Content $File3 &quot;`n`n`nFanboy AdBlock IE8 XML`nhttp://www.fanboy.co.nz/adblock/ie/fanboy-noele.tpl`nConverted to IE8 filters by REKRAPG&quot;
# Convert filters from TPL to XML add to XML file
Get-Content $File1 &#124; foreach { $_ = $_.trim(); $_ } &#124; foreach {
$_ = @&quot;
&quot;@; $_ } &#124; foreach { Add-Content $File3 $_ }
Get-Content $File2 &#124; foreach { $_ = $_.trim(); $_ } &#124; foreach {
$_ = @&quot;
&quot;@; $_ } &#124; foreach { Add-Content $File3 $_ }
# Add final lines for XML
Add-Content $File3 &quot;`n`n&quot;</description> <content:encoded><![CDATA[<p>I&#8217;ve got a script going to update to fanboy&#8217;s latest &amp; greatest for IE8.  It&#8217;s powershell, so obviously older version of winblows (like me at work on XP) will require to install that first.  Basically, downloads the TPL&#8217;s from fanboy, removes non-filters, converts to XML, ready for import :)</p><p># Set the file names for the downloaded and converted files. I have used HHmm in file name as I tested a lot, but can remove if doing once daily.<br
/> $File1 = &#8220;fanboy-adblock_{0:dd.MM.yyyy-HHmm}.txt&#8221; -f (Get-Date)<br
/> $File2 = &#8220;fanboy-tracking_{0:dd.MM.yyyy-HHmm}.txt&#8221; -f (Get-Date)<br
/> $File3 = &#8220;ie8-fanboy-adblock-{0:dd.MM.yyyy-HHmm}.xml&#8221; -f (Get-Date)<br
/> # Download adblock and tracking files<br
/> $WebClient = New-Object System.Net.WebClient<br
/> # If auth required for network uncomment below line<br
/> #$WebClient.Credentials = New-Object System.Net.Networkcredential(&#8220;Username&#8221;, &#8220;Password&#8221;)<br
/> $WebClient.DownloadFile( &#8220;http://www.fanboy.co.nz/adblock/ie/fanboy-noele.tpl&#8221;, &#8220;C:\Utils\Adblock\$File1&#8243; )<br
/> $WebClient.DownloadFile( &#8220;http://www.fanboy.co.nz/adblock/ie/fanboy-tracking.tpl&#8221;, &#8220;C:\Utils\Adblock\$File2&#8243; )<br
/> # Filter text file cleanup &#8211; remove first lines not relating to filters<br
/> (gc $File1) | ? {(1..12) -notcontains $_.ReadCount} | sc $File1<br
/> (gc $File2) | ? {(1..8) -notcontains $_.ReadCount} | sc $File2<br
/> # Filter text file cleanup &#8211; remove hash lines (non-filters)<br
/> (Get-Content $File1) -notmatch &#8220;#&#8221; | Out-File $File1<br
/> (Get-Content $File2) -notmatch &#8220;#&#8221; | Out-File $File2<br
/> # Create XML file and add initial lines to XML<br
/> New-Item $File3 -type file<br
/> Add-Content $File3 &#8220;`n`n`nFanboy AdBlock IE8 XML`nhttp://www.fanboy.co.nz/adblock/ie/fanboy-noele.tpl`nConverted to IE8 filters by REKRAPG&#8221;<br
/> # Convert filters from TPL to XML add to XML file<br
/> Get-Content $File1 | foreach { $_ = $_.trim(); $_ } | foreach {<br
/> $_ = @&#8221;</p><p>&#8220;@; $_ } | foreach { Add-Content $File3 $_ }<br
/> Get-Content $File2 | foreach { $_ = $_.trim(); $_ } | foreach {<br
/> $_ = @&#8221;</p><p>&#8220;@; $_ } | foreach { Add-Content $File3 $_ }<br
/> # Add final lines for XML<br
/> Add-Content $File3 &#8220;`n`n&#8221;</p> ]]></content:encoded> </item> <item><title>By: AJ</title><link>http://www.ghacks.net/2009/04/19/internet-explorer-8-ad-blocking-gets-easier-with-adblock-ie/comment-page-1/#comment-1306394</link> <dc:creator>AJ</dc:creator> <pubDate>Tue, 15 Feb 2011 09:02:50 +0000</pubDate> <guid
isPermaLink="false">http://www.ghacks.net/2009/04/19/internet-explorer-8-ad-blocking-gets-easier-with-adblock-ie/#comment-1306394</guid> <description>Would you people shut up about firefox, its bloody useless nowadays, at least ie works.</description> <content:encoded><![CDATA[<p>Would you people shut up about firefox, its bloody useless nowadays, at least ie works.</p> ]]></content:encoded> </item> <item><title>By: moe</title><link>http://www.ghacks.net/2009/04/19/internet-explorer-8-ad-blocking-gets-easier-with-adblock-ie/comment-page-1/#comment-1269209</link> <dc:creator>moe</dc:creator> <pubDate>Tue, 07 Dec 2010 22:22:27 +0000</pubDate> <guid
isPermaLink="false">http://www.ghacks.net/2009/04/19/internet-explorer-8-ad-blocking-gets-easier-with-adblock-ie/#comment-1269209</guid> <description>u momo&#039;s.. just use FF</description> <content:encoded><![CDATA[<p>u momo&#8217;s.. just use FF</p> ]]></content:encoded> </item> <item><title>By: FireFox</title><link>http://www.ghacks.net/2009/04/19/internet-explorer-8-ad-blocking-gets-easier-with-adblock-ie/comment-page-1/#comment-1250324</link> <dc:creator>FireFox</dc:creator> <pubDate>Sun, 21 Nov 2010 17:20:41 +0000</pubDate> <guid
isPermaLink="false">http://www.ghacks.net/2009/04/19/internet-explorer-8-ad-blocking-gets-easier-with-adblock-ie/#comment-1250324</guid> <description>Lol... in Firefox it&#039;s a 2 minute install of the adblock add on and you&#039;re good to go.  No faffing or messing around.
This is the shit you have to put up with from IE... lol... again...</description> <content:encoded><![CDATA[<p>Lol&#8230; in Firefox it&#8217;s a 2 minute install of the adblock add on and you&#8217;re good to go.  No faffing or messing around.</p><p>This is the shit you have to put up with from IE&#8230; lol&#8230; again&#8230;</p> ]]></content:encoded> </item> <item><title>By: Skeppsbrogatan</title><link>http://www.ghacks.net/2009/04/19/internet-explorer-8-ad-blocking-gets-easier-with-adblock-ie/comment-page-1/#comment-1142999</link> <dc:creator>Skeppsbrogatan</dc:creator> <pubDate>Thu, 29 Jul 2010 21:41:31 +0000</pubDate> <guid
isPermaLink="false">http://www.ghacks.net/2009/04/19/internet-explorer-8-ad-blocking-gets-easier-with-adblock-ie/#comment-1142999</guid> <description>250 MB may be 1 minute worth of download for you in your first world country internet, but there are countries in the world where 250 is a pain to download. African or Middle Eastern or even Australian or New Zealander users have limited bandwidth and limited download capacity per month. To lose 250 + 2 mb for an ad blocker is a real pain. Not to mention the slowup that installation of .Net will cause. Please try this: install windows xp, time the bootup. Now install every .Net framework by Microsoft. Update the .Net Frameworks with latest patches, now time the bootup. Do you feel any difference ? How about finding the size of your windows installation before and after .Net frameworks ? All done so that programmers can program easier. Yeah anything for their comfort.</description> <content:encoded><![CDATA[<p>250 MB may be 1 minute worth of download for you in your first world country internet, but there are countries in the world where 250 is a pain to download. African or Middle Eastern or even Australian or New Zealander users have limited bandwidth and limited download capacity per month. To lose 250 + 2 mb for an ad blocker is a real pain. Not to mention the slowup that installation of .Net will cause. Please try this: install windows xp, time the bootup. Now install every .Net framework by Microsoft. Update the .Net Frameworks with latest patches, now time the bootup. Do you feel any difference ? How about finding the size of your windows installation before and after .Net frameworks ? All done so that programmers can program easier. Yeah anything for their comfort.</p> ]]></content:encoded> </item> <item><title>By: Skeppsbrogatan</title><link>http://www.ghacks.net/2009/04/19/internet-explorer-8-ad-blocking-gets-easier-with-adblock-ie/comment-page-1/#comment-1142996</link> <dc:creator>Skeppsbrogatan</dc:creator> <pubDate>Thu, 29 Jul 2010 21:32:38 +0000</pubDate> <guid
isPermaLink="false">http://www.ghacks.net/2009/04/19/internet-explorer-8-ad-blocking-gets-easier-with-adblock-ie/#comment-1142996</guid> <description>Since Direct X 9 includes and supports all older versions of DX before it, I wonder why MSFT couldn&#039;t just make one .Net framework that would support all frameworks before it. I guess it&#039;s just MSFT being MSFT. It&#039;s like why don&#039;t they allow Windows XP to support Direct X 10 or 11, but that&#039;s another matter.</description> <content:encoded><![CDATA[<p>Since Direct X 9 includes and supports all older versions of DX before it, I wonder why MSFT couldn&#8217;t just make one .Net framework that would support all frameworks before it. I guess it&#8217;s just MSFT being MSFT. It&#8217;s like why don&#8217;t they allow Windows XP to support Direct X 10 or 11, but that&#8217;s another matter.</p> ]]></content:encoded> </item> <item><title>By: Skeppsbrogatan</title><link>http://www.ghacks.net/2009/04/19/internet-explorer-8-ad-blocking-gets-easier-with-adblock-ie/comment-page-1/#comment-1142995</link> <dc:creator>Skeppsbrogatan</dc:creator> <pubDate>Thu, 29 Jul 2010 21:26:45 +0000</pubDate> <guid
isPermaLink="false">http://www.ghacks.net/2009/04/19/internet-explorer-8-ad-blocking-gets-easier-with-adblock-ie/#comment-1142995</guid> <description>I have learnt .Net programming at University. It makes life a whole lot easier. However as an ex IT Administrator, I remember it was hard to keep up with the .NET frameworks. You would think that .Net Framework 3.5 would include or be backwards compatible with all the previous versions, but you were wrong. You have to install version 1, 2, 3.5 to be able to fully support .Net apps. That&#039;s like in Windows XP you had to install Direct X 7, 8, then 9 to support latest games !!!
After you install all the .Net frameworks, not only does it take a whole lot of space, but also your registry size will grow and your whole computer experience will be slower, not to mention the endless security updates to each of the versions 1, 2, 3.5 and so on.
It&#039;s the present, it&#039;s the future, and I would personally much rather have a small program that can do the job rather than a 2 MB download and a 200 MB .Net Framework install.</description> <content:encoded><![CDATA[<p>I have learnt .Net programming at University. It makes life a whole lot easier. However as an ex IT Administrator, I remember it was hard to keep up with the .NET frameworks. You would think that .Net Framework 3.5 would include or be backwards compatible with all the previous versions, but you were wrong. You have to install version 1, 2, 3.5 to be able to fully support .Net apps. That&#8217;s like in Windows XP you had to install Direct X 7, 8, then 9 to support latest games !!!<br
/> After you install all the .Net frameworks, not only does it take a whole lot of space, but also your registry size will grow and your whole computer experience will be slower, not to mention the endless security updates to each of the versions 1, 2, 3.5 and so on.</p><p>It&#8217;s the present, it&#8217;s the future, and I would personally much rather have a small program that can do the job rather than a 2 MB download and a 200 MB .Net Framework install.</p> ]]></content:encoded> </item> <item><title>By: Turko</title><link>http://www.ghacks.net/2009/04/19/internet-explorer-8-ad-blocking-gets-easier-with-adblock-ie/comment-page-1/#comment-1123394</link> <dc:creator>Turko</dc:creator> <pubDate>Wed, 30 Jun 2010 19:58:32 +0000</pubDate> <guid
isPermaLink="false">http://www.ghacks.net/2009/04/19/internet-explorer-8-ad-blocking-gets-easier-with-adblock-ie/#comment-1123394</guid> <description>Thanks Peter!!!  Simple Adblock is much better and it&#039;s actively developed.</description> <content:encoded><![CDATA[<p>Thanks Peter!!!  Simple Adblock is much better and it&#8217;s actively developed.</p> ]]></content:encoded> </item> <item><title>By: Matt</title><link>http://www.ghacks.net/2009/04/19/internet-explorer-8-ad-blocking-gets-easier-with-adblock-ie/comment-page-1/#comment-1087072</link> <dc:creator>Matt</dc:creator> <pubDate>Mon, 24 May 2010 13:19:33 +0000</pubDate> <guid
isPermaLink="false">http://www.ghacks.net/2009/04/19/internet-explorer-8-ad-blocking-gets-easier-with-adblock-ie/#comment-1087072</guid> <description>Oh noez!!!! 250 mb?!?! What will I do??? Yeah dude, 250mb was a big deal in 1996. Are you still on dial up? It&#039;s like a 1 minute download. And who is the cockmuncher whining about scalability. Really? Its a .net program made for a microsoft browser, run on a microsoft os. You tool sack. Yeah, they could have just included all the required .dll&#039;s in the app itself. That would have made the app a lot larger and probably doubled up some .dll&#039;s that you already would have on the system with the framework. Ignorant ass retards</description> <content:encoded><![CDATA[<p>Oh noez!!!! 250 mb?!?! What will I do??? Yeah dude, 250mb was a big deal in 1996. Are you still on dial up? It&#8217;s like a 1 minute download. And who is the cockmuncher whining about scalability. Really? Its a .net program made for a microsoft browser, run on a microsoft os. You tool sack. Yeah, they could have just included all the required .dll&#8217;s in the app itself. That would have made the app a lot larger and probably doubled up some .dll&#8217;s that you already would have on the system with the framework. Ignorant ass retards</p> ]]></content:encoded> </item> <item><title>By: Kyanar</title><link>http://www.ghacks.net/2009/04/19/internet-explorer-8-ad-blocking-gets-easier-with-adblock-ie/comment-page-1/#comment-1081546</link> <dc:creator>Kyanar</dc:creator> <pubDate>Wed, 19 May 2010 11:42:38 +0000</pubDate> <guid
isPermaLink="false">http://www.ghacks.net/2009/04/19/internet-explorer-8-ad-blocking-gets-easier-with-adblock-ie/#comment-1081546</guid> <description>You probably have it installed already.  Windows Update deployed it over a year ago now.  Also, with .NET 4 you can build apps to link against a framework which is something like a 10MB installer (Client Profile).</description> <content:encoded><![CDATA[<p>You probably have it installed already.  Windows Update deployed it over a year ago now.  Also, with .NET 4 you can build apps to link against a framework which is something like a 10MB installer (Client Profile).</p> ]]></content:encoded> </item> <item><title>By: Peter</title><link>http://www.ghacks.net/2009/04/19/internet-explorer-8-ad-blocking-gets-easier-with-adblock-ie/comment-page-1/#comment-1043731</link> <dc:creator>Peter</dc:creator> <pubDate>Mon, 19 Apr 2010 18:03:40 +0000</pubDate> <guid
isPermaLink="false">http://www.ghacks.net/2009/04/19/internet-explorer-8-ad-blocking-gets-easier-with-adblock-ie/#comment-1043731</guid> <description>This adblock ie thing does not work.
I have started using Simple Adblock instead. I don&#039;t think it requires .Net to work but it does remove all ads.
http://simple-adblock.com</description> <content:encoded><![CDATA[<p>This adblock ie thing does not work.<br
/> I have started using Simple Adblock instead. I don&#8217;t think it requires .Net to work but it does remove all ads.<br
/> http://simple-adblock.com</p> ]]></content:encoded> </item> <item><title>By: aussiebear</title><link>http://www.ghacks.net/2009/04/19/internet-explorer-8-ad-blocking-gets-easier-with-adblock-ie/comment-page-1/#comment-1036835</link> <dc:creator>aussiebear</dc:creator> <pubDate>Thu, 15 Apr 2010 14:40:05 +0000</pubDate> <guid
isPermaLink="false">http://www.ghacks.net/2009/04/19/internet-explorer-8-ad-blocking-gets-easier-with-adblock-ie/#comment-1036835</guid> <description>So essentially, you .Net developers want people to download and install 250MB framework to run your crap; as it makes YOUR life easier?
Good luck with that one.</description> <content:encoded><![CDATA[<p>So essentially, you .Net developers want people to download and install 250MB framework to run your crap; as it makes YOUR life easier?</p><p>Good luck with that one.</p> ]]></content:encoded> </item> <item><title>By: mmememe</title><link>http://www.ghacks.net/2009/04/19/internet-explorer-8-ad-blocking-gets-easier-with-adblock-ie/comment-page-1/#comment-978911</link> <dc:creator>mmememe</dc:creator> <pubDate>Mon, 22 Feb 2010 12:49:35 +0000</pubDate> <guid
isPermaLink="false">http://www.ghacks.net/2009/04/19/internet-explorer-8-ad-blocking-gets-easier-with-adblock-ie/#comment-978911</guid> <description>You do realise that the dot net runtime 3.5 (with sp1) is 250Mb ! I am a msoft developer, but to develop a tiny ad on (at least you did it for free) and then say , oh by the way  you need a 250mb download to  run my ad-on is a bit of a pain (a deal killer as someone said) . I cant find the figures, but i would guess less  than 50% of windows users already have dotnet 3.5. Still good work any way , and we need to get more down this route - that is, pop up blockers</description> <content:encoded><![CDATA[<p>You do realise that the dot net runtime 3.5 (with sp1) is 250Mb ! I am a msoft developer, but to develop a tiny ad on (at least you did it for free) and then say , oh by the way  you need a 250mb download to  run my ad-on is a bit of a pain (a deal killer as someone said) . I cant find the figures, but i would guess less  than 50% of windows users already have dotnet 3.5. Still good work any way , and we need to get more down this route &#8211; that is, pop up blockers</p> ]]></content:encoded> </item> <item><title>By: Newsjunkie356</title><link>http://www.ghacks.net/2009/04/19/internet-explorer-8-ad-blocking-gets-easier-with-adblock-ie/comment-page-1/#comment-961073</link> <dc:creator>Newsjunkie356</dc:creator> <pubDate>Fri, 29 Jan 2010 19:06:00 +0000</pubDate> <guid
isPermaLink="false">http://www.ghacks.net/2009/04/19/internet-explorer-8-ad-blocking-gets-easier-with-adblock-ie/#comment-961073</guid> <description>As long as Microsoft has 95% of the desktop OS market and 90% of the server marker, there&#039;s not much profit to p***** and moaning about it.
My brother&#039;s a programmer and he tells me .Net ain&#039;t going anywhere.  So the choice is simple.  (Tho&#039; I do agree that nothing should be installed on a computer without the owner&#039;s consent.  And if you don&#039;t understand then LEARN.)
If you hate MSFT products THAT much, then build a better mousetrap.  Eventually somebody will.  It always happens.  Two hundred years ago nobody could imagine anything other than the steam engine.  Then a German guy invented the internal combustion engine.
Mah was a little more brusque than was necessary but I understand the frustration.  It&#039;s akin to when your car breaks down on the side of the road and you jump out and start screaming at it.
But a Mac, go Linux or Solaris or write your own OS.  Otherwise, to reiterate, quit  p***** and moaning.</description> <content:encoded><![CDATA[<p>As long as Microsoft has 95% of the desktop OS market and 90% of the server marker, there&#8217;s not much profit to p***** and moaning about it.</p><p>My brother&#8217;s a programmer and he tells me .Net ain&#8217;t going anywhere.  So the choice is simple.  (Tho&#8217; I do agree that nothing should be installed on a computer without the owner&#8217;s consent.  And if you don&#8217;t understand then LEARN.)</p><p>If you hate MSFT products THAT much, then build a better mousetrap.  Eventually somebody will.  It always happens.  Two hundred years ago nobody could imagine anything other than the steam engine.  Then a German guy invented the internal combustion engine.</p><p>Mah was a little more brusque than was necessary but I understand the frustration.  It&#8217;s akin to when your car breaks down on the side of the road and you jump out and start screaming at it.</p><p>But a Mac, go Linux or Solaris or write your own OS.  Otherwise, to reiterate, quit  p***** and moaning.</p> ]]></content:encoded> </item> <item><title>By: GH</title><link>http://www.ghacks.net/2009/04/19/internet-explorer-8-ad-blocking-gets-easier-with-adblock-ie/comment-page-1/#comment-954846</link> <dc:creator>GH</dc:creator> <pubDate>Tue, 12 Jan 2010 18:39:28 +0000</pubDate> <guid
isPermaLink="false">http://www.ghacks.net/2009/04/19/internet-explorer-8-ad-blocking-gets-easier-with-adblock-ie/#comment-954846</guid> <description>lmao - if you&#039;ve been in the business 25 years and say you wouldn&#039;t use anything other than .Net it doesn&#039;t say much about the content you&#039;ve developed - anyone with any experience knows that .Net web apps are nowhere near as scalable as php or java; it&#039;s a typical Microsoft solution - overengineered, and overcomplicated - and before you jump on this comment - I&#039;m a .Net developer - I just realise its shortcomings.
If this program requires .Net 3.5 that&#039;s fine BUT it should prompt the user to download it...</description> <content:encoded><![CDATA[<p>lmao &#8211; if you&#8217;ve been in the business 25 years and say you wouldn&#8217;t use anything other than .Net it doesn&#8217;t say much about the content you&#8217;ve developed &#8211; anyone with any experience knows that .Net web apps are nowhere near as scalable as php or java; it&#8217;s a typical Microsoft solution &#8211; overengineered, and overcomplicated &#8211; and before you jump on this comment &#8211; I&#8217;m a .Net developer &#8211; I just realise its shortcomings.<br
/> If this program requires .Net 3.5 that&#8217;s fine BUT it should prompt the user to download it&#8230;</p> ]]></content:encoded> </item> <item><title>By: hypotheek</title><link>http://www.ghacks.net/2009/04/19/internet-explorer-8-ad-blocking-gets-easier-with-adblock-ie/comment-page-1/#comment-949689</link> <dc:creator>hypotheek</dc:creator> <pubDate>Wed, 30 Dec 2009 13:15:28 +0000</pubDate> <guid
isPermaLink="false">http://www.ghacks.net/2009/04/19/internet-explorer-8-ad-blocking-gets-easier-with-adblock-ie/#comment-949689</guid> <description>I say yeah to .NET!</description> <content:encoded><![CDATA[<p>I say yeah to .NET!</p> ]]></content:encoded> </item> <item><title>By: Gorey666</title><link>http://www.ghacks.net/2009/04/19/internet-explorer-8-ad-blocking-gets-easier-with-adblock-ie/comment-page-1/#comment-913012</link> <dc:creator>Gorey666</dc:creator> <pubDate>Fri, 06 Nov 2009 12:13:52 +0000</pubDate> <guid
isPermaLink="false">http://www.ghacks.net/2009/04/19/internet-explorer-8-ad-blocking-gets-easier-with-adblock-ie/#comment-913012</guid> <description>You people should stop moaning about .Net.
It&#039;s the future of windows programming. Actually, it&#039;s the present as well.
After a few years of using C# with .NET... I vomit at the thought of doing any C++ coding for windows apps now. Coding for .NET is that much more productive.
Just download .NET and be done with it.  90% of you most likely already have it installed and dont even know it.</description> <content:encoded><![CDATA[<p>You people should stop moaning about .Net.</p><p>It&#8217;s the future of windows programming. Actually, it&#8217;s the present as well.</p><p> After a few years of using C# with .NET&#8230; I vomit at the thought of doing any C++ coding for windows apps now. Coding for .NET is that much more productive.</p><p>Just download .NET and be done with it.  90% of you most likely already have it installed and dont even know it.</p> ]]></content:encoded> </item> <item><title>By: Nahz</title><link>http://www.ghacks.net/2009/04/19/internet-explorer-8-ad-blocking-gets-easier-with-adblock-ie/comment-page-1/#comment-910530</link> <dc:creator>Nahz</dc:creator> <pubDate>Sun, 01 Nov 2009 20:21:52 +0000</pubDate> <guid
isPermaLink="false">http://www.ghacks.net/2009/04/19/internet-explorer-8-ad-blocking-gets-easier-with-adblock-ie/#comment-910530</guid> <description>Mah, I couldn&#039;t care less if you are pissed off about ignorant posters. You can educate people without the immature insults and rudeness. I would rather be obviously in need of learning about a computer than obviously in need of learning some manners.</description> <content:encoded><![CDATA[<p>Mah, I couldn&#8217;t care less if you are pissed off about ignorant posters. You can educate people without the immature insults and rudeness. I would rather be obviously in need of learning about a computer than obviously in need of learning some manners.</p> ]]></content:encoded> </item> <item><title>By: Phil</title><link>http://www.ghacks.net/2009/04/19/internet-explorer-8-ad-blocking-gets-easier-with-adblock-ie/comment-page-1/#comment-898207</link> <dc:creator>Phil</dc:creator> <pubDate>Tue, 13 Oct 2009 22:22:10 +0000</pubDate> <guid
isPermaLink="false">http://www.ghacks.net/2009/04/19/internet-explorer-8-ad-blocking-gets-easier-with-adblock-ie/#comment-898207</guid> <description>Absolutely. .net framework just gives you all the classes needed to write excellent programs without all the hack work. I wouldn&#039;t use anything else and I&#039;ve been in the business for 25years.</description> <content:encoded><![CDATA[<p>Absolutely. .net framework just gives you all the classes needed to write excellent programs without all the hack work. I wouldn&#8217;t use anything else and I&#8217;ve been in the business for 25years.</p> ]]></content:encoded> </item> </channel> </rss>
