Skip to content

Instantly share code, notes, and snippets.

View finder39's full-sized avatar

Joe Neuman finder39

View GitHub Profile
@guycalledseven
guycalledseven / manual-uninstall-paragon-ntfs.sh
Last active November 14, 2023 10:48
Manually remove Paragon NTFS v15 leftovers MacOS
# after appcleaner does his magic, do this
sudo rm -rf "/Library/Application Support/Paragon Software/"
sudo rm /Library/LaunchDaemons/com.paragon-software.installer.plist
sudo rm /Library/LaunchDaemons/com.paragon-software.ntfs.loader.plist
sudo rm /Library/LaunchDaemons/com.paragon-software.ntfsd.plist
sudo rm /Library/LaunchAgents/com.paragon-software.ntfs.notification-agent.plist
sudo rm -rf /Library/Filesystems/ufsd_NTFS.fs/
sudo rm -rf /Library/PrivilegedHelperTools/com.paragon-software.installer
sudo rm -rf /Library/Extensions/ufsd_NTFS.kext/
@redolent
redolent / renice-audio.sh
Created April 15, 2015 20:50
Fix Bluetooth Audio on Mac
#!/bin/bash
list="$(
sudo ps -A \
| grep -iE '([h]ear|[f]irefox|[b]lue|[c]oreaudiod)' \
| cut -c 1-90
)"
pids=$( cut -c 1-6 <<< "$list" )
@quellish
quellish / xcci.md
Created October 28, 2014 03:03
Xcode CI script variables

Variable

Type

@nocoo
nocoo / Bridge.h
Created July 24, 2014 05:33
Swift MD5 support to String
#import <CommonCrypto/CommonCrypto.h>
@codebudo
codebudo / .bash_profile
Created October 24, 2012 20:49
Bash profile for fancy prompt
# fancy prompt
COLOR_NONE="\[\e[0m\]"
BLACK_BOLD="\[\e[30;1m\]"
RED_BOLD="\[\e[31;1m\]"
GREEN_BOLD="\[\e[32;1m\]"
BROWN_BOLD="\[\e[33;1m\]"
BLUE_BOLD="\[\e[34;1m\]"
PINK_BOLD="\[\e[35;1m\]"
CYAN_BOLD="\[\e[36;1m\]"
@adamgit
adamgit / .gitignore
Last active April 8, 2024 12:58
.gitignore file for Xcode4 / OS X Source projects
#########################
# .gitignore file for Xcode4 and Xcode5 Source projects
#
# Apple bugs, waiting for Apple to fix/respond:
#
# 15564624 - what does the xccheckout file in Xcode5 do? Where's the documentation?
#
# Version 2.6
# For latest version, see: http://stackoverflow.com/questions/49478/git-ignore-file-for-xcode-projects
#