Skip to content

Instantly share code, notes, and snippets.

@selahssea-zz
selahssea-zz / alow-from-anywhere.sh
Created September 21, 2016 07:43
Allow apps downloaded from anywhere for macOS Sierra
#Allow apps downloaded from anywhere
sudo spctl --master-disable
@selahssea-zz
selahssea-zz / camera-fix.sh
Created December 24, 2016 12:37
Macbook Pro Camera doesn't work
sudo killall VDCAssistant
@selahssea-zz
selahssea-zz / show-hidden-files
Created January 9, 2017 13:10
Show Hidden Files on macos
defaults write com.apple.finder AppleShowAllFiles YES
@selahssea-zz
selahssea-zz / exifclear.sh
Created October 29, 2017 10:18
Clear EXIF for files with exiftool
for i in *.jpg; do echo "Processing $i"; exiftool -all= "$i"; done
@selahssea-zz
selahssea-zz / arrayToLinkedList.js
Created November 20, 2017 18:44
Array to linked list in javascript
function ListNode(x) {
this.value = x;
this.next = null;
}
function SinglyList(){
this.head = null;
}
SinglyList.prototype.add = function(data) {