Skip to content

Instantly share code, notes, and snippets.

@yudenzel
yudenzel / srv3-to-vtt.py
Created June 22, 2021 03:47
Convert subtitles from srv3 to vtt format
#!/usr/bin/env python3
from os import write
import xml.etree.ElementTree as ET
import sys
class paragraph():
def __init__(self, t, d, text):
self.t = int(t if t else 0)
@yudenzel
yudenzel / ffmerge.sh
Created September 3, 2020 09:37
Bash script to merge audio and video only files to one single file.
#!/usr/bin/env bash
if [[ $# -eq 3 ]]; then
echo ffmpeg -i "${1}" -i "${2}" -c:a copy -c:v copy "${3}"
ffmpeg -i "${1}" -i "${2}" -c:a copy -c:v copy "${3}"
else
echo "unexpected number or arguments, 3 is expected.";
fi
@yudenzel
yudenzel / Sketch Measure Helper.js
Last active September 2, 2020 03:04
A helper tampermonkey script allows drag the sketch document.
// ==UserScript==
// @name Sketch Measure Helper
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match file://*/*
// @grant none
// @run-at document-idle
// ==/UserScript==
define dump_qhash
set $i = 0
set $qhash = 0
while $i < $argc
eval "set $qhash = $arg%d", $i
set $qhash_data = $qhash.d
set $qhash_endl = $qhash.e
set $buckets = $qhash_data.buckets
set $numBuckets = $qhash_data.numBuckets
set $nodeSize = $qhash_data.nodeSize
@yudenzel
yudenzel / ibus_rime.yaml
Created May 21, 2020 14:10
ibus-rime horizontal candicates panel
#~/.config/ibus/rime/build/ibus_rime.yaml
style:
horizontal: true
@yudenzel
yudenzel / change_network_interface_hw_addr.sh
Last active May 21, 2020 11:58
Change network interface hardware address
sudo ifconfig eth0 down
sudo ifconfig eth0 hw ether MAC_ADDR
sudo ifconfig eth0 up
@yudenzel
yudenzel / subst-template.bash
Last active December 24, 2019 09:16
Generate file from template file via substitution bash variables
function subst-template () {
(echo "cat << EOF"; cat "${1}"; echo "EOF") | bash
}
@yudenzel
yudenzel / load-img.sh
Created December 20, 2019 03:03
Load ext4 image and Bash into it
function load-img () {
sudo id;
IMAGE_NAME="$1";
IMAGE_FILE="${IMAGE_NAME}.img";
if [[ -f "${IMAGE_FILE}" ]]; then
loop_dev=$(sudo losetup --show -f "${IMAGE_FILE}");
echo "loop_dev = ${loop_dev}";
@yudenzel
yudenzel / dump_core_exec.sh
Created November 14, 2019 02:20
Dump executable from core file
for f in *;do echo "$(gdb -q --core $f -batch |grep Core|sed "s#Core#$f#g")";done
@yudenzel
yudenzel / hide_3d_objects_folder.reg
Last active October 25, 2019 13:21
Hide the "3D Objects" folder in Windows explorer
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{31C0DD25-9439-4F12-BF41-7FF4EDA38722}\PropertyBag]
"ThisPCPolicy"="Hide"