Pages

sâmbătă, 22 noiembrie 2025

News : Starsand Island | Official Trailer: Your Pastoral Fairytale for Grown-Ups

News : ... reading OR a set of presentation-ready slides by @NotebookLM!

Turn your sources into a detailed deck for reading OR a set of presentation-ready slides. They are fully customizable, so you can tailor them to any audience, level, and style.
Officially rolling out to Pro users now (free users in the coming weeks)!

News : Top 10 Krita Brushes You Need To Try! - Level 1

joi, 20 noiembrie 2025

News : Foundation Update 1 - Quality of Life | Official Trailer

News : ASTRONEER: Megatech Launch Trailer

News : Bringing Space to Life | The Expanse: Osiris Reborn Dev Diary

News : Microsoft added support for @ollama to PowerToys 0.96

... according to x.com - ollama:
Microsoft added support for @ollama to PowerToys 0.96
Now you can use Ollama for advanced clipboard management. Transform your clipboard content into any format you need! (paste content as plaintext, markdown, JSON, or various file formats.).
All this can run locally!

News : Inu Atsume VR | Launch Trailer | Meta Quest Platform

Google Apps Script : keep sheets whose names include today’s date ...

Today, this simple example will keep sheets whose names include today’s date in flexible regex formats
The script not include the month names (e.g., “20-Nov-2025”)
On running keeps sheets whose names contain any of these combinations; deletes the rest.
Let's see the source code:
function deleteSheetsWithoutToday() {
// Get today's components (zero-padded and variants)
var now = new Date();
var tz = Session.getScriptTimeZone();

var dd = Utilities.formatDate(now, tz, "dd"); // e.g., "20"
var d = Utilities.formatDate(now, tz, "d"); // e.g., "20" (no leading zero if <10)
var mm = Utilities.formatDate(now, tz, "MM"); // e.g., "11"
var m = Utilities.formatDate(now, tz, "M"); // e.g., "11" (no leading zero if <10)
var yyyy = Utilities.formatDate(now, tz, "yyyy"); // e.g., "2025"
var yy = Utilities.formatDate(now, tz, "yy"); // e.g., "25"

// Build a regex that matches many possible date embeddings in the sheet name
var dateRegex = buildFlexibleDateRegex({ dd: dd, d: d, mm: mm, m: m, yyyy: yyyy, yy: yy });

// Active spreadsheet
var ss = SpreadsheetApp.getActiveSpreadsheet();
var sheets = ss.getSheets();

var kept = 0;
var deleted = 0;

sheets.forEach(function(sheet) {
var name = sheet.getName();

// If the name contains a combination of today's date components (any of the supported formats), keep it
if (dateRegex.test(name)) {
kept++;
Logger.log("KEEP: " + name);
} else {
ss.deleteSheet(sheet);
deleted++;
Logger.log("DELETE: " + name);
}
});

Logger.log("Summary → Kept: " + kept + ", Deleted: " + deleted);
}

/**
* Build a flexible regex that matches today's date in common formats.
* It covers:
* - dd[sep]mm[sep](yyyy|yy)
* - mm[sep]dd[sep](yyyy|yy)
* - (yyyy|yy)[sep]mm[sep]dd
* - (yyyy|yy)[sep]dd[sep]mm
* - contiguous forms like ddmmyyyy, mmddyyyy, yyyymmdd, ddmmyy, etc.
* - allows multiple separator types: -, _, ., /, space, colon
* - accepts zero-padded and non-padded day/month (e.g., "7" or "07")
*/
function buildFlexibleDateRegex(parts) {
var dd = parts.dd; // zero-padded day
var d = parts.d; // non-padded day
var mm = parts.mm; // zero-padded month
var m = parts.m; // non-padded month
var yyyy = parts.yyyy;
var yy = parts.yy;

// Separator class: one or more of -, _, ., /, space, or colon
var SEP = "[\\-_.\\/\\s:]+";

// Day and month alternatives (padded or not)
var DAY = "(?:" + dd + "|" + d + ")";
var MONTH = "(?:" + mm + "|" + m + ")";
var YEAR = "(?:" + yyyy + "|" + yy + ")";

// Ordered patterns with separators
var withSeps = [
DAY + SEP + MONTH + SEP + YEAR, // dd-mm-yyyy or dd/mm/yy, etc.
MONTH + SEP + DAY + SEP + YEAR, // mm-dd-yyyy
YEAR + SEP + MONTH + SEP + DAY, // yyyy-mm-dd
YEAR + SEP + DAY + SEP + MONTH // yyyy-dd-mm
];

// Contiguous patterns (no separators)
var noSeps = [
dd + mm + yyyy,
dd + mm + yy,
mm + dd + yyyy,
mm + dd + yy,
yyyy + mm + dd,
yy + mm + dd
];

// Optional surrounding non-digit boundaries to avoid matching inside longer numbers
// We’ll use word boundaries plus lookarounds to be more permissive with symbols.
var prefix = "(?<!\\d)"; // no digit before
var suffix = "(?!\\d)"; // no digit after

// Combine all patterns into a single alternation
var combined =
prefix +
"(?:" +
withSeps.join("|") +
"|" +
noSeps.join("|") +
")" +
suffix;

// Make the regex case-insensitive and global
return new RegExp(combined, "i");
}

