黑客帝国终端字符瀑布

安装 sudo apt install cmatrix 帮助文档 ➜ ~ cmatrix --help Usage: cmatrix -[abBcfhlsmVx] [-u delay] [-C color] -a: Asynchronous scroll -b: Bold characters on -B: All bold characters (overrides -b) -c: Use Japanese characters as seen in the original matrix. Requires appropriate fonts -f: Force the linux $TERM type to be on -l: Linux mode (uses matrix console font) -L: Lock mode (can be closed from another terminal) -o: Use old-style scrolling -h: Print usage and exit -n: No bold characters (overrides -b and -B, default) -s: "Screensaver" mode, exits on first keystroke -x: X window mode, use if your xterm is using mtx....

2021-03-25 18:48:14 · 1 min · Eddie Wang

命令行笔记本 nb 记笔记何须离开终端?

nb是一个基于命令行的笔记本工具,功能很强大。 记笔记何须离开终端? 特点 plain-text data storage, encryption, filtering and search, Git-backed versioning and syncing, Pandoc-backed conversion, global and local notebooks, customizable color themes, extensibility through plugins, 支持各种编辑器打开笔记, 我自然用VIM了。 A text editor with command line support, such as:Vim,Emacs,Visual Studio Code,Sublime Text,micro,nano,Atom,TextMate,MacDown,some of these,and many of these. 使用体验截图 参考 https://xwmx.github.io/nb/ https://github.com/xwmx/nb

2021-03-25 18:18:41 · 1 min · Eddie Wang

Taskwarrior 命令行下的专业TodoList神器

简介 Taskwarrior是命令行下的todolist, 特点是快速高效且功能强大, 支持项目组 支持燃烧图 支持各种类似SQL的语法过滤 支持各种统计报表 安装 sudo apt-get install taskwarrior 使用说明 增加Todo task add 分机注册测试 due:today Created task 1. 显示TodoList ➜ ~ task list ID Age Due Description Urg 1 5s 2021-03-25 分机注册测试 8.98 开始一个任务 ➜ ~ task 1 start Starting task 1 '分机注册测试'. Started 1 task. ➜ ~ task ls ID A Due Description 1 * 9h 分机注册测试 标记完成一个任务 ➜ ~ task 1 done Completed task 1 '分机注册测试'....

2021-03-25 09:09:01 · 1 min · Eddie Wang

electerm 免费开源跨平台且功能强大的ssh工具

https://electerm.github.io/electerm/ 功能特点 Work as a terminal/file manager or ssh/sftp client(similar to xshell) Global hotkey to toggle window visibility (simliar to guake, default is ctrl + 2) Multi platform(linux, mac, win) 🇺🇸 🇨🇳 🇧🇷 🇷🇺 🇪🇸 🇫🇷 🇹🇷 🇭🇰 🇯🇵 Support multi-language(electerm-locales, contribute/fix welcome) Double click to directly edit remote file(small ones). Edit local file with built-in editor(small ones). Auth with publickey + password. Zmodem(rz, sz). Transparent window(Mac, win). Terminal background image....

2021-03-24 19:30:48 · 1 min · Eddie Wang

mac升级后命令行报错 xcrun: error: invalid active developer path

xcode-select --install 参考 https://www.jianshu.com/p/50b6771eb853

2021-03-24 13:55:51 · 1 min · Eddie Wang

网页分享到微信添加缩略图

header部分 <meta property="og:image" content="http://abc.cc/x.jpg" /> body部分 <div style="display:none"> <img src="http://abc.cc/x.jpg"> </div> 注意,图片的连接,必须是绝对地址。就是格式必需以http开头的地址,不能用相对地址,否则缩略图不会显示。

2021-03-23 10:53:15 · 1 min · Eddie Wang

RFC阅读神器 rfcreader

rfc http://www.rfcreader.com/ rfcreader是一个在线的网站,可以阅读和搜索rfc文档。 另外也具有一些非常好用的功能 支持账号登录,收藏自己喜欢的rfc文档 可以对rfc进行标记,评论。 有良好的目录 支持书签 等等。。。。

2021-03-12 13:04:57 · 1 min · Eddie Wang

oh my tmux tmux的高级定制

参考: https://github.com/gpakosz/.tmux 优点: 界面非常漂亮,有很多指示图标,能够实时的查看系统状态,session和window信息 快捷键非常合理,非常好用 cd git clone https://gitee.com/wangduanduan/tmux.git mv tmux .tmux ln -s -f .tmux/.tmux.conf cp .tmux/.tmux.conf.local . 微调配置 启用ctrl+a光标定位到行首 默认情况下,ctrl+a被配置成和ctrl+b的功能相同,但是大多数场景下,ctrl+a是readline的光标回到行首的快捷键, 所以我们需要恢复ctrl+a的原有功能。 只需要把下面的两行取消注释 set -gu prefix2 unbind C-a 复制模式支持jk上下移动 set -g mode-keys vi 在相同的目录打开新的窗口或者标签页 tmux_conf_new_window_retain_current_path=true tmux_conf_new_pane_retain_current_path=true 隐藏系统运行时间信息 状态栏的系统运行时长似乎没什么用,可以隐藏 tmux_conf_theme_status_left=" ❐ #S "

2021-03-11 17:50:30 · 1 min · Eddie Wang

stompjs 心跳机制调研

2021-03-04 10:13:46 · 0 min · Eddie Wang

hazelcast IDMG

IDMG是 IN-MEMORY DATA GRID的缩写。 官方的一句话介绍: The industry’s fastest, most scalable in-memory data grid, where speed, scalability and continuous processing are the core requirements for deployment. 抽取关键词: 快 可伸缩 内存 分布式 简介 An IMDG (in-memory data grid) is a set of networked/clustered computers that pool together their random access memory (RAM) to let applications share data structures with other applications running in the cluster. The primary advantage is speed, which has become critical in an environment with billions of mobile, IoT devices and other sources continuously streaming data....

2021-02-24 11:54:24 · 1 min · Eddie Wang