Now comfortable with Pizza, Dim Sum is my next food project. #tabdump:
Now comfortable with Pizza, Dim Sum is my next food project. #tabdump:
For those seeking perspective and groundedness, might I recommend xkcd.com/980/huge #whatsapp #insanity
Or, heck, a good book, or going outside, or cooking some food, or playing some music.
Too windy to go to board game night, off to Grótta to enjoy the wind to the full!
postcardsocial.com by @kylnew is very much inline with #indieweb #ownyourdata #selfdogfooding attitudes, looks like a great project! Salivting over potential integration with indiewebcamp.com/micropub and indieauth.com…
Celebrating Skólapúlsinn’s 4th birthday @ Vísar HQ
Prepping an old machine for demoing crypto tech at the cryptoparty tonight, windows being a complete pain. I have a feeling I’m going to be spending most of the evening apologising for other people’s bad UI decisions.
#TIL about Unifont http://czyborra.com/unifont/
@snarfed ah, I tend to scrape twitter.com using github.com/indieweb/php-mf2-shim as it’s forced to return results which are useful to humans :)
@bromann all the interesting work being done in the indiewebcamp.com community (e.g. cross-site comments are being done with mf2, and they’re easier to author+more clearly documented than classic mf, so makes a lot of sense to start using now!
Looks like twitter no longer demands that replies start with the @-name of the person they’re directed to, e.g. https://twitter.com/BarnabyWalters/status/435030572860465152
This makes @t-style reply-to-self as continuations of notes even more feasible as a practise.
@bromann even better (and easier!), add microformats2 h-card microformats.org/wiki/h-card, validate with indiewebify.me/validate-h-card
@_minego links with the rel
semantic can be used both in human-visible markup for improved back-compatibility and quick error-spotting (as well as layering on top of existing solution) and also in HTTP headers for machine-only use
@_minego which existing clients would be broken by adding a classname or rel
value to the HTML page someone downloads something from, or a Link
header to the download itself?
Of course the more significant thing is UI considerations: how to offer this info to the downloader, how to explain what the various possible outcomes mean and what action the user should take as a result of them
@justincormack @janl possibly, human-visible links/keys less likely to go out of date, also better BC as easier for people with dumb browsers to manually verify than invisible header info
#idea: a microformat for download signatures/checksums, allowing browsers to automatically verify files without people having to go into the terminal and use shasum
or gpg --verify
@sophiedennis haha yeah “dissociation” is the French word for trompette rhythms to go with the melody, abbreviated to “disso”. But if anyone could do disco gurdy, it’s Gregory Jolivet ;)
@t woah that looks amazing — also loving their detailed, transparent blog (very similar tone to blog.technical.io) and selfdogfood framing e.g. "what would we want on our own personal longboards?"
.
Presumably you’re already aware of the brain-controlled skateboard?
Hungry after walk so tried making black sesame seed paste dumplings — similar to previous mochi but almost no sugar, with the dough boiled instead of baked. Interesting texture, would certainly add some honey to the paste next time as it needs a little more sweetness.
Followed these ingredients: rasamalaysia.com/black-sesame-dumplings-tang-yuan/2/, going to try making justonecookbook.com/recipes/black-sesame-ice-cream next
When using #django to send content-disposition: attachment
responses, you MUST explicitly set the response encoding (charset) otherwise windows will assume the response is in whatever-weird-encoding-windows-uses, rather than UTF-8 (you are using UTF-8, aren’t you?).
CSV example code:
response = HttpResponse(utf_8_encoded_csv_text, status=200, mimetype="text/csv; charset=utf-8")
response['Content-Disposition'] = 'attachment; filename=data.csv'
It seems that some weird old applications like SPSS need a BOM in there as well, even though UTF-8 doesn’t have a BOM. Add that like this
response.content = '\xef\xbb\xbf' + response.content
before sending the response
return response