Skip to content

Instantly share code, notes, and snippets.

View msikma's full-sized avatar
๐Ÿš€
ใ‚ชใƒผใƒ—ใƒณใ‚ฝใƒผใ‚นใฎ็†ฑ็‹‚็š„ใชใƒ•ใ‚กใƒณ

Michiel Sikma msikma

๐Ÿš€
ใ‚ชใƒผใƒ—ใƒณใ‚ฝใƒผใ‚นใฎ็†ฑ็‹‚็š„ใชใƒ•ใ‚กใƒณ
View GitHub Profile
~> set CMAKE_PREFIX_PATH /usr/local/Cellar/qt5/5.6.0/lib/cmake/
~> cmake .. -GXcode
-- Target architecture: x86_64
-- Boost 1.57.0 or newer not found, falling back to externals
<FindSDL2.cmake>
</FindSDL2.cmake>
CMake Warning at CMakeLists.txt:205 (find_package):
By not providing "FindQt5.cmake" in CMAKE_MODULE_PATH this project has
asked CMake to find a package configuration file provided by "Qt5", but
CMake did not find one.
\version "2.18.2"
\language "english"
section-one = {
\key c \major
\time 6/16
}
implicitTuplets = \override TupletNumber.stencil = ##f
# This is the configuration file for DOSBox SVN. (Please use the latest version of DOSBox)
# Lines starting with a # are comment lines and are ignored by DOSBox.
# They are used to (briefly) document the effect of each option.
[sdl]
# fullscreen: Start dosbox directly in fullscreen. (Press ALT-Enter to go back)
# fulldouble: Use double buffering in fullscreen. It can reduce screen flickering, but it can also result in a slow DOSBox.
# fullresolution: What resolution to use for fullscreen: original, desktop or a fixed size (e.g. 1024x768).
# Using your monitor's native resolution with aspect=true might give the best results.
# If you end up with small window on a large screen, try an output different from surface.
Makefile:10: static/music/wit2.mid static/readme.txt static/readme_2.txt static/readme_3.txt
Makefile:11: dist/music/wit2.mid dist/readme.txt dist/readme_2.txt dist/readme_3.txt
cp static/music/wit2.mid dist/music/wit2.mid
cp static/music/wit2.mid dist/readme.txt
cp static/music/wit2.mid dist/readme_2.txt
cp static/music/wit2.mid dist/readme_3.txt
@msikma
msikma / test.c
Last active September 15, 2016 20:55
#include <stdio.h>
char a[] = "foo\n";
char b[] = "bar\n";
char *c[] = {
a,
b
};
// prints: "foo\n" as expected, no compile warnings
@msikma
msikma / test2.c
Created September 15, 2016 22:40
#include <stdio.h>
char a[] = "foo\n";
char b[] = "bar\n";
char *c[] = {
a,
b
};
char *d;
@msikma
msikma / sintest.c
Last active October 23, 2016 11:05
#include <stdio.h>
#include <time.h>
#include <math.h>
#include "src/utils/math.h"
// Sine lookup table for the range [0..180].
const float sin_table[] = {
0.0,
0.01745240643728351, 0.03489949670250097, 0.052335956242943835,
@msikma
msikma / sintest2.c
Last active October 23, 2016 11:29
// compile command:
// /usr/local/djgpp/bin/i586-pc-msdosdjgpp-gcc -c -o test.o test.c
// /usr/local/djgpp/bin/i586-pc-msdosdjgpp-gcc -o test.exe test.o
#include <stdio.h>
#include <time.h>
#include <math.h>
#include "src/utils/math.h"
// compile command:
// /usr/local/djgpp/bin/i586-pc-msdosdjgpp-gcc -O3 -c -o test.o test.c
// /usr/local/djgpp/bin/i586-pc-msdosdjgpp-gcc -O3 -o test.exe test.o
#include <stdio.h>
#include <time.h>
#include <math.h>
#include "src/utils/math.h"

How to fix Vaughn Live on Livestreamer

Note: check whether you can use Streamlink instead of Livestreamer first. See the last section below.

This brief guide assumes you know the basics of Git, and that you have Python installed with setuptools. (Downloading the latest Python 3 from the main website should be sufficient.) You also need to make some changes to one of the files.

  1. Clone livestreamer from Github
  2. Fetch the PR with fixes: git fetch origin pull/1495/head:proposed-fixes-1.13
  3. Switch to the fixes branch: git checkout proposed-fixes-1.13