Skip to content

Instantly share code, notes, and snippets.

View remcorakers's full-sized avatar
👨‍💻

Remco Rakers remcorakers

👨‍💻
View GitHub Profile
@deanrad
deanrad / latest-meteor-rc.sh
Last active March 30, 2016 17:25
Get latest Meteor 1.3 RC or release
(curl -sI --fail https://github.com/meteor/meteor/tree/release/METEOR%401.3 > /dev/null && echo [email protected]) ||
(curl -sI --fail https://github.com/meteor/meteor/tree/release/METEOR%401.3-rc.8 > /dev/null && echo [email protected]) ||
(curl -sI --fail https://github.com/meteor/meteor/tree/release/METEOR%401.3-rc.7 > /dev/null && echo [email protected]) ||
(curl -sI --fail https://github.com/meteor/meteor/tree/release/METEOR%401.3-rc.6 > /dev/null && echo [email protected]) ||
(curl -sI --fail https://github.com/meteor/meteor/tree/release/METEOR%401.3-rc.5 > /dev/null && echo [email protected]) ||
(curl -sI --fail https://github.com/meteor/meteor/tree/release/METEOR%401.3-rc.4 > /dev/null && echo [email protected]) ||
(curl -sI --fail https://github.com/meteor/meteor/tree/release/METEOR%401.3-rc.3 > /dev/null && echo [email protected]) ||
(curl -sI --fail https://github.com/meteor/meteor/tree/release/METEOR%401.3-rc.2 > /dev/null && echo [email protected])
@tegansnyder
tegansnyder / disable mcafee endpoint protection.md
Last active October 29, 2024 13:49
Disable McAffee Endpoint Protection OSX

method 1

sudo /usr/local/McAfee/AntiMalware/VSControl stopoas

alternatively

sudo defaults write /Library/Preferences/com.mcafee.ssm.antimalware.plist OAS_Enable -bool False
sudo /usr/local/McAfee/AntiMalware/VSControl stop
sudo /usr/local/McAfee/AntiMalware/VSControl reload