Skip to content

Instantly share code, notes, and snippets.

View vookimedlo's full-sized avatar

Michal Duda vookimedlo

View GitHub Profile
@vookimedlo
vookimedlo / git2dch.sh
Created April 20, 2019 20:33 — forked from nikicat/git2dch.sh
Shell script to regenerate debian changelog from git log
#!/bin/sh
sudo apt-get install -y moreutils git-buildpackage
>debian/changelog
prevtag=initial
pkgname=`cat debian/control | grep '^Package: ' | sed 's/^Package: //'`
git tag -l v* | sort -V | while read tag; do
(echo "$pkgname (${tag#v}) unstable; urgency=low\n"; git log --pretty=format:' * %s' $prevtag..$tag; git log --pretty='format:%n%n -- %aN <%aE> %aD%n%n' $tag^..$tag) | cat - debian/changelog | sponge debian/changelog
prevtag=$tag
@vookimedlo
vookimedlo / windows_batch.md
Created April 1, 2019 20:06
Windows Batch Scripts: Useful constructs

Change Current Directory to the Batch File Directory

cd /D "%~dp0"

@vookimedlo
vookimedlo / shell_shortcuts.md
Created January 22, 2019 18:36
Shell shortcuts
➜  bindkey
"^@" set-mark-command
"^A" beginning-of-line
"^B" backward-char
"^D" delete-char-or-list
"^E" end-of-line
"^F" forward-char
"^G" send-break
"^H" backward-delete-char
@vookimedlo
vookimedlo / interesting_unicode_chars.md
Created December 14, 2018 20:39
Interesting Unicode Characters

‼️💬⚠️ℹ️

@vookimedlo
vookimedlo / CURL Services.md
Last active November 22, 2018 19:03
Interesting CURL services

Weather

curl wttr.in/

curl wttr.in/Praha

External IP Address

curl checkip.amazonaws.com

@vookimedlo
vookimedlo / macos_mute_unmute.md
Last active May 14, 2025 14:05
MacOS: mute & unmute from command line

Mute volume

osascript -e "set volume with output muted"

Unmute volume

osascript -e "set volume without output muted"
@vookimedlo
vookimedlo / predictable_network_linux.md
Last active June 12, 2023 05:05
Predictable network interface device names @ Linux

Predictable network interface device names @ Linux

Predictable network interface device names based on:
 - firmware/bios-provided index numbers for on-board devices
 - firmware-provided pci-express hotplug slot index number
 - physical/geographical location of the hardware
 - the interface's MAC address

Keybase proof

I hereby claim:

  • I am vookimedlo on github.
  • I am vookimedlo (https://keybase.io/vookimedlo) on keybase.
  • I have a public key ASBgHxNE138PO2O8UEAkuzU5h-FUeJYkZVtdGOlFdOvylwo

To claim this, I am signing this object:

@vookimedlo
vookimedlo / useful_aliases
Last active August 19, 2021 20:19
Useful MacOS aliases
alias www="python -m SimpleHTTPServer 8000"
alias ssh_via_proxy='ssh -o "ProxyCommand nc -X 5 -x localhost:6000 %h %p"'
alias git_merge_up="git merge upstream/master"
alias proxy_on='networksetup -setsocksfirewallproxystate "Wi-Fi" on'
alias proxy_off='networksetup -setsocksfirewallproxystate "Wi-Fi" off'
# Perl SED
#
alias psed="perl -pe"
@vookimedlo
vookimedlo / xcode-build-bump.sh
Created March 10, 2018 20:44 — forked from sekati/xcode-build-bump.sh
Xcode Auto-increment Build & Version Numbers
# xcode-build-bump.sh
# @desc Auto-increment the build number every time the project is run.
# @usage
# 1. Select: your Target in Xcode
# 2. Select: Build Phases Tab
# 3. Select: Add Build Phase -> Add Run Script
# 4. Paste code below in to new "Run Script" section
# 5. Drag the "Run Script" below "Link Binaries With Libraries"
# 6. Insure that your starting build number is set to a whole integer and not a float (e.g. 1, not 1.0)