This file contains hidden or 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
git filter-branch -f --msg-filter 'sed "1 s/^/LOREM_IPSUM: /"' origin/master..HEAD | |
# string to prepend ⬏───────────⬏ ⬑ range of commits |
This file contains hidden or 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
// List of language codes according to ISO 639-1. | |
// Source: <https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes> | |
var ISO_639_1 = { | |
'ab': 'Abkhazian', | |
'aa': 'Afar', | |
'af': 'Afrikaans', | |
'ak': 'Akan', | |
'sq': 'Albanian', | |
'am': 'Amharic', |
This file contains hidden or 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
// --------------------- | |
// breakpoints mixin | |
// --------------------- | |
// define breakpoints (you can modify or rename them, or create as many as you like) | |
breakpoints = { | |
xs: 0, | |
sm: 480px, |