CrystalDiskInfo : SSD health, SSD monitoring, SSD diagnostics, SSD failure signs

CrystalDiskInfo is a free and lightweight tool for monitoring the health and performance of hard drives and SSDs. It displays key information such as drive temperature, health status, and power-on hours. The program uses SMART (Self-Monitoring, Analysis, and Reporting Technology) data to help detect early signs of drive failure. Users can easily check how much data has been written to an SSD and how worn it is. Its user-friendly interface makes it ideal for both beginners and advanced users.

https://crystalmark.info/en/software/crystaldiskinfo/

LLM info

Forget Next-Word Prediction—LLMs Are Doing This Instead

We’ve always thought large language models (LLMs) like Claude, GPT-4, and Gemini were just next-word predictors—but new research from Anthropic tells a very different story. In this video, I break down their blog post “Tracing the Thoughts of a Large Language Model” and explore what’s really happening under the hood.

Flutter on Ubuntu


sudo apt-get update -y && sudo apt-get upgrade -y
sudo apt-get install -y curl git unzip xz-utils zip libglu1-mesa

sudo apt-get install libc6:amd64 libstdc++6:amd64 lib32z1 libbz2-1.0:amd64

https://code.visualstudio.com/docs/setup/linux

install visual studio code:
sudo apt install ./code_1.98.2-1741788907_amd64.deb

Visual studio code > Extension > Flutter

nano ~/.bashrc

export PATH=”$HOME/development/flutter/bin:$PATH”

Nano-ban: nyomd meg CTRL + X, majd Y és Enter.

flutter –version

flutter doctor –android-licenses

#######################################################
flutter create first_app

android studio start:
/home/zsolt/development/android-studio/bin : run studio.sh

Virtual device manager: Pixel 6 start
#######################################################
Install Flutter on Linux in 2025 | Flutter desktop Linux setup

Hardware requirements
https://docs.flutter.dev/get-started/install/linux/android

How to Install Flutter on Ubuntu 24.04 LTS Linux | Android Studio

Github: Delete Big file from repository / Nagy fájl törlés a repo-ból

,

Ha már több commitban is szerepel, használd a következő parancsot a teljes történetből való törléshez:

git filter-branch --force --index-filter \
"git rm --cached --ignore-unmatch model_egyszeru_hulladek_szelektor_update.h5" \
--prune-empty --tag-name-filter cat -- --all

git push origin --force --all