Skip to content

Instantly share code, notes, and snippets.

View Duder-onomy's full-sized avatar
💭
Shred till yer Dead

Greg Larrenaga Duder-onomy

💭
Shred till yer Dead
View GitHub Profile
@Duder-onomy
Duder-onomy / Git push deployment in 7 easy steps.md
Created November 28, 2016 07:04 — forked from thomasfr/Git push deployment in 7 easy steps.md
7 easy steps to automated git push deployments. With small and configurable bash only post-receive hook
Men Whithout Chests
How, strange, are these men without chests.
Villages, and religions writing songs. For...
Stomachs and brains, but you'll find me outside.
Contemplating the verities, the verities of the human enigma.
How curios of an age it is.
Gods of science, We await your command.
Iron Dafodil
Blessed be he who never was.
Blessed be he who has dies.
Blessed be the meek the poverty sores in the mouths of their fathers.
Blessed be the sick and tired.
Blessed be the blood born mechanism, our hope technology, the bastard son of smoke and fire.
Blessed be the bombastic dynamo, iron cacaphony, the god heavy pistons of desire.
The Abominable Word
We, We gather and gape in Awe.
As the sunshine emerges, in a cascade of mercurial light.
Explode, to the other side and snarl like a beast, that barks across the sky.
Raging, in a blizzard of radioactive green frost.
What Child is this? What Child is this?
Born, or fire.
http://www.adultswim.com/music/singles-2016/ Basically, take every color in a painting and randomly parallax it, then at some point, it all lines up. Pretty cool idea.
@Duder-onomy
Duder-onomy / thoughts-on-grasshopper-plugins-versioning-and-migrations.txt
Last active August 18, 2016 21:02
Grasshopper Plugin Versioning and Migrations (thoughts)
Every GH Plugin has a version based on its package.json version.
When a new version of this plugin is installed
check the existing plugins in the DB to see if this one is allready installed,
if it is allready installed
download the plugin into a temp dir
look at the diff version numbers and prepare a list of migrations that need to be ran
migrations might work like
code looks at the migrations dir and looks for any versions between the version currently installed and the version desired.
@Duder-onomy
Duder-onomy / what-forces-layout.md
Created August 2, 2016 21:35 — forked from paulirish/what-forces-layout.md
What forces layout/reflow. The comprehensive list.

What forces layout / reflow

All of the below properties or methods, when requested/called in JavaScript, will trigger the browser to synchronously calculate the style and layout*. This is also called reflow or layout thrashing, and is common performance bottleneck.

Element

Box metrics
  • elem.offsetLeft, elem.offsetTop, elem.offsetWidth, elem.offsetHeight, elem.offsetParent
  • elem.clientLeft, elem.clientTop, elem.clientWidth, elem.clientHeight
  • elem.getClientRects(), elem.getBoundingClientRect()
find ./app -name '*.js' -not -path './app/public*' | xargs wc -l
@Duder-onomy
Duder-onomy / getFullContentsOfAmazonS3Bucket.js
Created June 6, 2016 03:11
Get Full Contents of Amazon s3 Bucket
'use strict';
var applicationConfigs = require('expressively').configs,
AWS = require('aws-sdk'),
BB = require('bluebird'),
path = require('path'),
logger = require('../lib/logger'),
s3Instance;
AWS.config.update({
@Duder-onomy
Duder-onomy / rv-cloak.html
Created March 27, 2016 16:28
Rivets rv-cloak example.
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<title></title>
<style>
[rv-cloak] {
opacity: 0;
-webkit-transition: opacity 0.5s ease;
transition: opacity 0.5s ease;