Skip to content

Instantly share code, notes, and snippets.

@replete
replete / backupAndroid.sh
Created May 5, 2021 16:22
Android adb Backup bash script with notifications/checks on Mac
#!/usr/bin/env bash
# Backup Android via ADB
set -euf -o pipefail
# configuration
ADB_DEVICE_ID="beefdead" # your device id from `adb devices`
OUT_DIR="/Volumes/SOMEDRIVE/Android Backups"
FILENAME="android-$(date +%Y-%m-%d-%H%M).ab"
# change to script directory
@replete
replete / osx_ramdisk.sh
Created December 2, 2015 16:57 — forked from jnschulze/osx_ramdisk.sh
Move Chrome, Safari and iTunes Cache to Ramdisk.
#!/bin/bash
# Size at the end is * 2048 where 2048 = 1 MB, so 1572864 = 768 MB
#DISK=`/usr/bin/hdiutil attach -nobrowse -nomount ram://1572864`
DISK=`/usr/bin/hdiutil attach -nobrowse -nomount ram://2097152`
/usr/sbin/diskutil erasevolume HFS+ "RamDiskCache" $DISK
CACHEDIR="/Volumes/RamDiskCache/$USER"
@replete
replete / AutoHotkey_BrowserGestures_SwipeLeftRight.ahk
Created April 6, 2017 22:12
AutoHotkey - Browser Gestures (Swipe left/right navigate back/forward, middle-click like firefox)
GroupAdd, Browsers, ahk_class Chrome_WidgetWin_1
GroupAdd, Browsers, ahk_class MozillaWindowClass
GroupAdd, Browsers, ahk_class ApplicationFrameWindow
#MaxHotkeysPerInterval 219
;-----three finger tap for middle click-----
+^#F22::
SendInput, {MButton}
return
@replete
replete / _lt-ie9-foundation-grid.scss
Last active May 26, 2017 07:34
Foundation Zurb Grid 4/5 in IE7 & IE8.
@charset "UTF-8";
/*---------------------------------------------------------------
IE78 - Zurb Foundation 4 Grid
ˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍ
https://gist.github.com/replete/7082477
(an enhanced fork of https://gist.github.com/zurbchris/5068210 )
1) Make sure $row-width-px = your max large breakpoint row width (e.g. 960px)
@replete
replete / validators.blacklisted-characters.directive.js
Created April 18, 2017 16:03
Angular 1.x blacklisted characters (not allowed) validator.
(function() {
'use strict';
angular.module('shopperTrak.validators')
.directive('blacklistedCharacters', function (){
return {
require: 'ngModel',
restrict:'A',
link: function(scope, elem, attrs, ngModel) {
@replete
replete / validators.blacklisted-values.directive.js
Created April 18, 2017 16:02
Angular 1.x blacklisted values validator. Accepts a list of values that are not allowed.
(function() {
'use strict';
angular.module('shopperTrak.validators')
.directive('blacklistedValues', function (){
return {
require: 'ngModel',
restrict:'A',
link: function(scope, elem, attr, ngModel) {
@replete
replete / initBrowserSupport.js
Created March 14, 2017 18:04
Browser support- alternative to modernizr
// Browser support
(function (d, h, w, n) {
//function hasProperties(properties, tagName) {
// var isStyle = !!!tagName;
// tagName = tagName || 'div';
// var el = d.createElement(tagName);
// for (var prop in properties) {
// if ((isStyle ? el.style[properties[prop]] : el[properties[prop]]) !== undefined ) {
// return true;
@replete
replete / replete.select.js
Created February 7, 2017 15:16
Select.js
(function (w, d, undefined) {
'use strict';
// TODO: Make some methods private for better inheritance
var h = d.documentElement;
function getNamespace(ns, names) {
for (var i = 0, n = names.split('.'), l = n.length; i < l; i++) {
@replete
replete / Dockerfile
Created February 1, 2017 15:09
Test dockerfile
FROM debian:latest
RUN apt-get -y update && apt-get install -y fortunes
CMD /usr/games/fortune
/*---------------------------------------------------------------
Media Queries
ˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍ
Mixins
˭˭˭˭˭˭˭˭˭˭˭˭˭˭˭˭˭˭˭˭˭˭˭˭˭˭˭˭˭˭˭˭˭˭˭˭˭˭˭˭˭˭˭˭˭˭˭˭˭˭˭˭˭˭˭˭˭˭˭˭˭˭˭*/
//Default values
$MEDIUM_MIN: 740px !default;
$LARGE_MIN: 1134px !default;
$XLARGE_MIN: 1440px !default;