Install FFmpeg with homebrew. You'll need to install it with a couple flags for webm and the AAC audio codec.
brew install ffmpeg --with-libvpx --with-libvorbis --with-fdk-aac --with-opus
#!/bin/bash | |
# Analysis of obfsuscated KoTOR II audio | |
# | |
# *** Stock mp3 encoded with lame | |
# position of LAME : 0x09c (156) | |
# position of Info : 0x024 (36) | |
# | |
# *** KoTOR II obfuscated audio (using bed_001ebo.wav) | |
# position of LAME : 0xc7 (199) |
# /ansible/roles/remote-user/tasks/main.yml | |
# | |
--- | |
- name: Test Default SSH port | |
local_action: wait_for port=22 timeout=5 host={{inventory_hostname}} | |
register: default_ssh | |
ignore_errors: true | |
- name: set ansible_ssh_port to default | |
set_fact: ansible_ssh_port=22 |
" </div>" | |
" })();\r\n" | |
" && " | |
" & " | |
" " | |
" ''The " | |
" ("" | |
" (199" | |
" (200" | |
" (e.g." |
@echo off | |
echo Uninstalling KB3075249 (telemetry for Win7/8.1) | |
start /w wusa.exe /uninstall /kb:3075249 /quiet /norestart | |
echo Uninstalling KB3080149 (telemetry for Win7/8.1) | |
start /w wusa.exe /uninstall /kb:3080149 /quiet /norestart | |
echo Uninstalling KB3021917 (telemetry for Win7) | |
start /w wusa.exe /uninstall /kb:3021917 /quiet /norestart | |
echo Uninstalling KB3022345 (telemetry) | |
start /w wusa.exe /uninstall /kb:3022345 /quiet /norestart | |
echo Uninstalling KB3068708 (telemetry) |
"""Download Dash User Docsets and install them in Zeal""" | |
import configparser | |
import json | |
import tarfile | |
import urllib.request | |
from pathlib import Path | |
from sys import platform | |
import easygui |
#!/bin/bash | |
# Make sure you have bbe (binary block editor) installed. | |
# Run this from inside the Outlaws install directory. | |
files_to_patch=( | |
glide2x.dll | |
glide3x.dll | |
glide.dll | |
lecaur3d.dll |
Since modern.ie released vagrant boxes, it' no longer necessary to manually import the ova file to virtualbox, as mentioned here.
However, the guys at modern.ie didn't configured the box to work with WinRM. This how-to addresses that, presenting steps to proper repackage these boxes, adding WinRM support. Additionally configures chocolatey package manager and puppet provisioner.
#!/bin/bash | |
source="$1" | |
source_size=$(stat -c %s "$source") | |
offsets=( $(grep --only-matching --byte-offset --binary --text Creative "$source" | cut -d : -f 1) ) | |
# setting the last offset to the size of the file | |
offsets[${#offsets[@]}]=$source_size | |
for ((i = 0; i < $(( ${#offsets[@]} - 1 )); i++)); do |
This is a set up for projects which want to check in only their source files, but have their gh-pages branch automatically updated with some compiled output every time they push.
A file below this one contains the steps for doing this with Travis CI. However, these days I recommend GitHub Actions, for the following reasons: