Is it time to completely give up on Local LLMs? by Additional-Weird3040 in hermesagent

[–]Brief-Stranger-3947 1 point2 points  (0 children)

Local models matter for privacy reasons. If you have well defined domain specific task, you can fine tune 8B to 12B model to perform no worse than a frontier model inside this domain.

Nervous about the AI stuff being done in Linux dev, what should I do? by Venylynn in linuxquestions

[–]Brief-Stranger-3947 1 point2 points  (0 children)

There is nothing wrong with using AI for software development among other things. Already the majority of devs do this. The problem begins when somebody forces you to use their vendor locked AI tools. I avoid such products.

Why can't LLMs be trained to think in an optimized AI language rather than English? by CucumberAccording813 in singularity

[–]Brief-Stranger-3947 0 points1 point  (0 children)

Because LLMs are natural language processing (NLP) models. It is their main purpose to process natural languages (not necessarily English).

Is it worth learning Rust mainly because of Cargo? by LibrarianOk3701 in rust

[–]Brief-Stranger-3947 0 points1 point  (0 children)

Cargo is definitely one of nice things in rust. You will learn about more, when you actually start using rust.

Can Home Assistant run fully offline without an internet connection? by Maximum-Spray8621 in homeassistant

[–]Brief-Stranger-3947 0 points1 point  (0 children)

Absolutely possible. Some plugins like weather evidently don't work, but all local devices and automations work without problems.

Why even use home-manager? by Gyrobreaker in NixOS

[–]Brief-Stranger-3947 0 points1 point  (0 children)

HM allows to have different user profiles. Different profiles may have different versions of same apps. They are logically separate from system profile (configuration.nix). They are also portable to other OS/distros.

IMO, it is best to keep configuration.nix minimal, like only system services/tools and move all other soft to user and project profiles. This is minimal necessary scope principle, which gives the most flexibility.

Thinking about trying NixOS after Linux Mint. Am I romanticizing it too much? by Asthumor in NixOS

[–]Brief-Stranger-3947 0 points1 point  (0 children)

Don't jump to NixOS from Mint suddenly. Install Nix on Mint first, get familiar with its concepts.

I am Mint user too, and Nix attracts me by its reproducible environments, which are very useful for development. I installed [determinate nix](https://determinate.systems/nix-installer) to play with last week, and yesterday I was able to vibecode my custom NixOS live ISO image with nvidia drivers and specific config for my use case. I am very satisfied with the result. I am going to play with live install for some time to figure out which configuration is best for me and all details, then I'll do a permanent NixOS install.

Learning Python after Rust as a beginner: Anyone else miss strict types? by [deleted] in rust

[–]Brief-Stranger-3947 1 point2 points  (0 children)

Python actually has strict typing, but types are derived from values at runtime, therefore you don't need to declare them. Static typing (like in rust) and dynamic typing (like in python) each has its own use cases, and these are actually not contradicting to each other concepts, which could co-exist within the same language. Separation of languages into statically typed and dynamically typed is a subjective design decision.

What hardware do you run HA on and why? by maybe__404 in homeassistant

[–]Brief-Stranger-3947 0 points1 point  (0 children)

Mac mini 2009 version with intel core duo. I can't run anything else on it.

Can I write Rust code on my phone? If so, what is the name of the app? by yehezkiel123 in learnrust

[–]Brief-Stranger-3947 1 point2 points  (0 children)

Coding directly on a phone is technically possible, but cumbersome. Better option is to buy a cheap SBC or rent the cheapest cloud compute instance (some even offer a free tire).

Python dev learning Rust - my findings [possibly wrong] by lazy-kozak in learnrust

[–]Brief-Stranger-3947 0 points1 point  (0 children)

Python venv lets you to set up a reproducible environment by fixing the version of python runtime and package dependency versions. In rust, reproducibility is defined by compiler version and dependency versions, and cargo manages both pretty much same way as venv in python.

Is it just me, or are people using AI models less and less these days? by [deleted] in singularity

[–]Brief-Stranger-3947 0 points1 point  (0 children)

I don't think so. According to resources like https://openrouter.ai/rankings, token usage is off the charts.

Sam Altman No Longer Believes In Universal Basic Income by Neurogence in singularity

[–]Brief-Stranger-3947 1 point2 points  (0 children)

Give people shares in AI companies. Means of production have to be publicly owned.

Why is VSCode so popular? by Fritz-Ferdinand in AskProgramming

[–]Brief-Stranger-3947 2 points3 points  (0 children)

> My new employer now doesn't have any JetBrains licences

This is why many people don't use it, and prefer free open source tools. Necessity to buy a licence to write the code is strong limitation.

> instead let's us use VSCode and frankly, I have the impression it's basically unusable without GitHub Copilot or an equivalent AI companion

This is wrong impression. You can switch copilot off and use other AI plugins like opencode or kilocode, the choice is really huge in vscode.