Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

Hah! I got a really cool little icon that looks almost like the cassette tape pirate logo of Piratbyrån back in the day. I have old t-shirts with that logo.

MAKE. THIS. PERMANENT!

On the functional side, this really helps you see who is who in a long threaded discussion. Your eye is much quicker at following the little color icons than their names.



I made a chrome extension of this! So it won't disappear when you refresh the page: https://github.com/ekofi/hn_avatar_ext/


Works great, thanks


You are welcome :)


> Hah! I got a really cool little icon that looks almost like the cassette tape pirate logo of Piratbyrån back in the day.

I think it's a skeleton holding his arms up!

edit: Looks like I'm some green bug-monster


>MAKE. THIS. PERMANENT!

I second this. (Also I wanted to see what my avatar looks like, sry)


Truly unacceptable. (I look like an alien head!)


But Space Invaders is a classic!


Only commenting so I can see my avatar...


How dare you, you cyan flower vase on wheels :) I'm a spiky small yellow watchtower, yay.


And me? A green butterfly?


Yup. Or a trophy/ a goblet maybe? Not sure if green stands for 1st, 2nd or 3rd price though, up to you to decide :)


hi everyone :) I am a happy jumping frog :)


Commenting to see mine. Edit: Excellent! It's a blob.


Let's see what mine is Edit: I love it! A little bug :)


Looks like Shrek's forehead. Posting for my own avatar reveal...


I am an inverted android?


This should be pretty easy to make into a userscript if browsers still support that. I haven't checked on that in half a decade or so

also i wanted to see mine too


This is fun, and can easily be added as a userscript. I might look to do that a little later.


// ==UserScript== // @name HN icons // @namespace https://news.ycombinator.com/* // @version 0.1 // @description try to take over the world! // @author some people on HN // @match https://news.ycombinator.com/* // @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== // @grant none // ==/UserScript==

(function() { // Initial concept is from: https://news.ycombinator.com/item?id=30668137 (tomxor) // The script we are using is from: https://news.ycombinator.com/item?id=30670079 (onion2k) 'use strict'; let observer = new IntersectionObserver( (entries) => { entries.forEach((entry, i) => { if (entry.isIntersecting) { const p = 2; const c = document.createElement('canvas'); const x = c.getContext('2d'); c.width = 18; c.height = 14; const s = entry.target.innerText; const r = 1;

            if (s) {
            for (
                let s = entry.target.innerText, r = 1, i = 28 + s.length;
                i--;

            ) {
                // xorshift32
                (r ^= r << 13), (r ^= r >>> 17), (r ^= r << 5);
                const X = i & 3,
                Y = i >> 2;
                if (i >= 28) {
                // seed state
                r += s.charCodeAt(i - 28);
                x.fillStyle =
                    '#' + ((r >> 8) & 0xffffff).toString(16).padStart(0, 6);
                } else {
                // draw pixel
                if (r >>> 29 > (X * X) / 3 + Y / 2)
                    x.fillRect(p * 3 + p * X, p * Y, p, p),
                    x.fillRect(p * 3 - p * X, p * Y, p, p);
                }
            }
            }

            entry.target.prepend(c);
        } else {
            if (entry.target.firstChild.tagName === 'CANVAS')
            entry.target.firstChild.remove();
        }
        });
    },
    { rootMargin: '0px 0px 0px 0px' }
    );

    document.querySelectorAll('.hnuser').forEach((user) => {
    observer.observe(user);
    });
})();


the header formatting is broken. You should make a think on pastebin instead



Works a treat. Thanks, weird semaphore thing!


How dare you! Edit: ooooh, mine's a beetle!


Perhaps I'm a little fighter jet from an 8-bit arcade?


Or a guy with a tophat! Dig it.


Yours reminds me of the Wild Hunt from The Witcher, at least the crown


i love it, its very cute, reminds me of the old MSX


I do feel like HN needs avatars of some kind... just don't know if they should be customizable or fixed (like this one).


With how pretty much every platform has "avatars", that the user can customize, I think it would be fun just getting one assigned to you.

Edit: Huh, I got an alien house. Reminds me of some game.


Definitely not customizable, that's chaos.

Unique, fixed little color doodads make it easier to see who's who in a thread.


I'm for the fixed avatars. We are all born with certain unchangeable aspects.


Hey man, we were just discussing avatars, not trying to create an existential crisis.


Looks like I got blue transformer/reinhardt


It should be fairly straightforward to turn this into a browser addon, give users a choice and offload the people behind HN.


Or even easier to make a userscript: https://openuserjs.org/


  // ==UserScript==
  // @name        HN Avatars in 357 bytes
  // @description Annotated avatars on all HN comments.
  // @author      tomxor (https://news.ycombinator.com/user?id=tomxor)
  // @namespace   https://news.ycombinator.com/item?id=30668137
  // @include     https://news.ycombinator.com/item*
  // @include     https://news.ycombinator.com/user*
  // @grant       none
  // @version     1.0.0
  // ==/UserScript==

  [js goes here]



What is a user script?


A JavaScript script injected into a website by the user (as opposed to the website).


I see what you did there ;)


Could we just add it to HN Special? https://github.com/gabrielecirulli/hn-special


Doesn't work on FF does it?


Trying mine.


Trying mine as well


Trying mine.


can't resist, trying mine...


Trying mine.


Trying mine…


ok trying


mine as well


mine toooo


me too

edit: ooo, i'm a...green house?


me too


me too too

edit: oh that was unexpected


Test 421

edit: A bell? A thicc rocket..? Neat.


I'm gonna go ahead and vote no on this.


But your avatar looks like a Ninja Turtle with shades on. You should be enjoying this. :)


Wow, I thought it was a green camper van!


Likely still traumatized by existence of new reddit UI. Old appears to be better.


I just find pfps visually distracting and enjoy HNs stance as one of the few remaining sites keeping an old school look. I feel like it would affect the tone of the site and negatively affect the quality of the conversation.


You got Cthulu!


And I think yours is an upside-down helicopter!


It almost looks like a minimalist wolverine! [1]

[1]: https://i.pinimg.com/736x/2b/e7/cb/2be7cb420de47ac68e1345f4a...




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: