Viewing profile — wdroz
wdroz
HN member- Joined
- Tue, Apr 05, 2016, 4:49 PM UTC
- HN karma
- 467
- Public activity
- 200 items
- HN profile
- View on Hacker News ↗
About wdroz
Like big data and machine learning.
Recent public activity
-
comment
Comment #47847463
You can get a refund, from the article: > If you hit unexpected limits or these changes just don’t work for you, you can cancel your Pro or Pro+ subscription and you will not be ch…
-
comment
Comment #47571678
You can also bootstrap your initial schema with LLMs with the excalidraw MCP "app" [0]. But MCP "apps"[1] are quite new and not very well supported yet. [0] -- https://github.com/e…
-
comment
Comment #47135273
We could simply make the "view file" tool not able to see .env. Same for other "grep-like" tools.
-
comment
Comment #46343227
In the improved error message [0] how are they able to tell nested attributes without having a big impact in performance? Or maybe this has a big impact on performance, then using …
-
comment
Comment #46309681
> All submissions must come from verified individuals or organizations. Inside the OpenAI Platform Dashboard general settings, we provide a way to confirm your identity and affilia…
-
comment
Comment #46242564
Unlike openai, you can use the latest grok models without verifying your organization and giving your ID.
-
comment
Comment #45299477
> The logo is further on the left than the other icons. But why the logo of the website/app should be aligned with the icon of the actions? > The icons are thin, compared to the te…
-
comment
Comment #45060820
DNS tunnels with iodine works well, it's easy to setup and work in a lot of place. You can also connect to some random corporate wifi and it's very likely that this will work (not …
-
comment
Comment #44670934
I hope you will get further sponsorships so you can continue your cool work in the FOSS space. I also totally agree that uv makes shipping python software smoother. Prior to uv I h…
-
comment
Comment #44395191
I also prefer the mental model of immediate mode, but when I played with Dioxus[0] for a rust fullstack hobby project[1], I was able to adapt. I liked the DX with the tools and the…
-
comment
Comment #44166620
I agree, the latest models are not bad at Rust. Most issues I have when writing LLM-assisted Rust code are related to dependencies. There are a lot of v0.x.x crates in Rust with fr…
-
comment
Comment #43919157
You can also install it "globally" for your user with: uv tool install ty Then you can use it anywhere ty check
-
comment
Comment #42839411
They are using the "normal" dependencies section in the pyproject.toml, so you should be able to install with pip or other tools if you want. It's only for dev-specifics dependenci…
-
comment
Comment #41867642
Some "micro cheating" are really easy to develop. When I was younger and a bit bored, I wrote my own "micro-cheat" in AutoIt[0] with less than 10 lines of code. This was for the ga…
-
comment
Comment #41809739
I prefer mypy but sometimes pyright supports new PEPs before mypy, so if you like experimenting with cutting-edge python, you may have to switch time to time.
-
comment
Comment #41770860
disclaimer: I don't work on big codebases. Pylance with pyright[0] while developing (with strict mode) and mypy[1] with pre-commit and CI. Previously, I had to rely on pyright in p…
-
comment
Comment #41767699
After this month, Python 3.8 will be end-of-life, so maybe you can push internally to upgrade python.
-
comment
Comment #41766912
With the 3.13 TypeIs[0] and the 3.10 TypeGuard[1], we can achieve some of Rust's power (such as the 'if let' pattern) without runtime guarantees. This is a win for the DX, but this…
-
comment
Comment #41466425
I agree, you can also use Rust with PyO3[0] and Maturin[1]. It's far easier than what the author is doing is the article. [0] -- https://github.com/PyO3/pyo3 [1] -- https://github.…
-
comment
Comment #40997134
Most people in tech will roll their eyes when they hear this, but they'll keep their mouths shut.
-
comment
Comment #40818680
You can use conventional pre-commit[0] to validate that commit messages follow the convention and use only the types that the team agreed upon. This still requires discipline to ch…
-
comment
Comment #40167613
Similar(identical?) concept with typestate pattern[0] [0] -- https://zerotomastery.io/blog/rust-typestate-patterns/
-
comment
Comment #40114952
> py2wasm converts your Python programs to WebAssembly, running them at 3x faster speeds This is clearly written in the article, but I hope that the impatient readers will understa…
-
comment
Comment #40010788
In C++, you can use C++20 concepts[0]. [0] -- https://en.cppreference.com/w/cpp/language/constraints
-
comment
Comment #39977108
Look nice! I like how you use the scope to remove the animation, this is very convenient.