#indiewebcamp 2016-01-11

2016-01-11 UTC
#
kylewm
GWG: I have posted a few https://kylewm.com/reviews/
#
GWG
I've never done a review as anything but an article. I may start.
#
kylewm
snarfed has a different approach https://snarfed.org/books
#
KartikPrabhu
kylewm: the "older" button goes to a blank page
#
KartikPrabhu
kylewm: nice "subscribe" UI!
#
kylewm
KartikPrabhu: thanks, it's SubToMe, which is amazing
#
KartikPrabhu
what is SubToMe?
#
Loqi
SubToMe is a button content publishers can put on their sites which enables users to subscribe to their feed in whatever reader they choose — sort of a universal follow button https://indiewebcamp.com/SubToMe
#
GWG
I suppose I should reserve review for future use
lukebrooker joined the channel
#
aaronpk
[shaners]++ i like it!
[shaners] joined the channel
#
[shaners]
aaronpk: thanks.
#
[shaners]
The plan is to use Dark Matter + generic noun for all the parts and pieces
#
[shaners]
Dark Matter Publisher, Dark Matter Reader, Dark Matter Box, etc
ttepasse joined the channel
#
[shaners]
Which solved my naming convention problem
#
[shaners]
I had previous plans to name my eventual reader thing “Feed Me. See More."
#
[shaners]
While clever, it didn’t tie into Homesteading (as a name), nor into Dark Matter.
#
[shaners]
aaronpk: how’s the home stretch looking for new site launch?
#
aaronpk
definitely wrapping things up now
#
aaronpk
only two more minor features to implement, then i'm going to start the import/conversion process
#
aaronpk
which I expect to turn up a few bugs and maybe missing features
#
[shaners]
I have one bug in my export/import script from old site content into new content. (Which I’m waiting on Bookis for help on). Then I’m flipping the switch.
#
aaronpk
wow nice
#
[shaners]
Then, the real work starts. Adding features: webmentions, posse, micropub. Plus more post types.
#
[shaners]
But it won’t be speculative anymore. It’ll be running on my site proper. Finally.
#
aaronpk
that will be a good feeling!
snarfed, lukebrooker, tantek and [shaners] joined the channel
#
[shaners]
aaronpk: when you get to the part where you import your old content, if you can wrap disparate sections in their own threads, then holy cow it goes faster.
#
aaronpk
i'm not really worried about speed
snarfed joined the channel
#
aaronpk
it's gonna take a looot of spot-checking individual posts since i have a lot of different kinds of content
#
[shaners]
Same. But as I get each post type importing correctly, I’m able to push it into the done pile. Wrap it in a thread. And pew pew pew!
#
tantek
what is this "import" process you speak of? why is the storage format changing? was it not a standard format to start with?
#
aaronpk
"standard" format
#
tantek
pretty sure anyone with a mf2 parser could use my (Falcon) storage files. just saying.
#
[shaners]
I’ve re-imported my whole thing several times now. That speed really starts to matter after the frist fews times.
#
tantek
does "import" mean, into a "cache"?
#
[shaners]
“just saying” he says
#
aaronpk
yes part of the process is indexing everything in the database
#
tantek
heck, the storage files themselves are public on my website (not directly linked to except from the indiewebcamp wiki)
#
[shaners]
tantek: do you have anything of importance that is not wrapped in mf2
#
aaronpk
but also i'm changing from storing posts in a subfolder per type to a single collection of dated files, so EVERYTHING is getting renamed
#
tantek
the storage files have some rel=next rel=prev links between them, and technically that's not mf2 though mf2 parsers do parse the rels
#
aaronpk
even though my actual "file format" isn't changing much, i still have to convert everything
#
tantek
aaronpk - ok that makes sense
#
tantek
well, the directory structure you use *is* part of the file format because it has assumptions built into it
#
tantek
I suppose mine does in that regard too
#
aaronpk
there is no "just" in storage implementation details
#
tantek
"single collection of dated files", um, does that mean one giant flat folder of YYYY-MM-DD-... files?
ttepasse joined the channel
#
aaronpk
tantek: /YYYY/mm/dd/index/post.txt with any associated files (like images) at /YYYY/mm/dd/index/public/photo.jpg
#
tantek
is index a number?
#
[shaners]
tantek: my import process is moving from my pile of duct tape and popsicle sticks codebase to Dark Matter (formerly HS). Some of my assumptions changed in that time. And some of our assumptions in the community changed in that time.
#
tantek
why the /public/ vs post.txt at same level?
#
aaronpk
[shaners]: i just realized i can't actually do any fancy speedup tricks, since i'm merging a URL structure that contains /notes/2015/01/01/1 and /replies/2015/01/01/1 which needs to turn into /2015/01/01/1 and /2015/01/01/2 and I want the index number to be in date order
#
[shaners]
eg, I was calling things “activities” before, now I’m calling them “posts”. etc
#
Loqi
gives aaronpk the index number to be in date order
#
aaronpk
tantek: that's just the storage location, as a URL it doesn't contain the "public" part
#
[shaners]
aaronpk: oh yeah. duh.
#
tantek
shaners, to be fair, getting storage formats right over a long time period is difficult
#
aaronpk
anything in the "public" subfolder is rewritten in nginx and doesn't actually get processed by any of my PHP code
#
KartikPrabhu
like "static" in python+Django
#
aaronpk
KartikPrabhu: yes except it's a folder per post
#
tantek
yikes
#
aaronpk
I didn't want the "post.txt" file to potentially be visible since I will be storing private posts the same way, I didn't want someone to try adding "post.txt" to the end of my URL
#
[shaners]
I first made these decisions in 2010
#
tantek
shaners, similarly, I made the first storage design decisions in 2009
#
KartikPrabhu
still has to make storage decisions
#
tantek
(obv, having had to launch on 2010-001)
#
tantek
ah I found a flaw. I started with pure hentry, and then started adding mf2 properties to it.
#
tantek
so the decisions we made to make the mf2 parser stricter in terms of back compat will no longer handle my storage format
#
tantek
(obv I have a custom format-specific parser since I implemented it before we had mf2 parsers)
kbs joined the channel
#
[shaners]
another change of heart and mind, i’ve had is having the /nth/ in the URL. I’m dropping it for Dark Matter. I’ll set up redirects for my personal site, to not break URLs in the wild. But I’m not pushing that onto other DM users.
#
[shaners]
index, whatever
#
tantek
nested after the date?
#
aaronpk
what's your solution instead?
#
[shaners]
`/YYYY/MM/DD/nth/slug`
#
tantek
is that current or future?
#
[shaners]
My solution instead is: `/post-type/yyyy/mm/dd/slug`
#
tantek
oh dear
#
[shaners]
first is current. second is future.
#
tantek
well we're covering various URL design options at least
#
tantek
shaners, that's ironic re /post-type/ first since aaronpk is getting away from that!
#
aaronpk
interesting. the initial post type in the URL is exactly what i'm moving away from
#
[shaners]
Yep! We’re going in opposite ways on this particular detail.
#
tantek
shaners and on slug too!
#
[shaners]
i think slugs are important
#
[shaners]
so, i’m keeping them
#
tantek
I think they're important for user-friendly URLs, and search rankings
#
tantek
I think it's important to keep them malleable since they're user data, and user data should always be editable by the user without breaking anything.
#
aaronpk
here's my new URL structure: https://docs.p3k.io/
#
[shaners]
this is one of my favorite pars of the #indieweb community/movement. we all get to decide what’s important to us and do that thing.
#
tantek
shaners - how do you handle a user wanting to have two posts with the same slug in the same day?
#
[shaners]
we’re not building a monolith by committtee
#
tantek
shaners - right, we're exploring different design options using our own websites. this is a good thing.
#
[shaners]
tantek: auto-increment the slug (if it’s the same post type)
#
tantek
ah, like kylewm does with events
#
tantek
so part of the slug is auto-generated then, and not user-authored
#
tantek
(sometimes)
#
[shaners]
two posts on same day of different types can use the same slug
#
tantek
what happens when a user edits a slug?
#
aaronpk
being able to edit slugs is probably the main reason I didn't want to use the slug as the internal identifier
#
aaronpk
but wordpress solved it, so :shrug:
#
[shaners]
It can be human authored. If it’s not, it gets generated from a slugging algorithm.
#
[shaners]
If it’s human authored, and not unique, it gets incremented.
#
tantek
aaronpk: "solved" it, uh, keeping track of redirects across site installs is a major pain and majorly fragile
#
aaronpk
across site installs?
#
tantek
aaronpk like when you change domains and do redirects etc.
#
tantek
I've yet to see someone make that work with wordpress AND changing slugs
#
aaronpk
that's true for any site though
#
tantek
not if the slug is not part of the permalink
#
tantek
or rather, is not a *required* part
#
aaronpk
wordpress keeps a history of every old slug for a post, so you could absolutely create an export that redirects every previous version of a post slug to the new domain
#
tantek
aaronpk - wordpress had to since they painted themselves in a corner
#
tantek
with yyyy/mm/slug
#
aaronpk
of course not everybody properly sets up redirects when they change domains or change platforms, but that's not really a wordpress problem
#
[shaners]
tantek: if an author changes her slug after publishing a post? Lookups are still done by the combo of type + date + slug. But we try to fallback if we can’t find it.
#
aaronpk
i still have yyyy/mm/slug entries in my master redirect list from when I was running wordpress
#
tantek
I change my slugs, sometimes several times, on 10-20% of my posts
#
tantek
so nice to not have to keep track of that anywhere
#
tantek
bbiab
#
[shaners]
any part of the URL is deletable from right to left. all subsets of paths still return something.
#
aaronpk
"not have to keep track of that anymore" is only true as long as you are running software that understands the way you handle slugs
#
aaronpk
so when I launch the change that turns posts like /notes/2015/01/01/2/slug into /2015/01/01/14/slug I actually have to keep code running that matches /notes/2015/01/01/2/* and redirects it
#
aaronpk
i can't just do it as a fixed list
#
[shaners]
eg: /yyyy/mm/dd/slug, /yyyy/mm/dd, /yyyy/mm, /yyyy. All work. The one with a slug is a a singular result (permalink). The others are paginated collections. Same can be done with a /post-type in front of any of those paths.
#
aaronpk
back to automatically adding location data and setting local timezones for my posts
#
[shaners]
YAYTIMEZONES
#
aaronpk
i actually feel i have a good handle on it in my current site which is nice
#
aaronpk
(it helps having a persistent source of my current location)
#
[shaners]
#truefax
kousu, KartikPrabhu1, xregetic, j12t and wolftune joined the channel
#
@steveklabnik
RT @veganstraightedge: I'm thinking about moving away from the name Homesteading for my #indieweb software because of its historical baggag…
(twitter.com/_/status/686391110185422848)
j12t_ joined the channel
#
@levlaz
@andigalpern I took your advice from Indieweb .. braindump side bar now has text under the icons. :) Thanks! https://twitter.com/levlaz/status/686398277135118336/photo/1
(twitter.com/_/status/686398277135118336)
tantek joined the channel
#
kylewm
this is neat https://libraries.io/github/kylewm/redwind ; for some reason all the interesting stuff is all the way at the bottom
Lancey joined the channel
#
kylewm
it pointed out that one of my libraries has a license I can't use
arlen and tantek joined the channel
#
tantek
aaronpk: *anywhere* not "anymore"
#
tantek
sometimes I find open tabs of old IRC logs (like over a year)
#
tantek
e.g. https://indiewebcamp.com/irc/2014-10-05 and have no idea why I left it open
#
tantek
aaronpk, shaners, how would you describe what you are doing with your site update / site transition / export / import process?
#
tantek
"restarting" your blog? updating your site?
#
tantek
I'm trying to figure out a name for it so we can capture some of these challenges (may help with future design)
[shaners] joined the channel
#
[shaners]
Hmm. That’s a good question.
#
[shaners]
I’ve completely rewritten the codebase.
#
kylewm
retooling?
#
[shaners]
And to move all of my content from old database to new database, I did what is effectively an export/import.
#
KartikPrabhu1
i called it "redux" when I wrote about moving from Blogger
#
[shaners]
I’d maybe call it rebuilding
#
[shaners]
redux: brought back; revived:
#
[shaners]
So, prolly not quite right for what aaronpk and I have each done.
#
[shaners]
kylewm: retooling doesn’t feel quite right either. at least in my case. i can’t speak for aaronpk, of course.
#
[shaners]
but i used almost all of the same tools (ruby, rails, pg, heroku). I just re-did it all from scratch.
#
[shaners]
tantek: I’d say either: rebuild or rewrite.
#
tantek
shaners, both you and aaronpk are making very drastic (code + data changes)
#
KartikPrabhu
"site transition" seems to capture it. It could be transitioning from one codebase to another or from silo to own site etc...
#
tantek
s/data changes)/data) changes
#
Loqi
tantek meant to say: shaners, both you and aaronpk are making very drastic (code + data) changes
#
tantek
other types of "transition" - site redesign - where the focus is presentational - the underlying DB / CMS etc. might still be the same
[aaronpk] joined the channel
#
[aaronpk]
I usually just refer to it as rebuilding or rewriting my site
#
tantek
site update or site upgrade - might be same-ish design but new version of CMS
#
[aaronpk]
as in, "It took me 10 months to rewrite my site. I don't recommend doing that."
#
tantek
aaronpk you used the word "launch" in https://aaronparecki.com/notes/2015/12/03/1/indieweb-hwc - so, site relaunch?
#
tantek
shaners is leaning towards "[site] rebuild" and aaronpk is leaning towards "[site] rewrite"
#
[aaronpk]
I wouldn't say relaunch unless I had stopped writing on my old site
#
[aaronpk]
But I am definitely launching a new version of my site
#
[shaners]
I wouldn’t call mine a relaunch either
#
[shaners]
This milestone is a “launch” of Dark Matter as a thing re-usable by other people though.
tantek and [number5] joined the channel
#
[number5]
shaners: rebranding :simple_smile:
#
[shaners]
Sure, I guess. But I’ve rebranded my site before without rewriting the underlying software.
lukebrooker, j12t, tantek, nitot, cweiske, KartikPrabhu1, Jihaisse, e-lima, squeakytoy and sanduhrs joined the channel
cweiske, friedcell, j12t, tantek and Guerillero|BNC joined the channel
#
petermolnar
good morning
elima, modem_, Tristitia and j12t joined the channel
#
@anvial61
#indieweb @anvial61: not sure if I understand how this works
(twitter.com/_/status/686494550135799808)
sanduhrs, j12t, tvn, adactio, frzn, friedcell, iboxifoo and glennjones joined the channel
#
www.hennevogel.de
edited /2016/Nuremberg/Guest_List (+315) "/* Participants */"
(view diff)
elima, j12t, mxuribe, crunchiebones, Phyks, singpolyma, mwunsch, fkooman, wolftune, KevinMarks, snarfed, friedcell, tvn_ and tvn joined the channel
#
@CaptainKurtis
@Sheeyahshee Have u heard of #indiewebcamp? my social movement, @sensiblemn, uses an #indieweb platform called @withknown for social media.
(twitter.com/_/status/686584473496981506)
j12t joined the channel
#
singpolyma
What kind of post is this? https://singpolyma.net/2016/01/disney-copyright-trademark/ -- it's like a repost... but of many other posts
#
tommorris
singpolyma: it's like an indie-storify ;-)
#
singpolyma
tommorris: yes
#
aaronpk
I call those a "collection"
LauraJ joined the channel
#
singpolyma
What is a collection?
#
Loqi
A collection is a type of post that explicitly lists and/or embeds multiple other posts chosen by the author https://indiewebcamp.com/collection
shiflett joined the channel
#
tommorris
the British government's GOV.UK site has a design pattern for a 'collection': https://insidegovuk.blog.gov.uk/2013/10/18/goodbye-series-hello-collections/
[jonnybarnes] joined the channel
#
[jonnybarnes]
Did David ever make his Laravel inidiewb plugins? https///indiewebcamp.com/Laravel
#
[jonnybarnes]
Oh, that URL got mangled by nintype
#
aaronpk
huh, I'm not even sure what that means
#
aaronpk
my new site is written in Lumen (a subset of Laravel)
#
aaronpk
and some of the other p3k components use it too
#
singpolyma.net
edited /collection (+194) "/* IndieWeb Examples */ add my example"
(view diff)
#
mwunsch
Hi there I'd like to attend https://indiewebcamp.com/2016/NYC
#
aaronpk
mwunsch: welcome!
#
mwunsch
aaronpk: thank you. didn't know if there was more to do other than just editing the Wiki
#
aaronpk
that's the best way for sure!
#
aaronpk
have you already signed in to the wiki before or do you need help setting that up?
tvn_ joined the channel
#
markwunsch.com
edited /2016/NYC/Guest_List (+222) "/* RSVPs */"
(view diff)
#
mwunsch
aaronpk: I signed up a while back; all good. thanks
#
aaronpk
great!
loic_m, tantek and friedcell joined the channel
#
@t
@flaneur @alexhern we post jams on our own sites now, POSSE to Twitter (see prev). You can too https://indiewebcamp.com/jam (ttk.me t4fB2)
(twitter.com/_/status/686596897146966016)
j12t joined the channel
#
tantek.com
edited /jam (+227) "/* Tantek */ add recent example"
(view diff)
cleverdevil, todrobbins and [snarfed] joined the channel
#
[snarfed]
singpolyma aaronpk: multi repost might be another option, since we already have https://indiewebcamp.com/multi-reply etc
#
aaronpk
interesting
#
aaronpk
i do sometimes include commentary inline in my collections, which then makes it not a repost
#
[snarfed]
heh. i think that one is still contested :P
#
aaronpk
backs away
#
[snarfed]
fresh in kylewm's and my mind due to triaging https://github.com/snarfed/bridgy/issues/591
friedcell and j12t joined the channel
#
[snarfed]
hah good call
#
aaronpk
still firmly believes a repost can only be a repost if there is no additional content
jgmac1106 and ttepasse joined the channel
#
petermolnar
so repost == original and maybe share ~= original?
#
[snarfed]
no! back away! there's still time! :P
#
tantek
I'm mixed on it
#
tantek
I see both perspectives, having believed what aaronpk is saying, and yet having done a manual repost+comment myself
#
tantek
petermolnar: "share" is too watered down to be specific about
#
aaronpk
"repost with comment" is totally a thing but is different from a repost
#
tantek
On Tumblr you can reblog and add a comment
#
tantek
aaronpk: that's another way to consider it yes
#
[snarfed]
FB and G+ too
#
[snarfed]
hence that bridgy bug
#
aaronpk
and now you can on twitter too
#
[snarfed]
more or less, yes
j12t_, friedcell and obensource joined the channel
#
jgmac1106
excited to actually maybe make my first #indiewebcamp in NYC, the NYC offerings usually cooincide with Mozilla offerings, but the boss (wife) did not give me clearance to head out to Singapore for the leadershup summit
#
Loqi
jgmac1106: kylewm left you a message on 1/7 at 4:07pm: non-dev people working on their personal website are absolutely welcome; and actually the non-dev perspective is invaluable for building stuff we want to be usable by people who aren't primarily programmers :) http://indiewebcamp.com/irc/2016-01-07/line/1452211639709
#
jgmac1106
@Ben Werdmuller you get onlien left this message on wrong channel: Hey Ben you didn’t mind me citing there may be no indieweb federated network tweet. I always hesitate and rarely cite a tweet without explicit permission
#
jgmac1106
@kylewm Thanks working on the logisitics and will make atelast one day work
#
aaronpk
I need a microformat to store links to translations of my blog posts
#
aaronpk
can I use h-cite if i'm not actually including any of the cited work other than the name?
#
aaronpk
(and author)
#
aaronpk
oh that's the first example on http://microformats.org/wiki/h-cite
#
tantek
you can also use rel=alternate hreflang=...
#
aaronpk
i can't use rel because that doesn't work with my mf2 storage
#
tantek
then just publish it also on permalinks
#
aaronpk
i can publish it on permalinks yeah, but i need an mf2 way of storing it
#
aaronpk
i will use h-cite in an "alternate" property then?
cleverdevil, squeakytoy2, fkooman and snarfed joined the channel
#
jgmac1106
h-card is my next step. I think I got webmentions and bridgy working but have done nothing with h-cards
#
snarfed
jgmac1106: cool! looks like you disabled backfeed (aka listening) on bridgy though? https://brid.gy/twitter/jgmac1106
#
snarfed
totally ok if intentional, just checking
#
jgmac1106
not on purpose at all. I scrwed it up
#
snarfed
np, easy fix
#
jgmac1106
and you just helped me fix it
#
jgmac1106
my first focus for 2016 is to really figure out lets encrypt for all my web properties
#
jgmac1106
but thats more long term a q1 but people have told me the way I am setting up my classes by using myclass.mywebsite.com is a huge security risk
#
jgmac1106
but having fun and learning
#
snarfed
jgmac1106++
#
Loqi
jgmac1106 has 1 karma
#
aaronpk
milestone unlocked! I just implemented the last remaining "feature" before I am ready to start importing content!
#
aaronpk
I fully expect the import process will uncover bugs or missing features, so I wouldn't say I am close to "done" yet but this is good progress!
#
mwunsch
i put a little tribute to david bowie on my site: markwunsch.com
#
snarfed
aaronpk++
#
Loqi
aaronpk has 47 karma
#
tantek
aaronpk do you have a location for HWC PDX this week? https://indiewebcamp.com/events/2016-01-13-homebrew-website-club
#
tantek
I'm assuming you will find one
#
tantek
OTOH anyone heard from adactio?
#
tantek
I see Jeena added a location for Göteborg!
#
aaronpk
bret: can you make HWC trhis week?
#
tantek
I don't know if dietrich is back yet either
#
dietrich
tantek: leaving for asia today for 2 weeks
#
tantek
dietrich: nice! enjoy!
#
dietrich
tantek: someone else in pdx might be interested in hosting though
#
dietrich
i'll ask in IRC if you want
#
dietrich
or you could email portland@
#
jgmac1106
this is a little inside baseball, but we are debating whether we as educators have a moral obligation to start teachers and students on their own domain and allow them to choose to syndicate or if building up a network of collaborators should happen first: https://medium.com/the-slackerati/this-is-a-series-in-posts-reflecting-on-the-organization-of-walkmyworld-an-annual-social-media-5459bacbb320#.5vrytuxof
#
aaronpk
i just posted it at Cup & Bar for this week
cweiske joined the channel
#
tantek
thanks aaronpk !
#
@RikMende
RT @CaptainKurtis: @Sheeyahshee Have u heard of #indiewebcamp? my social movement, @sensiblemn, uses an #indieweb platform called @withknow
(twitter.com/_/status/686622618863144961)
#
@RikMende
RT @DarkMatterAppCo: Dark Matter is a personal publishing platform for the #indieweb. Built on @Rails and easily deployable on @Heroku. h…
(twitter.com/_/status/686622722512805888)
#
@RikMende
RT @offrayLC: @mbauwens we could start by owninig our data with the #IndieWeb http://indiewebcamp.com/ and taking back data from silos to #D…
(twitter.com/_/status/686622875357442048)
Zegnat joined the channel
#
@RikMende
RT @jkphl: 99 days to go until the #indieweb hits #Nürnberg. Who's in? ☑️ https://indiewebcamp.com/2016/Nuremberg/Guest_List ☑️ https://ti.to/tollwerk/indiewebcamp-nuremberg-2016 ☑️ https://t.c…
(twitter.com/_/status/686623656039084032)
crunchiebones, Lancey, elima and Tino joined the channel
#
bret
aaronpk: unfortunately i have a work related thingy on wed >:[
#
tantek
bret, how about 2016-01-27?
#
bret
im not sure yet
#
GWG
I see New York people
#
tantek
woot!
#
Loqi
woot
cleverdevil joined the channel
#
jkphl.is
edited /2016/Nuremberg/Guest_List (+0) "/* Participants */"
(view diff)
todrobbins and cleverdevil joined the channel
#
jkphl.is
edited /2016/Nuremberg/Guest_List (-1) "/* Participants */"
(view diff)
#
tantek.com
edited /Planning (+140) "+1 on Summit 2016-06-04..05. more input please!"
(view diff)
gRegorLove and shiflett joined the channel
#
gRegorLove
Afternoon, #indiewebcamp
#
aaronparecki.com
edited /Planning (+18) "/* Summit */"
(view diff)
#
gregorlove.com
edited /Planning (+41) "/* Summit */"
(view diff)
#
tantek
aaronpk: had any thoughts about when to host Socialweb wg f2f?
#
tantek
like right before IWC Summit?
#
aaronpk
I have a meeting today to talk about that
#
aaronpk
so I will report back after 3:30pm :-)
#
tantek
lots of meeting planning happening for June
#
tantek
I may be traveling for the entire month :/
#
aaronpk
oh my!
#
tantek
or I may decide to bail on OSBridge
#
tantek
to keep my sanity
#
tantek
which reminds me - where's their CFP? is it too late to submit?
#
tantek
last I checked I couldn't find it
#
tantek
have you proposed anything to OSBridge 2016?
#
aaronpk
maybe it isn't out yet?
#
tantek
usually it's due by now
#
tantek
so maybe they're behind
#
aaronpk
just asked, they haven't posted it yet
koray, todrobbins, cleverdevil, sonicrocketman and modem_ joined the channel
#
sonicrocketman
Hello everyone. I'm new to IndieWebCamp, and I wanna see what you all are all about!
#
tantek
welcome sonicrocketman!
#
tantek
What do you think of the main points on the home page? indiewebcamp.com
#
sonicrocketman
@tantek I love all of those things, and it's why I wanted to check this out, but I am kind of unclear as to what you do...
#
tantek.com
edited /bitcoin (+314) "criticism / monoculture"
(view diff)
almereyda and snarfed joined the channel
#
tantek
sonicrocketman: what *who* do?
crunchiebones and frzn joined the channel
#
tantek
sonicrocketman: are you curious about what to do next?
#
sonicrocketman
yes
#
sonicrocketman
haha
#
tantek
let's start with, what's your personal site?
#
sonicrocketman
brianschrader.com
#
tantek
awesome! have you tried signing-into the wiki with it?
#
sonicrocketman
Just did
#
tantek
great! add yourself to /irc-people (since you're also here)
#
sonicrocketman
thanks!
lukebrooker, snarfed, cleverdevil, frzn, friedcell, obensource, singpolyma, Pierre-O, hober, Erkan_Yilmaz, shiflett and KartikPrabhu joined the channel