Skip to content

Instantly share code, notes, and snippets.

View Ickerday's full-sized avatar
🐶

Bartosz Jędrecki Ickerday

🐶
View GitHub Profile
@Ickerday
Ickerday / iPhone_ringtone.sh
Last active March 24, 2024 14:30 — forked from oboje/iPhone_ringtone.sh
Create iPhone ringtone from any music format using ffmpeg
$ brew install ffmpeg
$ ffmpeg -i <input.*> -ac 1 -ab 128000 -f mp4 -acodec aac -y -ss <beggining_second> -t <length_in_seconds> output.m4r # Length can't be higher than 30 seconds
@Ickerday
Ickerday / FixCtrlBackspace.ahk
Created December 13, 2016 18:39 — forked from roryokane/FixCtrlBackspace.ahk
AutoHotkey script to fix Ctrl+Backspace (delete previous word) in File Explorer and Notepad
; how to write scripts: http://www.autohotkey.com/docs/
#IfWinActive ahk_class CabinetWClass ; File Explorer
^Backspace::
#IfWinActive ahk_class Notepad
^Backspace::
Send ^+{Left}{Backspace}
#IfWinActive
; source and context: http://superuser.com/a/636973/124606