does anyone else browse the forums with avatars disabled?

Page 2 - Seeking answers? Join the AnandTech community: where nearly half-a-million members share solutions and discuss the latest tech.

?

  • Avatars on

  • Avatars off


Results are only viewable after voting.

Eli

Super Moderator | Elite Member
Oct 9, 1999
50,419
8
81
Sigs are pretty much pointless IMO, at least displaying them anyway. I can view your sig with one click, I don't need to see it all the time. Why do I want to see how many miles you've driven your cars every single time you post? Your sig (for example) takes up more space than your actual post (6 lines vs 5). With a widescreen monitor my vertical space is valuable.

Hmm. True. At least you can click on them if you want to see them, I didn't realize that as I've never disabled them.

But my sig is awesome. :awe:
 

DominionSeraph

Diamond Member
Jul 22, 2009
8,386
32
91
But my sig is awesome. :awe:

Needs more Kyubey.

mahoushoujoyesypuellama.png
 

jtvang125

Diamond Member
Nov 10, 2004
5,399
51
91
I use opera's Show No Images setting to turn off all images and quickly turn them back on with one click. All I see is a wall of text in boxes.
 

KeithTalent

Elite Member | Administrator | No Lifer
Administrator
Nov 30, 2005
50,231
118
116
I have everything on. brblx's avatar still makes me laugh every time I see it. :D

KT
 

Malak

Lifer
Dec 4, 2004
14,696
2
0
I'm actually kinda surprised so many people have avatars and sigs turned off. Seems like you're just depriving yourself of the forum experience.

Same with blocking people. I don't care how much I disagree with someone, I wouldn't block them. Defeats the whole purpose of a discussion forum if you can just live in your own walled off little world and only talk to people that share the same world view as you.

I only block people that intentionally troll or are outright insane. There is at least one clinically insane person on this forum, and countless trolls I'm sure but I don't go into P&N. The few that escape into OT I have blocked. They offer nothing except empty triple posts that don't contribute to discussions.
 

mugs

Lifer
Apr 29, 2003
48,920
46
91
Same with blocking people. I don't care how much I disagree with someone, I wouldn't block them. Defeats the whole purpose of a discussion forum if you can just live in your own walled off little world and only talk to people that share the same world view as you.

I don't block people because I disagree with them, I block them because it's a waste of my time to read anything they have to say. I never agree with dmcowen, but he's unintentionally entertaining so I don't have him blocked.

SandEagle and spaceman have never posted anything that's worth reading, so I don't let them waste my time. I have 9 people blocked out of thousands, I'm not depriving myself of anything or living in a "walled off little world."
 

MovingTarget

Diamond Member
Jun 22, 2003
9,002
115
106
Another vote for avatars on, but inline images off. I've been tempted to turn avatars off, but it helps for quick poster recognition when scrolling down quickly (say, when returning to a thread after a while for responses).

We should just go back to purely fusetalk avatars. :p
 

cKGunslinger

Lifer
Nov 29, 1999
16,408
57
91
Avatars off, once they went custom. I don't even know what mine is.

Signatures off, too. It always pisses me off when some people break into a conversation about how awesome someone sig is, but never quote it. So I have to look at their profile, which always opens in the same window, instead of a new tab.. Gah! Life is so hard! ;)
 
Last edited:

Soundmanred

Lifer
Oct 26, 2006
10,780
6
81
No signatures (most are just reused famous quotes, "rigs" or other people's posts that they though were funny. Not interested.)
No avatars. (I can read the name if I need to know who wrote a post.)
Wish I could block ponies.
 

Ken g6

Programming Moderator, Elite Member
Moderator
Dec 11, 1999
16,708
4,669
75
Avatars on, but anyone whose avatar I don't like, or who doesn't have an avatar, gets reiconized. :sneaky:

I just tried turning the forum's avatars off, and I can barely tell the difference! :p
 

Jeff7

Lifer
Jan 4, 2001
41,596
20
81
Whilst browsing at work (on break/lunch, dammit), I turn off inline pictures and avatars.


Avatars on, but anyone whose avatar I don't like, or who doesn't have an avatar, gets reiconized. :sneaky:

I just tried turning the forum's avatars off, and I can barely tell the difference! :p
I don't suppose there's a script like this that can disable both avatars and embedded pics?
 

lxskllr

No Lifer
Nov 30, 2004
60,221
10,669
126
I don't suppose there's a script like this that can disable both avatars and embedded pics?

Me thinking about it really quick, it probably wouldn't be hard to do it with a wildcard for common image extensions.
 

Ken g6

Programming Moderator, Elite Member
Moderator
Dec 11, 1999
16,708
4,669
75
I don't suppose there's a script like this that can disable both avatars and embedded pics?
Well, not in the same script, but...

If you edit The Reiconizer source, there's an example line of code:
Code:
iconPathSub['http://forums.anandtech.com/customavatars/'] = 'auto';
Enable that, and all custom avatars will disappear (to be replaced with the default Wikipedia pictures). The one above that kills all the DragonsFury avatars too, if you want that. I didn't include one to kill the old forum avatars, but I'm sure you could figure it out from the examples if you really wanted to.

As for disabling inline images...
Code:
@namespace url(http://www.w3.org/1999/xhtml);

@-moz-document url-prefix("http://forums.anandtech.com/showthread.php") {
#posts td.alt1 div img { display:none !important }
}

@-moz-document url-prefix("http://forums.anandtech.com/newreply.php") {
#collapseobj_threadreview td.alt1 img { display:none !important }
}
I think that Stylish style oughtta do it.
 
Last edited: