Skip to content

Instantly share code, notes, and snippets.

@Softwave
Softwave / README.md
Last active March 25, 2025 16:00
Fibonacci Program

Fib

Simple fibonacci number calculator.

Usage: fib nth Fibonacci number

/* LIKE 查询系统配置变量 */
SHOW VARIABLES LIKE '%Trans%';
/* LIKE 查询系统状态 */
SHOW STATUS LIKE '%变量名% ';
@ComeBey
ComeBey / ssr架设
Last active January 31, 2024 00:45
ssr脚本架设
1. sudo -i
2. yum update 升级系统
4. curl "https://bootstrap.pypa.io/get-pip.py" -o "get-pip.py" 下载pip
5. python get-pip.py 安装pip
6. pip install shadowsocks 安装ss
@ComeBey
ComeBey / bbr.txt
Last active January 31, 2024 00:45
centos7 bbr
1、yum系统更新 yum update
---------------------
2、查看系统版本
cat /etc/redhat-release
输出如下则表示已升级到7.5或者更高版本
CentOS Linux release 7.5.1804 (Core)
---------------------
3、安装elrepo并升级内核
@kiebekierror
kiebekierror / 清理磁盘文件.md
Last active January 29, 2019 07:55
Linux 服务器运维 [汇总]

清理磁盘文件

1. 找出占用空间大的文件

命令格式 :

du -h[输出人类可读的格式] [指定目录] --max-depth=[指定搜索文件层级深度]

命令示例 :

@lesstif
lesstif / curl-get.php
Last active January 19, 2024 11:20
PHP CURL POST example
<?php
$url = 'http://google.com';
if ($argc > 1){
$url = $argv[1];
}
$ch=curl_init();
// user credencial