How To Remove the MacOS Quarantine Extended File Attribute for an Entire Directory Tree

Author: , November 24th, 2019

xattr -r -d com.apple.quarantine {dirname} ~or~ xattr -r -d com.apple.quarantine *

How To Fix Broken Boot After Yum Update On Amazon Linux

Author: , January 20th, 2012

Stop the instance first…YMMV:

http://aws.amazon.com/amazon-linux-ami/latest-release-notes/

How To Manipulate Checkboxes Using jQuery

Author: , October 25th, 2010

To check the checkbox simply set the value of the “checked” attribute: jQuery(‘.ChkBox’).attr(‘checked’,true); To uncheck it, just remove the attribute entirely: jQuery(‘.ChkBox’).removeAttr(‘checked’);