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
#!/usr/bin/env sh | |
say --voice=Kyoko --rate=0 --interactive=bold rei ichi ni san yon go roku nana hachi kyuu juu juuichi juuni juusan juushi juugo juuroku juushichi juuhachi juuku nijuu nijuuichi nijuuni nijuusan nijuushi nijuugo nijuuroku nijuushichi nijuuhachi nijuuku sanjuu sanjuuichi sanjuuni sanjuusan sanjuushi sanjuugo sanjuuroku sanjuushichi sanjuuhachi sanjuuku yonjuu yonjuuichi yonjuuni yonjuusan yonjuushi yonjuugo yonjuuroku yonjuushichi yonjuuhachi yonjuuku gojuu gojuuichi gojuuni gojuusan gojuushi gojuugo gojuuroku gojuushichi gojuuhachi gojuuku rokujuu rokujuuichi rokujuuni rokujuusan rokujuushi rokujuugo rokujuuroku rokujuushichi rokujuuhachi rokujuuku nanajuu nanajuuichi nanajuuni nanajuusan nanajuushi nanajuugo nanajuuroku nanajuushichi nanajuuhachi nanajuuku hachijuu hachijuuichi hachijuuni hachijuusan hachijuushi hachijuugo hachijuuroku hachijuushichi hachijuuhachi hachijuuku kyuujuu kyuujuuichi kyuujuuni kyuujuusan kyuujuushi kyuujuugo kyuujuuroku kyuujuushichi kyuujuuhachi kyuujuuku hyakus |
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
#!/usr/bin/env sh | |
lsdir () { | |
if [ "${1}" ]; then file=$1; else file='.'; fi | |
# shellcheck disable=SC2010 | |
ls -Al "${file}" | grep '^d' | awk '{print $NF}' | |
} |
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
@function make-long-shadow($color, $recursions: 200) { | |
$shadows: 0 0 $color; | |
@for $i from 1 through $recursions { | |
$shadows: $shadows, #{$i}px #{$i}px #{$color}; | |
} | |
@return $shadows; | |
} |
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
@function long-shadow($color, $recursions: 200) { | |
$shadows: 0 0 $color; | |
@for $i from 1 through $recursions { | |
$shadows: $shadows, #{$i}px #{$i}px #{$color}; | |
} | |
@return $shadows; | |
} |
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
/** | |
* @see https://eslint.org/docs/rules/ | |
*/ | |
module.exports = { | |
extends: 'eslint:recommended', | |
root: true, | |
rules: { | |
'arrow-spacing': 'error', | |
'block-spacing': 'error', | |
camelcase: 'error', |