Skip to content

Instantly share code, notes, and snippets.

@bradfa
bradfa / mips64el-debian-qemu-exact-steps.md
Last active June 14, 2023 11:14
mips64el Debian QEMU install

Installing Debian Stretch mips64el Using QEMU

We're going to emulate the mips64el "malta" machine and install Debian Stretch using QEMU on a amd64 Debian Buster host.

Likely you need your user to be in the "libvirt" group and have installed these packages (or a subset of such):

sudo apt install qemu-system-mips virt-manager libguestfs-tools
@rsms
rsms / IconStore.h
Created October 4, 2016 00:31
QuickLook icon generation
#pragma once
#include <Foundation/Foundation.h>
#include "common.h"
@interface IconRequest : NSObject
@property (readonly) BOOL canceled;
@property (readonly) CGImageRef image; // null if canceled or failed
- (void)cancel;
@end