Viewing profile — oandrew
oandrew
HN member- Joined
- Mon, Oct 26, 2020, 6:18 AM UTC
- HN karma
- 104
- Public activity
- 22 items
- HN profile
- View on Hacker News ↗
About oandrew
Recent public activity
-
comment
Comment #48955026
Thank you!
-
comment
Comment #48952894
I'd appreciate a lobste.rs invite if anyone has one. Email is in my profile. Thanks!
-
comment
Comment #36500687
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 implement…
-
comment
Comment #36178093
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.
-
comment
Comment #35415063
I've observed worse performance with caddy+http3 so I disabled it. That was especially noticable on larger files
- comment
-
comment
Comment #31613646
No, since rust async is stackless. There is a stackful coroutine implementation for Rust: https://github.com/Xudong-Huang/may
-
comment
Comment #29881708
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 ` req…
-
comment
Comment #29881476
bash 4 supports `|&` as an alternative to `2>&1` which looks better in pipelines e.g. $ docker logs container |& grep word
-
comment
Comment #29285181
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 re…
-
comment
Comment #29284854
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.apa…
-
comment
Comment #28952346
Yes but typically with some sort of batching proxy in front of it e.g. https://clickhouse.com/docs/en/interfaces/third-party/proxy/
-
comment
Comment #27858237
you can skip shell built-ins by pretending "command": $ time -V -V: command not found $ command time -V GNU time 1.7
-
comment
Comment #27195237
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.
-
comment
Comment #27042202
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…
- story
-
comment
Comment #26638256
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
-
comment
Comment #26172724
CID is displayed in hex so it needs to be converted to decimal first.
-
comment
Comment #25740217
[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
-
comment
Comment #25582717
Make sure you're using the latest JB SDK. https://intellij-support.jetbrains.com/hc/en-us/articles/206...
-
comment
Comment #25146283
https://github.com/mvp/uhubctl
-
comment
Comment #24921501
ClickHouse has very clean and modern C++ codebase. https://github.com/ClickHouse/ClickHouse