Skip to content

Instantly share code, notes, and snippets.

@ChuckMichael
ChuckMichael / vc_redistr.md
Last active February 13, 2026 08:59
Install all Visual C++ Redistributables using only one command!

Warning

App Installer must be installed on Win10/11.

CMD

Tip

You can save it and run as batch file (.bat).

winget install --id=Microsoft.VCRedist.2005.x86 -e  && winget install --id=Microsoft.VCRedist.2005.x64 -e  && winget install --id=Microsoft.VCRedist.2008.x86 -e  && winget install --id=Microsoft.VCRedist.2008.x64 -e  && winget install --id=Microsoft.VCRedist.2010.x86 -e  && winget install --id=Microsoft.VCRedist.2010.x64 -e  && winget install --id=Microsoft.VCRedist.2012.x86 -e  && winget install --id=Microsoft.VCRedist.2012.x64 -e  && winget install --id=Microsoft.VCRedist.2013.x86 -e  && winget install --id=Microsoft.VCRedist.2013.x64 -e  && winget install --id=Microsoft.VCRedist.2015+.x86 -e  && winget install --id=Microsoft.VCRedist.2015+.x64 -e 
// ==UserScript==
// @name Abema 区域限制
// @version 1.0.0
// @run-at document-end
// @namespace Violentmonkey Scripts
// @match https://abema.tv/*
// @grant none
// ==/UserScript==
Object.defineProperty(__CLIENT_REGION__, 'isAllowed', {
get: () => true
@ChuckMichael
ChuckMichael / vcredistr.md
Last active March 21, 2026 09:39
Visual C++ Redistributable Packages
@Liqianyu
Liqianyu / default.txt
Last active September 9, 2024 13:10
Apex Legends Server IP
104.198.102.93
104.198.101.253
52.40.240.176
63.251.239.123
52.42.44.79
209.239.121.82
104.197.17.180
130.211.193.234
104.197.136.10
104.197.42.178
#!/bin/bash
set -e
set -x
mkdir ~/transmission
cd ~/transmission
PREFIX=/opt
# -*- coding:utf-8 -*-
# !/usr/bin/env python3
'''
Author: ayasakinagi
Email: xyz.wang@outlook.com
环境: Python3
依赖: deluge_client
使用: 修改host, port, username, password, limitSize, dataPath变量
=====Steam_START=====104.98.3.24|203.213.73.104|138.0.152.19|65.120.60.25|104.72.70.10|96.6.123.25|179.189.64.90|177.223.196.43|23.12.33.11|77.67.28.136|23.6.112.80|23.65.124.8|23.3.12.26|184.84.243.56|72.247.9.216|23.62.239.24|23.61.194.51|173.222.109.64|209.66.87.19|201.191.210.170|2.21.74.99|95.100.248.168|92.122.214.227|104.85.166.51|104.116.245.9|92.123.72.174|95.100.242.168|84.53.132.194|165.254.204.203|37.58.147.10|104.86.110.106|5.178.43.121|193.247.41.179|42.99.128.152|92.122.49.26|23.65.124.18|23.57.74.50|213.254.17.62|23.62.109.208|84.53.161.26|118.155.230.177|197.80.131.145|80.239.178.152|82.102.152.18|23.67.53.107|77.222.148.82|104.96.220.106|195.12.179.10|184.28.188.34|203.26.28.248|23.201.103.131|23.3.105.11|184.86.250.11|2.16.4.225|2.16.4.210|66.152.103.74|92.122.190.97|46.33.68.142|118.214.160.25|84.91.171.10|213.155.152.192|204.0.5.18|188.43.75.96|151.40.148.34|87.245.196.83|92.122.51.80|5.22.191.153|205.168.236.88|2.16.63.41|184.25.56.69|203.116.50.56|70.96.0.88|23.218.157.8|65.153.18.107|6
# Diablo III
| Location | IP |
|:-------------:|:-------------:|
| North America | 12.129.222.10 |
| Europe | 185.60.112.157 |
| | 185.60.112.158 |
| Koera | 182.162.135.1 |
| Taiwan | 210.242.235.6 |
| Australia | 103.4.115.248 |
@LatvianModder
LatvianModder / FTBLib.md
Created May 8, 2016 13:08
FTB Mod Commands

Commands

/reload [client] - Reloads server and optionally client /reload_client - Reloads client only

/ftb_mode set - Sets current mode /ftb_mode get - Prints current mode /ftb_mode list - Prints all available modes

/edit_config [group] [entry] [value] - Opens config Gui, if only 1st argument is given

@guyskk
guyskk / shadowsocks-server.service
Last active February 17, 2025 05:49
shadowsocks server systemd service
[Unit]
Description=Shadowsocks Server
After=network.target
[Service]
ExecStart=/usr/local/bin/ssserver -c /etc/shadowsocks/ss-config.json
Restart=on-abort
[Install]
WantedBy=multi-user.target