News : Disney Dreamlight Valley: Wishblossom Ranch | Expansion Launch Trailer

News : 17th Annual Unity Awards

News : GTA Online: A Safehouse in the Hills Coming This December

News : Cozy Marbles Announcement Trailer

News : Star Citizen | Behind the Ships: RSI Perseus and Alpha 4.4: Welcome to Nyx.

... two videos :

News : Redot 4.4 rc-1 is now live! in XR technology.

Create your 2D and 3D games, cross-platform projects, or explore innovative ideas in XR technology with Redot Engine!

News : ... new beta features on blogger !

**Try our New Beta Features**: Create a more engaging reading experience with the help of Google Google Search previews: Easily insert visual Google Search previews for popular people, locations, pop-culture and more directly in your blog! In Compose View, look for the ‘G’ button in the editor tool bar to get started.
Blogger was launched on August 23, 1999 by Pyra Labs, founded by Evan Williams.
In the early 2000s, Blogger grew quickly as one of the first platforms to make blogging accessible to everyone.
Blogger experienced rapid growth, becoming one of the first platforms to make blogging widely accessible.
In 2003, Google acquired Blogger and integrated it into its services, offering free hosting under blogspot.com.
Later, it faced strong competition from WordPress and other modern CMS platforms, which reduced its market share.
In 2010, Google ended FTP publishing and centralized all blogs on its own servers.
After 2010, Blogger saw a relative decline as WordPress and other modern CMS platforms rose in popularity and captured much of the market.
In 2025, Google introduced new beta features for Blogger, showing that the platform has not been abandoned. These experimental tools aim to modernize Blogger, adding visual elements and creating a more engaging reading experience for users.

News : Seeing what's new in the Rogue Point Playtest 2! 💥

marți, 18 noiembrie 2025

News : Welcome to Roblox: Discover a World of Imagination

News : Lightyear Frontier - Country Roads Update Launch Trailer

News : Introducing Age Check by Roblox.

News : ... vlc cli script for radio online .

I used vlc cli on this type .bat script for online radio:

@echo off
:menu
cls
echo ================================
echo   Meniu Radio Muzica Clasica
echo ================================
echo 1. Venice Classic Radio (Italia)
echo 2. Radio Swiss Classic
echo 3. ABC Classic (Australia)
echo 4. Opreste VLC
echo 5. Iesire
echo ================================
set /p choice=Selecteaza optiunea (1-5): 

if "%choice%"=="1" goto venice
if "%choice%"=="2" goto swiss
if "%choice%"=="3" goto abc
if "%choice%"=="4" goto stopvlc
if "%choice%"=="5" goto end
goto menu

:venice
echo Pornesc Venice Classic Radio...
"C:\Windows\System32\taskkill.exe" /IM vlc.exe /F >nul 2>&1
start "" /B vlc.exe -I dummy "http://174.36.206.197:8000/stream"
goto menu

:swiss
echo Pornesc Radio Swiss Classic...
"C:\Windows\System32\taskkill.exe" /IM vlc.exe /F >nul 2>&1
start "" /B vlc.exe -I dummy "http://stream.srg-ssr.ch/m/rsc_de/mp3_128"
goto menu

