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
<font size="-3" style="display: inline-block; background: black;"> | |
<pre><font color="#221b29">0</font><font color="#130d12">1</font><font color="#241c1a">0</font><font color="#231b11">0</font><font color="#20190b">0</font><font color="#1b1304">1</font><font color="#150e03">1</font><font color="#1d1508">0</font><font color="#2a1e12">1</font><font color="#1f0f08">1</font><font color="#1e0c05">1</font><font color="#1a0b04">0</font><font color="#1a0d05">0</font><font color="#1e0f06">1</font><font color="#1c0d04">0</font><font color="#1f0e05">0</font><font color="#1f0d04">1</font><font color="#210e05">0</font><font color="#251006">1</font><font color="#260e06">0</font><font color="#260e05">1</font><font color="#270e05">0</font><font color="#250d04">1</font><font color="#230e04">0</font><font color="#210e04">0</font><font color="#1f0f04">1</font><font color="#1f1108">0</font><font color="#1e110c">0</font><font color="#1d0f0a">1</font><font color="#1f0e0b">1</font><font color="#260d11">0</font><font color="#250914"> |
I hereby claim:
- I am meowsus on github.
- I am meowsus (https://keybase.io/meowsus) on keybase.
- I have a public key ASBdginTRLbfyPV66PUqcvG4Q9y-ijhLuZC8ALzYGWHLVQo
To claim this, I am signing this object:
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
Recursively searching under ~/Sandbox/github/sassc-ruby/sass-spec/spec for test files to test 'ruby-sass' against language version 3.4. | |
3.4.24 (Selective Steve) | |
Run options: --seed 54014 | |
# Running: | |
...........................-............F............F....................................................................F........................................................F........................F..F.............................................................F.........................F....F..........................F........F......................F...................F..............................................................-..........................................F......-.............................F.....................................F..........-F................................F.......................................F.....F...-..........FF.............................................F...F......................................F..........F...................F.................F.F.F.............. |
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
[alias] | |
s = status -s | |
d = diff | |
fuck = reset --hard HEAD | |
co = checkout | |
cob = checkout -b | |
softfuck = reset --soft HEAD~1 | |
ri = rebase -i | |
cp = cherry-pick | |
f = fetch |
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
function slugify(string) { | |
const a = 'àáâäæãåāăąçćčđďèéêëēėęěğǵḧîïíīįìłḿñńǹňôöòóœøōõőṕŕřßśšşșťțûüùúūǘůűųẃẍÿýžźż·/_,:;' | |
const b = 'aaaaaaaaaacccddeeeeeeeegghiiiiiilmnnnnoooooooooprrsssssttuuuuuuuuuwxyyzzz------' | |
const p = new RegExp(a.split('').join('|'), 'g') | |
return string.toString().toLowerCase() | |
.replace(/\s+/g, '-') // Replace spaces with - | |
.replace(p, c => b.charAt(a.indexOf(c))) // Replace special characters | |
.replace(/&/g, '-and-') // Replace & with 'and' | |
.replace(/[^\w-]+/g, '') // Remove all non-word characters |
OlderNewer