author Angelo Gladding
name Humans
published 2024-08-09T07:44:36.578331-07:00
type entry
updated 2024-08-15T20:54:23.366930-07:00
url /humans, /2024/08/09/hk
visibility public
Content
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 | Lists of personal websites and their authenticity. $code: def urlify(url): if not url.startswith("http://"): url = f"https://{url}" return url $ mets = { $ "Brent Goldman": "www.brentgoldman.com", $ "Tracy Durnell": "tracydurnell.com", $ "Maxwell Joslyn": "maxwelljoslyn.com", $ "David Shanske": "david.shanske.com", $ "Benji": "benji.dog", $ "James": "jamesg.blog", $ "Pablo Morales": "lifeofpablo.com", $ "Nick Simson": "nicksimson.com", $ "Rosalina Saige": "catgirlin.space", $ "Tantek Celik": "tantek.com", $ "Joe Crawford": "artlung.com", $ "Anthony Ciccarello": "ciccarello.me", $ "Aaron Parecki": "aaronparecki.com", $ "Jo": "dead.garden", $ "Mark Sutherland": "marksuth.dev", $ "Reilly Spitzfaden": "reillyspitzfaden.com", $ "Ryan Barrett": "snarfed.org", $ "Johannes Ernst": "j12t.org", $ "Evan Prodromou": "evanp.me", $ "Emelia Smith": "brandedcode.com", $ "Benjamin Goering": "bengo.is", $ "Michael Toomim": "toomim.us", $ "Seph Gentle": "josephg.com", $ "Cory Doctorow": "pluralistic.net", $ "Adam Conover": "adamconover.net", $ } $ unmets = { $ "Richard Stallman": "stallman.org", $ "Molly White": "mollywhite.net", $ "Leo Laporte": "leo.fm", $ "Paris Martineau": "parismartineau.com", $ "John Gruber": "daringfireball.net", $ "Eric Meyer": "meyerweb.com", $ "Matt Mullenweg": "ma.tt", $ "Steve Bate": "stevebate.net", $ "Amy Guy": "rhiaro.co.uk", $ "Brian Krebs": "krebsonsecurity.com", $ "Vinny Troia": "vinnytroia.com", $ "Joe Rogan": "joerogan.com", $ "Tony Hinchcliffe": "tonyhinchcliffe.com", $ "Louis C.K.": "louisck.com", $ "Sam Morril": "sammorril.com", $ "Joe List": "comedianjoelist.com", $ "Stavros Halkias": "stavvy.biz", $ "Ari Matti": "arimatti.com", $ "Barack Obama": "barackobama.com", $ "Joe Biden": "joebiden.com", $ "Donald Trump": "donaldjtrump.com", $ "Kamala Harris": "kamalaharris.com", $ "Taylor Swift": "taylorswift.com", $ "Beyonce": "beyonce.com", $ "Miley Cyrus": "mileycyrus.com", $ } ## Humans I've met <ul> $for met, met_url in mets.items(): <li><a href=$urlify(met_url) rel=met>$met</a> </ul> ## Humans I haven't met <ul> $for unmet, unmet_url in unmets.items(): <li><a href=$urlify(unmet_url) rel=nofollow>$unmet</a> </ul> ## Memorial Sites $ memorials = { $ "Aaron Swartz": "http://aaronsw.com", $ "Prince": "prince.com", $ } <ul> $for memorial, memorial_url in memorials.items(): <li><a href=$urlify(memorial_url) rel=nofollow>$memorial</a> </ul> $ losts = { $ "Mark Gruber": "diveintomark.org", $ "Jay Graber": "jaygraber.com", $ "Dave Chappelle": "http://davechappelle.com", $ } $ zombies = { $ "Kyle Mahan": "kylewm.com", $ } ## Lost [?](https://indieweb.org/lost_sites) <ul> $for lost, lost_url in losts.items(): <li><a href=$urlify(lost_url) rel=nofollow>$lost</a> </ul> ## Zombies [?](https://indieweb.org/zombie) <ul> $for zombie, zombie_url in zombies.items(): <li><a href=$urlify(zombie_url) rel=nofollow>$zombie</a> </ul> ## Notable people without a website $ notables = { $ "Mark Zuckerberg": "facebook.com/zuck", $ "Elon Musk": "x.com/elonmusk", $ } <ul> $for notable, notable_url in notables.items(): <li><a href=$urlify(notable_url) rel=nofollow>$notable</a> </ul> |