Skip to content

Instantly share code, notes, and snippets.

View a613's full-sized avatar

Adam T a613

  • Calgary, AB, Canada
  • 06:47 (UTC -06:00)
View GitHub Profile
@niallsmart
niallsmart / copy-checklist.js
Last active August 21, 2023 12:24
Copy Trello checklist to clipboard
View copy-checklist.js
copy($(".checklist-item:not(.checklist-item-checked)").map(function() {
var e = $(this),
item = e.find(".checklist-item-details-text").text()
if (e.hasClass("checklist-item-state-complete")) {
item = item + " (DONE)"
}
return item
}).get().join("\n"))
@acolyer
acolyer / service-checklist.md
Last active August 9, 2023 16:37
Internet Scale Services Checklist
View service-checklist.md