Skip to content

Instantly share code, notes, and snippets.

@jemyzhang
jemyzhang / stacktrace.cxx
Created September 7, 2017 08:03 — forked from fmela/stacktrace.cxx
A C++ function that produces a stack backtrace with demangled function & method names.
/*
* Copyright (c) 2009-2017, Farooq Mela
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
@jemyzhang
jemyzhang / install_makemkv.sh
Last active February 12, 2019 01:26 — forked from knugie/install_makemkv.sh
Ubuntu - Install MakeMKV 1.10.2
sudo apt-get install build-essential pkg-config libc6-dev libssl-dev libexpat1-dev libavcodec-dev libgl1-mesa-dev qt5-default
wget http://www.makemkv.com/download/makemkv-oss-1.10.2.tar.gz
wget http://www.makemkv.com/download/makemkv-bin-1.10.2.tar.gz
tar -xvf makemkv-oss-1.10.2.tar.gz
tar -xvf makemkv-bin-1.10.2.tar.gz
cd makemkv-oss-1.10.2/
./configure
make
sudo make install