├── LICENSE ├── README.md ├── arachno ├── Readme.md └── arachno.py ├── dfview └── dfview.py ├── idacoffee ├── idacoffee.py └── readme.md ├── kloppy ├── klop.py ├── readme.md └── rsrc │ └── kloppy.png ├── ricky ├── readme.md └── ricky.py ├── screenrecorder ├── readme.md └── screenrecorder.py └── shuffle ├── readme.md ├── rsrc └── shuffle.gif └── shuffle.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patois/hexrays_scripts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patois/hexrays_scripts/HEAD/README.md -------------------------------------------------------------------------------- /arachno/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patois/hexrays_scripts/HEAD/arachno/Readme.md -------------------------------------------------------------------------------- /arachno/arachno.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patois/hexrays_scripts/HEAD/arachno/arachno.py -------------------------------------------------------------------------------- /dfview/dfview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patois/hexrays_scripts/HEAD/dfview/dfview.py -------------------------------------------------------------------------------- /idacoffee/idacoffee.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patois/hexrays_scripts/HEAD/idacoffee/idacoffee.py -------------------------------------------------------------------------------- /idacoffee/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patois/hexrays_scripts/HEAD/idacoffee/readme.md -------------------------------------------------------------------------------- /kloppy/klop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patois/hexrays_scripts/HEAD/kloppy/klop.py -------------------------------------------------------------------------------- /kloppy/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patois/hexrays_scripts/HEAD/kloppy/readme.md -------------------------------------------------------------------------------- /kloppy/rsrc/kloppy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patois/hexrays_scripts/HEAD/kloppy/rsrc/kloppy.png -------------------------------------------------------------------------------- /ricky/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patois/hexrays_scripts/HEAD/ricky/readme.md -------------------------------------------------------------------------------- /ricky/ricky.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patois/hexrays_scripts/HEAD/ricky/ricky.py -------------------------------------------------------------------------------- /screenrecorder/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patois/hexrays_scripts/HEAD/screenrecorder/readme.md -------------------------------------------------------------------------------- /screenrecorder/screenrecorder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patois/hexrays_scripts/HEAD/screenrecorder/screenrecorder.py -------------------------------------------------------------------------------- /shuffle/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patois/hexrays_scripts/HEAD/shuffle/readme.md -------------------------------------------------------------------------------- /shuffle/rsrc/shuffle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patois/hexrays_scripts/HEAD/shuffle/rsrc/shuffle.gif -------------------------------------------------------------------------------- /shuffle/shuffle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patois/hexrays_scripts/HEAD/shuffle/shuffle.py --------------------------------------------------------------------------------