#indieweb 2016-08-11

2016-08-11 UTC
arlen joined the channel
#
KevinMarks1
anyone else want to fill out the comparison table: https://indieweb.org/lost_infrastructure
#
aaronpk
it's interesting that there has been relatively little exploration of friends/following/xfn stuff here so far
#
aaronpk
er, publishing your following list i mean
#
aaronpk
right now following is a private/functional thing
KartikPrabhu and goodoo joined the channel
#
KevinMarks
The silos kinda publish it
AngeloGladding joined the channel
#
aaronpk
right but we haven't really done anything with that yet
#
aaronpk
like, does anyone even publish a following list on their own site? even if it's copied from a silo following list?
#
aaronpk
what is following?
#
Loqi
follow is a common button in silo UIs (like Twitter) that adds updates from that profile (typically a person) to the stream shown in an integrated reader, and sometimes creates a follow post either in the follower's stream ("… followed …" or "… is following …") thus visible to their followers, and/or in the notifications of the user being followed ("… followed you") https://indieweb.org/following
#
aaronpk
rhiaro creates a post when she follows (subscribes) to something, but I don't see a list of everything she follows other than this list of the follow posts themselves http://rhiaro.co.uk/follows
#
AngeloGladding
i'm treating the `person` object as a first-class object on my platform
#
AngeloGladding
where has all the XFN love gone?
#
aaronpk
i guess my question is what's the purpose of it?
#
AngeloGladding
a follow list or XFN?
#
aaronpk
we seem to be able to subscribe, reply and otherwise interact with people without an explicit friend graph
#
miklb
I never grokked XFN when I started with WP. I did have the classic "blogroll" of people's sites I subscribed to and interacted with via comments.
#
AngeloGladding
having an internally held cache of related peoples has a place
#
AngeloGladding
exposing the entire thing publicly annotated with XFNs isn't the purpose
#
AngeloGladding
just too easy not to
#
aaronpk
yeah exactly, and also an internal cache (/nicknames-cache) does not have to imply you're subscribed to those people either
#
AngeloGladding
followee denotes subscription, follower is just karmic
#
AngeloGladding
i want a "friend" to be able to indieauth in to my site and have a more intimate list of contacts
#
AngeloGladding
is that a thing?
#
aaronpk
sure! you also don't need to publish your friends list for that to work
#
AngeloGladding
correct
#
AngeloGladding
does your site have an indieauth sign in?
#
aaronpk
my previous site did, but i haven't added that back
#
aaronpk
i used to have private posts you could indieauth in to see
[chrisaldrich] joined the channel
#
[chrisaldrich]
Evening! Angelo, I'm on my way over, but may not make the writing hour completely...
#
AngeloGladding
hey Chris. I'm here.
#
AngeloGladding
see you soon
#
AngeloGladding
aaronpk: I haven't gotten there yet but I assume there'll be a reason to provide privileged content.
#
AngeloGladding
like full contact info.
#
aaronpk
yeah, i'm looking forward to playing with that again too
#
AngeloGladding
your p3k-v1 page is very informative
#
AngeloGladding
what SQL backend are you using for the cache?
#
AngeloGladding
and your flat files are in markdown (.md)? looks like yaml
#
aaronpk
yeah it's approximately the same as jekyll. a yaml header with markdown content
#
AngeloGladding
intersting.. is the code to sync the two complex?
#
aaronpk
it's just a one-way sync so it's easy.
#
aaronpk
basically erase the post from the DB and then re-create it
#
AngeloGladding
so purely cache-like..
#
AngeloGladding
makes sense
#
AngeloGladding
how do you feel about redis as a backend?
#
AngeloGladding
maybe that question is too open ended
#
aaronpk
i use redis a lot, just not for storage
#
aaronpk
wonders if we're getting too tech specific and maybe should take it to #indieweb-dev
#
AngeloGladding
can i ask how large your flat file folder is?
#
aaronpk
1.3gb but that includes images and video
#
aaronpk
also wow 2016 is almost twice as large as the next largest year
#
AngeloGladding
i'd be interested in a content-type breakdown
#
aaronpk
my unix-foo isn't good enough for that
KevinMarks1 joined the channel
#
KevinMarks1
I have xfn's, but they never get updated
#
aaronpk
KevinMarks1: lol yeah. probably because they aren't used for anything. if they were used for something that mattered to you, you'd update them!
#
aaronpk
AngeloGladding: okay i have about 16mb of .txt files
#
aaronpk
only 64mb of mp4, that seems low
#
AngeloGladding
find -name \*.md | xargs du -ch
#
AngeloGladding
that might be one way
#
AngeloGladding
ok
#
AngeloGladding
16mb is nothing
#
AngeloGladding
cool
#
AngeloGladding
thnx
#
AngeloGladding
yes, XFN is highly untapped at the moment
#
aaronpk
each folder takes 8k disk space because of the filesystem too, not sure if that's counted in these totals
#
aaronpk
(and there's at least one folder per post)
#
AngeloGladding
how'd you feel about the db tax of a nightly redis dump to json/yaml
#
AngeloGladding
from cache to flat
#
aaronpk
i wouldn't want to be in a situation where the only copy of something is in redis, even if only for a day
#
AngeloGladding
yeah..
#
aaronpk
and past experience has taught me that processes that are always increasing in size will eventually break down
#
KartikPrabhu
what is following?
#
Loqi
follow is a common button in silo UIs (like Twitter) that adds updates from that profile (typically a person) to the stream shown in an integrated reader, and sometimes creates a follow post either in the follower's stream ("… followed …" or "… is following …") thus visible to their followers, and/or in the notifications of the user being followed ("… followed you") https://indieweb.org/following
#
AngeloGladding
you could say the same about a filesystem.. i'll double check my redis configuration for resilience.
#
AngeloGladding
either way i haven't come to a conclusion in that area yet
#
AngeloGladding
thanks for the info
#
AngeloGladding
p3k is fully closed atm?
#
aaronpk
the core of it is, but it uses a lot of open source libraries (and services)
#
aaronpk
i guess redis does have the option to sync itself to disk every n seconds, so at least that would help protect against accidental reboots
#
AngeloGladding
yeah
#
aaronpk
but i still don't like the idea of having to export all the posts every day, cause that job is only ever going to get larger
#
AngeloGladding
i'm definitely storing largish content in flat files
#
AngeloGladding
largish text content
#
AngeloGladding
and DEFINITELY media content
#
AngeloGladding
so its more about the metadata
#
AngeloGladding
i noticed straightedgevegan has a one-click install for his ruby platform
#
AngeloGladding
do you ever expect to open yours in a similar vein?
#
aaronpk
i've been thinking about it
#
aaronpk
it's a whole different project to get any piece of software to work as a one-click install
#
aaronpk
but at this point i want to use it myself on half a dozen different domains, so that would benefit myself too now, so it's tempting
#
AngeloGladding
i was writing up an install tutorial and had an ahah moment..
#
AngeloGladding
just shell script it
#
AngeloGladding
so i have
#
AngeloGladding
reproducibility is refreshing
#
AngeloGladding
python is also a little more difficult to get going
#
AngeloGladding
i'll flesh out some pages on indieweb.org once i'm complete
#
@sdepolo
Totally inspired to try these #indieWeb #wordpress plugins https://indieweb.org/WordPress/Plugins Anyone from #WCYVR @wordcampyvr tried it?
(twitter.com/_/status/763548343754563586)
[jimpick] joined the channel
#
[jimpick]
Yay, it worked
#
aaronpk
nice turnout!
#
@kevinmarks
#indieweb @kevinmarks: welcome to Homebrew Website Club SF - who has something to share?
(twitter.com/_/status/763555121234141184)
#
@kevinmarks
#indieweb @benwerd: I got my Alexa Echo - so the NSA can now listen to my living room - I want it to tell me what my friends are doing
(twitter.com/_/status/763555422615769088)
#
@kevinmarks
#indieweb @benwerd: I want to ask my Alexa what's Kevin up to tonight? I have an idea of how this could work
(twitter.com/_/status/763555786450755584)
#
@kevinmarks
#indieweb @benwerd: I want my domain to act as the source of truth for what I'm doing, either publicly or more privately
(twitter.com/_/status/763555974061953024)
#
@kevinmarks
#indieweb @benwerd: I want to tie this into our own domains - what meetings, what conferences, what deals?
(twitter.com/_/status/763556150793080832)
#
@kevinmarks
#indieweb @sdepolo: I had Siri working well for me, but it seemed to change with a new release
(twitter.com/_/status/763556986923483136)
#
@kevinmarks
#indieweb @benwerd: I find echo works really well, and Siri never worked for me because of my accent
(twitter.com/_/status/763557098592567296)
gRegorLove joined the channel
#
@kevinmarks
#indieweb @benwerd: I wrote a web-based voice bot myself and it runs on android phones, but not iOS
(twitter.com/_/status/763558174158913536)
#
@kevinmarks
#indieweb @benwerd: what's interesting is to move this beyond one domain and make it flexible
(twitter.com/_/status/763558283701542912)
#
@kevinmarks
#indieweb @benwerd: one thing the silos do is simplify installing and maintenance - it is a matter of UX
(twitter.com/_/status/763558593748754432)
#
@kevinmarks
#indieweb @benwerd: I find that if I'm in a bar and want to share something, I use instagram not my own code
(twitter.com/_/status/763558901744799744)
#
@nitin
#indieweb not sure how this works but I'd like to ask for a solution of the impermanent link problem. Is owning ur domain the only answer?
(twitter.com/_/status/763559047962386433)
#
@kevinmarks
#indieweb @sdepolo: I do wonder as millennials take over, will the more hidden take over - will they go back to old web werdness?
(twitter.com/_/status/763559110210097152)
#
@kevinmarks
#indieweb @benwerd: did you see that orkut relaunched as http://hello.com this week? no, not https://t.co/btSSKBF0qH, Hello
(twitter.com/_/status/763559229164777472)
#
@kevinmarks
#indieweb @kevinmarks: how blogging worked in 2000 we'd click through our blogroll each morning and see our friends stories. That's snapchat
(twitter.com/_/status/763560009779249152)
#
aaronpk
omg you're right
#
GWG
aaronpk: When does the Aaron Parecki skillset for Alexa come out?
#
@kevinmarks
#indieweb @jeremyllewellyn: with snapchat it was the first time I could send context with what I was doing, not just text - nothing did that
(twitter.com/_/status/763560336683331584)
#
gRegorLove
I'm wondering about SVG image fallbacks, any pointers?
#
@kevinmarks
#indieweb @jeremyllewellyn: now you just hold your phone and you have video context as well
(twitter.com/_/status/763560480812269569)
#
bear
oh man - I missed a great conversation earlier it looks like (python coder even!)
#
GWG
gRegorLove: There are scripts that will generate them.
#
@kevinmarks
#indieweb @kevinmarks: one thing snapchat enabled was quick facial reactions - not myfacewhen, but my actual face
(twitter.com/_/status/763560884128079872)
#
@kevinmarks
#indieweb @benwerd: when did twitter bring in live video reactions? was that recently?
(twitter.com/_/status/763561016009560064)
#
@kevinmarks
#indieweb @sdepolo: yes, they had periscope but they put it in the app recently
(twitter.com/_/status/763561084641021952)
#
@kevinmarks
#indieweb @sdepolo: at godaddy we gave up email responses and went to live responses and chat and it was better - context wins
(twitter.com/_/status/763561235342295041)
#
@kevinmarks
#indieweb @sdepolo: if you still need email support there is godaddy pro, but the live context makes it better
(twitter.com/_/status/763561485926883328)
#
@kevinmarks
#indieweb @sdepolo: They hired non-technical people because it was easier to teach people to be technical than to teach techs to be nice
(twitter.com/_/status/763562003155812353)
#
aaronpk
😂
#
@kevinmarks
#indieweb @benwerd: context and privacy are related - we've done dumb writes well - not sure who we're addressing
(twitter.com/_/status/763562201747775489)
#
@kevinmarks
#indieweb @benwerd: all the platforms we have now are proofs of concept, but the only make sense with context we speak to
(twitter.com/_/status/763562406501052416)
#
gRegorLove
Slack isn't bridged to IRC yet, right?
CherryPuffs and [katiejohnsonsf] joined the channel
#
[katiejohnsonsf]
Hello from bellingham
#
gRegorLove
Question answered :)
jim_irc, doesntgolf and KevinMarks joined the channel
#
@gRegorLove
It was great meeting everyone! Join us for the next meetup on August 24. #indieweb https://twitter.com/jimpick/status/763553587754442752
(twitter.com/_/status/763573182137716736)
gRegorLove, Gold, AngeloGladding and bashrc joined the channel
#
@dshanske
@sdepolo @wordcampyvr Alas, no. I'll be at Indiewebcamp NYC2. But happy to help online.
(twitter.com/_/status/763583645068169216)
renoirb, M-RyanRix and AngeloGladding joined the channel
#
@sdepolo
New definition of CS is not "Computer Science" but "Collaborative Success" - @VinceKohli at #indieweb meetup.
(twitter.com/_/status/763587813623279617)
shiflett joined the channel
#
KevinMarks
Doh, forgot to take a photo
goodoo and [chrisaldrich] joined the channel
#
[chrisaldrich]
I realized as I was leaving LA that I forgot a photo too...
#
[chrisaldrich]
Of course I wasn't busy documenting the group conversation as well as KevinMarks does with noterlive, so I don't have the great excuse he does...
[kevinmarks] joined the channel
#
[kevinmarks]
Except when I started talking and stopped taking notes
#
[chrisaldrich]
... I have the same problem. I generally prefer to be personally "present" and document things after the fact. It's too hard to livetweet and pay rapt attention at the same time.
#
GWG
I just bought a VPS in LA
#
[chrisaldrich]
GWG: so you're coming out in November to visit it?? :slightly_smiling_face:
#
[chrisaldrich]
(IndieWebCamp, nudge, nudge, wink, wink)
KartikPrabhu joined the channel
#
GWG
[chrisaldrich]: I was considering it. I haven't been to LA in some years.
#
[chrisaldrich]
There was actually a tiny hiccup on that front today so don't book your ticket just yet. I'm hoping things will be ironed out tomorrow.
#
GWG
It's a bit early for that.
#
[chrisaldrich]
I'm sure you're worrying more about IWC NYC first... anything we can do to help remotely?
#
GWG
Got any friends in NYC you can solicit?
miklb, quails and Jeena_ joined the channel
#
KevinMarks
I did try
arlen, Kopfstein and AndChat|566325 joined the channel
#
@annbass
@kevinmarks Love these notes! Thanks. Wish we had #IndieWeb action in #Seattle. (But I'm too busy to start it)
(twitter.com/_/status/763624255724466176)
mlncn, jihaisse, friedcell, loicm, AngeloGladding, mlncn_, quails, cweiske, miklb, Lana, keroberos, Pierre-O, miklb_, friedcell1, adactio and cmal joined the channel
#
@cmal_PP
@anildash The Social Web still exists with Indieweb and the W3 Social WG. It's thriving with upcoming standardization of many techs.
(twitter.com/_/status/763691174037250053)
mindB2 joined the channel
#
@cmal_PP
@anildash Go check Bridgy out, it's designed as a gateway between silos and the #Indieweb. @withknown uses it with impressive results!
(twitter.com/_/status/763696582671929344)
mindB joined the channel
#
@anildash
@openupdigi there are lots of folks in the indieweb movement who are building tools to do this on a tech level. Key is platform integration.
(twitter.com/_/status/763697767038513152)
lukas, Albraga, ben_thatmustbeme, yep, Pierre-O, chridal, qasaur, friedcell, pfefferle, hs0ucy, majornaise, mlncn_ and gko joined the channel
#
aaronpk
current status: load testing my site via hackernews
OsakaFoo joined the channel
#
OsakaFoo
aaronpk: tried alt+l yet?
#
aaronpk
alt+l?
#
OsakaFoo
weechat - allows you to click long URLs
#
aaronpk
so actually a few months after writing that article i started using glowing-bear.org
#
OsakaFoo
aah yes
#
aaronpk
currently debating the best way to update the post to reflect that
#
petermolnar
this is kind of a problem with old articles; if people don't check the date, it will back at you
#
petermolnar
I was wondering to put up a "banner" on posts 1+ years old, especially on the tech related ones, that careful, this might be outdated
mindB joined the channel
#
OsakaFoo
petermolnar: that would be a good idea
#
aaronpk
automatic?
#
aaronpk
not a bad idea
#
aaronpk
i've done that manually on a few posts
#
OsakaFoo
aaronpk: Nice post though :D
#
aaronpk
thanks :)
XgF and vedharish joined the channel
#
Loqi
[indieweb] "Why I Live in IRC (2015)" by Spydar007@news.ycombinator.com (Spydar007) https://aaronparecki.com/2015/08/29/8/why-i-live-in-irc
Toba_, shiflett, jboy and KevinMarks_ joined the channel
#
aaronpk
jonnybarnes: :)
majornaisse, singpolyma and [kevinmarks] joined the channel
#
[kevinmarks]
Do you want to update the channel name in that post?
#
aaronpk
anyone who tries to join will get redirected here
friedcell joined the channel
#
aaronpk
awesome. that photo layout script I wrote in germany dropped in to my site pretty seamlessly!
#
aaronpk
i'm pretty happy i added that view counter to my articles the other day
#
petermolnar
viewcounter? like a visitor counter, back in the old days? :)
#
petermolnar
much retro :)
#
aaronpk
i'm not displaying it anywhere yet but i'm watching this one tick up like crazy
#
petermolnar
you should generate a banner out of it ;)
#
GWG
Fun
#
aaronpk
instagram and vine shows views on videos now!
#
petermolnar
yet another full circle
loicm joined the channel
#
GWG
aaronpk: What was the name of that mail service you recommended the other day? I forgot to bookmark it.
#
aaronpk
mailgun
#
GWG
Thank you. Couldn't remember that.
#
GWG
I had to set up a low end VPS for something I don't want on my usual server and I want it to be able to send alert emails.
#
aaronpk
i also like Amazon SES for sending email but it's a little more awkward to set up
#
GWG
aaronpk: And no free tier. How many emails can I send about server alerts in a month?
#
petermolnar
GWG if you need help with mailservers, feel free to ask
#
GWG
petermolnar: My point is avoiding setting one up. I'd rather relay through a service that is hardened.
#
aaronpk
amazon ses is so cheap it's basically free
loicm joined the channel
#
aaronpk
+1 to that
#
GWG
Well, right now I'm using a gmail relay, but I want to move away from that. It has certain unfortunate consequences.
wolftune, hs0ucy and leg joined the channel
#
Loqi
[indieweb] "Comment on The Indieweb Frees Me From “Awaiting Moderation” by Karen Ely" by Karen Ely http://boffosocko.com/2016/08/10/the-indieweb-frees-me-from-awaiting-moderation/#comment-31656
#
Loqi
[indieweb] "Comment on The Indieweb Frees Me From “Awaiting Moderation” by Meredith Collins" by Meredith Collins http://boffosocko.com/2016/08/10/the-indieweb-frees-me-from-awaiting-moderation/#comment-31663
#
aaronpk
oh dear, it might be time to start looking at some level of optimization of things
#
aaronpk
i've set up quite the rube goldberg machine for myself
#
Toba_
i got here because of your irc article aaronpk
#
Toba_
that sounds really true
#
Toba_
ha
#
aaronpk
waves to Toba_
#
Toba_
hi. *wave*
#
aaronpk
i was talking about my website actually
#
aaronpk
bridgy sends me a webmention when someone tweets my article. I store that and update the article. then (according to /salmention) I send out webmentions for all the links again.
#
aaronpk
but because I use Telegraph to send webmentions, the first thing it does is verify that the webmention it's about to send is valid, so it goes and fetches my article
#
Toba_
oh dear
#
Toba_
I can see how this could have some edge cases
#
aaronpk
it does this for every link. so now when anyone sends me a webmention, the result is telegraph makes like 20 requests to my site in a row
#
Toba_
"why are you hitting yourself?"
Pierre-O joined the channel
#
aaronpk
so sadly some of my views are not real views
#
Toba_
I mean, they already aren't, there are other bots online
#
petermolnar
https://www.nginx.com/blog/benefits-of-microcaching-nginx/ - this might come handy, especially for these cases
#
aaronpk
yeah but i'm okay with counting other bots fetching the post, somewhat
#
aaronpk
but stuff that my site does just itself shouldn't count
#
aaronpk
petermolnar: oh yeah i remember that article!
#
aaronpk
i guess i could switch to a JS counter for the posts
thebaer and ddave joined the channel
#
aaronpk
switched to JS counting
cmal and majornaise joined the channel
#
Loqi
[indieweb] "Homebrew Website Club Meetup Pasadena/Los Angeles 8/10/16" by Chris Aldrich http://boffosocko.com/2016/08/11/homebrew-website-club-meetup-pasadenalos-angeles-81016/
#
Loqi
[indieweb] ""Homebrew Website Club Meetup Pasadena/Los Angeles 8/10/16" in Boffo Socko" by ChrisAldrich https://medium.com/boffo-socko/homebrew-website-club-meetup-pasadena-los-angeles-8-10-16-9c8887ba5083?source=rss-f9e3747f5480------2
[kevinmarks] joined the channel
#
[kevinmarks]
Can you use etag/last-modified to mitigate that, or will the embedded webmention mess that up?
#
[kevinmarks]
That's a good fix for not taking a photo
AngeloGladding joined the channel
#
Loqi
[indieweb] "Indieweb Technology Frees Me from “Awaiting Moderation”" by leephillips https://news.ycombinator.com/item?id=12269421
#
aaronpk
do i need to set cache headers in order for the microcache to work?
#
cmal
hey, has anybody thought of or implemented a flat-file database for time-ordered collections (streams) using fixed-length ids and timestamps so that we can query the collection in o(log(n))? I was just thinking about it last night and I see no reason not to do it but maybe somebody has more insights on the matter :-)
#
aaronpk
i have done almost that. let's discuss the details in #indieweb-dev :-)
#
Loqi
[indieweb] "Indieweb Technology Frees Me from “Awaiting Moderation”" http://boffosocko.com/2016/08/10/the-indieweb-frees-me-from-awaiting-moderation/
[chrisaldrich] joined the channel
#
[chrisaldrich]
aaronpk, thanks for bookmarking to news.indieweb, I'd forgotten to do it, but remind me, is it the <a href="https://news.indieweb.org/en/boffosocko.com/2016/08/11/homebrew-website-club-meetup-pasadenalos-angeles-81016/" class="u-syndication syndication"> bit that does the webmention to push it there? I'll set it up to do that automatically next time.
#
Loqi
[boffosocko.com] Homebrew Website Club Meetup Pasadena/Los Angeles 8/10/16
#
[chrisaldrich]
kevinmarks: thanks for the artwork compliment :wink: Pictures are important!
#
aaronpk
[chrisaldrich]: almost. full instructions here https://news.indieweb.org/how-to-submit-a-post
#
[chrisaldrich]
aaronpk: thanks! I hadn't noticed pingback support was baked in. Perhaps since I'm using WordPress, which does that automatically, I'll give that a try too. I suspect it may not have been tested yet?
#
aaronpk
it's using the pingback->webmention forwarding that webmention.io provides so probably works fine :)
#
[chrisaldrich]
good to know!
majornaisse joined the channel
#
Loqi
[indienews] New post: "The Indieweb Frees Me From “Awaiting Moderation”" http://boffosocko.com/2016/08/10/the-indieweb-frees-me-from-awaiting-moderation/
ChrisAldrich, misuba and KevinMarks joined the channel
#
@ChrisAldrich
.@kevinmarks We should definitely encourage @jeffjarvis and students to attend IndieWebCamp NYC http://2016.indieweb.org/nyc2
(twitter.com/_/status/763789512841400320)
mlncn_, KevinMarks, goodoo, KevinMarks_, chrisaldrich1 and Pierre-O joined the channel
#
chrisaldrich1
!tell kevinmarks Are the yellow highlighted question marks generated by CSS on anchors / ::after on kevinmarks.com intentional? Or are they placeholders for the glyph you're creating named "Kevin" that hasn't been put into your font family yet? ;) Possibly a new iteration of /fragmention?!
#
Loqi
Ok, I'll tell them that when I see them next
shiflett and gRegorLove joined the channel
cweiske and [kevinmarks] joined the channel
#
[kevinmarks]
Oh whoops, that was my experiment with verifying rel-me that I didn't finish
#
Loqi
[kevinmarks]: chrisaldrich1 left you a message 18 minutes ago: Are the yellow highlighted question marks generated by CSS on anchors / ::after on kevinmarks.com intentional? Or are they placeholders for the glyph you're creating named "Kevin" that hasn't been put into your font family yet? ;) Possibly a new iteration of /fragmention?!
#
[kevinmarks]
I should finish that
#
Loqi
I agree
#
chrisaldrich1
Making your Kevin Mark glyph, or the CSS issue?
mattattaque joined the channel
#
[kevinmarks]
The rel me checker
#
@sh3v3k
What is the #DecentralizedWeb & what are its implications? 24 insights from #dwebsummit https://ischoolonline.syr.edu/blog/what-is-the-decentralized-web/#Samer #decentralization #indieweb
(twitter.com/_/status/763805325686439936)
mlncn_ joined the channel
#
gRegorLove
chrisaldrich1++ for the stickfilter HWC photo, haha
#
Loqi
chrisaldrich1 has 1 karma
#
Loqi
gRegorLove: lol
#
aaronpk
stickfilter haha
goodoo joined the channel
#
@sdepolo
@dshanske @wordcampyvr Thanks. Guess what? My colleague @andymci is planning to be at indiewebcamp NYC2. You guys should connect!
(twitter.com/_/status/763807359453896705)
[shaners] joined the channel
#
[shaners]
I’ve got some good news bad news.
#
[shaners]
Bad news: I won’t be able to organize the IWC LA anymore. Life happened.
#
[shaners]
Good news: chrisaldrich is taking over organizing duties for me. So the show will go on.
#
aaronpk
oh? permanently leaving LA?
#
[shaners]
chrisaldrich++
#
Loqi
chrisaldrich has 5 karma (4 in this channel)
#
[shaners]
Not necessarily. But I won’t be back before IWC with enough time to rally interest on the ground by going to other community and language meetups. Like I had originally planned.
#
[shaners]
Figured it better to pull out way ahead of time than trying to convince myself that I could pul it off and letting myself and others down. :confused:
#
aaronpk
ah yeah
misuba and loicm joined the channel
#
bear
[shaners]++ for realistic balance choices
#
Loqi
shaners has 57 karma (53 in this channel)
iom joined the channel
#
GWG
I am going to try to come to LA
#
GWG
I get the feeling that with chrisaldrich in charge, there will be many WordPress users there.
KartikPrabhu joined the channel
#
chrisaldrich1
I'm working on it GWG, but I'm also very open minded and thrilled to have anyone of any stripe there.
#
chrisaldrich1
GWG, you should follow up with KevinMarks in the coming weeks to push the Jeff Jarvis angle to get he and his journalism students to attend IWC NYC
#
chrisaldrich1
You might also consider reaching out to Hacks/Hackers-NYC, which is pretty active: http://www.meetup.com/hacks-hackers-nyc/
#
chrisaldrich1
shaners++ for getting things off the ground in LA
#
Loqi
shaners has 58 karma (54 in this channel)
#
chrisaldrich1
GWG, who made the nice landing page for NYC? http://2016.indieweb.org/nyc2
#
Loqi
IndieWebCamp NYC2 2016
#
aaronpk
i did. copied from the indieweb summit page http://2016.indieweb.org/
#
Loqi
IndieWeb Summit
#
chrisaldrich1
do I need access to push one up for IWC LA in november? Would be nice to have to start soliciting some sponsors.
#
aaronpk
hmm i could copy it for LA
#
aaronpk
my real goal is to make this happen automatically, driven from the wiki or via its own interface, but that's a project
#
chrisaldrich1
I'm happy to do the necessary tweaks/changes of the copied version...
#
aaronpk
i think we can arrange that
cmal joined the channel
#
aaronpk
i think a few of us are admins
bttf joined the channel
#
gRegorLove
Is it possible to share event posts there? I'd like to add https://www.facebook.com/events/1801830260051736/
doesntgolf_ joined the channel
#
aaronpk
not sure. i can make you an admin so you can post those events on that page itself
#
aaronpk
oh hey i can
#
chrisaldrich1
(in my best Oliver Twist voice): Please sir, may I have some more?
#
aaronpk
chrisaldrich1: alright here you go! https://github.com/indieweb/2016.indieweb.org
shiflett joined the channel
#
KevinMarks_
I'm on TWiG next week so I can press Jeff about indiewebcamp nyc then
cmal joined the channel
#
chrisaldrich1
thanks aaronpk!
jboy, mlncn_, goodoo, Lana, RibRab, miklb and [shaners] joined the channel
#
[shaners]
aaronpk: Is the #wordpress channel on chat.indieweb.org too?
[aaronpk] joined the channel
#
[aaronpk]
no, that's not a channel we have on IRC
KartikPrabhu joined the channel
#
gRegorLove
I think we're encouraging that to be in #indieweb-dev for now
BMW365, neilpdx, KevinMarks, sam__ and CherryPuffs joined the channel
#
Loqi
[indieweb] "Mike, it's an edge case for many to be sure (I don't expect my mother to encounter it often), but just another of hundreds of" by Chris Aldrich http://stream.boffosocko.com/2016/mike-its-an-edge-case-for-many-to-be-sure
#
Loqi
[indieweb] "Comment on The Indieweb Frees Me From “Awaiting Moderation” by Mike Sugarbaker" by Mike Sugarbaker http://boffosocko.com/2016/08/10/the-indieweb-frees-me-from-awaiting-moderation/#comment-31677
#
aaronpk
i just found my first tweet with a photo, it was in 2009
#
aaronpk
tweeted from twitpic.com
mindB, AndChat|566325 and KevinMarks joined the channel
#
aaronpk
and a multi-photo!
#
aaronpk
i posted three links to tumblr posts which only had a photo in them
#
aaronpk
manually back-ported to my site: https://aaronparecki.com/2009/11/13/1/
#
neilpdx
memories
#
aaronpk
is getting lost in a rabbit hole