Skip to content

Instantly share code, notes, and snippets.

View motionharvest's full-sized avatar

Aaron motionharvest

View GitHub Profile
@motionharvest
motionharvest / cellCycle_saveJSON
Created August 23, 2014 00:22
Saved CellCycle Object
{
"particles": [
[5.57, 0, 1, 1, 0],
[3.47, 12.69, 1, 0],
[3.239, 25.126, 1, 0],
[0.691, 37.563, 1, 0],
[0, 50, 1, 1, 4],
[8.695, 0, 1, 1, 5],
[7.967, 12.69, 1, 0],
[5.473, 25.126, 1, 0],
System.$win.on('mousemove', function(e) {
nextX = e.clientX;
diff = currX - nextX;
var tmpVal = (Data.Active.shell.width * Data.Active.boxes[index].perc) * System.scale;
var valMinusDif = tmpVal - diff;
var newperc = (valMinusDif / (Data.Active.shell.width * System.scale));
var percDif = newperc - Data.Active.boxes[index].perc;
Data.Active.boxes[index].perc += percDif;
Data.Active.boxes[index + 1].perc -= percDif;
boxElements[index].update({
@motionharvest
motionharvest / Data-dump.js
Created November 10, 2014 19:17
Data After Interior Step
{
"Active": {
"shell": {},
"legs": {
"catid": 1,
"legid": 0,
"shortName": "Castor",
"height": 5,
"image": "img/legs/castor_80.png"
},
@motionharvest
motionharvest / gist:85235f53e1d07ccdbe48
Created January 26, 2015 19:48
SVG with internal package
<svg version="1.1" id="dsvgee" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 278 278" width="278" height="278">
<!-- Super elite legit badassery for browsers that support it -->
<div id="dsvgee-component">
<img src="/images/smileys/shade_smile.gif"/>
<div id="success">
This is a big test
</div>
<script>
(function(){
if(!test) return;
@motionharvest
motionharvest / sassextend.css
Last active September 6, 2017 19:09 — forked from antsa/sassextend.css
Sass Extend and Placeholder Selector Example
// =========================
// Example 1: using a @mixin
// =========================
// SCSS:
@mixin a_pink_box() {
float: left;
display: block;
color: pink;
@motionharvest
motionharvest / togandswit.js
Created May 8, 2015 21:03
Toggles And Switches
/**
* Toggles & Switches
* ------------------
*/
(function() {
"use strict";
// switch constructor
@motionharvest
motionharvest / js
Created May 20, 2016 02:25
Robotjs Script for moving the mouse around in a circle depending on a given degree
var Mathutils = {
//not so important
normalize: function ($value, $min, $max) {
return ($value - $min) / ($max - $min);
},
interpolate: function ($normValue, $min, $max) {
return $min + ($max - $min) * $normValue;
},
/*
@motionharvest
motionharvest / stream-reskin-output-main.min.css
Created February 6, 2019 00:44
Just a bunch of styles for a site I'm reskinning
/*
Globals are any collection of styles that are used in more than one place.
Use this file for colors, font stacks, and for
Partials use %global- to help developers guess where they are writen.
*/
.columnStyle .statusIndicator.indicatorGreen, span#help1, .dropdown.accountInfoIcon .dropdown-toggle {
display: inline-block;
line-height: 1;
vertical-align: middle; }
/*
Globals are any collection of styles that are used in more than one place.
Use this file for colors, font stacks, and for
Partials use %global- to help developers guess where they are writen.
*/
.glyphicon.glyphicon-play, .columnStyle .statusIndicator.indicatorGreen, span#help1, .dropdown.accountInfoIcon .dropdown-toggle, .glyphicon.glyphicon-download-alt, #ConfirmPayment .rightArrowWhite, #PaymentConfirmReview .rightArrowWhite, #interestedInEarlyPay .rightArrowWhite, .glyphicon.glyphicon-alert, .glyphicon.glyphicon-ban-circle {
display: inline-block;
line-height: 1;
vertical-align: middle; }
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
/******/
/******/ // The require function
/******/ function __webpack_require__(moduleId) {
/******/
/******/ // Check if module is in cache
/******/ if(installedModules[moduleId]) {
/******/ return installedModules[moduleId].exports;