store

Winsage
July 12, 2026
This weekend, discussions emerged reflecting user frustration with Windows 11 and Microsoft products, particularly regarding updates. A recent cumulative update introduced a customizable Start menu but also fixed a bug that was consuming users' storage. Microsoft has mandated that users cannot ignore these updates, contributing to dissatisfaction. Many users are opting for third-party applications like Files and Win11Debloat as alternatives to the native Explorer app. The latest version of Win11Debloat, released on July 11, 2026, includes features to prevent automatic installation of unwanted OEM apps with drivers, a reboot warning for certain functions, and various fixes and enhancements. Notable additions include support for WhatIf in Get.ps1, disabling Windows Notifications, and improvements in handling registry-backup load failures. The app is available on its official GitHub repository or through the Neowin software stories page.
AppWizard
July 12, 2026
The recent updates in Counter-Strike 2 (CS2) include the introduction of volumetric smoke grenades, which provide true 3D smoke cover, and a reimagined bomb mechanic that creates an explosive wave of destruction impacting the entire map post-detonation. Valve YouTuber Gabe Follower has showcased gameplay footage of the new bomb technology, which includes a shockwave effect. Additionally, there is a private testing feature for a console command that allows players to remotely detonate grenades by shooting them. Counter-Strike 2 remains the most popular title on Steam, while its predecessor, Counter-Strike: Global Offensive, has also seen a resurgence, attracting tens of thousands of players despite not being featured on the Steam store.
AppWizard
July 12, 2026
Indie developer Crux Game Studios is offering two free games, Within and Decrypt, available for download on Itch.io until July 13. Within is a 30-minute game where players control Maya, who confronts nightmarish foes to rescue her brother, Nikil. Decrypt is a sci-fi survival-horror game that takes about an hour to complete, where players investigate a missing cargo ship and uncover a sinister reality.
AppWizard
July 12, 2026
The Epic Games Store is offering two free titles this week: Nova Lands and Tattoo Tycoon, available until July 16, when Echo Generation and Luto will replace them. The July Humble Choice lineup includes eight games: Sea of Stars: Sunset Edition, TUNIC, Neon White, Police Simulator: Patrol Officers, Drop Duchy - Complete Edition, Sledders, Dicefolk, and Our Adventurer Guild, available for purchase until August 4. Additionally, Humble has released two game bundles: the Narrative Bundle, featuring 12 games, and the Squad Goals bundle, which includes cooperative titles. The GOG store has ended its DRM-free summer sale but continues with standard promotions. Availability and pricing may vary by region.
Winsage
July 12, 2026
Microsoft is integrating artificial intelligence into its vulnerability detection processes for the Windows operating system to enhance security. This will lead to more frequent security updates during monthly Patch Tuesday releases. The company aims to address the rise in AI-driven exploits and is refining its secure software development model to combat evolving tactics used in AI-driven attacks. While AI will assist in identifying vulnerabilities, human oversight will remain essential, with developers reviewing code and validating AI-generated findings before deploying updates.
Tech Optimizer
July 12, 2026
Running pgvector on Amazon Aurora PostgreSQL-Compatible Edition offers a vector store with operational capabilities, high availability, and scalability. It is favored for Retrieval Augmented Generation (RAG) workloads transitioning to production, but increased traffic introduces challenges like query latency and memory management. Key operational practices for pgvector workloads include selecting the appropriate index type (HNSW or IVFFlat), establishing a baseline schema, choosing a suitable distance operator, scaling the index through quantization and partitioning, and preparing for churn and observability. The prerequisites for using pgvector include an Aurora PostgreSQL-Compatible cluster with specific PostgreSQL versions and the vector extension enabled. The embedding model used in examples is Amazon Titan Text Embeddings V2, which produces 1024-dimensional embeddings. pgvector supports two Approximate Nearest Neighbor (ANN) index types: HNSW, which is efficient for querying and allows for incremental insertions, and IVFFlat, which is less resource-intensive but requires rebuilding if data changes. There are scenarios where forgoing an index is beneficial, such as small datasets or partitioned datasets requiring 100% recall. A baseline schema for a multi-tenant document store includes creating a table for documents with an embedding vector and establishing indexes for tenant IDs and embeddings using HNSW. The recommended parameters for HNSW include m = 16 and ef_construction = 128. Scaling to millions of vectors involves quantization, tuning HNSW parameters, and partitioning. Aurora Optimized Reads can extend effective cache capacity, and managing index churn is crucial for maintaining performance. Observability metrics include query-level statistics, instance-level metrics, and custom application-defined metrics. To clean up after testing, it is advisable to drop the created indexes and tables, and delete the Aurora PostgreSQL-Compatible cluster and any manual snapshots taken during testing.
Search