Skip to content

Instantly share code, notes, and snippets.

View nicolaskenner's full-sized avatar
🏠
Working from home

Nicolas Kenner nicolaskenner

🏠
Working from home
View GitHub Profile
@niallsmart
niallsmart / copy-checklist.js
Last active December 28, 2023 00:10
Copy Trello checklist to clipboard
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"))
@tarxvf
tarxvf / southwestAListWiFi
Last active December 2, 2019 03:02
Live in the southwest system? Want an automated way to connect with your A-List wifi on Southwest? I used to burn 20-30% of my battery trying to navigate through the free A-List portal captivation screens. Here is a GoLang script that will automagically connect you within seconds.. Giving you battery and time on your life back.... you must expor…
This file has been truncated, but you can view the full file.