Skip to content

Instantly share code, notes, and snippets.

View hughker's full-sized avatar

Winston Hughes hughker

View GitHub Profile
@hughker
hughker / SassMeister-input.scss
Created May 10, 2016 19:38
Quantity queries for Sass
// ----
// libsass (v3.3.2)
// ----
// =========================================================================
//
// QUANTITY QUERIES FOR SASS
// -------------------------
// Indrek Paas @indrekpaas
//
@hughker
hughker / SassMeister-input.scss
Created May 10, 2016 19:37
Precise control over responsive typography for Sass
// ----
// libsass (v3.3.2)
// ----
// =========================================================================
//
// PRECISE CONTROL OVER RESPONSIVE TYPOGRAPHY FOR SASS
// ---------------------------------------------------
// Indrek Paas @indrekpaas
//
@hughker
hughker / jquery.positionRelativeTo.js
Created April 30, 2016 02:13 — forked from wpscholar/jquery.positionRelativeTo.js
A jQuery plugin that will position an element relative to another element, regardles of whether or not they share the same parent in the DOM.
(function ( $ ) {
/**
* A jQuery plugin that will position an element relative to another element, regardles of whether or not they share the
* same parent in the DOM.
*
* Note: This must be called within a $(document).ready() call to work properly. If loading images in the element
* that aren't specifically sized via CSS, it may be necessary to call this within a $(window).load() call
* depending on the positioning used.
*
@hughker
hughker / auth-basic.conf
Created April 29, 2016 04:17 — forked from Thermionix/auth-basic.conf
nginx reverse proxy for sickbeard, couchpotato etc.
auth_basic "Restricted";
auth_basic_user_file /etc/nginx/htpasswd;
@hughker
hughker / nginx.conf
Created April 29, 2016 04:03 — forked from spikegrobstein/nginx.conf
nginx config for proxying requests for plex over a hostname-based virtualhost.
upstream plex-upstream {
# change plex-server.example.com:32400 to the hostname:port of your plex server.
# this can be "localhost:32400", for instance, if Plex is running on the same server as nginx.
server plex-server.example.com:32400;
}
server {
listen 80;
# server names for this server.
@hughker
hughker / README.md
Created April 12, 2016 13:43 — forked from rauchg/README.md
require-from-twitter
@hughker
hughker / HideAddressBar.js
Created April 8, 2016 17:39 — forked from victornpb/HideAddressBar.js
Hide the address bar on mobile devices.
/** Hide the address bar - vitim.us */
function hideAddressBar(){
setTimeout(function(){
if(scrollY) return;
scrollTo(scrollX, 1);
setTimeout(function()
if(scrollY==1)
scrollTo(scrollX, 0);
}, 1);
}, 1);
@hughker
hughker / tmux-cheatsheet.markdown
Created March 19, 2016 00:56 — forked from MohamedAlaa/tmux-cheatsheet.markdown
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname
@hughker
hughker / iftop_osx_insrall
Created March 18, 2016 23:54 — forked from AKB428/iftop_osx_insrall
iftopをOSXにbrewでイントール
Siori@Siori-no-MacBook-Air:~/code/git_akb428/chino (master)$ brew install iftop
==> Downloading http://www.ex-parrot.com/pdw/iftop/download/iftop-1.0pre4.tar.gz
######################################################################## 100.0%
==> ./configure --prefix=/usr/local/Cellar/iftop/1.0pre4 --mandir=/usr/local/Cellar/iftop/1.0pre4/share/man
==> make install
==> Caveats
iftop requires superuser privileges. You can either run the program
via `sudo`, or change its ownership to root and set the setuid bit:
$ sudo chown root:wheel /usr/local/Cellar/iftop/1.0pre4/sbin/iftop
$ sudo chmod u+s /usr/local/Cellar/iftop/1.0pre4/sbin/iftop
@hughker
hughker / Move Mail Message Multiple Accounts.applescript
Created March 16, 2016 15:01 — forked from Zettt/Move Mail Message Multiple Accounts.applescript
AppleScript to move selected Mail messages to a particular mailbox of a particular account. User is asked only once. [This script](https://gist.github.com/Zettt/6551617) let's you choose an account first.
(*
Mail Filer
Files messages in Mail.app using type ahead. Displays one dialog containing all mailboxes and accounts.
Created by Andreas Zeitler on 2013-09-13
Copyright Mac OS X Screencasts 2013. All rights reserved.
*)
set myMailboxes to {}