|
|
|
|
|
by echochar
3811 days ago
|
|
In an "Ask HN:" someone is calling for a ban on Forbes. Forbes has indeed reached a new plateau in stupidity. Anyone using a text-only browser has seen that Forbes' most recent design transfers all the content but prevents the page from even displaying in even the most accomodating browser. The word that comes to my mind for their approach to web development is "boneheaded". Quick and dirty script to view Forbes articles, with no ads: curl http://www.forbes.com/sites/... \
|sed '
1i\
<html>
s/\\n/\
/g;
s/\\r//g;
s/\\"/\"/g;
$a\
</html>
/./{2,/try {/d;
/} catch/,$d;}
' > 1.html
Then view 1.html in your browser.Why did I call their web design "boneheaded"? They include two full copies of the article. And this is before all the ads and God knows what are injected into the page. |
|