Does your osx terminal speak java 7? Start Terminal.app
and try: java -version
:
> java -version
java version "1.7.0_51"
Java(TM) SE Runtime Environment (build 1.7.0_51-b13)
Java HotSpot(TM) 64-Bit Server VM (build 24.51-b03, mixed mode)
#!/bin/bash | |
## Validate arguments | |
if [ "$#" -ne 2 ]; then | |
echo "Fetches latest Spigot patch and applies it." | |
echo | |
echo "Usage: <spigot-1649-jar-path> <output-file>" | |
exit 1 | |
fi |
Following are instructions on how to use the Internet Archive command-line tool, "ia", to download a collection from Archive.org and keep it synced. The only requirements are that you have Python 2 installed on a Unix-like operating system (i.e. Mac OS X, Linux).
ia
command-line tool:#!/bin/sh | |
exec qemu-system-i386 -enable-kvm -cpu host -m 1024 -vga std -soundhw ac97 -net nic,model=rtl8139 \ | |
-net user -drive file=winxp.img,format=raw -drive file=/usr/share/virtio/virtio-win.iso,media=cdrom |
#!/usr/bin/env python3 | |
from subprocess import Popen, call | |
from time import sleep | |
threads = 8 | |
mem = 8 | |
eth0mac = '52:54:00:12:34:56' | |
bootSplash = '/home/tux/vms/splash/boot.jpg' | |
ovmfCode = '/home/tux/src/1git/macos-kvm-pci-passthrough/OVMF_CODE.fd' | |
ovmfVars = '/home/tux/src/1git/macos-kvm-pci-passthrough/OVMF_VARS.fd' |
#!/bin/sh | |
set -eu | |
create_iconset() { | |
mkdir -p Ghidra.iconset | |
cat << EOF > Ghidra.iconset/Contents.json | |
{ | |
"images": | |
[ |
# | |
# ida-analysis.py | |
# a simple IDAPython binary analysis script | |
# 2020.05.24 darell tan | |
# | |
# invoke with: | |
# idat64 -c -A -S"ida-analysis.py $HOME/analysis.txt" <file.bin> | |
# | |
import sys |
This is a not great piece of code I've wrote few years ago (I didn't have better things to do when I was 17, apperantly),
when I was fiddling around with the V8 JS Engine. It doesn't work with newer versions of V8, since the library doesn't have a
stable API. Time, where I had time to fight with the depot_tools
and lackluster MSVC support for fun is long gone.
I've tried to redo this example once in the past, after I've got an email notification that someone got interested in stuff
that I've put on the net and have forgotten about. Toolset got even more picky than I remember it being and my attention
for personal programming projects drifted away somewhere else, so it's highly unlikely that I'll update it to the newer API.
But I'm leaving the code there, maybe someone will make good use of it.