Skip to content

Instantly share code, notes, and snippets.

View youngjuning's full-sized avatar
💭
I may be slow to respond.

紫升 youngjuning

💭
I may be slow to respond.
View GitHub Profile
@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);
"*":
_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 / .gitconfig
Last active October 21, 2018 05:31
.gitignore
[user]
name = 杨俊宁
email = 1003719811@qq.com
[color]
ui = auto
[credential]
helper = store
[http]
sslVerify = false
[filter "lfs"]
@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 / config.txt
Created November 22, 2018 01:45
树莓派配置文件
# For more options and information see
# http://rpf.io/configtxt
# Some settings may impact device functionality. See link above for details
# uncomment if you get no picture on HDMI for a default "safe" mode
#hdmi_safe=1
# uncomment this if your display has a black border of unused pixels visible
# and your display can output without overscan
#disable_overscan=1
@youngjuning
youngjuning / setup.md
Created November 22, 2018 05:29 — forked from davidbradway/setup.md
Set Up Docker On Raspberry Pi Raspbian Stretch Lite
@youngjuning
youngjuning / wx_sample.php
Created December 2, 2018 06:55
wx_sample.php
<?php
/**
* wechat php test
* 2014/8/19
*/
//define your token
define("TOKEN", "weixin");
$wechatObj = new wechatCallbackapiTest();
$wechatObj->valid();
@youngjuning
youngjuning / .eslintrc.js html
Last active December 29, 2018 07:55
airbnb-base-eslintrc
module.exports = {
"extends": ["airbnb-base"],
"parserOptions": {
"ecmaVersion": 2017,
"sourceType": "script",
"ecmaFeatures": {
"impliedStrict": true,
}
},
"env": {
@youngjuning
youngjuning / .editorconfig
Created December 29, 2018 08:40
EditorConfig
# EditorConfig is awesome: http://EditorConfig.org
# top-most EditorConfig file
root = true
# Unix-style newlines with a newline ending every file
[*]
indent_style = space
indent_size = 2
end_of_line = lf
@youngjuning
youngjuning / cloudSettings
Last active September 24, 2020 08:55
Visual Studio Code Settings Sync Gist
{"lastUpload":"2020-09-24T08:55:48.760Z","extensionVersion":"v3.4.3"}