Skip to content

Instantly share code, notes, and snippets.

View yi-yun's full-sized avatar
🚀
Code Freedom

Michael yi-yun

🚀
Code Freedom
View GitHub Profile
@yi-yun
yi-yun / douyin.js
Last active July 18, 2024 04:54
抖音下载(自用)
const axios = require('axios');
const errwin = /[\\\\/:*?\"<>|]/g;
const subwin = ``;
const cp = require('child_process');
// 获取作品ID
var GetID = function (dyurl) {
return new Promise((resolve, reject) => {
try {
axios.get(dyurl, {
@yi-yun
yi-yun / kill.sh
Created December 1, 2018 08:00
去掉监控
#!/bin/bash
rm -rf /usr/local/aegis
for A in $(ps aux | grep Ali | grep -v grep | awk '{print $2}')
do
kill -9 $A;
done
@yi-yun
yi-yun / Imagus.md
Created November 26, 2018 11:18
Chrome Imagus Setting

listing

!!:^https://yi-yun\.github\.io/JavaScriptDOMExecrise/*
@yi-yun
yi-yun / shadowsocks-client.md
Last active November 10, 2018 06:35
Shadowsocks Client Setting

安装

pip install shadowsocks

配置

vim /etc/shadowsocks.json

测试

  • 先看看能不能正常启动
    sslocal -c /etc/shadowsocks.json
  • 返回代理服务器 IP 成功
@yi-yun
yi-yun / FrpFile.md
Last active April 14, 2024 21:49
Frp System Start In CentOS7

sudo vim /etc/systemd/system/frps.service

[Unit]
Description=frps daemon
After=syslog.target  network.target
Wants=network.target

[Service]
Type=simple
ExecStart=/opt/frps/frps -c /opt/frps/frps.ini