Thank you!
HN user
oandrew
hn@oandrew.dev
I'd appreciate a lobste.rs invite if anyone has one. Email is in my profile. Thanks!
Iterm2 has tmux control mode support that enables somewhat native ui: https://iterm2.com/documentation-tmux-integration.html
There is also wezterm with its own mux server implementation: https://wezfurlong.org/wezterm/multiplexing.html
Check this out: https://github.com/oandrew/ipod-gadget
It's a USB gadget kernel module that pretends to be an iPod to stream music to car/etc.
I've observed worse performance with caddy+http3 so I disabled it. That was especially noticable on larger files
.b
No, since rust async is stackless. There is a stackful coroutine implementation for Rust: https://github.com/Xudong-Huang/may
One feature I really wish for in shells is something similar to Perl's unquoted strings / single line concise HEREDOC syntax / raw literal syntax. e.g.
$ echo q(no ' escaping ` required " here)
no ' escaping ` required " here
This would make typing sql / json much easier.
To my knowledge none of the shells implement this.
Does anyone know why?bash 4 supports `|&` as an alternative to `2>&1` which looks better in pipelines e.g.
$ docker logs container |& grep wordInteresting. Confluent Avro + Schema registry + Kafka uses exactly the same approach - binary serialized Avro datums are prefixed with schema id which can be resolved via Schema registry
So basically it's Amazon's version of Apache Avro. Avro supports binary/json serialization, schema evolution , logical types (e.g. timestamp) and other cool stuff.
Yes but typically with some sort of batching proxy in front of it
e.g. https://clickhouse.com/docs/en/interfaces/third-party/proxy/
you can skip shell built-ins by pretending "command":
$ time -V
-V: command not found
$ command time -V
GNU time 1.7No more security updates from Google though. That'll force me to upgrade sooner that I would like. LineageOS is an option but I'm not sure how secure it is.
How does this compare to Apache Echarts (https://echarts.apache.org/en/index.html) ?
p.s. My favorite data exploration toolkit is Clickhouse + Tabix (it uses apache echarts). e.g. https://tabix.io/doc/draw/Draw_Chart/
There is also
tree --fromfile
e.g. echo a/b1 a/b2/c | xargs -n1 | tree --fromfile
.
└── a
├── b1
└── b2
└── c
2 directories, 2 filesCID is displayed in hex so it needs to be converted to decimal first.
[mosh or eternal terminal] + tmux combo solves the problem (and adds other cool functionality)
Make sure you're using the latest JB SDK. https://intellij-support.jetbrains.com/hc/en-us/articles/206...
ClickHouse has very clean and modern C++ codebase. https://github.com/ClickHouse/ClickHouse