2014-11-15 UTC
gr0k and mlncn joined the channel
# 00:36 GWG Does anyone have a link to various presentations of like/favorite by various sites? Other than the facepile style?
brianloveswords, wolftune, reedstrm, danlyke_, gr0k, wont_on_, mlncn and snarfed joined the channel
# 02:12 GWG I see another person installed the Taxonomy plugin. Makes me want to accelerate work on it.
glennjones_, npdoty, mdik, tylergillies__, j12t and friedcell joined the channel
gr0k, acegiak and mlncn joined the channel
# 03:52 acegiak not getting a lot of return on energy invested into trying to get the word out about amygdala
# 03:54 Nowaker hey guys. acegiak, what is amygdala?
# 03:56 GWG Nowaker: You beat me to the question
# 03:56 acegiak Nowaker: Amygdala is my company's debut video game. It's an action platformer that uses dynamically generated levels and a range of wildly different enemies to create a challenging living world to explore.
# 03:56 acegiak But with only a three person team it's pretty hard to get word out
# 03:57 GWG acegiak: If I were more of a gamer, I'd give it a shot. I only retrogame
# 03:57 Nowaker huh, platformer... reminds me of jazz jackrabbit 2 times, that I played 10 years ago :D
# 04:01 Nowaker acegiak: just watched the video. nice dynamics.
# 04:01 acegiak Nowaker: so far the response has been prettyuniversally positive from people that have played it
# 04:02 acegiak it's just a matter of getting it infront of people
# 04:02 Nowaker i'll definitely give a plus on greenlight, when im at the desk tomorrow
# 04:03 Nowaker acegiak: getting exposure is hard, really hard
# 04:06 Nowaker i've got a problem with getting it for virtkick.io. fortunately, weve been accepted to techstars cloud, so were gonna learn a whole lot from them
# 04:06 GWG acegiak: Bad time to invite you to Indiewebcamp Online then?
# 04:08 GWG acegiak: I don't know. That's why I asked. I'm trying to work on my charisma.
# 04:09 GWG I can try to convert. You are GMT+what?
# 04:11 GWG About 2:30 in the morning, I think, if I get the conversion right
# 04:13 GWG About 4.5 hours in, we switch to hack fest
# 04:15 GWG Excuse me, acegiak's time...misread the handle
# 04:15 GWG aaronpk: According to the schedule.
# 04:16 GWG I'm submitting pull requests to pfefferle.
# 04:18 GWG acegiak: Feel free to join in. It should be fun...
# 04:19 GWG acegiak: I'll pay 100% of your travel costs to get to the camp
# 04:22 GWG Sites keep changing their displays
snarfed and krendil joined the channel
# 04:52 GWG acegiak: Is your brain available for picking?
# 04:53 GWG I'm looking at my Facepile code. It currently takes over the comment template.
# 04:54 GWG That means I've been taking over the theme's way of rendering the comments.
# 04:57 GWG I'm wondering if I should be taking it over, or just changing it with a filter so it excludes the webmentions and render them in another location.
# 04:57 acegiak I wouldn't be taking it over because you'll create super weird effects in different themes
# 04:57 acegiak I'd probably just create a hook that people can insert into their theme
# 04:58 GWG Disqus and such completely override the default handling
# 04:59 GWG But, either way, there are a variety of overrides to add more to the default. But there will always be some themes that conflict.
# 05:00 GWG That's what I'm having trouble figuring out. How do you write something that will work with more things than not?
# 05:00 GWG Without the theme developer being involved?
# 05:01 GWG Well, WordPress uses either a comment walker class or a callback function to handle comment display.
KevinMarks_ joined the channel
# 05:03 GWG If I use the same CSS classes, it should inherit from the theme, even if I change the display parameters
# 05:03 acegiak really it's not the sort of thing I'd be doing so I'm not sure the best way to do it
danlyke_ joined the channel
# 05:06 GWG acegiak: I jump back and forth between projects. So each iterates a little bit.
# 05:09 GWG This was the first project I did, and it ignored a lot of standards.
# 05:13 GWG I'm also adding some things upstream in semantic linkbacks.
mlncn, glennjones, snarfed, Erkan_Yilmaz, KartikPrabhu, wolftune, krendil, scor, friedcell, nagaway, eschnou, agaric, frzn, petermolnar, wont_on, wont_on_ and dns53 joined the channel
friedcell, eschnou, wont_on and alanpearce joined the channel
# 12:51 thedod So far only a minor template tweak was needed (will pull request soon).
thedod_ and scor joined the channel
# 13:57 thedod got redwind. where in twitter do I get my oauth key and stuff?
agaric joined the channel
scor joined the channel
Sebastien-L, agaric, danlyke_, alanpearce, chrissaad, eschnou and wolftune joined the channel
myfreeweb joined the channel
brianloveswords joined the channel
# 17:53 kylewm.com created /onboarding (+1319) "Created page with "{{stub}}
<dfn>Onboarding</dfn> refers to the first experience a user has when installing, configuring, and first logging into an application. A great onboarding process walks the..."" (
view diff )
wolftune and Pea1 joined the channel
hodlr joined the channel
# 18:14 bear the chicken posts *always* makes me giggle
# 18:15 kylewm hi bear, thank you for the link to circuits btw
# 18:16 kylewm From what I can gather, to do push (or long polling) stuff from Flask, it's either gevent+monkeypatch, or run a separate event loop based server
# 18:16 bear CherryPy (or now Circuits) could probably handle it directly
# 18:18 bear circuits has a built in event model, cherrypy has a gevent flavour
# 18:19 kylewm oh right, but my flask app still needs to be separate
# 18:19 bear the needs of a "normal" web app and that of the push are very different
loic_m joined the channel
# 18:19 kylewm this is all because aaronpk is thinking about doing realtime comments using server-sent events in the same php application
# 18:20 bear my personal pref is to have the page load via a normal app and then link to a data stream
# 18:20 bear that is why circuits looks interesting
# 18:20 bear it could be the same with it - different coroutines handling the different routes
# 18:25 bear the core of tornado is nothing but an event loop implemented on top of normal python with helper methods to manage and use said loop
# 18:26 bear since it was very web dev focused it caught on
# 18:26 bear you could do the same with Twisted Python, CherryPy+gevents, or asyncio
# 18:27 bear the only advantage of circuits so far is that it implements modern html5 items - like websocket
# 18:27 bear so any html5 client code could work with it
# 18:30 kylewm so then you have a traditional thread-based server for most things, and an event based server for sending events, and then nginx proxies them both through port 80?
ben_thatmustbeme, edsu_, acegiak_, KevinMarks__, tommorris_, GWG-, iboxifoo_, leadballhummingb, hadleybeeman_, grant, lmjabreu____, benatkin_, Aeyoun, Guest73024, agaric and Leeky joined the channel
# 19:07 bear ah - it sent a mention but my server returned 404
# 19:07 bear because it does not link to an article
persand joined the channel
# 19:08 bear different people do that in various ways
# 19:08 bear I have hcard info on my bare domain to make your type of reference possible
# 19:09 thedod don't h-card et al have some standartization for it?
Erkan_Yilmaz and rknLA_ joined the channel
# 19:09 bear yes, that's why your bookmark found my image
persand joined the channel
# 19:09 bear but not all items that can be in an hcard are required
# 19:09 thedod I'm still fumbling in the dark with mf2 (or any other mf)
pdurbin joined the channel
# 19:10 Loqi thedod meant to say: my / has an h-card link to /indie/ - is it "kosher"?
# 19:12 bear to see if my templates were generating "good" mf2
# 19:13 bear and then I got used to reading the json from the python mf2py tool
# 19:14 bear if your a php person their is also php-mf2
gRegor`, hmans_, glennjones, Deledrius_, tallpaul_ and reidab joined the channel
# 19:33 thedod bear, PHP? God forbid and Buddha strongly advise against. No. I'm a pythonista
# 19:33 thedod Thanks for that validator. found out how to do a representative card, but the wording there was quite confusing
# 19:34 thedod they wanted to say the link should have class "h-url", and the *target* url should be a rel="me" on *this* page
# 19:40 thedod "something went wrong" is my middle name, BTW
pdurbin1 and fahrstuhl_ joined the channel
Jeena joined the channel
Phae_, rschulman_ and jacus joined the channel
# 19:58 kylewm thedod: i'm not sure it makes senes for the "url" property to point to your h-card
emmak_, yakker_, veselosky, eschnou, amblin_, amblin, julian``, bigbluehat, Guest29292, lmjabreu___, hadleybeeman, loic_m, j12t, Gold, bret, jancborchardt, protman, ben_thatmustbeme, Nowaker, sdboyer, reidab, gavinc and obra joined the channel
# 20:12 thedod kylewm, I guess I have to read a bit more about how this h-card this works
# 20:13 thedod anyway, it's fun to have redwind as a starting point :)
# 20:14 kylewm yeah!! I really appreciate your work generalizing it
JasonO, Erkan_Yilmaz and saurik_ joined the channel
# 20:20 kylewm.com created /2014/Online/Sessions (+837) "Created page with "We'll schedule the sessions on the day of the camp! See Schedule for an overall outline of the timeslots. Feel free to brainstorm ideas of sessions you'd like to talk about, or y..."" (
view diff )
pdurbin1, thierrym, brianloveswords, Erkan_Yilmaz, wont_on, danlyke_, evan and bitraten joined the channel
KartikPrabhu and snarfed joined the channel
# 21:35 snarfed always nice to have more people who can use them/contribute
# 21:35 snarfed (mf2py, mf2util, redwind, etc all rock too, obviously)
friedcell, gr0k, agaric and KartikPrabhu joined the channel
tilgovi joined the channel
# 22:06 thedod the one that looks ok, I did by "cheating" in settings and temporarily putting a relative URL, which breaks the h-card :)
# 22:07 thedod now I'm scratching my head how it happens. wm_sender just sends 2 urls.
# 22:07 thedod what is it that happens later during the webmention that borks the url?
# 22:08 thedod probably something that the target pulls. maybe the services. brb
lmjabreu___, reederz, KartikPrabhu, richardlitt, alanpearce and lukebrooker joined the channel
# 23:13 kylewm thedod: that's a bug in webmention.io on the receiving end. i think aaronpk just needs to update to a newer version of php-mf2
# 23:32 thedod whew. I was diving into code like a cat into a dustbin
KartikPrabhu and lukebrooker joined the channel