Skip to content

Instantly share code, notes, and snippets.

@outadoc
outadoc / ghidrapp.py
Last active August 13, 2025 09:13 — forked from zorchp/wrap-ghidra-into-MacOS-app-bundle.py
A worked way to bundle ghidra installed from homebrew to MacOS `.app` format.
#!/usr/bin/env python3
import os
import re
import subprocess as sp
base_path = os.path.expanduser("~/Applications")
app_name = "Ghidra"
exec_file = "ghidraRun"
@outadoc
outadoc / GottaGoFastJS.swift
Last active May 14, 2016 09:10 — forked from b3ll/GottaGoFastJS.swift
Blazingly-Fast JSON Parser written in Swift
import Foundation
public typealias JSON = AnyObject
public func JSONWithData(data: NSData) throws -> JSON? {
return NSJSONSerialization.JSONObjectWithData(data, options: [])
}