People are bashing this for being 'pointless', but hey, so is the next great to-do list app you made in 48 hours. This is a fun little experiment. I can see an actual use for this. Look for example at Identicons, Wavatars, and MonsterIDs[1]. They all use browser variables to generate random avatars for use around the web, e.g. on blog comments. I imagine this could do something similar, and a nice colour palette is a…
Show HN: What colour is your IP address?
31–40 of 76 posts
Re: Show HN: What colour is your IP address?
#32People are bashing this for being 'pointless', but hey, so is the next great to-do list app you made in 48 hours. This is a fun little experiment. I can see an actual use for this. Look for example at Identicons, Wavatars, and MonsterIDs[1]. They all use browser variables to generate random avatars for use around the web, e.g. on blog comments. I imagine this could do something similar, and a nice colour palette is a…
Finding patterns and/or meaning out of nothing is quite interesting.
Is art useless and not worth executing?
Re: Show HN: What colour is your IP address?
#33Earlier quoted context omitted.
Doesn't work for me either. I'm guessing it interprets the 4 octets as RGBA or something similar. It's a cute idea.
Hey guys. Sorry its not working, its on a shared hosting, hosting it somewhere else right now. Its just a bit of fun really, grabs the first 3 numbers of your ip, turns that into an rgb color then generates a color pallet.
Re: Show HN: What colour is your IP address?
#34Re: Show HN: What colour is your IP address?
#35People are bashing this for being 'pointless', but hey, so is the next great to-do list app you made in 48 hours. This is a fun little experiment. I can see an actual use for this. Look for example at Identicons, Wavatars, and MonsterIDs[1]. They all use browser variables to generate random avatars for use around the web, e.g. on blog comments. I imagine this could do something similar, and a nice colour palette is a…
I see this as like an internet art installation. It injects art into an unexpected place/space. Finding patterns and/or meaning out of nothing is quite interesting. Is art useless and not worth executing?
Re: Show HN: What colour is your IP address?
#36Re: Show HN: What colour is your IP address?
#37Earlier quoted context omitted.
I see this as like an internet art installation. It injects art into an unexpected place/space. Finding patterns and/or meaning out of nothing is quite interesting. Is art useless and not worth executing?
Is generating a 4 color palette based of a random seed all it takes to be art? Not to say it wasn't worth executing from a personal standpoint, it was probably fun to build if nothing else, but really what possible use can anyone else get out of this?
Re: Show HN: What colour is your IP address?
#38Earlier quoted context omitted.
Just hash the actual IP address. For example, take the IP and apply MD5; then take three bytes each to make, say, 3-colored "flags". That would totally work and yet be reasonably anonymous. This would also take care of the fact that colors come as three byte values and not four.
That would not work, as stated. The search space is way too small. Simply exhaustively building a table mapping hash to IP address is tractable. This could be ameliorated by including a site-specific secret in the hashed value; I'm not comfortable calling that "secure" but it does address this particular flaw.