Skip to content

Instantly share code, notes, and snippets.

View kyounger's full-sized avatar

Kenny Younger kyounger

View GitHub Profile
@mnutt
mnutt / example.md
Last active December 27, 2023 14:10
TreeStyleTab sidebar tabs only

Example:

firefox

@tmonjalo
tmonjalo / list-fftabs.py
Created September 13, 2018 10:42
List all Firefox tabs with title and URL
#! /usr/bin/env python3
"""
List all Firefox tabs with title and URL
Supported input: json or jsonlz4 recovery files
Default output: title (URL)
Output format can be specified as argument
"""
@Quazistax
Quazistax / fixGitSymlinksOnWin.bat
Last active December 21, 2023 03:54
Batch script for converting Git symlink files to Windows file symlinks
@echo.
@echo For converting Git symlink files to Windows file symlinks.
@echo * Run in repository root as Administrator.
@echo * Handling of folder symlinks is not implemented.
@echo * Intended for windows versions Vista and above (Win 7,8)
@echo.
@echo Thanks to: http://stackoverflow.com/a/5930443/1031870
@echo v1.02 (c) 2015 Robert Benko (Quazistax), License: MIT
@echo.
@toranb
toranb / setup.txt
Last active August 7, 2016 05:46
How to setup OSX Mountain Lion for ruby/python/node development
# install the latest xcode or nothing works
Install XCode
Install XCode cmd line tools
open Xcode and agree to terms of use
# install homebrew and install libksba (helpful for ruby 1.9.3 or so I'm told)
ruby -e "$(curl -fsSL https://raw.github.com/mxcl/homebrew/go)"
brew doctor
brew update
brew install libksba
@papoms
papoms / dnsmasq
Created September 17, 2012 17:41
Virtual Doc Root Setup for Mountain Lion
# Install DNSmasq
brew install dnsmasq
# cp default config to the right place
cp /usr/local/Cellar/dnsmasq/2.63/dnsmasq.conf.example /usr/local/etc/dnsmasq.conf
# Daemonize
sudo cp /usr/local/Cellar/dnsmasq/2.63/homebrew.mxcl.dnsmasq.plist /Library/LaunchDaemons/
# Add .dev to the resolver
@jehiah
jehiah / git-branch-status
Last active March 21, 2024 12:39
show git ahead/behind info for branches
moved to github --> https://github.com/bill-auger/git-branch-status/