Skip to content

Instantly share code, notes, and snippets.

@docee
docee / Free_Beyond_Compare.md
Created September 26, 2022 15:39 — forked from njleonzhang/Free_Beyond_Compare.md
Free Beyond Compare by unlimited trail

1 . goto beyond compare folder

 cd "/Applications/Beyond Compare.app/Contents/MacOS/"

2 . rename BCompare to BCompare.real

 mv BCompare BCompare.real
@docee
docee / Aircrack Commands
Created June 25, 2019 13:03 — forked from mtrovilho/Aircrack Commands
Cracking WPA2 / WEP Wifi / Aircrack 10 seconds guide. For Mac OSX
// Install the latest Xcode, with the Command Line Tools.
// Install Homebrew
// Install aircrack-ng:
brew install aircrack-ng
// Create the following symlink:
sudo ln -s /System/Library/PrivateFrameworks/Apple80211.framework/Versions/Current/Resources/airport /usr/local/sbin/airport
// Figure out which channel you need to sniff:
sudo airport -s
@docee
docee / JavaScript Notes.js
Created January 29, 2014 17:06 — forked from Morakot/JavaScript Notes.js
Somthing Notes of JavaScript - Function and Object
// protopyte
function add() {
var str = "Hello";
this.greet = "Motto";
};
//test:
alert(add);//
//result
function add() {