AslroNx's World

frp 内网穿透

2020-11-30 aslronx

https://www.cnblogs.com/fengwenzhee/p/10858144.html

标签: 内网穿透

评论(0) 浏览(1193)

帝国时代2秘籍

2020-11-28 aslronx

决定版打折买了,真香,
但是后来的有些战役真难,
用秘籍都TM输了,
真的老了,青春一去不复返啦。


秘籍 作用
rock on +1000 石头
lumberjack +1000 木头
robin hood +1000 金子
cheese steak jimmy's +1000 食物
aegis 加快建筑速度
i love the monkey head 获得VDML 【注】
how do you turn this on 获得一辆眼镜蛇汽车
black death 立刻消灭所有敌人
i r winner 胜利
resign 立刻失败
woof woof 飞行的狗
natural wonders 控制地图上的动物
torpedo# 杀死电脑(# 1-8代表不同电脑)
wimpywimpywimpy 自杀
furious the monkey boy 一个暴怒的猴子
to smithereens 一个破坏者
marco 显示全地图
polo 移除战争迷雾(地图高亮)

注:(VDML的作用是抢先建筑,阻止对方抢夺矿区)


标签: 游戏

评论(0) 浏览(1228)

wsl2启用

2020-11-28 aslronx

安装 Linux 的时候默认启用 WSL2:
wsl --set-default-version 2

查看当前的版本:
wsl -l -v

切换版本:
wsl --set-version Ubuntu 2

删除:

wslconfig /u OSNAME

标签: 操作系统 WSL

评论(0) 浏览(532)

Ubuntu apt-get 说明

2020-11-28 aslronx

sudo apt-get update  更新源
sudo apt-get install package 安装包
sudo apt-get remove package 删除包
sudo apt-cache search package 搜索软件包
sudo apt-cache show package  获取包的相关信息,如说明、大小、版本等
sudo apt-get install package --reinstall  重新安装包
sudo apt-get -f install  修复安装
sudo apt-get remove package --purge 删除包,包括配置文件等
sudo apt-get build-dep package 安装相关的编译环境
sudo apt-get upgrade 更新已安装的包
sudo apt-get dist-upgrade 升级系统
sudo apt-cache depends package 了解使用该包依赖那些包
sudo apt-cache rdepends package 查看该包被哪些包依赖
sudo apt-get source package  下载该包的源代码
sudo apt-get clean && sudo apt-get autoclean 清理无用的包
sudo apt-get check 检查是否有损坏的依赖

标签: Linux 操作系统 Ubuntu

评论(0) 浏览(474)

Ubuntu 国内镜像-清华大学开源软件镜像站

2020-11-28 aslronx

https://mirrors.tuna.tsinghua.edu.cn/help/ubuntu/


20.04 LTS


# 默认注释了源码镜像以提高 apt update 速度,如有需要可自行取消注释
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-updates main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-updates main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-backports main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-backports main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-security main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-security main restricted universe multiverse

# 预发布软件源,不建议启用
# deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-proposed main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-proposed main restricted universe multiverse  

标签: Linux 操作系统 Ubuntu

评论(0) 浏览(452)

数组转JSON 保持格式化

2020-11-20 aslronx

$json = json_encode($arr, JSON_UNESCAPED_UNICODE | JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES);

标签: PHP

评论(0) 浏览(462)