TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Viddy: A modern watch command. Time machine and pager etc.

203 点作者 lapser将近 3 年前

9 条评论

sachaos将近 3 年前
Hi, I&#x27;m owner of the project. I am honored to be featured on HackerNews.<p>I&#x27;ve been busy and haven&#x27;t been very active, but I&#x27;m trying to resume maintenance. If you have any requests, please mention them in GitHub Issues.
评论 #31833852 未加载
remram将近 3 年前
watch supports shell aliases if you put the following in your bashrc:<p><pre><code> alias watch=&#x27;watch &#x27; </code></pre> You probably want to do the same for sudo.<p><pre><code> alias [-p] [name[=value] ...] [...] A trailing space in value causes the next word to be checked for alias substitution when the alias is expanded.</code></pre>
评论 #31831272 未加载
koolba将近 3 年前
What is that logo supposed to be?<p>Looks like a golang gopher getting eye drops while being injected with syringes.
评论 #31829878 未加载
评论 #31829975 未加载
whalesalad将近 3 年前
This is really neat. Reminds me of `lnav` which is a really awesome way to tail a logfile.
euclaise将近 3 年前
Useful, installed.<p>I&#x27;m a bit annoyed at the trend of not having man pages though.
评论 #31832041 未加载
评论 #31831104 未加载
jeppesen-io将近 3 年前
This is lovely - pleasing to the eyes and nice features such as time machine<p>I see its in nixpkgs - think I&#x27;ll alias it to watch right now
评论 #31829630 未加载
评论 #31835033 未加载
csdvrx将近 3 年前
I&#x27;d suggest logging to sqlite to provide later replays and speed estimations at keypoints. It might be nice to also add some cascading signature of the timestamps for tamper evidence (ex: merkle tree)<p>Usecase: storing timestamped proof of execution, automating metrics history<p>User story: &quot;after feature X got implemented, deployment became twice as slow as we can see from the viddy logs&quot;.
评论 #31833318 未加载
raydiatian将近 3 年前
I am eternally grateful for the Clockwork Orange reference.
cloudrkt将近 3 年前
You can do the diff output with watch by using the -d option.<p><pre><code> watch -d &lt;command&gt; </code></pre> The rollback feature seems useful.