Skip to content

Instantly share code, notes, and snippets.

View Ickerday's full-sized avatar
🐶

Bartosz Jędrecki Ickerday

🐶
View GitHub Profile
{
"$schema": "https://raw.githubusercontent.com/jsonresume/resume-schema/master/schema.json",
"meta": {
"theme": "elegant"
},
"basics": {
"name": "Bartosz Jędrecki",
"label": "Web Developer",
"image": "https://scontent-waw1-1.xx.fbcdn.net/v/t39.30808-6/239839562_4660795943951763_4822391163654684093_n.jpg?_nc_cat=110&ccb=1-5&_nc_sid=09cbfe&_nc_ohc=5oCsQgcagPYAX-NgQh3&tn=c89AyW02pWBXyOjq&_nc_ht=scontent-waw1-1.xx&oh=00_AT-1VUXfJP9_5WoUYB2y0GfqDraDoSU2aqv19XtxiylaCA&oe=61C0D65D",
"email": "bartoszjedrecki@gmail.com",
@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 / unfuck.sh
Created June 20, 2018 13:20
Unfuck git (remove ignored but tracked files)
#!/bin/sh
if ! [ -d .git ]
then
echo >&2 Not in top level of a git repo
exit 1
fi
# Remove _every_ file from tracking
git ls-files | xargs git rm --cached
@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