:abc
echo Pornesc ABC Classic...
"C:\Windows\System32\taskkill.exe" /IM vlc.exe /F >nul 2>&1
start "" /B vlc.exe -I dummy "http://live-radio01.mediahubaustralia.com/2FMW/mp3/"
goto menu

:stopvlc
echo Oprire VLC...
"C:\Windows\System32\taskkill.exe" /IM vlc.exe /F >nul 2>&1
goto menu

:end
echo Inchidere...

News : EveryWear Tutorial — Completely Updated for CLO 2025.2 (English/Korean)

duminică, 16 noiembrie 2025

News : With Google Calendar, you can create and share different booking pages for each type of service. 💡

News : Marvelous Designer 2025.2: New Feature Overview

News : Void editor - beta version.

Void is an open source Cursor alternative. Write code with the best AI tools, use any model, and retain full control over your data.
... see the new beta version on the official website.
Note : Work is currently paused on the Void IDE while we experiment with a few novel features. You can still download, use, and extend Void with custom models, and we'll push updates when available.

News : ... Epic Games comes with more free games ...

Krótka prezentacja lokomotywy, która niedługo ukaże się w symulatorze.
MaSzyna is a train simulator that lets you step into the cab and take control of the most iconic locomotives running on Polish railways.

sâmbătă, 15 noiembrie 2025

News : New videos from SphereStudios.

A fresh take on action platformers, set in a post-apocalyptic world, featuring +100 multiplayer game modes, co-op dungeons, boss raids, and intense PvP battles. Start your adventure through time.

News : LEGO® FRIENDS COMPILATION! 💜 | Girls on a Mission: Full Season 1 | Cartoons and Songs for Kids 🎵

News : Syberia VR – Trailer de lancement

News : Cracking ML Interviews: Covariance vs Correlation (Question 15)

... one good youtube channel using clear, intuitive examples about artificial intelligence and more, DataMListic - the official youtube channel.

joi, 13 noiembrie 2025

News : Moho 14.4 SIDE QUEST tutorial: 360-degree Smart Bones

News : Deep Rock Galactic: Survivor - Out Now on Mobile!

News : Pathogenic - Demo Out Now!

News : Win $1,000 by lottiefiles !

Win $1,000 and get featured across our site, socials, and newsletter with a dedicated community article.
Join the Top 100 Logos Reanimated challenge!
Join our challenge and explore your creativity by giving iconic logos a fresh animation twist in your own style.
Submit your work before 11:59 PM PST, 28th November 2025.
Important dates
AMA session
19th November 2025
Winner announcement
3rd December 2025

miercuri, 12 noiembrie 2025

News : Different Types of Rig Controllers and Posing | Mocap Cleanup Course in Cascadeur

News : Unreal Engine 5.7 Feature Highlights

News : Space Explorers Ultimate Edition | Launch Trailer | Meta Quest 3 + 3S

News : Sanatorium Official Launch Trailer

Google Apps Script : how to filter data by the value in a cell and reset the filter.

If you look at this blog, you will find examples of the results of running GAScript scripts in Excel. Today, I will show you how to filter the entire table based on a value from a cell and how to reset it to the original result without filtering.
function reseteazaFiltrarea() {
  const sheet = SpreadsheetApp.getActiveSheet();
  const ultimaLinie = sheet.getLastRow();
  sheet.showRows(1, ultimaLinie);
  SpreadsheetApp.getUi().alert("Toate rândurile au fost afișate.");
}

function filtreazaRanduriDupaCelulaSelectata() {
  const sheet = SpreadsheetApp.getActiveSheet();
  const cell = sheet.getActiveCell();
  const valoare = cell.getValue();
  const coloanaDeFiltrare = cell.getColumn();

  const ultimaLinie = sheet.getLastRow();

  for (let i = 1; i <= ultimaLinie; i++) {
    const valoareRand = sheet.getRange(i, coloanaDeFiltrare).getValue();
    sheet.showRows(i); // asigură-te că rândul e vizibil
    if (valoareRand !== valoare && i !== cell.getRow()) {
      sheet.hideRows(i);
    }
  }

  SpreadsheetApp.getUi().alert(`Filtrare aplicată pentru: ${valoare}`);
}

