Skip to content

Instantly share code, notes, and snippets.

View shinka-cb's full-sized avatar
🏠
Working from home

shinka-cb

🏠
Working from home
View GitHub Profile
# 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
@lambdalisue
lambdalisue / gista-file
Created October 28, 2016 14:30
うごくかふめい
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

Web時代のユーザインタフェース研究

@lambdalisue
lambdalisue / buildenv.sh
Last active January 25, 2016 14:16
Build python develop environment via pythonbrew
#!/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