Skip to content

Instantly share code, notes, and snippets.

View mikesprague's full-sized avatar

Michael Sprague mikesprague

  • Cornell University
  • New York
  • 22:00 (UTC -04:00)
View GitHub Profile
@mikesprague
mikesprague / github-refined-userstyle.css
Last active April 29, 2016 12:37
GitHub Refined (with minor modifications) Userstyle
.subscribe-feed {
display: none !important;
}
/* allow for absolute positioning relative to the dashboard */
#dashboard,
.orgpage > .container {
position: relative !important;
}
function detectIE() {
var ua = window.navigator.userAgent;
var msie = ua.indexOf('MSIE ');
if (msie > 0) {
// IE 10 or older => return version number
return parseInt(ua.substring(msie + 5, ua.indexOf('.', msie)), 10);
}
@mikesprague
mikesprague / full-width.css
Created August 11, 2016 07:26
Full width container in limited width parent (credit: https://css-tricks.com/full-width-containers-limited-width-parents/)
.full-width {
width: 100vw;
position: relative;
left: 50%;
right: 50%;
margin-left: -50vw;
margin-right: -50vw;
}
@mikesprague
mikesprague / web-servers.md
Created August 24, 2016 00:55 — forked from willurd/web-servers.md
Big list of http static server one-liners

Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.

Discussion on reddit.

Python 2.x

$ python -m SimpleHTTPServer 8000

Circle Menu

A nice menu effect that when clicked will pop items around and when clicked will animate the button to circle around and then change the background color to the one selected.

A Pen by Willmer Barahona on CodePen.

License.

@mikesprague
mikesprague / index.jade
Created September 10, 2016 03:38 — forked from CodeMyUI/index.jade
Loader #3. Rotation forms
.loader-wrap
.loader-circles
- for(i=0; i < 10; i++)
.circle

Keybase proof

I hereby claim:

  • I am mikesprague on github.
  • I am mikesprague (https://keybase.io/mikesprague) on keybase.
  • I have a public key ASB8qLxlZW7swTIHR_Mu9zBOu8DByYGZUrXl55UklitGJQo

To claim this, I am signing this object:

// $ yarn add request request-promise
// $ node count userA userB
const request = require('request-promise')
const get = resource => request({
url: /^https/.test(resource) ? resource : `https://api.github.com/${resource}`,
headers: {
'User-Agent': 'GitHub Contrib Counter',
'Authorization': 'token YOUR_PERSONAL_ACCESS_TOKEN'
@mikesprague
mikesprague / slack-dark.css
Created February 19, 2018 23:53
My dark Slack theme
html {
background: #404552 !important;
}
body {
background: #404552;
color: #d3dae3;
}
a {