News : Falconeer Remaster Release Trailer

News : BlizzCon 2026 | Ticket Sale Announcement Trailer

News : How religion, politics, and housing shape society - design by ChrWr.

... another good design on graphics ! one video from the Chris Were .

News : ... another programming youtube channel by rajcodes .

Let's see one video from this youtube channel named “How C Code Becomes a Binary: A Raspberry Pi Walkthrough”.

News : Blender with Stable Diffusion XL Tutorial - 2D abstract art

marți, 11 noiembrie 2025

News : Rue Valley Release Trailer | Rue Valley

News : A Look Inside: How Lowe’s Leveraged AI to Become an Agile Digital Retailer

News : Unreal Engine AECO Sizzle Reel 2025

News : GDevelop version 5.5.245 - new changes.

GDevelop can be used to build 2D, 3D, multiplayer games or even apps. It works anywhere: smartphones, tablets, laptops or desktop computers.
One free account and three with prices. New changes on the version 5.5.245.

News : itch.io website with godot shader example demo.

Itch.io (stylized in all lowercase) is a website for users to host, sell and download indie video games, indie role-playing games, game assets, comics, zines and music. Launched in March 2013 by Leaf Corcoran, the service hosts over 1,000,000 products as of November 2024. See the wikipedia article.
Example of godot xe1a - itch.io website.

News : Picsart Vibe Design: Introducing Picsart Assistant and Picsart Flows

With over a billion downloads, Picsart isn’t just the world’s largest creative platform; we’re also the fastest growing.

News : ShaderBoy with google access ... bad or not?

In the web area, all sorts of propagated coincidences and implementations have started to appear. Here is a website that allows you to work with shaders and offers Google access functionality.
Because there are ongoing discussions about global security solutions and some security software developers have newer business implementations... I maintain my opinion that accessing a website with Google access, without knowing what access you are granting, for example: your photos, blogs, documents, is not a very good idea. Managing a large flow of Google accesses on a single account is difficult, which is why, in the case of hacking, using a traditional password will compromise only a single account.
Customizing access through Google, any other quirky ideas, and all kinds of duplicated accounts lead to rejections and blocks in web consumer psychology.
If you press no, then you are sure is works good ? https://shaderboy.net/app/.

duminică, 9 noiembrie 2025

News : Unreal Engine Cart/Wagon Attach and drive

News : Zaahen, the Unsundered | Preview - League of Legends

Godot : Custom Inspectors and Drawers in Godot with C#

Custom inspectors and drawers in Godot C# were introduced through workarounds and external plugins, especially after version 4.0, with notable improvements in 4.4.x .
They allow developers to customize how properties are displayed in the Godot editor, but implementation in C# is more complex compared to GDScript.
Version History
  • Godot 3.x: No official support for custom inspectors in C#; only GDScript had limited customization options.
  • Godot 4.0: Introduced a more robust plugin system via EditorPlugin, but C# integration was still limited.
  • Godot 4.4: External solutions like godot-mono-better-inspector enabled attribute-based customization in C#, similar to Unity.
Advantages
  • Allows customized display of properties in the editor.
  • Improves user experience for designers and developers.
  • Makes complex data structures easier to visualize and manage.
  • Enables intuitive UI creation for editor tools.
Disadvantages
  • More difficult to implement in C# than in GDScript.
  • Requires external plugins or additional code for integration.
  • Debugging can be challenging when inspector logic fails.
  • Limited official support for C# compared to GDScript.

News : hailuoai - horror-themed area AI.

... new changes in the field of AI, now it can have a horror-themed area - a hot Halloween night: hailuoai - official website.

vineri, 7 noiembrie 2025

News : Thief VR: Legacy of Shadow | Gameplay Trailer | Meta Quest Platform

News : Brawlhalla's 10th Anniversary Event Launch Trailer

News : Join Me LIVE! – Animal Drawing in Mixed Media Workshop (Nov 29th)

News : old but good : Novalogic MiG-29 Fulcrum.

