Skip to content

Instantly share code, notes, and snippets.

View ja-k-e's full-sized avatar
🖼️
building another machine

jake ja-k-e

🖼️
building another machine
View GitHub Profile
@ja-k-e
ja-k-e / Accesskey Attribute 101.markdown
Last active August 29, 2015 14:21
Accesskey Attribute 101

Accesskey Attribute 101

Trigger accesskeys on OSX in Safari, Chrome, or Firefox by holding + and selecting the accesskey.

For Windows in IE, Safari, or Chrome (may need shift) use alt and in Firefox use shift + alt

accesskey toggles :focus state on these buttons. Because of varying os/browser implementations and vague specs, this isn't very usable...yet. Great article/overview at webaim.org.

A Pen by Jake Albaugh on CodePen.

@ja-k-e
ja-k-e / Literally Pushing Code.markdown
Last active August 29, 2015 14:21
Literally Pushing Code

Literally Pushing Code

Yes, we push code to and from repos. We push it live. We pull it down. The one thing that we neglect to notice is that the act of a keypress is a literal push. Our fingers "push" code.

This pen calculates data about how much your little fingers actually work.

A Pen by Jake Albaugh on CodePen.

License.

@ja-k-e
ja-k-e / Sass Golden Spiral Animation.markdown
Last active August 29, 2015 14:21
Sass Golden Spiral Animation

Sass Golden Spiral Animation

Exploring the limits of Sass and browser rendering.

Based on my static javascript/svg attempt Math isn't completely lined up yet. Relying on the wrong vars in some cases. You'll see if you try and scale to a non multiple of 4 iterations.

A Pen by Jake Albaugh on CodePen.

License.

@ja-k-e
ja-k-e / Walking Puma Scene Animation.markdown
Last active August 29, 2015 14:21
Walking Puma Scene Animation
@ja-k-e
ja-k-e / script.js
Created May 28, 2015 18:03
Angular Case Filter
// case:'upper', case:'lower', case:'title'
app.filter('case', function() {
return function(value, type) {
switch (type) {
case 'upper':
return value.toUpperCase();
case 'lower':
return value.toLowerCase();
case 'title':
return value.replace(/\w\S*/g, function(txt) {
@ja-k-e
ja-k-e / SVG Audio Visualizer 1: All the Lines!.markdown
Last active June 29, 2022 09:14
SVG Audio Visualizer 1: All the Lines!
@ja-k-e
ja-k-e / SVG Audio Visualizer 2: Polyline Swag.markdown
Last active August 29, 2015 14:22
SVG Audio Visualizer 2: Polyline Swag
@ja-k-e
ja-k-e / SVG Audio Visualizer 3: Polygon Rorschach Swag.markdown
Last active August 29, 2015 14:22
SVG Audio Visualizer 3: Polygon Rorschach Swag

SVG Audio Visualizer 3: Polygon Rorschach Swag

AudioContext and a single SVG polygon. Epilepsy warning!

More in my Audio Visualization Collection

If you have any of Amon Tobin’s music, it’s pretty much perfect for this. Especially the song Bedtime Stories.

AudioContext integration from Ali Görkem's Pen Audio Visualizer #3.

@ja-k-e
ja-k-e / Responsive CSS Box Shadow Rainbow Lines.markdown
Last active August 29, 2015 14:22
Responsive CSS Box Shadow Rainbow Lines

Responsive CSS Box Shadow Rainbow Lines

My attempt at something notable for #RainbowStraightLines weekend.

A Pen by Jake Albaugh on CodePen.

License.

@ja-k-e
ja-k-e / Sass CSS4 Variable Manipulation.markdown
Last active November 25, 2022 18:34
Sass CSS4 Variable Manipulation