Viewing profile — timdeve
timdeve
HN member- Joined
- Thu, Mar 05, 2020, 10:54 AM UTC
- HN karma
- 43
- Public activity
- 32 items
- HN profile
- View on Hacker News ↗
About timdeve
Recent public activity
- comment
-
comment
Comment #45106570
It appear to download windows on the fly from Microsoft's server and uses trial keys [0] [0] https://github.com/dockur/windows?tab=readme-ov-file#is-this...
-
comment
Comment #45100796
This appear to use https://github.com/dockur/windows which is a VM inside a Docker container? Otherwise looking at the code this feels like something that could be a short bash scr…
-
comment
Comment #44822966
This is really lovely. Would be great as an inspiration tool if it would make a little visualisation of the notes/accent/slides on a piano roll. I can read the JSON meanwhile but j…
-
comment
Comment #44743562
The gendarmerie have their version of Ubuntu so they may go for something similar. Not that different part of the French government communicate or help each other...
-
comment
Comment #44071129
Looks good, I'm gonna try to swap readability in my RSS reader with this. And with Pocket going away I might have to add save it later to it...
-
comment
Comment #41381082
Made my own, made it easy to add different type of clients (TUI, Android, Web) and display cleaned up articles.
-
comment
Comment #35157264
Yeah I would really like Pine64 to take a stab at this form factor. I guess the closest is the keyboard for the pinephone but that's a tiny screen.
-
comment
Comment #35110848
The goal is certainly to have a language suitable for "real-time applications" (read games/audio), that's not my area of expertise however so your definition of real-time might not…
-
comment
Comment #35102749
Don't get too hung up on the "lisp" in that title. I think the language would better be described as statically typed, with s-expr syntax, inspired by Clojure|Rust|ML and with a li…
-
comment
Comment #34027604
That's correct, concurency is not supported right now. I have a POC for using pthread but essentially the borrow checker is not aware of it and so it's quite unsafe. Note: I'm a co…
-
comment
Comment #34027584
I'm not sure what you mean by optional parenthesis. I'd say optional separators are a legacy feature, I don't think anyone writes Carp with separators. Note: I'm a contributor.
-
comment
Comment #33912954
As other people have said Bootleg + Hickory. Here is an, admitedly not very clean, example that grabs stream urls from hltv.org: https://github.com/TimDeve/.dotfiles/blob/master/sc…
-
comment
Comment #33910825
I've been using it for quick web scrapping scripts and it's really nice.
-
comment
Comment #33676111
I have a small babashka script to pull some news from my terminal and I have had good result doing something like this: curl article-url | readable | w3m -T text/html Where readabl…
-
comment
Comment #30333234
I wish that the Clockwork Devterm was this form factor.
-
comment
Comment #29450466
The quality of the switches in logitech product in the past few years has become laughable. I am currently using a 8 years old 502 because the newer one I got broke after nine mont…
-
comment
Comment #28877558
`let` is for declaring variables while `the` is a noop at runtime and only give type information to the compiler.
-
comment
Comment #28877097
Carp is statically-typed with type inference so writing (the Int x) would be enough for the compiler to forbid any usage of x as another type. Writing (Int.+ x 1) would accomplish …
-
comment
Comment #28876248
That is also the case in Carp, x being an expression here.
-
comment
Comment #28876186
You're correct, somewhat like clojure's Vector, the default collection at runtime in Carp is an Array which is heap allocated C array with an attached length. At compile time howev…
-
comment
Comment #26286179
Yes, exactly, it's because of Structural Typing that you have to implement Phantom Types in that hacky way rather than Structural Typing being the "trick".
-
comment
Comment #26114062
Thanks, the screenshots were quite out of date actually so I updated them.
-
comment
Comment #26112115
Miniflux sounds like a better, more complete version of my side-project[1], I had rolled my own at the time because I wanted offline caching but it's obviously not that useful anym…
-
comment
Comment #25568913
I've been having tons of fun lately making GBA games, it's far enough from my webdev day job to be intellectually stimulating. I'm quite impressed with people saying they use to bu…