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
Kodi | |
https://kodi.tv/download/ | |
On Firestick: | |
- download ES File Explorer | |
- create new favorite: https:\\kodi.tv\download | |
- select latest ARM build | |
- Kodi Filemanager add source: http://mediarepos.net/kodistuff | |
- install add-on from repository | |
- select Exodus add-on |
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
#Move: | |
j, k, h, l - up, down, left, right | |
b - back + shift | |
w - word + shift | |
e - end of the word | |
$,0,^ | |
{} - paragraph | |
f - find the word | |
F - find the word backwards | |
t, T - find and put the cursor before |
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
#!/usr/bin/ruby | |
# Create display override file to force Mac OS X to use RGB mode for Display | |
# see http://embdev.net/topic/284710 | |
require 'base64' | |
data=`ioreg -l -d0 -w 0 -r -c AppleDisplay` | |
edids=data.scan(/IODisplayEDID.*?<([a-z0-9]+)>/i).flatten | |
vendorids=data.scan(/DisplayVendorID.*?([0-9]+)/i).flatten |