Here is a game that I used to play when I was younger... some landings are difficult at certain airports...
You can find this game on this webpage.

News : Godot Engine – 2025 Showreel

News : new online artificial intelligence - today 07112025 .

I don't have a very accurate record of the online tools presented in my posts, but it's good to evaluate these as well.
  • 🎨 Image Editor Online – Edit photos using AI prompts without needing Photoshop skills. Online, no account required. Try it
  • 🚀 Paraflow – Turn ideas into prototypes by merging PRDs, user flows, and UI design. Online, freemium access. Explore
  • ✍️ Promtist AI – Generate professional multi-part prompts with no expertise needed. Free access available. Use it
  • 📞 ChatOdyssey – AI answers your calls and summarizes voicemails when you're unavailable. Free trial available. Check it out
  • 👗 SSENSELESS – AI-generated fashion parodies that mock luxury culture with absurd digital clothing. Online, no account needed. View now
  • 🎬 Notch – Create animated ads from URLs in seconds using AI trained on 10,000+ formats. Free access available. Generate ads
  • 🚀 Mujo – Produce marketplace-ready product images that boost search rankings 3×. Freemium model. Start now
  • 🛠️ Mistral AI Studio – Build and improve AI apps with enterprise-grade privacy and data ownership. Free access available. Launch Studio
  • 💻 JustCopy.ai – Clone successful apps and deploy custom versions without starting from scratch. Freemium access. Clone apps
  • 🧠 Liminary – Automatically surfaces insights from multiple content sources when you need them. Free access available. Discover insights

News : Google Finance adds AI features ...

I maintain my statement that the most stable form of investment for a person is in XAU.
It turns out that Google also has new features to be more stable in evaluating other types of investments...
Google Finance new features integrated Gemini’s Deep Search for financial insights and added prediction market data directly in search and are rolling out in the US with earnings tabs and AI-powered market analysis.
They come with a project on labs , but I cannot see on my region area :
Search Labs isn’t available for your account right now
If you try to find XAU from Revolut, you need to search CURRENCY:XAUUSD (Gold Spot Price) ... somewhere : https://www.google.com/finance/quote/XAU-USD
I don't find this on Google Finance globally, I send a feedback.

News : Epic Online Services SDK 1.18.1.2 for android and console ...

Epic Online Services (EOS) SDK 1.18.1.2 is now available, and this new SDK will be the last to support games built on 32-bit architecture on Windows and Android, as well as the last to support Android 6 & 7.
Note: The EOS SDKs for consoles (and associated documentation) are available after you have received approval from the console platform holders and Epic Games ...

miercuri, 5 noiembrie 2025

News : New videos from Vancouver Film School.

News : 09. How to Fix Image/Object Position | Spatial Creator Academy - Spatial.io

Interactive Media,Limitless Possibilities
Harness Spatial Computing and AI to unlock the next generation of interactive virtual worlds
Spatial is a Unity-powered UGC gaming platform that enables developers to publish and monetize multiplayer games across web, mobile, and VR.[1] Spatial focuses on games developed using the Unity game engine and the C# programming language.[2] The company is headquartered in New York.[3] , see the wikipedia webpage.

News : In The Black® – Hardcore Space Combat Simulator | Early Access Trailer

News : New videos from Daedalic Entertainment.

News : Deep Space Nine: Retribution | Star Trek Fleet Command

News : Unreal Engine AECO Sizzle Reel 2025

News : Building Smart Cities With Digital Twins and Agentic AI

News : Create a Live Booking Portal with AI Agents | Taskade Genesis

News : Framer Update: Custom Fonts 2.0

Start designing for free. Choose a plan to unlock features and increase limits.

News : Installation Guide for NVDIA Omniverse USD Composer for CC5 | Character Creator 5 Tutorial

News : Aloft – Bloom & Blight Update Trailer

marți, 4 noiembrie 2025

Krita 100K concept art and Textures for FREE . Gift 2 and Gift 3🎁🎁

... is from four months ago , but good to know ...
As I promised here you have a bonus gift for you. 3 files to create concept art thumbnails and 12 textures to improve your artworks if needed. Enjoy! If you enjoy this contents and are helping you to be a better artist, let me know in the comments.

