Tech News
← Home  ·  All topics

Pointer

7 GoKawiil briefs on this topic

Google details how Magic Pointer's Gemini cursor handles on-screen data

Google's Alexander Kuscher explained on the Android Faithful podcast how Magic Pointer, a Gemini-powered cursor feature for Googlebook laptops, processes screen content. Identifying interactive elements like emails or images happens locally on the device, while content is only sent to Google's cloud once a user selects it and asks Gemini to act on it.

Google confirms Magic Pointer and Rambler stay free after AI Pro trial ends on Googlebooks

Google's Alexander Kuscher confirmed on the Android Faithful podcast that Magic Pointer and Rambler, two signature AI features on the new Googlebook laptops, will keep working without a Google AI Pro subscription. Googlebooks ship with a free 12-month AI Pro trial, but Kuscher said this sits on top of the base experience rather than gating these core tools.

Google to unveil first Googlebooks at October 5 New York event

Google announced an 'Opening Night' event in New York on October 5 to formally showcase its first Googlebook laptops, which run an Android-based version of ChromeOS. The event follows the September 21 pre-order launch and will feature interactive displays along with the debut of the first laptop built for Gemini Intelligence. Partners including Acer, ASUS, Dell, HP and Lenovo are manufacturing the devices, which include a lid light called a 'glowbar.'

Google opens Googlebook laptop pre-orders on September 21

Google has told sign-up subscribers and posted on its Googlebook website that pre-orders for its new Android-based ChromeOS laptop line will begin September 21 at 9AM ET. Partners including Acer, ASUS, Dell, HP and Lenovo are building models, with Gemini AI features like the 'Magic Pointer' and custom widget generation built in.

Blog exchange dissects how object pools change use-after-free bugs from type confusion to logical errors

A reply-post analyzing a reader's use-after-free bug in a limit-order matching engine argues that object pools change the nature of memory bugs rather than eliminating them. The author explains that without pooling, a freed-and-reused memory slot can let two different object types collide, potentially turning a stale pointer into a code-execution exploit via a mismatched function pointer. With pooling, the same logical use-after-free persists, but because the recycled memory always holds the same type, the dangerous type confusion is avoided—unless the object itself contains an inline tagged union, which reopens the original hazard.

Zig Adds Pointer Stability Locks to std.ArrayList

Zig's main branch now supports pointer stability locks for std.ArrayList, a memory-safety mechanism previously introduced for Hash Map containers in 2024. Developers can call lockPointers() when holding pointers or slices into an ArrayList, then unlockPointers() once those references are no longer needed, preventing use-after-free bugs caused by reallocation. The feature originated from a pull request opened by contributor Leo Emar-Kar in 2025 and was documented by Robbie Lyman.

Open-source 'Laser Graffiti' turns any wall into a laser-pointer canvas

A developer released Laser Graffiti, a Show HN project that pairs a webcam and projector so anyone can draw on a wall using a handheld laser pointer. The software tracks the laser dot and projects effects like glowing neon trails, dripping ink, or spinning 3D shapes over the strokes in real time. The creator says the project was inspired by an older video of artists laser-tagging buildings with projectors.