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 METEOR@1.3) ||
(curl -sI --fail https://github.com/meteor/meteor/tree/release/METEOR%401.3-rc.8 > /dev/null && echo METEOR@1.3-rc.8) ||
(curl -sI --fail https://github.com/meteor/meteor/tree/release/METEOR%401.3-rc.7 > /dev/null && echo METEOR@1.3-rc.7) ||
(curl -sI --fail https://github.com/meteor/meteor/tree/release/METEOR%401.3-rc.6 > /dev/null && echo METEOR@1.3-rc.6) ||
(curl -sI --fail https://github.com/meteor/meteor/tree/release/METEOR%401.3-rc.5 > /dev/null && echo METEOR@1.3-rc.5) ||
(curl -sI --fail https://github.com/meteor/meteor/tree/release/METEOR%401.3-rc.4 > /dev/null && echo METEOR@1.3-rc.4) ||
(curl -sI --fail https://github.com/meteor/meteor/tree/release/METEOR%401.3-rc.3 > /dev/null && echo METEOR@1.3-rc.3) ||
(curl -sI --fail https://github.com/meteor/meteor/tree/release/METEOR%401.3-rc.2 > /dev/null && echo METEOR@1.3-rc.2)
@tegansnyder
tegansnyder / disable mcafee endpoint protection.md
Last active December 26, 2023 03:18
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