View resume.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$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", |
View iPhone_ringtone.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ 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 |
View unfuck.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
View FixCtrlBackspace.ahk
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; 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 |