Skip to content

Instantly share code, notes, and snippets.

View zkeq's full-sized avatar
💖
Creating And Studying .

Zkeq zkeq

💖
Creating And Studying .
View GitHub Profile
@zkeq
zkeq / 01_2023-03-19 Banned.log
Last active February 19, 2023 14:20
Banned IP
IP总个数: 150
101.32.176.31 765894
2409:8a55:9443:24b0:d4ff:d29f:22bf:7788 11818
120.224.89.130 5880
121.5.191.59 1797
58.244.117.18 1545
60.209.128.118 1519
58.34.47.26 1480
125.46.99.99 1472
222.134.55.87 1466
@zkeq
zkeq / install.sh
Created February 12, 2023 04:56
OOT gist
npm install kxx-ui
cnpm install kxx-ui --save
yarn add kxx-ui
@zkeq
zkeq / echarts.html
Created January 8, 2023 11:07
渺软CDN echarts 独立代码
<script src="https://npm.onmicrosoft.cn/[email protected]/dist/echarts.min.js"></script>
<script src="https://unpkg.onmicrosoft.cn/[email protected]/dist/axios.min.js"></script>
<div id="main" style="width: 735px;height:315px;"></div>
<script type="text/javascript">
// 基于准备好的dom,初始化echarts实例
var myChart = echarts.init(document.getElementById('main'));
// 指定图表的配置项和数据
@zkeq
zkeq / uptime.css
Created January 3, 2023 14:20
Uptime.icodeq.com 自定义CSS
/* cyrillic-ext */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(https://fonts.gstatic.com/s/roboto/v29/KFOmCnqEu92Fr1Mu72xKOzY.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
.dark .bg-primary {
@zkeq
zkeq / ci.yaml
Created August 10, 2022 10:33
使用Github Action自动化部署
name: Build and Deploy
on:
push:
branches:
- master
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout