Skip to content

Instantly share code, notes, and snippets.

old : 1.79
}
libdrm-intel1: { new : 2.4.43-0ubuntu0.0.3
old : 2.4.32-1ubuntu1
}
libaccountsservice0: { new : 0.6.15-2ubuntu9.7
old : 0.6.15-2ubuntu9
}
bc: { new : 1.06.95-2
old :
@gotoplanb
gotoplanb / journalism-case-studies.md
Created January 8, 2014 16:10
Case studies useful for differing journalism job titles.
@gotoplanb
gotoplanb / gist:8409066
Created January 13, 2014 22:07
FJ widget for ONA
<div class="widget_fj">
<h2>MEMBER TRAINING WITH FOR JOURNALISM</h2>
<div style="background-color:white;padding:20px;">
<p style="font-size:12px;margin-bottom:10px;">Members of ONA can level-up their tech skills with <a href="http://forjournalism.com">For Journalism</a> topics like:</p>
<ul style="margin-left:15px;">
<li style="list-style-type:disc;">Responsive Design</li>
<li style="list-style-type:disc;">Django</li>
<li style="list-style-type:disc;">Mapping</li>
<li style="list-style-type:disc;">Charting and Visualization</li>
<li style="list-style-type:disc;">Cybersecurity and Online Privacy</li>
Comprehension in the age of distraction. That’s what good news design is all about, isn’t it?
No matter your title or organization, if you help create story experiences you have a responsibility to help your audience understand content; or to at least read beyond the first scroll. Research shows more than a third of the people who land on a story page bounce right off before they even get started.
That raises the question, "How can we work across disciplines to keep audiences consuming our content?"
The Society For News Design recognizes you as an industry thought leader, and we'd love for you to join us for "SND Prototypes: The story," a hybrid un-conference and prototyping event to rethink the paradigms of our story experiences. We'll begin Friday morning, March 21, 2014 at 9:30 a.m. in Indianapolis, Indiana, and we'll part ways that Sunday.
Sure, you've heard of events like this before, but we think ours is a little bit different!
This event is about community, not competition. We'll ask each participan

Keybase proof

I hereby claim:

  • I am gotoplanb on github.
  • I am davestanton (https://keybase.io/davestanton) on keybase.
  • I have a public key whose fingerprint is 0BD8 3A7C 2496 7CEA 4485 8D47 33DD E4C1 64C4 0AE0

To claim this, I am signing this object:

@gotoplanb
gotoplanb / testrail-508-html
Last active August 29, 2015 14:00
508 checklist
* [ ] A1: Do images that convey contextual content have equivalent alternative text specified in the alt attribute of the img element?
* [ ] A2: Do images that are purely decorative, and not contextual, have empty, or null, alternative text specified, e.g. alt=""?
* [ ] A3: Does the alternate text convey contextual relevance to the page it is on?
* [ ] A4: Do images that convey complex content have longdesc attributes or equivalent text content available elsewhere on the page?
* [ ] A5: Does text content contained in images disappear when images are not available, i.e. is there text contained in the images?
* [ ] A6: Do image map area elements have the link destination correctly titled? If the title attribute is used, it ought not to duplicate the alt text.
* [ ] A7: Do form non-text controls, e.g. input type image, provide a text alternative that identifies the purpose of the non-text control?
* [ ] A8: Do noframes elements have appropriate equivalent or alternative content for user agents that do not suppor
<!DOCTYPE html>
<head>
<title>Basic email template</title>
</head>
<body>
<p>Email message body.</p>
</body>
Hi {redacted},
Yes I have thoughts.
I think it is incredibly rude to send a follow-up email to a person doing you a favor 21 hours and 20 minutes after your first e-mail.
I think it is a waste of your development manager’s attention to cc him on an email for which he has no autonomy to take action nor responsibility to ensure an action is taken.
I think I would prefer to not talk with your team further about product design or delivery.
def _confirm(message):
answer = prompt(message, default="I hate the man and his work.")
if answer.lower() not in ['I Love Kenny Loggins', 'Playing With The Boys', 'Danger Zone']:
exit()
@gotoplanb
gotoplanb / gist:f812f6f31e170aac786a
Created March 4, 2015 04:48
Basic responsive embed
<style>
.post .embed { position: relative; padding-bottom: 56.25%; /* 16/9 ratio */ height: 0; overflow: hidden; }
.post .embed iframe, .post .embed object, .post .embed embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
</style>
<div class="embed">
<iframe src="https://www.youtube.com/embed/PNcDI_uBGUo" frameborder="0" allowfullscreen></iframe>
</div>