Pages

marți, 22 septembrie 2026

News : ​Looking Back: Romanian Game Awards & Nerds Take Over's Big Win.

Even though this is an older news recap looking back at past events, the Romanian Game Awards 2026 gala, which took place on June 9, 2026, in Bucharest, remains a milestone moment for the local video game development ecosystem. Organized annually by the Romanian Game Developers Association (RGDA), the event highlights the incredible growth, creativity, and technical achievements of studios operating within Romania. The spotlight of the 2026 edition shone brightly on indie excellence, cross-platform innovations, and internationally recognized franchises that put the country firmly on the global gaming map.
The crown jewel of the evening, the Romanian Game of the Year 2026 award, was fiercely contested by some truly outstanding titles. When the dust settled, Tearscape, developed by the talented team at Nerds Take Over, walked away with the grand trophy, capturing critical acclaim and community praise for its stellar design. However, the competition featured a rich array of finalists that showcased the diverse genres being built locally, from fast-paced action to atmospheric storytelling.
  • Tearscape (Nerds Take Over) – The ultimate winner of Romanian Game of the Year 2026, celebrated during the Bucharest gala on June 9, 2026, for its standout creative and technical execution.
  • Darkblade Ascent (PST Games) – A major finalist and nominee for Game of the Year, offering players intense combat mechanics and immersive gameplay experiences.
  • NETBREAK (Galactic Crows) – A distinct cyberpunk-themed finalist that captured the attention of sci-fi fans and judges alike with its striking visual aesthetic and world-building.
  • Stellar Wanderer DX (Dreambuilder Studio) – A notable finalist in the top category, continuing to push boundaries in space exploration and open-universe mechanics.
  • Valor of Man (Legacy Forge) – Another prominent nominee in the high-stakes Game of the Year lineup, reflecting deep tactical depth and strong indie ambition.
  • Door Kickers Series (KillHouse Games) – A critically acclaimed tactical strategy powerhouse developed right in Bucharest, serving as a pillar of long-standing success and international prestige for Romanian developers.
  • PC Building Simulator – A historic milestone project that originally started from the vision of solo Romanian developer Claudiu Kiss before expanding into a massive global phenomenon.
Looking back at these milestones helps us appreciate how far the Romanian game development scene has progressed. Events like the Romanian Game Awards continue to prove that local studios possess world-class talent, capable of delivering unforgettable experiences to gamers across the globe.

News : Clive Barker's Hellraiser: Revival – Pre-order Trailer – Nintendo Switch 2

luni, 21 septembrie 2026

News : Ktor 3.6.0 Is Now Available!

Ktor 3.6.0 is here! This release is full of new experimental features, including typed authentication capabilities with specialized support for OpenID Connect and HTTP/3 support for the Netty engine. There are also a few quality-of-life improvements for routing and request handling, more convenient defaults for Kotlin Multiplatform clients, and more.

News : .NET 11 Release Candidate 1.

.NET 11 Release Candidate 1 is now available. This is our first release candidate, which comes with a go-live support license so you can confidently use this release for your production applications. This release of .NET 11 is supported in the new Visual Studio 2026 Insiders release alongside Visual Studio Code with the C# Dev Kit.

News : Core Keeper - Riders of the Underground - Out Now!

News : Loftia - Official Release Date Trailer.

joi, 17 septembrie 2026

News : 66 digital footprint Google backup account.

Managing and backing up your personal digital footprint is an essential step for data privacy and security. Google Takeout is an official service provided by Google that allows users to export and download a copy of their data stored across various Google products and services into a single organized file archive.
You can access the tool directly here: Access Google Takeout.
Complete List of Available Google Takeout Data Categories
Depending on your account activity and the services you use, Google Takeout provides export options across a wide variety of services. Below is the comprehensive list of available data selection categories:
  • Access Log Activity
  • Android Device Configuration Service
  • Arts and Culture
  • Blogger
  • Calendar
  • Chrome
  • Classroom
  • Contacts
  • Crisis Response
  • Drive
  • Fit
  • Forms
  • Gemini
  • Google Account
  • Google Analytics
  • Google Chat
  • Google Cloud Search
  • Google Finance
  • Google Help
  • Google Input Tools
  • Google Keep
  • Google News
  • Google Pay / Wallet
  • Google Photos
  • Google Play Books
  • Google Play Games
  • Google Play Movies and TV / Google TV
  • Google Play Store
  • Google Shopping
  • Google Workspace Marketplace
  • Groups
  • Home App
  • LearnLM
  • Location History / Timeline
  • Mail
  • Maps
  • Maps (your places)
  • My Activity
  • Newsstand
  • One
  • Passkeys
  • Password Manager
  • Personalized Ads
  • Phone App
  • Pinpoint
  • Profile
  • Quantum AI
  • Read Along
  • Reminders
  • Saved / Collections
  • Search Contributions
  • Shopping List
  • Shortwave
  • Snapseed
  • Street View
  • Tasks
  • Text-to-Speech
  • Translator
  • Travel
  • User Profile
  • Voice
  • Wallet
  • YouTube and YouTube Music
  • YouTube Playables
  • YouTube Studio
  • Zipper
