wdroz
No user record in our sample, but wdroz has activity below (stories or comments). Likely we have partial data — the full bulk-load will fill profiles in.
No user record in our sample, but wdroz has activity below (stories or comments). Likely we have partial data — the full bulk-load will fill profiles in.
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 charged for April usage. Please reach out…
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/excalidraw/excalidraw-mcp [1] --…
We could simply make the "view file" tool not able to see .env. Same for other "grep-like" tools.
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 exceptions for control flow is…
> 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 affiliation with any business you wish to…
Unlike openai, you can use the latest grok models without verifying your organization and giving your ID.
> 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 text, which is bold. Why this is an…
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 necessary in "direct" mode).
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 hesitated to use Textual to build cool…
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 `rsx!` macro. The use of…
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 frequent updates and breaking changes. As…
You can also install it "globally" for your user with: uv tool install ty Then you can use it anywhere ty check
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 dependencies that they are using the uv-specifics…
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 game counter-strike (I don't remember…
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.
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 pre-commit and CI for a while because…
After this month, Python 3.8 will be end-of-life, so maybe you can push internally to upgrade python.
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 is not yet widely used. For example,…
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.com/PyO3/maturin
Most people in tech will roll their eyes when they hear this, but they'll keep their mouths shut.
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 choose the "right" type and scope. [0] --…
Similar(identical?) concept with typestate pattern[0] [0] -- https://zerotomastery.io/blog/rust-typestate-patterns/
> 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 understand that this is 3 times faster than the…
In C++, you can use C++20 concepts[0]. [0] -- https://en.cppreference.com/w/cpp/language/constraints
Look nice! I like how you use the scope to remove the animation, this is very convenient.