Skip to content

Instantly share code, notes, and snippets.

View ryanpcmcquen's full-sized avatar

Ryan McQuen ryanpcmcquen

View GitHub Profile
@ryanpcmcquen
ryanpcmcquen / atom__1.0.7__iojs__3.2.0__npm-debug.log
Created August 25, 2015 20:56
atom__1.0.7__iojs__3.2.0__npm-debug.log
This file has been truncated, but you can view the full file.
28014 silly gunzTarPerm extractEntry node_modules/mkdirp/index.js
28015 verbose readDependencies loading dependencies from /tmp/SBo/atom-1.0.7/build/node_modules/webdriverio/node_modules/archiver/node_modules/zip-stream/node_modules/lodash.defaults/node_modules/lodash.keys/node_modules/lodash.isobject/package.json
28016 silly install resolved []
28017 verbose about to build /tmp/SBo/atom-1.0.7/build/node_modules/webdriverio/node_modules/archiver/node_modules/zip-stream/node_modules/lodash.defaults/node_modules/lodash.keys/node_modules/lodash._isnative
28018 info build /tmp/SBo/atom-1.0.7/build/node_modules/webdriverio/node_modules/archiver/node_modules/zip-stream/node_modules/lodash.defaults/node_modules/lodash.keys/node_modules/lodash._isnative
28019 silly install resolved []
28020 verbose about to build /tmp/SBo/atom-1.0.7/build/node_modules/webdriverio/node_modules/archiver/node_modules/zip-stream/node_modules/lodash.defaults/node_modules/lodash.keys/node_modules/lodash._shimkeys
@ryanpcmcquen
ryanpcmcquen / combine_pdfs_with_qpdf.txt
Created August 26, 2015 14:40
combine_pdfs_with_qpdf.txt
qpdf --empty COMBINEDPAGES.pdf --pages *.pdf --
@ryanpcmcquen
ryanpcmcquen / node-0.12.6-atom-error.txt
Created August 27, 2015 18:15
node-0.12.6-atom-error.txt
npm: v2.11.2
Installing build modules...
Installing apm...
Native thread-sleep not available.
This will result in much slower performance, but it will still work.
You should re-install spawn-sync or upgrade to the lastest version of node if possible.
Check /tmp/SBo/atom-1.0.7/apm/node_modules/atom-package-manager/node_modules/yargs/node_modules/os-locale/node_modules/exec-file-sync/node_modules/spawn-sync/error.log for more details
Native thread-sleep not available.
This will result in much slower performance, but it will still work.
You should re-install spawn-sync or upgrade to the lastest version of node if possible.
@ryanpcmcquen
ryanpcmcquen / ricerocks.py
Last active August 29, 2015 14:00 — forked from csaez/ricerocks.py
ricerocks
# Mini-project #8 - "RiceRocks" (Asteroids)
#
# 'Introduction to Interactive Programming in Python' Course
# RICE University - coursera.org
# by Joe Warren, John Greiner, Stephen Wong, Scott Rixner
import simplegui
import math
import random
@ryanpcmcquen
ryanpcmcquen / gist:860b6cf5f82ea26dcebd
Created August 30, 2014 23:48
Xorg.0.log (nvidia gtx860m slackware)
[ 232.817]
X.Org X Server 1.15.2
Release Date: 2014-06-27
[ 232.817] X Protocol Version 11, Revision 0
[ 232.817] Build Operating System: Slackware 14.2 Slackware Linux Project
[ 232.817] Current Operating System: Linux slack64-w230ss 3.14.17 #1 SMP Mon Aug 25 14:09:09 CDT 2014 x86_64
[ 232.817] Kernel command line: auto BOOT_IMAGE=3.14.17 ro root=801 vt.default_utf8=1 nomodeset
[ 232.818] Build Date: 24 August 2014 03:44:51PM
[ 232.818]
[ 232.818] Current version of pixman: 0.32.6
@ryanpcmcquen
ryanpcmcquen / dabblet.css
Created September 5, 2014 16:23 — forked from chriscoyier/dabblet.css
Ratings Stars
/*
Ratings Stars
(with as little code as possible)
*/
.rating {
unicode-bidi: bidi-override;
direction: rtl;
text-align: center;
}
.rating > span {
@ryanpcmcquen
ryanpcmcquen / dabblet.css
Created September 6, 2014 02:50 — forked from LeaVerou/dabblet.css
3D cube
/**
* 3D cube
*/
body {
perspective: 600px;
perspective-origin: 300px -90px;
}
.cube, .cube:before, .cube:after,
@ryanpcmcquen
ryanpcmcquen / dabblet.css
Created September 6, 2014 02:51 — forked from LeaVerou/dabblet.css
Animation on hover (right way)
/**
* Animation on hover (right way)
*/
div {
width: 9em;
padding: .6em 1em;
margin: 2em auto;
background: yellowgreen;
animation: spin 1s linear infinite;
@ryanpcmcquen
ryanpcmcquen / dabblet.css
Created September 6, 2014 02:51 — forked from LeaVerou/dabblet.css
Image slider with pure CSS
/**
* Image slider with pure CSS
* Original version in http://demosthenes.info/blog/css
*/
.image-slider {
position:relative;
display: inline-block;
line-height: 0;
}
@ryanpcmcquen
ryanpcmcquen / dabblet.css
Created September 6, 2014 03:53
3 responsive columns
/* 3 responsive columns */
@media all and (min-width: 1080px) {
.box {
float: left;
}
.box:nth-child(-n+2) {
margin-right: 1em;
}
.box-container {