's Avatar

@lincolnthalles

16
Followers
27
Following
14
Posts
31.08.2024
Joined
Posts Following

Latest posts by @lincolnthalles

Lazydocker direto no host.

23.10.2025 21:04 👍 0 🔁 0 💬 0 📌 0

Não há fibra em 100% das rotas, ou ela não é prioritária por questão de custo. Ainda utiliza-se links por micro-ondas em certos segmentos, especialmente para interligar cidades pequenas. Há locais que ainda dá para notar degradação na rede durante chuvas intensas.

19.03.2025 21:09 👍 1 🔁 0 💬 1 📌 0

For programming beginners, definitely. Rust does some abstractions, and when learning, the C pains are a feature.

If there's any fancy modern language that may be a good first start, that's Zig. Unfortunately, it's not released as stable yet, and the documentation and ecosystem are still poor.

02.02.2025 18:53 👍 0 🔁 0 💬 0 📌 0

Eu só mudaria de distro se estivesse com problemas recorrentes com atualizações ou se outra distro oferecesse alguma vantagem real para meu hardware ou fluxo de trabalho, já que considero que quanto menos personalização inicial for necessário, melhor.

14.01.2025 22:37 👍 1 🔁 0 💬 0 📌 0
Through the Fire and the Flames - Jon Gjengset | EuroRust 2024
Through the Fire and the Flames - Jon Gjengset | EuroRust 2024 YouTube video by EuroRust

If you can write C++, I'm pretty sure you are smart enough for Rust. You just need to keep pushing until that initial friction is gone.

Here are some awesome materials that can help:
www.youtube.com/watch?v=8-KL...

rust-training.ferrous-systems.com/latest/book/...

29.11.2024 05:25 👍 1 🔁 0 💬 0 📌 0

Provável que em algum momento tenha sido feito o commit de coisas que não devem ir para o git, tipo a pasta node_modules ou arquivos binários.

É possível reescrever todo o histórico com essa ferramenta. Obviamente, precisa de planejamento para usar na branch principal.
github.com/newren/git-f...

22.11.2024 18:35 👍 1 🔁 0 💬 1 📌 0

If it's okay for the service to be unavailable at some point (power outage, connection issues, hardware failure), the self-hosted alternative is the most cost-effective unless the power cost in your area is insane.
There are decent and cheap VPS from Hetzner and Contabo, though.

21.11.2024 18:59 👍 2 🔁 0 💬 1 📌 0
Preview
Zed - The editor for what's next Zed is a high-performance, multiplayer code editor from the creators of Atom and Tree-sitter.

Zed.dev is good, en route to great.

16.11.2024 19:33 👍 0 🔁 0 💬 1 📌 0
Preview
Yaak – The API client for modern developers Call REST, GraphQL, SSE, and gRPC APIs from a simple and intuitive app

Mais um pra lista: yaak.app

15.11.2024 23:28 👍 2 🔁 0 💬 0 📌 0

Much better than the glibc hell on Linux.

10.11.2024 14:20 👍 0 🔁 0 💬 0 📌 0

You can create cross-platform GUIs with C# + AvaloniaUI, Rust + Tauri (using a web stack for the front end), or iced.rs.

I'd first check how good the existing libraries on each ecosystem are to generate the Excel files without messing with COM or WinAPI.

03.11.2024 10:01 👍 0 🔁 0 💬 0 📌 0

IDE de verdade, só o RustRover, mas ainda é meio bugado.

Já editor, tem bastante: Zed, Lapce, VSCode, Neovim...

30.10.2024 11:11 👍 1 🔁 0 💬 1 📌 0

I didn't know Cargo allowed that kind of inheritance in the config.

This issue probably arises from the code editors automatically adding dependencies to the nearby Cargo.toml.

Perhaps a custom linting on the CI and/or a pre-commit hook using a custom Taplo schema for the sub-crates will do it.

28.10.2024 11:49 👍 1 🔁 0 💬 1 📌 0

That looks like an anti-pattern. If there are multiple Cargo.toml files, the top-level one manages the workspace, and it doesn't manage deps, only members and compiler profiles. You can have a single Cargo.toml if it's a flat repo, though.

28.10.2024 09:17 👍 1 🔁 0 💬 1 📌 0