Pages

duminică, 22 martie 2026

Tools : install scoop with powershell script.

Scoop downloads and manages packages in a portable way, keeping them neatly isolated in ~\scoop .
Simple powershell script to install the scoop installer.
# check is scoop is on pc
if (Get-Command scoop -ErrorAction SilentlyContinue) {
    Write-Host "Scoop este deja instalat."
    exit
}

# set running script for user
Set-ExecutionPolicy RemoteSigned -Scope CurrentUser -Force

# install the scoop
iwr -useb get.scoop.sh | iex

# check the install process
if (Get-Command scoop -ErrorAction SilentlyContinue) {
    Write-Host "Scoop a fost instalat cu succes!"
} else {
    Write-Host "Instalarea Scoop a eșuat."
}

Tools : analyzes your hardware for AI

llmfit.exe is a command‑line tool that analyzes your hardware (CPU, RAM, GPU, VRAM) and tells you which LLMs you can realistically run on your machine. It supports both an interactive TUI mode and a non‑interactive CLI mode.

News : Local AI for iPhone, iPad, and Mac.

Local AI for Private, Uncensored Chat on iPhone, iPad, and Mac with No Cloud, No Tracking, No Logins.
Private LLM is a local AI chatbot for iOS and macOS that works offline, keeping your information completely on-device, safe and private. It doesn't need the internet to work, so your data never leaves your device. It stays just with you. With no subscription fees, you pay once and use it on all your Apple devices. It's designed for everyone, with easy-to-use features for generating text, helping with language, and a whole lot more. Private LLM uses the latest AI models quantized with state of the art quantization techniques to provide a high-quality on-device AI experience without compromising your privacy. It's a smart, secure way to get creative and productive, anytime and anywhere.

News : Maintenance release: Godot 4.5.2

Another news from Rémi Verschelde at 19 March 2026 about the Godot game engine.
While most users have upgraded their projects to Godot 4.6 by now, some have to stay on the previous 4.5 branch for various reasons, so we do our best to provide them with important fixes.
Our release support policy is that we support a given stable branch actively until its successor has had its first patch release, which happened a month ago with 4.6.1. But 4.5.2 was already in the pipeline with RC1, I just never got to finalizing it… so it’s time to wrap it up with a stable release!
Note: Following this maintenance release, the 4.5 branch switches to partial support, and the 4.4 branch is end of life and won’t get new patch releases.