- Boot into recovery
- Open a terminal (
Utilities > Terminal
) - Disable SIP using
csrutil disable
- Reboot into macOS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function( $ ){ | |
var methods = { | |
init : function( options ) { | |
return this.each(function(){ | |
oSkin = $('<div class="onionSkin" style="width:100%;text-align:center;position:absolute;opacity:.5;display:none;" />'); | |
oImg = $('<img src="'+options.src+'" />'); | |
oImg.css(options.imgStyles); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-rwxr-xr-x 1 xose staff 91152 11 ene 04:39 atos | |
-rwxr-xr-x 1 xose staff 47520 11 ene 04:39 filtercalltree | |
-rwxr-xr-x 1 xose staff 102992 11 ene 04:39 heap | |
-rwxr-xr-x 1 xose staff 1078 11 ene 04:39 ibtool | |
-rwxr-xr-x 1 xose staff 1088 11 ene 04:39 instruments | |
-rwxr-xr-x 1 xose staff 1330 11 ene 04:39 iprofiler | |
-rwxr-xr-x 1 xose staff 86304 11 ene 04:39 leaks | |
-rwxr-xr-x 1 xose staff 112976 11 ene 04:39 malloc_history | |
-rwxr-xr-x 1 xose staff 1082 11 ene 04:39 opendiff | |
-rwxr-xr-x 1 xose staff 44160 11 ene 04:39 rvictl |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$.fn.nextOrFirst = function(selector){ | |
var next = this.next(selector); | |
return (next.length) ? next : this.prevAll(selector).last(); | |
}; | |
$.fn.prevOrLast = function(selector){ | |
var prev = this.prev(selector); | |
return (prev.length) ? prev : this.nextAll(selector).last(); | |
}; |