Skip to content

Instantly share code, notes, and snippets.

@lukeIam
lukeIam / InstallVocaluxe.sh
Last active March 9, 2018 16:13
Install Vocaluxe on Ubuntu 14.04.5
#!/bin/bash
apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
echo "deb http://download.mono-project.com/repo/ubuntu stable-trusty main" | tee /etc/apt/sources.list.d/mono-official-stable.list
apt-get update -qq
echo ttf-mscorefonts-installer msttcorefonts/accepted-mscorefonts-eula select true | sudo debconf-set-selections
apt-get install ttf-mscorefonts-installer -y -qq
@lukeIam
lukeIam / x64_acinerella.pdb
Last active December 20, 2016 16:33
[pdb] Acinerella Vocaluxe_Adjustments2 build 20161220
@lukeIam
lukeIam / signal.log
Created April 3, 2016 09:54
Signal QR bug (S2)
04-03 11:28:03.061 I/CameraClient(1867): Opening camera 0
04-03 11:28:03.061 D/exynos_camera(1867): exynos_camera_get_camera_info(0, 0x431b3a88)
04-03 11:28:03.061 D/exynos_camera(1867): Selected camera: M5MO
04-03 11:28:03.061 D/exynos_camera(1867): exynos_camera_open(0x41093004, 0, 0x40deaa5c)
04-03 11:28:03.575 D/exynos_camera(1867): Firmware version: OCED11
04-03 11:28:03.577 E/exynos_camera(1867): exynos_camera_params_apply: Setting preview params
04-03 11:28:03.581 E/exynos_param(1867): exynos_param_string_get: Unable to get data for key recording-hint
04-03 11:28:03.589 D/exynos_camera(1867): exynos_camera_params_apply: Preview size: 800x450, picture size: 3264x2448, recording size: 1280x720
04-03 11:28:03.594 D/exynos_camera(1867): exynos_camera_set_callbacks(0x40deb930, 0x40deaa58)
04-03 11:28:03.594 D/exynos_camera(1867): exynos_camera_enable_msg_type(0x40deb930, 3085)
@lukeIam
lukeIam / gitDescribe.ps1
Last active August 26, 2016 18:44
[moved https://github.com/lukeIam/githubDescribe] git describe --long without cloning reop (uses GitHub API)
$currentCommitSha = $Env:CurrentCommitSha
$githubRepoApiUri = $Env:githubRepoApiUri #"https://api.github.com/repos/:user/:repo/"
$Env:VersionTag = ""
# Inline-if helper function
Function IIf($If, $Right, $Wrong) {If ($If) {$Right} Else {$Wrong}}
try{
$result = Invoke-RestMethod -Uri "$($githubRepoApiUri)git/refs/tags" -Method 'GET'
}