Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
oandrew
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
8 ms
·
1.
▲
by
oandrew
2mo ago
Thank you!
2.
▲
by
oandrew
2mo ago
I'd appreciate a lobste.rs invite if anyone has one. Email is in my profile. Thanks!
3.
▲
by
oandrew
3y ago
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&#x
4.
▲
by
oandrew
3y ago
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.
5.
▲
by
oandrew
3y ago
I've observed worse performance with caddy+http3 so I disabled it. That was especially noticable on larger files
6.
▲
by
oandrew
4y ago
.b
7.
▲
by
oandrew
4y ago
No, since rust async is stackless. There is a stackful coroutine implementation for Rust: https://github.com/Xudong-Huang/may
8.
▲
by
oandrew
5y ago
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 ' escap
9.
▲
by
oandrew
5y ago
bash 4 supports `|&` as an alternative to `2>&1` which looks better in pipelines e.g. $ docker logs container |& grep word
10.
▲
by
oandrew
5y ago
Interesting. 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
11.
▲
by
oandrew
5y ago
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. https://avro.apache.org/docs/current&#x
12.
▲
by
oandrew
5y ago
Yes but typically with some sort of batching proxy in front of it e.g. https://clickhouse.com/docs/en/interfaces/third-party/proxy/
13.
▲
by
oandrew
5y ago
you can skip shell built-ins by pretending "command": $ time -V -V: command not found $ command time -V GNU time 1.7
14.
▲
by
oandrew
5y ago
No 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.
15.
▲
by
oandrew
5y ago
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&#
16.
▲
Show HN: ipod-gadget – stream digital audio to iPod compatible docks/cars
(github.com)
1 points
by
oandrew
5y ago
|
0 comments
17.
▲
by
oandrew
5y ago
There is also tree --fromfile e.g. echo a/b1 a/b2/c | xargs -n1 | tree --fromfile . └── a ├── b1 └── b2 └── c 2 directories, 2 files
18.
▲
by
oandrew
6y ago
CID is displayed in hex so it needs to be converted to decimal first.
19.
▲
by
oandrew
6y ago
[mosh or eternal terminal] + tmux combo solves the problem (and adds other cool functionality) https://mosh.org/ https://eternalterminal.dev/ https://github.com/tmux/tmux/wiki
20.
▲
by
oandrew
6y ago
Make sure you're using the latest JB SDK. https://intellij-support.jetbrains.com/hc/en-us/articles/206...
21.
▲
by
oandrew
6y ago
https://github.com/mvp/uhubctl
22.
▲
by
oandrew
6y ago
ClickHouse has very clean and modern C++ codebase. https://github.com/ClickHouse/ClickHouse