| # IDA (disassembler) and Hex-Rays (decompiler) plugin for Apple AMX | |
| # | |
| # WIP research. (This was edited to add more info after someone posted it to | |
| # Hacker News. Click "Revisions" to see full changes.) | |
| # | |
| # Copyright (c) 2020 dougallj | |
| # Based on Python port of VMX intrinsics plugin: | |
| # Copyright (c) 2019 w4kfu - Synacktiv |
| Sub makeText() | |
| Dim ws As Worksheet | |
| Set ws = ThisWorkbook.Worksheets(1) | |
| Dim x As Long | |
| Dim y As Long | |
| Dim datFile As String | |
| x = 1 | |
| Do While x < 10 |
| #!/bin/bash | |
| PLATFORM=`uname` | |
| PYTHON_VERSION=2.7.2 | |
| if [ "$PLATFORM" = 'Linux' ]; then | |
| echo "Installing required packages..." | |
| yes | sudo apt-get install curl python-all-dev python3-all-dev | |
| yes | sudo apt-get install libreadline6-dev libsqlite3-dev libgdbm-dev | |
| yes | sudo apt-get install libbz2-dev build-essential libxml2-dev libxslt1-dev | |
| # Patch for PIL |