News : Voices of Rue Valley | Rue Valley Character Trailer

News : Sketchfab sell is on FAB - Form W-8 for Non-US developers

About a week ago I tried to sell a gourd but instead of the classic Sketchfab page with a sale button I found a button to the fab website. Today it redirected me to fab and epicgames. I still haven't found a logic in the redirection mode... they are two separate entities... In any case, Sketchfab and PayPal will eat some good cents from what you sell, you lose a few dollars or euros. Let's see what happens with FAB.About a week ago I tried to sell a gourd but instead of the classic Sketchfab page with a sale button I found a button to the fab website. Today it redirected me to fab and epicgames. I still haven't found a logic in the redirection mode... they are two separate entities... In any case, Sketchfab and PayPal will eat some good cents from what you sell, you lose a few dollars or euros. Let's see what happens with FAB.
Start selling on Fab
Fab makes selling easy with intuitive onboarding and migration tools, and creator-friendly resources. Get started today and join the thousands of creators already selling on Fab.
In order to comply with US tax reporting we use a short online tax interview that will gather all necessary info required for your tax identity, generate a Form W-9 for US developers and Form W-8 for Non-US developers, and determine whether US tax withholding need to be applied to your payments. Verification can take 3-5 business days in some cases.
I ask the copilot about these type of selections and this is the result:

Choose how you would like to create your tax record

  • Personal Tax Profile (Romania)
    Used for individual income like salaries, pensions, rent, or dividends. Register through ANAF's Virtual Private Space (SPV) to manage your tax obligations.
  • Personal Tax Profile (EU)
    Each EU country has its own tax portal. For example, in Germany you register with the Finanzamt, in France via impots.gouv.fr, and in Italy through Agenzia delle Entrate. These portals allow you to declare income, view tax balances, and submit returns.
  • Personal Tax Profile (US)
    U.S. citizens use the IRS system. You file Form 1040 annually to report income, claim deductions, and pay federal taxes. You can create an IRS account online to manage your tax records.
  • Sole Proprietor Tax Profile (Romania – PFA)
    Register as a PFA at ONRC, declare your activity to ANAF, and submit the Single Tax Declaration. You pay income tax and social contributions.
  • Sole Proprietor Tax Profile (EU)
    In most EU countries, sole proprietors register with local trade or tax offices. You’ll need a business ID, VAT number (if applicable), and must file income and social tax declarations.
  • Sole Proprietor Tax Profile (US)
    No formal registration is needed unless you use a business name. You report business income on Form 1040 with Schedule C and pay self-employment tax via Schedule SE.
  • Single Member LLC Tax Profile (US only)
    Register your LLC with a U.S. state, apply for an EIN from the IRS, and file taxes as a disregarded entity (Schedule C) or elect corporate tax status using Form 8832 or 2553.
  • Business Tax Profile (Romania – SRL/SA)
    Register your company at ONRC, obtain a fiscal code (CUI), and declare it to ANAF. You’ll file regular tax returns and pay corporate or microenterprise tax.
  • Business Tax Profile (EU)
    Businesses must register with national trade and tax authorities. You’ll need a VAT number, fiscal ID, and must comply with local accounting and tax filing rules.
  • Business Tax Profile (US)
    Register your business with your state, get an EIN from the IRS, and file corporate taxes using Form 1120 (C-Corp) or Form 1065 (Partnership). You may also need to file payroll and sales tax returns.

luni, 3 noiembrie 2025

News : Best of Cracking Contraptions… But It All Goes Wrong! | Wallace & Gromit

News : A First Look at the New Animation Features in Unreal Engine 5.6

News : Gallade vs Bisharp Pokémon Fan Art Battle! Rigged and animated with Moho

News : New videos from Akupara Games.

News : CLion from jetbrains is free ...

CLion is a C and C++ IDE for Linux, macOS, and Windows integrated with the CMake build system for individual, non-commercial development
  • For learning and self-education, open-source contributions without earning commercial benefits, any form of content creation, and hobby development.
  • AI Free is included.
  • The Rust plugin is free.
  • Support through public forums and a bug tracker.
  • Anonymous data is collected.
  • Detailed code-related data is collected by default and can be disabled in the settings.