Skip to content

Instantly share code, notes, and snippets.

View lesonky's full-sized avatar
🎉
mia mia mia

Shaojiasong lesonky

🎉
mia mia mia
View GitHub Profile
@lesonky
lesonky / Hamburger.html
Last active April 16, 2018 11:10
Hamburger Button to Doughnut Menu Snippet #button #ui
<div class="base">
<div class="menu">
<div class="icon">
<div class="bar"></div>
</div>
</div>
<div class="icons">
<i class="fa fa-user" aria-hidden="true"></i>
<i class="fa fa-calendar-o" aria-hidden="true"></i>
<i class="fa fa-tachometer" aria-hidden="true"></i>
@lesonky
lesonky / myagnoster.zsh-theme
Last active November 25, 2019 01:49
oh-my-zsh-theme
# vim:ft=zsh ts=2 sw=2 sts=2
#
# agnoster's Theme - https://gist.github.com/3712874
# A Powerline-inspired theme for ZSH
#
# # README
#
# In order for this theme to render correctly, you will need a
# [Powerline-patched font](https://github.com/Lokaltog/powerline-fonts).
# Make sure you have a recent version: the code points that Powerline
@lesonky
lesonky / Readme.md
Last active November 14, 2018 07:47
prettier 插件配置 #prettier

prettier配置文件使用说明

  • 在项目目录下新建 .prettierrc.js
  • 复制上面的内容到文件

注意:

@lesonky
lesonky / dialog.vue
Created November 21, 2018 06:46
vuetify dialog component #vuetify #dialog
<template>
<v-dialog class="card-create-dialog__dialog"
v-model="$_show"
scrollable
persistent
:overlay="false"
max-width="800px"
transition="dialog-transition"
:fullscreen="$vuetify.breakpoint.xsOnly">
</v-dialog>
@lesonky
lesonky / data.js
Last active November 30, 2018 07:35
language code
export default {
en: [
{ LangCultureName: 'af-ZA', DisplayName: 'Afrikaans - South Africa' },
{ LangCultureName: 'sq-AL', DisplayName: 'Albanian - Albania' },
{ LangCultureName: 'ar-DZ', DisplayName: 'Arabic - Algeria' },
{ LangCultureName: 'ar-BH', DisplayName: 'Arabic - Bahrain' },
{ LangCultureName: 'ar-EG', DisplayName: 'Arabic - Egypt' },
{ LangCultureName: 'ar-IQ', DisplayName: 'Arabic - Iraq' },
{ LangCultureName: 'ar-JO', DisplayName: 'Arabic - Jordan' },
{ LangCultureName: 'ar-KW', DisplayName: 'Arabic - Kuwait' },
@lesonky
lesonky / data.js
Last active December 19, 2018 01:14
国家代码
export default [
{
code: 86,
tw: '中國',
en: 'China',
locale: 'CN',
zh: '中国',
},
{
code: 244,
@lesonky
lesonky / 追问题.md
Created November 30, 2018 08:02
面试题 #面试题

天数前端JS面试题(答案)

标签(空格分隔): 面试题


@lesonky
lesonky / Readme.md
Last active August 17, 2021 08:51
如何使用JavaScript实现纯前端读取和导出excel文件
@lesonky
lesonky / color.scss
Created January 3, 2019 07:23
Vuetify Colors
// red
$red500: #f44336;
$red50: #ffebee;
$red100: #ffcdd2;
$red200: #ef9a9a;
$red300: #e57373;
$red400: #ef5350;
$red500: #f44336;
$red600: #e53935;
$red700: #d32f2f;
@lesonky
lesonky / alias.md
Last active May 16, 2021 08:38
Mac 配置
alias reload="source ~/.zshrc"
alias zshrc="code ~/.zshrc"
alias aliasrc="code ~/.setting/.alias"
alias del="rm -rf"
alias cls="clear"
alias useproxy="export https_proxy=http://127.0.0.1:7890 http_proxy=http://127.0.0.1:7890 all_proxy=socks5://127.0.0.1:7890"
alias unuseproxy="unset https_proxy http_proxy all_proxy"
alias gitproxy="git config --global https.proxy https://127.0.0.1:7890"
alias ungitproxy="git config --global --unset https.proxy"