Skip to content

Instantly share code, notes, and snippets.

View ypid's full-sized avatar

Robin Schneider ypid

View GitHub Profile
@ypid
ypid / conv2vmx-ovf.py
Created January 30, 2016 17:28 — forked from eshizhan/conv2vmx-ovf.py
a script that can help import VMs into VMware ESXi from VirtualBox. tested vbox 4.2.18 and ESXi 5.1.
#!/usr/bin/env python
#
# usage:
# conv2vmx-ovf.py some-vm.ovf
#
# ref: http://www.cnblogs.com/eshizhan/p/3332020.html
# ref: https://gist.github.com/eshizhan/6650285
#
# Maybe also worth checking out: https://gist.github.com/robdyke/d81b0f1976be440052af
# https://gist.github.com/Naddmr/1a159610573609095158
@ypid
ypid / snake6502.asm
Last active August 29, 2015 14:06 — forked from wkjagt/snake6502.asm
; ___ _ __ ___ __ ___
; / __|_ _ __ _| |_____ / /| __|/ \_ )
; \__ \ ' \/ _` | / / -_) _ \__ \ () / /
; |___/_||_\__,_|_\_\___\___/___/\__/___|
; An annotated version of the snake example from Nick Morgan's 6502 assembly tutorial
; on http://skilldrick.github.io/easy6502/ that I created as an exercise for myself
; to learn a little bit about assembly. I **think** I understood everything, but I may
; also be completely wrong :-)