Featured

Sneaking Early Gemini Features Into Google Home

Gemini for Home still isn’t officially rolled out, but there’s a workaround floating around that lets you access part of the Gemini experience early: the upgraded Gemini voice pack, which is normally tied to the upcoming Home assistant revamp. On your phone, pop this into your browser: googlehome://assistant/voice/setup This deep-link forces the Google Home app to launch the new Voice Setup UI — the same one Google is reserving for the Gemini transition. If you’re using Chrome, pick the second option when it appears. The first one is just a Google search. You might see a “Continue to Home?” prompt,  hit Continue. You’re immediately given a choice of ten new voices, polished, ultra-natural, and clearly modeled after the more expressive Gemini TTS engine: Amaryllis – soft, airy, almost therapeutic Calathea – deeper, grounded Croton – bright, youthful Yarrow – calm, articulate They have that Gemini warmth, the same energy Google used in its AI Studio demos, not the old rob...

NVTOP



NVTOP is a powerful, real-time GPU monitoring tool for Linux that provides a dynamic, interactive terminal user interface (TUI) to monitor NVIDIA GPUs and other vendors’ accelerators. It functions similarly to the Linux process monitor htop but is focused on graphics cards, giving users live stats such as GPU utilization, memory usage, temperature, power draw, and active processes in a visually rich ASCII format within the terminal.

Unlike the static output of tools like nvidia-smi, NVTOP offers a constantly updating and interactive display, allowing users to sort, filter, and zoom without leaving the terminal. It supports multi-GPU setups by displaying all GPUs side-by-side, making it especially useful for data scientists, AI researchers, gamers, and administrators managing high-performance or multi-user GPU environments.

NVTOP is built in C and uses the ncurses library for its terminal-based UI. It queries the NVIDIA Management Library (NVML) to collect GPU statistics and presents the data with minimal performance overhead, suitable for use during remote sessions via SSH or in terminal multiplexers like tmux or screen.

The main benefits and use cases of NVTOP include:

  • Debugging performance bottlenecks by instantly revealing GPU utilization and memory consumption.

  • Managing multi-user GPU resources in shared environments.

  • Optimizing cloud GPU fleet costs by identifying idle GPUs.

  • Monitoring GPU inside Docker or Kubernetes containers (if device access is enabled).

  • Real-time visibility for home users or server admins who want detailed GPU status without leaving the terminal.

  • Integration with scripts or automated alerts based on GPU state changes.

Installation on Ubuntu and many Linux systems is straightforward with package managers or building from source, requiring dependencies such as cmake and ncurses development libraries. Running nvtop launches the interactive UI showing up-to-date graphs and process lists.

In summary, NVTOP is a lightweight, terminal-based, real-time GPU monitor tool that offers a user-friendly and highly interactive experience for tracking NVIDIA GPU and accelerator performance on Linux. It enhances system observability for professionals and enthusiasts working with GPU-intensive applications.

Comments