Skip to content

Instantly share code, notes, and snippets.

@sambaldwin
sambaldwin / scrape-github-issues.js
Created September 9, 2018 12:02
Scrape GitHub issues (for use in browser console)
var issues = document.querySelectorAll('.issues-listing .js-issue-row .link-gray-dark');
var list = '';
issues.forEach(function (issue) {
var issueText = issue.innerText.trim();
list += '- ' + issueText + '\n';
});
list;

Keybase proof

I hereby claim:

  • I am sambaldwin on github.
  • I am sambaldwin (https://keybase.io/sambaldwin) on keybase.
  • I have a public key ASCw-C8yF4IcbkijdHwczol0SbHnjpBAR-_DY0OjvdfedQo

To claim this, I am signing this object:

... {
font-family:
-apple-system,
BlinkMacSystemFont,
"Segoe UI",
"Roboto",
"Oxygen",
"Ubuntu",
"Cantarell",
"Fira Sans",
@sambaldwin
sambaldwin / minimal_fb_messenger.css
Created January 10, 2016 14:29 — forked from cmod/minimal_fb_messenger.css
Minimal Facebook Messenger for Fluid
/*
Minimal Facebook Messenger
==========================
1. Make a Fluid (http://fluidapp.com/) instance of https://facebook.com/messages/
1. a. (You need to buy the paid version of Fluid to modify UserStyles)
2. Apply the below CSS as a Userstyles stylesheet
3. Like magic, you can now message without all the cruft of Full Facebook
@sambaldwin
sambaldwin / .gitignore
Last active April 4, 2016 13:42
Config for sass-lint
.DS_Store
@sambaldwin
sambaldwin / baseline-grid.scss
Created November 22, 2015 12:18
Sass mixin for visible baseline grid
@mixin baseline-grid(
$line-height: false,
$offset: false,
$element: html,
$colour: rgba(0,0,0,.2)
) {
#{$element} {
&:after {
content: "";
position: absolute;