Skip to content

Instantly share code, notes, and snippets.

@nick1n
nick1n / Default (Windows).sublime-keymap
Last active May 25, 2017 22:17
My Sublime settings
[
// Shows the build console, or at least it use to
{ "keys": ["ctrl+shift+b"], "command": "show_panel", "args": {"panel": "output.exec"} },
// Makes it so Ctrl + Tab or Ctrl + Shift + Tab go between tabs in the
// order that they are displayed and not the order that they were opened.
{ "keys": ["ctrl+tab"], "command": "next_view" },
{ "keys": ["ctrl+shift+tab"], "command": "prev_view" }
]
@DareWreck
DareWreck / Append File Name.jsx
Last active July 18, 2017 18:53
Photoshop save image as jpg in image origin folder with appended file name for use in conjunction with an action/droplet combo
var docRef = app.activeDocument;
function ExportJpg(path, filename, qual)
{
try
{
var options = new ExportOptionsSaveForWeb();
jpgFile = new File( path + "\\" + filename );
options.quality = qual; // Start with highest quality (biggest file).
options.format = SaveDocumentType.JPEG; // Or it'll default to GIF.
@namklabs
namklabs / equalheight.js
Last active June 8, 2016 18:44
Force sibling columns with .equal-height class to size to the largest height of the group.
$.fn.equalheight = function(){
var $selection = this;
var $groups = [];
while( $selection.length > 1 ){// If $selection.length is greater than 1, then it must be 2, meaning there are at least 2 equal-height divs left. This will prevent an infinite loop if there is an equal-height div without a partner equal-height div.
// Find an equal-height group.
$groups.push( $selection.eq(0).siblings('.equal-height').addBack() );
// Reduce selection by the latest equal-height group.
$selection = $selection.not( $groups[ $groups.length - 1 ] );
// Drop groups that only have 1 element - it doesn't make any sense to have a lone equal-height element.
$.fn.equalheight = function( remove ) {
// Reset heights from the last viewport resize so that values do not get wacky-large.
this.height('auto');
// if remove is true, just reset the heights and return
if ( remove ) {
return;
}
$.fn.equalheight = function( remove ) {
// Reset heights from the last viewport resize so that values do not get wacky-large.
this.height('auto');
// if remove is true, just reset the heights and return
if ( remove ) {
return;
}
// by Dave @ Bees & Bombs >:)
int[][] result;
float time;
void setup() {
setup_();
result = new int[width*height][3];
}
@staltz
staltz / introrx.md
Last active April 3, 2025 04:45
The introduction to Reactive Programming you've been missing
int[][] result;
float t;
void setup() {
setup_();
result = new int[width*height][3];
}
void draw() {
@Joncom
Joncom / gist:e8e8d18ebe7fe55c3894
Last active September 11, 2021 00:29
Check if two line segments intersect
// Adapted from: http://stackoverflow.com/questions/563198/how-do-you-detect-where-two-line-segments-intersect/1968345#1968345
function line_intersects(p0_x, p0_y, p1_x, p1_y, p2_x, p2_y, p3_x, p3_y) {
var s1_x, s1_y, s2_x, s2_y;
s1_x = p1_x - p0_x;
s1_y = p1_y - p0_y;
s2_x = p3_x - p2_x;
s2_y = p3_y - p2_y;
var s, t;
@nick1n
nick1n / bookmark-help.js
Created January 2, 2015 17:59
Bookmark help for mobile phones
// Bookmark help for phones
var isMobile = {
Android: navigator.userAgent.match(/Android/i),
BlackBerry: navigator.userAgent.match(/BlackBerry/i),
iOS: navigator.userAgent.match(/iPhone|iPad|iPod/i),
Opera: navigator.userAgent.match(/Opera Mini/i),
Windows: navigator.userAgent.match(/IEMobile/i),
any: function() {
return isMobile.Android || isMobile.BlackBerry || isMobile.iOS || isMobile.Opera || isMobile.Windows;
}