You do not need to download all categories at once. If you only want to back up your AI interactions, search history, or personal activity, simply unselect all options and select specific items such as Gemini, My Activity, or Google Chat.

miercuri, 16 septembrie 2026

marți, 15 septembrie 2026

News : Aniimo | Launch Trailer.

News : Monster Hunter Wilds: Ascendance - Long Sword | Boosted Action Breakdown.

News : Dev snapshot: Godot 4.8 dev 6.

Indeed, this is much sooner than usual. Even when taking into consideration how development snapshots become more frequent at their tail-end in preparation of feature freeze, less than a week means that exceptional circumstances were at play. Specifically: our previous development snapshot had multiple startup crash reports on macOS and failed to upload to the Google Play Store, which have both been rectified by GH-123439 and GH-123474 respectively.

News : Building More Energy Efficient AI Factories With NVIDIA DSX.

News : What is Dune: Awakening?

News : What's New in Kotlin 2.4.20

Google Apps Script : show tags videos from youtube playlist.

Today marks the first part of managing tags for uploaded YouTube videos. Assigning the right tags to every video is challenging and time-consuming; plus, if you rush, you might lose track of what you’ve uploaded. This Google Apps Script displays the tags for the videos in a playlist. While it is possible to use a script to automatically check and modify them, that process is more complex. Here is the initial, simple script for my main playlist on the @catafest YouTube channel.
function showAllVideoTagsFromPlaylist() {
  const playlistId = "PLIDHlEkMih2OssDFquu0iWSNOTsFeuk8v";
  let pageToken = null;
  do {
    const playlistResponse =
      YouTube.PlaylistItems.list(
        "snippet",
        {
          playlistId: playlistId,
          maxResults: 50,
          pageToken: pageToken
        }
      );
    playlistResponse.items.forEach(item => {
      const videoId =
        item.snippet.resourceId.videoId;
      const videoResponse =
        YouTube.Videos.list(
          "snippet",
          {
            id: videoId
          }
        );
      if (!videoResponse.items.length) {
        return;
      }
      const video =
        videoResponse.items[0];
      const tags =
        video.snippet.tags || [];
      Logger.log("====================================");
      Logger.log("TITLE: " + video.snippet.title);
      Logger.log("VIDEO ID: " + videoId);
      Logger.log("TAGS: " + tags.join(", "));
    });
    pageToken = playlistResponse.nextPageToken;
  } while (pageToken);
}

sâmbătă, 12 septembrie 2026

News : X Royale 3 | Season 1 Launch Trailer

News : Drawing a goth girl in Procreate with Drugfreedave

News : STARCRAFT | Announce Cinematic | Dominion

News : World of Warcraft: Forever | New Horizons | Cinematic Trailer

News : Introduction to Ragdoll for Web

News : GIMP 3.2.6 released .

We’re happy to announce the release of GIMP 3.2.6! This stable release contains several months worth of patches, bug fixes, security updates, and more from new and longtime contributors. Special thanks to Bruno Lopes, who has taken charge of backporting fixes from our development branch to the 3.2 stable branch.

vineri, 11 septembrie 2026

Tool : Krita 5.3 Top New Features for Artists.

News : Steam Programming Fest 2026: Official Trailer.

Tool : Good design and info omniquant ...

Markets are not predictable — anyone who tells you otherwise is selling something. Markets are probabilistic, and that distinction is the entire reason OmniQuant exists. Bloomberg costs $24k/yr and is built for institutions. Robinhood treats markets like a slot machine. OmniQuant sits in the middle: institutional-grade probabilistic infrastructure, priced for individuals. The product is a disciplined engine that scores itself honestly — not one that promises certainty. Publishing hit rates, abstentions, and misses is not marketing — it's the product. We're building for the trader who wants to know why a call was made, at what confidence, with what historical analog, and what would flip it.

News : The Moon Is Yours. The Crust 1.0 Is OUT NOW — Official Release Trailer.

News : Demo: Sophos AI Defense in Action.

joi, 10 septembrie 2026

News : React 19.3 released ...

React 19.3 is now available on npm!
Last year, we shared View Transitions and Fragment Refs as new experimental APIs coming to React. We’re excited to announce that both of these are now stable in React 19.3!
In this post, we’ll go over how they work, and also cover some other notable changes in this release.

miercuri, 9 septembrie 2026

News : New in SuperSplat: Editor 3.0 Rebuilt on WebGPU.

Today is a bigger day. SuperSplat Editor 3.0 is here — the biggest release since 2.0 — and the headline is the editor itself, rebuilt from the ground up on WebGPU. It loads far larger scenes in a fraction of the memory, stays responsive when they get heavy, and comes with a new way to select, color grading for selections and a brand new Appearance panel.

