Skip to content

Instantly share code, notes, and snippets.

View timklapdor's full-sized avatar

Tim Klapdor timklapdor

View GitHub Profile
@tomcritchlow
tomcritchlow / quote-text.js
Created June 19, 2019 18:46
A bookmarklet for turning selected text into a quote for markdown blogs
function getSelectionText() {
var text = "";
if (window.getSelection) {
text = window.getSelection().toString();
} else if (document.selection && document.selection.type != "Control") {
text = document.selection.createRange().text;
}
return text;
}
@woodworker
woodworker / jekyll.ics
Created September 27, 2013 08:39
a jekyll template for icalendar file
---
layout: none
---
BEGIN:VCALENDAR
VERSION:2.0
PRODID:http://www.example.com/
METHOD:PUBLISH
{% for post in site.posts limit:10 %}BEGIN:VEVENT
UID:{{ post.date | date: "%Y%m%d" }}@example.com
ORGANIZER;CN="Organizer Name":MAILTO:organizer@example.org