Skip to content

Instantly share code, notes, and snippets.

View PhilippBaranovskiy's full-sized avatar

Philipp Baranovskiy PhilippBaranovskiy

View GitHub Profile
@PhilippBaranovskiy
PhilippBaranovskiy / TG: share
Created December 22, 2016 05:40
Telegram share bookmarklet
javascript:location.href='https://telegram.me/share/url?url='+encodeURIComponent(location.href)+'&text='+encodeURIComponent(document.title);

LICENSE-CC-BY-SA-4.0.md

UNLESS OTHERWISE NOTED, THE CONTENTS OF THIS REPOSITORY ARE LICENSED UNDER THE CREATIVE COMMONS ATTRIBUTION - SHARE ALIKE 4.0 INTERNATIONAL LICENSE

https://creativecommons.org/licenses/by-sa/4.0/

License Summary of CC-BY-SA 4.0 International

This section is a human-readable summary of (and not a substitute for) the full license included below.

@PhilippBaranovskiy
PhilippBaranovskiy / .gitattributes
Last active December 10, 2016 11:13
.gitattributes boilerplate
*.png filter=lfs diff=lfs merge=lfs -text
*.webp filter=lfs diff=lfs merge=lfs -text
*.webm filter=lfs diff=lfs merge=lfs -text
*.mp4 filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.psd filter=lfs diff=lfs merge=lfs -text
*.jpg filter=lfs diff=lfs merge=lfs -text
*.jpeg filter=lfs diff=lfs merge=lfs -text
*.ai filter=lfs diff=lfs merge=lfs -text
*.sketch filter=lfs diff=lfs merge=lfs -text
@PhilippBaranovskiy
PhilippBaranovskiy / git note
Last active August 29, 2015 14:23
default settings
// don't use merge and rebase pull behavior at the same time on the same project
git config --global pull.rebase true
// since git 2.0 version this is default behavior
git config --global push.default simple