61°F

Aaron Parecki

  • Articles
  • Notes
  • Photos
  • Mel Choyce http://choycedesign.com   •   Jan 14
    Pingbacks need a redesign!
    Aaron Parecki
    We thought so too! https://indieweb.org/Webmention
    Portland, Oregon, USA • 50°F
    7 likes 1 repost 3 replies
    Sun, Jan 14, 2018 5:04pm -08:00
  • Aswath Rao http://demo.mypor.ch/id/aswath   •   Jan 14
    Wouldn't that be antithetical to IndieWeb? Personally I prefer OpenID (at a practical level it has to be self-hosted)
    Aaron Parecki
    IndieAuth is meant to take over since OpenID 1.0 is effectively dead. If you want the details: https://indieauth.spec.indieweb.org/

    Ultimately micro.blog and Wordpress should have this built-in rather than using indieauth.com
    Portland, Oregon, USA • 52°F
    1 reply
    Sun, Jan 14, 2018 10:48am -08:00
  • Jonathan LaCour https://cleverdevil.io/profile/cleverdevil
    Great idea. I'd love to see this happen. https://twitter.com/benwerd/status/952300200164392960
    Portland, Oregon • 57°F
    Sun, Jan 14, 2018 12:13am +00:00 (liked on Sat, Jan 13, 2018 4:36pm -08:00)
  • Ben Werdmuller http://werd.io/   •   Jan 13
    I'm increasingly of the opinion that #indieweb work should be undertaken as part of a foundation, perhaps underwritten by @shuttleworthfdn or @webfoundation. An independent social web that is easy to build for and extend is an important idea.
    Aaron Parecki
    tbh I have thought about this a lot as well. I'm definitely not ready to take this on myself, but would be interested if I had some help.
    Portland, Oregon, USA • 57°F
    1 like
    Sat, Jan 13, 2018 4:32pm -08:00
  • Ben Werdmuller http://werd.io/
    -- the work that has been done on webmention, microformats, micropub, etc, has inspired a new generation of open web developers. It's shown what can be achieved. And if it can inform / inspire new platforms and web engineers, that seems incredibly valuable to me. (2/2)
    Portland, Oregon • 59°F
    Sat, Jan 13, 2018 1:53pm -08:00 (liked on Sat, Jan 13, 2018 1:54pm -08:00)
  • Ben Werdmuller http://werd.io/
    I'd respectfully like to disagree here. It's hard to argue with the premise that Facebook is exponentially more popular, but I don't think the social ship has sailed - see Zuck's recent announcement of needing to rejig the news feed, for example. But more importantly -- (1/2)
    Portland, Oregon • 59°F
    Sat, Jan 13, 2018 1:52pm -08:00 (liked on Sat, Jan 13, 2018 1:53pm -08:00)
  • Paul 🌹📚 Cooper http://paulmmcooper.com
    Artist Andrei Lacatusu reimagines tech companies as decaying brick & mortar stores
    Portland, Oregon • 50°F
    Fri, Jan 12, 2018 12:59pm +00:00 (liked on Sat, Jan 13, 2018 10:33am -08:00)
  • Jet Villegas http://www.junglecode.net   •   Jan 13
    I've been closely following this work for *many* years now, and I don't see it scaling beyond the DIY scene. I don't think that's defeatist--there are other battles to fight and win.
    Aaron Parecki
    I've been *working* on this for many years, and hitting 1 million is a pretty exciting milestone! There's obviously still a long way to go, but it's important to celebrate the small victories along the way.
    Portland, Oregon, USA • 50°F
    2 likes
    Sat, Jan 13, 2018 10:30am -08:00
  • Jet Villegas http://www.junglecode.net   •   Jan 13
    Meanwhile 4 million Facebook Likes happened in the time it took to write this tweet. I get the DIY ethos, but ship has sailed.
    Aaron Parecki
    @junglecode I'm kind of surprised by that defeatist tone coming from someone who works at Mozilla.
    Portland, Oregon, USA • 47°F
    1 reply
    Sat, Jan 13, 2018 7:25am -08:00
  • 🌈 http://tantek.com/
    Today is the 1 year anniversary of the Webmention REC from the @W3C @SocialWebWG! https://www.w3.org/TR/2017/REC-webmention-20170112/

    And over 1 million webmentions have been sent peer-to-peer on the #openweb https://snarfed.org/1-million-webmentions

    Come celebrate! 2018-01-24: https://indieweb.org/events/2018-01-24-homebrew-website-club (ttk.me t4sP1)
    Portland, Oregon • 48°F
    Fri, Jan 12, 2018 10:54pm -08:00 (liked on Sat, Jan 13, 2018 7:17am -08:00) #openweb
  • Aaron Parecki
    at A-Boy plumbing
    Portland, Oregon • Fri, January 12, 2018 3:04pm
    45.535008 -122.621992
    Looking for stuff to mount shelves
    Portland, Oregon • 52°F
    12 Coins
    Fri, Jan 12, 2018 3:04pm -08:00
  • aaronpk https://github.com/aaronpk   •   Jan 12

    #52 Remove images from posts containing a photo

    Aaron Parecki

    Encountered two blockers working on this:

    1) In a simple example of an img tag inside an e-content tag, the parsers are using the img tag as an implied photo property. This seems wrong to me. Example This means XRay sees a post like this as a photo post, and would remove the img tag from the content, which is definitely not the right thing to do.

    <div class="h-entry"><p class="e-content p-name">Hello World <img src="example.jpg"></p></div>
    
    {
        "type": [
            "h-entry"
        ],
        "properties": {
            "name": [
                "Hello World http://example.com/example.jpg"
            ],
            "content": [
                {
                    "html": "Hello World <img src=\"http://example.com/example.jpg\">",
                    "value": "Hello World http://example.com/example.jpg"
                }
            ],
            "photo": [
                "http://example.com/example.jpg"
            ]
        }
    }
    

    2) At the point that XRay is sanitizing the HTML value, the Microformats parser has already converted the HTML to plaintext.

    For example, XRay sees this object and runs the HTML sanitizer on the HTML value:

    {
        "html": "Hello World <img src=\"http://example.com/example.jpg\">",
        "value": "Hello World http://example.com/example.jpg"
    }
    

    This means I can't remove the img tag from the plaintext value since it's already been parsed. I think my only solution for this is going to be to create my own plaintext value out of the sanitized HTML. Unfortunately, that is not a straightforward process, as demonstrated by this relatively long function that does this in the PHP parser. However that might be the technically better option anyway, since XRay can't be sure exactly what method was used to generate the plaintext value from the original HTML anyway.

    Portland, Oregon, USA • 49°F
    Fri, Jan 12, 2018 7:32am -08:00 #xray
  • David Shanske https://david.shanske.com

    Launching of Weather

    Portland, Oregon • 49°F
    2 mentions
    Thu, Jan 11, 2018 11:04pm -05:00 (liked on Fri, Jan 12, 2018 6:25am -08:00)
  • Geraldine http://everywhereist.com
    I decided to make the damn pizza dough cinnamon rolls in Mario Batali's apology letter.

    http://bit.ly/harassroll
    Portland, Oregon • 52°F
    Wed, Jan 10, 2018 6:17pm -08:00 (liked on Thu, Jan 11, 2018 11:13am -08:00)
  • aaronpk https://mastodon.social/@aaronpk   •   Apr 20

    Hello world. Ignore me.

    Aaron Parecki
    Test reply for Bridgy Fed
    Portland, Oregon, USA • 51°F
    Thu, Jan 11, 2018 9:18am -08:00
  • Marty McGuire https://martymcgui.re/   •   Jan 9
    Sad to miss this @HWCBaltimore! Colds are dumb. 😷
    Glad to see y'all made some Wordpress progress!
    So excited for @IndieWebCamp Baltimore!
    Aaron Parecki
    oh no you too? I've been on the tail end of a cold for the past week! 😷 I'm hoping it's all gone before IndieWebCamp Baltimore!
    Portland, Oregon, USA • 48°F
    1 like 1 reply
    Tue, Jan 9, 2018 5:50pm -08:00
  • inessential http://inessential.com/   •   Jan 9
    App Idea: Mentions: http://inessential.com/2018/01/09/app_idea_mentions
    Aaron Parecki
    I'm doing basically this already thanks to @superfeedr doing all the crawling! It translates any mention of my site into a Webmention which I handle like every other Webmention, which sends me a push notification to my phone! https://aaronparecki.com/2016/02/20/5/global-webmentions
    Portland, Oregon, USA • 49°F
    3 likes
    Tue, Jan 9, 2018 3:39pm -08:00
  • Aaron Parecki
    at Imperial
    Portland, Oregon • Tue, January 9, 2018 3:35pm
    45.521108 -122.678698
    Time for a 🥃 while I wait for my new 🔋📱
    Portland, Oregon • 49°F
    21 Coins
    Tue, Jan 9, 2018 3:35pm -08:00
  • Aaron Parecki
    at Apple Pioneer Place
    Portland, Oregon • Tue, January 9, 2018 12:50pm
    45.517602 -122.677435
    Seeing if I can get a new battery 🔋
    Portland, Oregon • 45°F
    8 Coins
    Tue, Jan 9, 2018 12:50pm -08:00
  • Aaron Parecki
    at Amazon@Downtown Portland
    Portland, Oregon • Tue, January 9, 2018 12:09pm
    45.516537 -122.685796
    Quite the little distribution hub they have going here!
    Portland, Oregon • 47°F
    12 Coins
    Tue, Jan 9, 2018 12:09pm -08:00
older

Hi, I'm Aaron Parecki, Director of Identity Standards at Okta, and co-founder of IndieWebCamp. I maintain oauth.net, write and consult about OAuth, and participate in the OAuth Working Group at the IETF. I also help people learn about video production and livestreaming. (detailed bio)

I've been tracking my location since 2008 and I wrote 100 songs in 100 days. I've spoken at conferences around the world about owning your data, OAuth, quantified self, and explained why R is a vowel. Read more.

  • Director of Identity Standards at Okta
  • IndieWebCamp Founder
  • OAuth WG Editor
  • OpenID Board Member

  • 🎥 YouTube Tutorials and Reviews
  • 🏠 We're building a triplex!
  • ⭐️ Life Stack
  • ⚙️ Home Automation
  • All
  • Articles
  • Bookmarks
  • Notes
  • Photos
  • Replies
  • Reviews
  • Trips
  • Videos
  • Contact
© 1999-2025 by Aaron Parecki. Powered by p3k. This site supports Webmention.
Except where otherwise noted, text content on this site is licensed under a Creative Commons Attribution 3.0 License.
IndieWebCamp Microformats Webmention W3C HTML5 Creative Commons
WeChat ID
aaronpk_tv