首页
视频
壁纸
统计
更多
关于
Search
1
红盟云发卡系统源码,带前台模板,支持易支付-亲测可用
882 阅读
2
Typecho 付费阅读插件二开版-免登录版-对接第三方支付-最新可用
499 阅读
3
zepp手动版刷步数教程
482 阅读
4
康乐kangle虚拟主机设置运行目录public的方法,亲测可用
387 阅读
5
SaoML流控拦截系统教程
253 阅读
默认分类
软件分享
手机软件
电脑软件
源码分享
技术教程
Linux相关
其他
登录
/
注册
Search
标签搜索
网站源码
源码
电脑软件
手机软件
插件
发卡网
虚拟主机
zip压缩包
压缩包密码找回
意随风
累计撰写
35
篇文章
累计收到
0
条评论
首页
栏目
默认分类
软件分享
手机软件
电脑软件
源码分享
技术教程
Linux相关
其他
页面
视频
壁纸
统计
关于
搜索到
35
篇与
猫耳朵
的结果
2023-09-25
Typecho 付费阅读插件二开版-免登录版-对接第三方支付-最新可用
{lamp/}这是最新可用的付费阅读插件,可以对接易支付,我目前用的就是这个。首先下载文件上传至typecho系统文件目录中的 usr/plugins 中,然后就是启用插件并配置内容。打开网站目录下面的 usr/themes/模板名称 文件夹复制以下代码粘贴到主题 post.php 文件相应位置添加。<?php echo TeePay_Plugin::getTeePay(); ?>位置如图:展示图就不加了,我用的就是。
2023年09月25日
499 阅读
0 评论
0 点赞
2023-09-24
小黄鸟抓包软件-HttpCanary_9.2.8.1
手机抓包软件。一款强大的抓包和注入工具,已经支持HTTP/HTTPS 1.0和1.1协议还将计划支持HTTP2协议以及其他TCP协议。黄鸟抓包免费版提供了强大的数据包解析和注入功能,伪造请求、修改响应都在一念之间最最最重要的是,它无需Root! {cloud title="" type="default" url="https://www.123pan.com/s/Jj1ZVv-JTUl3.html" password=""/}
2023年09月24日
158 阅读
0 评论
0 点赞
2023-09-24
常用数据库命令大全,MySQL数据库,mariadb数据库
mysql -uroot -p123 登录数据库 u用户名 p密码create database if not exists ysf; 创建数据库show databases; 查询数据库mysqladmin -uroot -p123 password 123456 改密码drop database if exists ysf; 删除数据库use ysf; 切换数据库source /root/147.sql 导入数据库mysqldump -uroot -p vpndata > ysf.sql 导出数据库create table ysftable(id int (7) not null,name varchar(20) not null,age tinyint);学号 整数 7个字符 不为空 名字 长度 20 字节 不为空drop table ysftable; 删除数据表show tables; 查看有哪些表show create table ysf.ysftable; 查看表的创建命令create user 'ysf'@'127.0.0.1' identified by 'ysf123!'; 创建用户mysql -uysf -pysf123! -h127.0.0.1 登录用户,记得加ip地址show character set; 查看支持的所有字符集show tables from ysf; 查看有哪些库desc ysf.ysftable; 查看库的表结构(库名加表名)insert into ysftable(id,name,age) values(1909001,'zhangsan',20),(1909002,'lisi',19),(1909003,'wangwu',18);表名 ID 名字 年龄 值 s(多个) 学号 名字张三 20岁 学号 李四 年龄19 学号 王五 年龄18select * from ysftable; 查看表内容select name from ysftable; 查看ysftable表name列的内容select * from ysftable order by age; 查看ysftable表内容并倒序select * from ysftable order by id desc; id列排序select * from ysftable order by age limit 1,2; 查看第一和第三行select * from ysftable order by age limit 2,4; 跳过前两行,查看后四行select * from ysftable where age >=18; 查看年龄大于等于18的select * from ysftable where age >=18 and name='lisi'; 查看年龄大于18并且名字等于lisi的人insert into ysftable(id,name) value(1909007,'laowang'); 不添加年龄示例select * from ysftable where age is null; 查询年龄为空的人update ysftable set age=22 where name='laowang' and id=1909007; 给已有名字为laowang的人添加年龄delete from ysftable where id=1909007 and name='laowang' and age=null; 删除ID为1909007名字为laowang年龄为空的人delete from ysftable; 删除整张表insert into ysftable(id,username,passwd) values(1001,'zhangsan',12345678),(1002,'lisi',12345678),(1003,'wangwu',12345678),(1004,'zhaoliu',12345678),(1005,'xiaowang',12345678);
2023年09月24日
55 阅读
0 评论
0 点赞
2023-09-24
Linux宝塔面板7.9.5安装脚本-官方脚本
使用 SSH 连接工具,如 堡塔SSH终端 连接到您的 Linux 服务器后, 挂载磁盘 ,根据系统执行相应命令开始安装(大约2分钟完成面板安装)脚本来自官网: 宝塔官网 Centos安装脚本:yum install -y wget && wget -O install.sh http://download.bt.cn/install/install_6.0.sh && sh install.sh ed8484becUbuntu/Deepin安装脚本:wget -O install.sh http://download.bt.cn/install/install-ubuntu_6.0.sh && sudo bash install.sh ed8484bec Debian安装脚本:wget -O install.sh http://download.bt.cn/install/install-ubuntu_6.0.sh && bash install.sh ed8484bec 万能安装脚本:if [ -f /usr/bin/curl ];then curl -sSO https://download.bt.cn/install/install_panel.sh;else wget -O install_panel.sh https://download.bt.cn/install/install_panel.sh;fi;bash install_panel.sh ed8484bec 国产龙芯架构安装脚本:wget -O install_panel.sh http://download.bt.cn/install/0/loongarch64/loongarch64_install_panel.sh && bash install_panel.sh ed8484bec 注意:必须为没装过其它环境如Apache/Nginx/php/MySQL的新系统,推荐使用centos 7.X的系统安装宝塔面板推荐使用Chrome、火狐、edge浏览器,国产浏览器请使用极速模式访问面板登录地址如果不确定使用哪个Linux系统版本的,可以使用万能安装脚本国产龙芯架构CPU安装命令,支持龙芯架构的loongnix 8.x、统信UOS 20、kylin v10系统堡塔云控平台安装脚本堡塔云控平台安装脚本:curl http://download.bt.cn/coll_free/install.sh|bash 2.堡塔云监控安装脚本堡塔云监控安装脚本:curl -sS http://download.bt.cn/install/install_btmonitor.sh -o /tmp/install_btmonitor.sh && bash /tmp/install_btmonitor.sh
2023年09月24日
80 阅读
0 评论
0 点赞
2023-09-23
欢迎来到意随风博客!
博客创建也有几个年头了一波三折,换了很多服务和模板现在你看到的是最终的样子。望大家多多支持,谢谢。
2023年09月23日
49 阅读
0 评论
1 点赞
1
...
6
7