Skip to content

Instantly share code, notes, and snippets.

View youngjuning's full-sized avatar
🎯
Focusing

Aaron Young youngjuning

🎯
Focusing
View GitHub Profile
@youngjuning
youngjuning / jsx.sh
Created October 20, 2018 02:40
js-jsx.sh
#!/bin/sh
oldsuffix="js"
newsuffix="jsx"
dir=$(eval pwd)
for file in $(ls $dir | grep .${oldsuffix})
do
name=$(ls ${file} | cut -d. -f1)
mv $file ${name}.${newsuffix}
done
@youngjuning
youngjuning / .gitconfig
Last active October 21, 2018 05:31
.gitignore
[user]
name = 杨俊宁
email = [email protected]
[color]
ui = auto
[credential]
helper = store
[http]
sslVerify = false
[filter "lfs"]
"*":
_dart:
_firstRun: true
_version: "1.0.1"
"aligner-typescript": {}
"atom-ide-ui":
use:
"atom-ide-busy-signal": "never"
"atom-ide-code-actions": "never"
"atom-ide-code-format": "never"
@youngjuning
youngjuning / rotate360.css
Last active August 26, 2018 04:48
旋转360度的特效
.focus_logo{
-webkit-transition: 0.6s;
-webkit-transition: -webkit-transform 0.6s ease-out;
transition: transform 0.6s ease-out;
-moz-transition: -moz-transform 0.6s ease-out;
}
.focus_logo:hover{
transform: rotateZ(360deg);
-webkit-transform: rotateZ(360deg);
-moz-transform: rotateZ(360deg);