1- Attaching Aliases to the native command line:
Steps in this stackoverflow answer.Quoting:
you may make the alias(es) persistent with the following steps,
1- Attaching Aliases to the native command line:
Steps in this stackoverflow answer.Quoting:
you may make the alias(es) persistent with the following steps,
// https://davidpiesse.github.io/tailwind-md-colours/ | |
// | |
//Notes | |
// | |
//All colours are generated from Material Design Docs | |
//Colours have a base, a set of shades (50-900) accent colours | |
//In addition a companion set of contrast colours are included for colouring text / icons | |
// Example usage | |
// class="w-full bg-red-600 text-red-600-constrast" |
This is a compiled list of falsehoods programmers tend to believe about working with time.
Don't re-invent a date time library yourself. If you think you understand everything about time, you're probably doing it wrong.
export default [ | |
"Reticulating splines...", | |
"Generating witty dialog...", | |
"Swapping time and space...", | |
"Spinning violently around the y-axis...", | |
"Tokenizing real life...", | |
"Bending the spoon...", | |
"Filtering morale...", | |
"Don't think of purple hippos...", | |
"We need a new fuse...", |
.wrapper { | |
display: grid; | |
grid-template-columns: repeat(12, 1fr); | |
grid-gap: 10px; | |
} | |
@for $i from 1 through 12 { | |
.col-#{$i} { | |
grid-column: span #{$i}; | |
} |
EThe answer to life, the | |
universe and everything | |
§v >}}++++++++++!{+!v | |
>+++++]}++++++v>--!Q - | |
- - ! - | |
^< ^{++++++<^-------< |
We have been moved for better. Look Here for an Updated Version. People are also contributing there for making it more beautiful. See you there!!!
function Swiper(el, left, right, up, down) { | |
var xD = null, | |
yD = null; | |
el.addEventListener("touchstart", function(ev) { | |
xD = ev.touches[0].clientX; | |
yD = ev.touches[0].clientY; | |
}, false); | |
el.addEventListener("touchmove", function(ev) { | |
if (!xD || !yD) return; | |
var xU = ev.touches[0].clientX, |