git clone https://gist.github.com/83a5a68afd284fbb5940a2b2464b7a08.git list-licences
cd list-licences
npm install
npm link
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
#!/usr/bin/env python3 | |
import re, sys, os | |
""" | |
Converts the Nix profile SH script to a Fish-compatible profile using a | |
simple line-by-line replace algorithm. | |
""" | |
# Regular expressions for things we need to rewrite | |
RE_TEST = re.compile("\[([^\]]+)\]") |
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
{ | |
"element-case": "lower" | |
} |
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
{ | |
"sort-order-fallback": "abc", | |
"sort-order": [ | |
["..."] | |
] | |
} |
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
module.exports = function(grunt) { | |
grunt.initConfig({ | |
sass: { | |
options: { | |
// Comment this option to avoid bug | |
sourceComments: 'map' | |
}, | |
'tst.css': 'tst.scss' | |
} |
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
/* | |
списки и счетчики | |
http://clck.ru/d/_DP820mM15kId | |
http://clck.ru/d/W3EGMhVZ15kIl | |
http://clck.ru/d/yvjcixu815kJJ | |
*/ | |
.multilevel, | |
.multilevel ol | |
{ | |
counter-reset: list; |
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
/* | |
* Страница карточек шаг 3 | |
* http://clck.ru/d/UwKTkih_14p1p | |
* http://clck.ru/d/TyYG2nfR14p1H | |
*/ | |
body | |
{ | |
text-align: justify; | |
} |
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
/* | |
* Страница карточек шаг 2 | |
* http://clck.ru/d/OkAGYhJd14p0D | |
*/ | |
/* | |
* Страница карточек | |
* http://clck.ru/d/UABmzLuo14p-h | |
*/ |
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
/* | |
* Страница карточек | |
* http://clck.ru/d/UABmzLuo14p-h | |
*/ | |
.card | |
{ | |
border: 1px solid #ccc; | |
margin-bottom: 5px; | |
} |
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
/* | |
Сделать объемную надпись | |
http://clck.ru/d/wF6GyFCC14CDp | |
*/ | |
html, body { | |
margin: 0; | |
padding: 0; | |
height: 100%; | |
width: 100%; |
NewerOlder