News : Vercel Opens vgpu 0.3.1 for WebGPU Across Browser, Node, and CI.

Vercel has open-sourced vgpu 0.3.1, a small TypeScript WebGPU layer with typed WGSL modules, shared browser and Node APIs, deterministic mocks, CLI validation, examples, and agent-facing documentation.

marți, 8 septembrie 2026

News : GPT-6 Astra on CAD (SolidWorks 2026) with MecAgent .

News : The Legend of Zelda: Ocarina of Time Remake Trailer (November 5, 2026)

News : Kotlin Weekly Update – Gen AI SDK 1.0.0 and New Toolchain Improvements.

Kotlin continues to grow quickly across Android, JVM, and Multiplatform development, and this week brings several important updates that developers should pay attention to. The most notable release is the Gen AI Kotlin SDK version 1.0.0, which gives Kotlin developers a native way to integrate Gemini-powered generative AI features into their applications. The SDK supports Android, JVM, and Kotlin Multiplatform, making it easier to build AI-driven experiences using idiomatic Kotlin code and modern coroutine-based APIs. Another major update comes from JetBrains with the release of Kotlin Toolchain 0.12.0. This version improves the publishing workflow for Kotlin Multiplatform projects, adds better support for WebAssembly applications, and enhances Compose Hot Reload directly from the command line. These improvements help developers test and ship cross-platform apps more efficiently, especially those targeting both mobile and web environments. Kotlin 2.4.20 also arrived with several compiler fixes and performance improvements. The update includes better coroutine debugging, enhancements for Kotlin/Native and Kotlin/Wasm, and compatibility updates for newer Gradle versions. These changes contribute to a more stable development experience and smoother builds across all supported platforms. Overall, this week’s Kotlin updates highlight strong progress in AI integration, multiplatform tooling, and performance optimization. Whether you build Android apps, server applications, or cross-platform products, these releases offer new opportunities to improve your workflow and adopt modern Kotlin features.

News : Google Gen AI SDK for Kotlin 1.0

a few days ago...
Today, we're excited to announce the 1.0 release of the Google Gen AI SDK for Kotlin (google-genai-kotlin)...The SDK provides a unified surface to interact with both the Gemini Developer API (Google AI Studio) and the Gemini Enterprise Agent Platform (on Google Cloud) with minimal configuration tweaks.

News : New DLC Feeding the Future Out Now!

luni, 7 septembrie 2026

News : Stable Channel Update for Desktop by Chrome.

The Stable channel has been updated to 152.0.7977.82/.83 for Windows and Mac and 152.0.7977.82 for Linux, which will roll out over the coming days/weeks.

News : Krita stable release

There was no new stable release in the last day. The GitHub master and krita/6.0 branches were updated on 7 September 2026. Development continues on Krita Plus (5.3.x / 6.0.x pre-alpha) and Krita Next (5.4 / 6.1 pre-alpha), including Android animation rendering and transform/color-sampler work described in the August monthly report. Nightly builds remain available

News : A Live Action VFX Short Film: "REBOOT" - by The Reboot Team | TheCGBros

News : Alice on Delivery | Official Trailer.

News : The Missing Tail - Official Announcement Trailer.

miercuri, 2 septembrie 2026

News : The Industrialization of Intelligence.

Tool : icon.kitchen icons development.

The icon.kitchen online tool for icons on development.

News : Vercel Opens vgpu 0.3.1 for WebGPU Across Browser, Node, and CI.

Vercel has open-sourced vgpu 0.3.1, a small TypeScript WebGPU layer with typed WGSL modules, shared browser and Node APIs, deterministic mocks, CLI validation, examples, and agent-facing documentation.

News : Building Federated Multimodal AI Workflows with NVIDIA FLARE.

Those design questions also apply to unified multimodal models (UMMs), which support multiple modalities and tasks within a shared architecture. FedUMM, developed through a collaboration between William & Mary and NVIDIA, provides a concrete example by federating lightweight adapters over a frozen multimodal backbone. FedUMM is supported by the NVIDIA Academic Grant Program, and received an Outstanding Student Paper Award at the FL@FM workshop at TheWebConf 2026.

News : How mobility gives language models a deeper understanding of place.

To demonstrate this complementary capability, we introduce Mobility-Embedded POIs (ME-POIs), a novel framework that improves text-based place representations derived by language models. Using publicly available benchmark datasets, ME-POIs incorporates aggregated and anonymized mobility patterns, such as arrival times, stay durations, and surrounding movement patterns.

marți, 1 septembrie 2026

News : New features in Unity 6.6 .

News : Neverwinter | Monoliths of Madness | New Update.

News : inkscape-mcp release 1.3.1

With Inkscape MCP, your coding agent can do everything a designer does in Inkscape — sketch and reshape paths, apply effects and filters, render LaTeX equations, generate barcodes and QR codes, convert between formats, query and rewrite document structure — through plain conversation instead of menu clicks.