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
Array.from(document.querySelector(".index").querySelectorAll("code > a")).reduce((a, c) => { if (c.innerHTML !== c.innerHTML.toLowerCase()) return `${a}\n ":${c.innerHTML.toLowerCase()}" ":${c.innerHTML}"`; else return a;}, "(def attribute-replacements [") + "])"; |
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
{ | |
"map": false, | |
"syntax": "postcss-scss", | |
"plugins": { | |
"postcss-sorting": { | |
"properties-order": [ | |
"font", | |
"font-family", | |
"font-size", | |
"font-weight", |
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
<div class="container"> | |
<div class="grid"> | |
<div class="red"></div> | |
</div> | |
<div class="grid"> | |
<div class="red"></div> | |
</div> | |
<div class="grid"> | |
<div class="red"></div> | |
</div> |
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
// ---- | |
// Sass (v3.4.0.rc.2) | |
// Compass (v1.0.0.alpha.21) | |
// ---- | |
$value-1: one; | |
$value-2: two; | |
$list-1: one two; |
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
[root@alarmpi netctl]# lsusb | |
Bus 001 Device 004: ID 0bda:8176 Realtek Semiconductor Corp. RTL8188CUS 802.11n WLAN Adapter | |
Bus 001 Device 003: ID 0424:ec00 Standard Microsystems Corp. SMSC9512/9514 Fast Ethernet Adapter | |
Bus 001 Device 002: ID 0424:9514 Standard Microsystems Corp. | |
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub | |
[root@alarmpi netctl]# lsmod | |
Module Size Used by | |
cfg80211 440121 0 | |
snd_soc_wm8804 7908 0 | |
snd_soc_pcm512x 8984 0 |
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
// ---- | |
// Sass (v3.3.9) | |
// Compass (v1.0.0.alpha.20) | |
// ---- | |
$var: null; | |
@for $i from 1 through 5 { | |
$var: $var, $i $i; | |
} |
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
a:link, a:visited, a:active { | |
color: #8e8d93; | |
-webkit-transition: all .15s; | |
-moz-transition: all .15s; | |
-ms-transition: all .15s; | |
-o-transition: all .15s; | |
transition: all .15s; | |
} | |
a.top:link, a.top:visited, a.top:active { | |
color: #000; |
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
javascript:(function() { | |
var link = location.toString(); | |
if (link.slice(-6) != "?debug") { | |
location.href = link + "?debug"; | |
} else { | |
location.href = link.substring(0,link.length-6); | |
} | |
})(); | |
// minified |