This guide now lives at https://github.com/joyeusenoelle/GuideToMastodon/ - please check there for updates, and feel free to submit a PR if you have suggestions or want to submit a translation!
by Tatiana Mac
Before I'll agree to a speaking event, I try to do as much research I can around the event to ensure it aligns with my ethos. I want to share this in case it's helpful to any other speakers.
👐 Speaking comes with immense privilege. I am grateful to all the conference organisers who have brilliantly hosted me. I would love to continue to exercise this privilege to speak at conferences, and use this privilege to make the landscape more accessible and beneficial to tech's most marginalised and suppressed communities.
😫 I wish I didn't have to, but this is long because I provide a lot of explanations for those of you who never had to consider these things. And I will be honest, most thoughtful conferences I've attended check most of these boxes intrinsically, particularly when conference runners are experienced speakers. They get it.
1️⃣ All of these are based on my own ethos. I don't wish to or attempt to speak on behalf of all conference speake
(* | |
http://zoesmith.io | |
Export Bookmarks from Evernote to Pinboard | |
v1.4 12th September 2012 | |
This script takes selected notes in Evernote and sends an email for each to Pinboard, extracting each note's title, source URL and associated tags. The user should enter their Pinboard email address in the pinboardEmail property below, and can choose a default tag to add to each bookmark on import. | |
This code is hacky, horrible and non-error checking (but it worked for me). Don't use on thousands of notes at a time, it'll go all crashy. Try selecting one test note first to see if it works for you. | |
Change log: |
<?php snippet('header') ?> | |
<?php foreach($page->children()->flip() as $article): ?> | |
<?php if($article->template() == 'link'): ?> | |
<!-- link html --> | |
<?php elseif($article->template() == 'article'): ?> |
<?php | |
// get a page | |
$editpage = $pages->get("/editme/"); | |
$ignorefields = array("isOld","language_published"); | |
$form = $modules->get("InputfieldForm"); | |
$form->method = 'post'; | |
$form->action = './'; |
<?php snippet('header') ?> | |
<?php foreach($page->children()->flip() as $article): ?> | |
<?php if($article->template() == 'link'): ?> | |
<!-- link html --> | |
<?php elseif($article->template() == 'article'): ?> |
<?php | |
/* | |
Plugin Name: Gistson - Embedded Gist WP Plugin | |
Plugin URI: http://arin.me/blog/tag/gistson | |
Description: Use a shortcode [gist id="12345"] to embed A Gist from http://gist.github.com into your blog | |
Version: 0.1 | |
Author: Arin Sarkissian | |
Author URI: http://arin.me | |
Copyright 2009 Arin Sarkissian |