Skip to content

Instantly share code, notes, and snippets.

View JBlackCat's full-sized avatar

J Black JBlackCat

  • SF Bay Area, CA
View GitHub Profile
@JBlackCat
JBlackCat / fragment_shader_tutorials.glsl
Created March 27, 2017 18:48
GLSL Beginner Tutorials from ShaderToy.com
/*
by Uğur Güney. March 8, 2014.
Hi! I started learning GLSL a month ago. The speedup gained by using
GPU to draw real-time graphics amazed me. If you want to learn
how to write shaders, this tutorial written by a beginner can be
a starting place for you.
Please fix my coding errors and grammar errors. :-)
@JBlackCat
JBlackCat / brew-upgrade-breaks-tools.md
Created March 3, 2017 23:25
brew upgrade breaks tools

##Error

$ dyld: Library not loaded: /usr/local/opt/libevent/lib/libevent-2.0.5.dylib
  Referenced from: /usr/local/bin/tmux
  Reason: image not found

##Fix Reinstall all the things.

@JBlackCat
JBlackCat / NeoVim MacOS Python.md
Last active February 19, 2017 19:21
Get python working correctly with NeoVim on MacOS
@JBlackCat
JBlackCat / clamav-mac.md
Created January 30, 2017 07:16 — forked from Uchean/clamav-mac.md
Get ClamAV running on Mac OS X (using Homebrew)

Get ClamAV running on Mac OS X (using Homebrew)

The easiest way to get the ClamAV package is using Homebrew

$ brew install clamav

Before trying to start the clamd process, you'll need a copy of the ClamAV databases.

Create a freshclam.conf file and configure as so

@JBlackCat
JBlackCat / what-forces-layout.md
Created July 12, 2016 00:02 — 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()