EricHu's Blog

Thinking will not overcome fear but action will.

入门级WIFI6路由器选购指南

入门级WIFI6路由器选购指南 本文只收录了1500元及以下价位的WIFI6路由器,共有四款,分别是普联TL-XDR3020,小米AX3600,华硕TUF-AX3000(国外型号为RT-AX58U)和网件RAX40。如有遗漏,欢迎补充。 在这个价格区间以上,还有很多不错的路由器,例如Linksys MX5300,RT-AX88U等,在此文中不作介绍。 四款路由器对比 以下表格整理...

从零开始编译安装Vim

目录 编译安装 准备安装YCM 安装Vim下的Solarized配色 安装 NERDTree 安装jedi 安装vim-airline和vim-airline-themes .vimrc 参考 参考资料 本文以Ubuntu16.04为基础 编译安装 先使用命令 :echo has('python') || ha...

在Windows10下启用旧版照片查看器

参考资料 1. How to get Windows Photo Viewer back in Windows 10 - CNET 2. Is Windows Photo Viewer gone? Solved - Page 2 - Windows 10 Forums 将以下代码保存为 photoviewer.reg , 双击运行 Windows Registry Edito...

在Powershell中使用智能补全

Using Powershell with Intellisense

Npm Intellisense 参考资料 1. tab completion with powershell · Today I Learned (secretGeek) 2. create profile · Today I Learned (secretGeek) 需要使用到以下两个Powershell插件 TabExpansionPlusPlus NPMT...

一些HTML5视频下载器介绍

目录 FFmpeg 安装FFmpeg 在Linux下安装 在Windows下安装 使用ffplay观看m3u8视频 使用ffplay下载m3u8视频 安装Youtube-dl来下载Youtube视频 Linu...

WSL18.04 Setup I

目前Windows Store中已经有多个Linux发行版: Ubuntu, OpenSUSE, SLES, Kali Linux , Debian GNU/Linux, WLinux。本文使用Ubuntu18.04。 目录 安装Ubuntu 18.04 WSL 将 Bash Console Here 添加到右键菜单 常用操作 常用操作 ...

手动编译Nginx并配置Let's Encrypt

前置准备 安装依赖 sudo apt-get install build-essential libtool 创建并进入临时目录 mkdir tmp && cd /tmp 下载并解压 PCRE wget https://ftp.pcre.org/pub/pcre/pcre-8.42.tar.gz && tar xzvf pcre-8.42.ta...

各种RAM及其特性介绍

Discover RAM and its power usage

DDR SDRAM Mobile DDR GDDR Difference between DDR4, DDR3, LPDDR3, DDR3L Part Catalog Why Apple choose 16GB as the maximum memory of Macbook Difference Between SRAM an...

一些气象服务API整理

Timeanddate https://www.timeanddate.com/ 提供Time Zone Map、Sunrise and sunset times、World Clock等服务,并提供API支持 Show Preview Sunrise and sunset times 美国海军天文台 USNO http://aa.usno.navy.mi...

使用Python进行地理计算

Degrees and Radians in Python

目录 Degree (angle) 角度 角度的十进制表示与DMS间的转换 Radian 弧度 圆的弧长 弧度与角度间的转换 地里中的使用 Calculate in Python 参考资料 在Python官方文档中的 Angular conversion ...