How to remove 'Boot OS X install from partition' from Clover bootloader
sudo rm -rf "/macOS Install Data" /.IAProductInfo
How to remove 'Boot OS X install from partition' from Clover bootloader
sudo rm -rf "/macOS Install Data" /.IAProductInfo
useBooleanState = (initialValue) -> | |
[value, setValue] = React.useState initialValue | |
setTrue = React.useCallback -> | |
setValue yes | |
, [] | |
setFalse = React.useCallback -> | |
setValue no |
useForceUpdate = -> useState()[1] | |
useDebouncedForceUpdate = _.debounce useForceUpdate, 100 | |
useCollectionBinder = (collection) -> | |
forceUpdate = useForceUpdate() | |
useEffect -> | |
collection.on 'add remove sort reset', forceUpdate |
{ | |
Platform | |
} = require 'react-native' | |
getBottomTabsHeight = -> | |
if Platform.OS is 'android' | |
return 56 | |
if Platform.OS is 'ios' | |
return if isIphoneX() then 84 else 50 |
# reference: https://github.com/github/gemoji/blob/master/db/emoji.json | |
module.exports = [ | |
['😀', 0, 'grinning'] | |
['😃', 0, 'smiley'] | |
['😄', 0, 'smile'] | |
['😁', 0, 'grin'] | |
['😆', 0, 'laughing, satisfied'] | |
['😅', 0, 'sweat_smile'] |
window.addSnapScroll = ($element) -> | |
width_of_two_columns = 550 # (Width of column 270 + padding of column 10) * 2 - 10 | |
data = {} | |
$element.bind 'touchstart', (e) -> | |
if document.width > width_of_two_columns | |
return | |
page_x = e.originalEvent.touches[0].pageX | |
page_y = e.originalEvent.touches[0].pageY | |
$this = $ this |
curl -s https://raw.githubusercontent.com/xdissent/ievms/master/ievms.sh | env REUSE_XP="no" IEVMS_VERSIONS="8" bash |