Skip to content

Instantly share code, notes, and snippets.

View c0ns0le's full-sized avatar
:octocat:
I may be slow to respond.

c0ns0le c0ns0le

:octocat:
I may be slow to respond.
View GitHub Profile
@c0ns0le
c0ns0le / osx-10.10-setup.md
Created November 26, 2015 00:21 — forked from kevinelliott/osx-10.10-setup.md
Mac OS X 10.10 Yosemite Setup

Mac OS X 10.10 Yosemite

Custom recipe to get OS X 10.10 Yosemite running from scratch, setup applications and developer environment. I use this gist to keep track of the important software and steps required to have a functioning system after a semi-annual fresh install. On average, I reinstall each computer from scratch every 6 months, and I do not perform upgrades between distros.

This keeps the system performing at top speeds, clean of trojans, spyware, and ensures that I maintain good organizational practices for my content and backups. I highly recommend this.

You are encouraged to fork this and modify it to your heart's content to match your own needs.

Install Software

@c0ns0le
c0ns0le / osx-10.11-setup.md
Created November 26, 2015 00:21 — forked from kevinelliott/osx-10.11-setup.md
Mac OS X 10.11 El Capitan Setup

Mac OS X 10.11 El Capitan

Custom recipe to get OS X 10.11 El Capitan running from scratch, setup applications and developer environment. This is very similar (and currently mostly the same) as my 10.10 Yosemite setup recipe (as found on this gist https://gist.github.com/kevinelliott/0726211d17020a6abc1f). Note that I expect this to change significantly as I install El Capitan several times.

I use this gist to keep track of the important software and steps required to have a functioning system after a semi-annual fresh install. On average, I reinstall each computer from scratch every 6 months, and I do not perform upgrades between distros.

This keeps the system performing at top speeds, clean of trojans, spyware, and ensures that I maintain good organizational practices for my content and backups. I highly recommend this.

You are encouraged to fork this and modify it to your heart's content to match your own needs.

@c0ns0le
c0ns0le / install-via-brew-cask.sh
Created November 26, 2015 00:33
Mac OS X 10.11 El Capitan Setup
#!/bin/sh
brew cask install amethyst
brew cask install appcleaner
brew cask install bittorrent-sync
brew cask install Caskroom/cask/aerial
brew cask install cyberduck
brew cask install evernote
brew cask install flux
brew cask install iterm2

OS X Preferences


#Disable window animations
defaults write NSGlobalDomain NSAutomaticWindowAnimationsEnabled -bool false

#Enable repeat on keydown
defaults write -g ApplePressAndHoldEnabled -bool false
@c0ns0le
c0ns0le / Mostly working full list
Created December 9, 2015 22:25
Cygwin packages for linuxbrew
_autorebase
_update-info-dir
adwaita-icon-theme
alternatives
at-spi2-core
autoconf
autoconf2.1
autoconf2.5
automake
automake1.10
@c0ns0le
c0ns0le / tmux-cheatsheet.markdown
Created December 9, 2015 23:25 — forked from MohamedAlaa/tmux-cheatsheet.markdown
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname
@c0ns0le
c0ns0le / Windows10-Setup.ps1
Created January 29, 2016 00:40 — forked from NickCraver/Windows10-Setup.ps1
(In Progress) PowerShell Script I use to customize my machines in the same way for privacy, search, UI, etc.
##################
# Privacy Settings
##################
# Privacy: Let apps use my advertising ID: Disable
Set-ItemProperty -Path HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\AdvertisingInfo -Name Enabled -Type DWord -Value 0
# To Restore:
#Set-ItemProperty -Path HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\AdvertisingInfo -Name Enabled -Type DWord -Value 1
# Privacy: SmartScreen Filter for Store Apps: Disable
Set-ItemProperty -Path HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\AppHost -Name EnableWebContentEvaluation -Type DWord -Value 0
@c0ns0le
c0ns0le / all-my-knowledge.md
Created February 29, 2016 21:35 — forked from trevnorris/all-my-knowledge.md
Here's a rundown of everything I use to do performance analysis in Node.

Introduction

Here is a collection of tips and tricks I've picked up about doing performance analysis on Node. Included is a build script that should get a base install of Ubuntu fully functional and ready for all the things we'll be going through.

The script pulls a lot of code from the latest master of each repository. So it's possible that something may fail, but to date I haven't had any issues.

First, go ahead and run the script. Then go take a nice long break. It'll

@c0ns0le
c0ns0le / ConfluenceBackup.sh
Created February 29, 2016 22:04 — forked from SeanTRobinson/ConfluenceBackup.sh
Backup Atlassian Jira and Confluence from the command line.
#!/bin/bash
USERNAME=<username>
PASSWORD=<password>
INSTANCE="<company>.atlassian.net"
LOCATION="./Backups/"
mkdir "Backups"
# Grabs cookies and generates the backup on the UI.
@c0ns0le
c0ns0le / template.pl
Created March 10, 2016 00:52 — forked from gjherbiet/template.pl
A Perl script template
#!/usr/bin/env perl -w
##############################################################################
# File :
# Author : Guillaume-Jean Herbiet <[email protected]>
#
#
# Copyright (c) 2010 Guillaume-Jean Herbiet (http://herbiet.net)
#
# This program is free software: you can redistribute it and/or modify