Get the ids of the tracks with mkvinfo <file name>
e.g.:
video 0
audio_disliked 1 (default)
audio_liked 2
subtitles_disliked 3 (default)
subtitles_liked 4
function cur_branch --description "Returns the name of the current git branch" | |
git rev-parse --abbrev-ref HEAD | |
end |
Get the ids of the tracks with mkvinfo <file name>
e.g.:
video 0
audio_disliked 1 (default)
audio_liked 2
subtitles_disliked 3 (default)
subtitles_liked 4
Tested under Windows 10 Pro host (1709), Ubuntu server 16 LTS guest, VirtualBox 5.2.4.
Hardware: AMD FX 6300, 8GB Ram (VGA should not matter).
# Description: Boxstarter Script | |
# Author: Jess Frazelle <[email protected]> | |
# Last Updated: 2017-09-11 | |
# | |
# Install boxstarter: | |
# . { iwr -useb http://boxstarter.org/bootstrapper.ps1 } | iex; get-boxstarter -Force | |
# | |
# You might need to set: Set-ExecutionPolicy RemoteSigned | |
# | |
# Run this boxstarter by calling the following from an **elevated** command-prompt: |
require 'mechanize' | |
class WallHaven | |
BASE_URI = 'https://wallhaven.cc' | |
def initialize(limit: 24, human_download: false) | |
@agent = Mechanize.new | |
@limit = limit.to_i | |
@human_download = human_download | |
end |
require 'ostruct' | |
require 'erb' | |
STEAM_PROFILE_ID = 'YOUR_STEAM_PROFILE_ID' # https://steamid.io/ | |
STEAM_API_KEY = 'YOUR_API_KEY' # http://steamcommunity.com/dev/apikey (enter '127.0.0.1' if you're unsure about your domain name) | |
OUTPUT_HTML = 'steam_achievements.html' | |
INPUT_ERB = 'steam_achievements.html.erb' | |
module Steam |
For an app I'm building for myself, I have to provide a privacy policy for | |
data retrieved from the API. | |
I will not release any data from the Uber API without explicit and clear | |
consent of the user. | |
This does not affect the user's statutory rights. The user is able to stop | |
using the service at any time, and can remove any data from the service | |
using the appropriate database management commands. |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags --> | |
<title>Ohana means family</title> | |
<!-- Bootstrap --> |
1 0 | |
2 0 | |
3 0 | |
4 3 | |
5 4 | |
6 5 | |
7 5 | |
8 7 | |
9 8 | |
10 9 |
namespace :git do | |
desc 'Create a tag with release name and merge events since last tag' | |
# expects merge events with no-ff, as gitlab does by default | |
APP_NAME = '' | |
MERGE_EVENTS_SINCE_LAST_TAG = | |
`git log \`git describe --tags --abbrev=0\`..HEAD --merges --oneline` | |
def release_name |