2D, 3D, game, games, online game, game development, game engine, programming, OpenGL, Open AI, math, graphics, design, graphic, graphics, game development, game engine, programming, web development, web art, web graphic, arts, tutorial, tutorials,
marți, 25 noiembrie 2025
luni, 24 noiembrie 2025
sâmbătă, 22 noiembrie 2025
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)!
See the x.com post url.
joi, 20 noiembrie 2025
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!
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");
}
Posted by
Cătălin George Feștilă
Labels:
2025,
google,
Google Apps Script,
open source,
source code,
tutorial,
tutorials
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!
Read more on the official blogger or see videos on RedotEngine - the official youtube channel.
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.
marți, 18 noiembrie 2025
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...
luni, 17 noiembrie 2025
duminică, 16 noiembrie 2025
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.
... the last videos from SphereStudios - the official youtube channel :

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.
Posted by
Cătălin George Feștilă
Labels:
2025,
2025 news,
artificial intelligence,
math,
mathematical functions,
news,
video,
video tutorial,
youtube
joi, 13 noiembrie 2025
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
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}`);
}
Posted by
Cătălin George Feștilă
Labels:
2025,
google,
Google Apps Script,
open source,
source code,
tutorial,
tutorials
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 .
... programming with rajcodes - the official youtube channel.
Let's see one video from this youtube channel named “How C Code Becomes a Binary: A Raspberry Pi Walkthrough”.
marți, 11 noiembrie 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.

Posted by
Cătălin George Feștilă
Labels:
2025,
2025 news,
2D,
3D,
demo,
design,
game development,
Godot,
graphics,
itch.io,
news,
web,
web development
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/.

luni, 10 noiembrie 2025
duminică, 9 noiembrie 2025
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.

Posted by
Cătălin George Feștilă
Labels:
2025,
2025 news,
artificial intelligence,
news,
online tool,
web
sâmbătă, 8 noiembrie 2025
News : Petit Planet - Planet Design Trailer | Coziness Test Now Live!
Petit Planet is HoYoverse's brand-new cosmic life sim that's free-to-play and cross-platform. Discover the infinite possibilities of life on this planet!
vineri, 7 noiembrie 2025
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 : 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.
Posted by
Cătălin George Feștilă
Labels:
2025,
2025 news,
artificial intelligence,
google,
Google Finance,
news
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 ...
Posted by
Cătălin George Feștilă
Labels:
2025,
2025 news,
development,
Epic Games,
game development,
news
joi, 6 noiembrie 2025
News : Create any brush you can imagine | PixiEditor October Devlog
You can download this tool from the official website.
See this video tutorial on PixiEditor - the official youtube channel.
Posted by
Cătălin George Feștilă
Labels:
2025,
2025 news,
2D,
design,
graphic,
graphics,
news,
PixiEditor,
tool
miercuri, 5 noiembrie 2025
News : New videos from Vancouver Film School.
... the last videos from Vancouver Film School - the official youtube channel :

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 : New videos from Daedalic Entertainment.
... the last videos from Daedalic Entertainment - the official youtube channel :

News : Framer Update: Custom Fonts 2.0
Start designing for free. Choose a plan to unlock features and increase limits.
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 : 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 : New videos from Akupara Games.
... the last videos from Akupara Games - the official youtube channel :

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.
Posted by
Cătălin George Feștilă
Labels:
2025,
2025 news,
C++,
CLion,
development,
JetBrains,
news,
tool
vineri, 31 octombrie 2025
joi, 30 octombrie 2025
miercuri, 29 octombrie 2025
News : Tools from sordum website ...
Sordum.org offers various tools to simplify your computer usage, such as AskAdmin, BlueLife Hosts Editor, ReIcon, and more. Download freeware to block access, …
I tested the TempCleaner tool by authors: BlueLife , Velociraptor and works ...
You can find these tools on the official website.
marți, 28 octombrie 2025
News : Inpaint4Drag framework with Google Colab demo.
Inpaint4Drag introduces a novel framework that decomposes drag-based editing into pixel-space bidirectional warping and image inpainting. Our method achieves real-time warping previews (0.01s) and efficient inpainting (0.3s) at 512×512 resolution, significantly improving interaction experience while serving as an adapter for any inpainting model.
See this project.
Test with this colab online demo.
Posted by
Cătălin George Feștilă
Labels:
2025,
2025 news,
artificial intelligence,
demo,
Google Colab,
news
News : Lightricks introduced LTX-2
Lightricks introduced LTX-2, an open-source AI model that creates synchronized 4K video and audio in real time. It supports multi-keyframe conditioning, 3D camera logic, and various inputs like text, image, video, and audio for precise, style-consistent video generation up to 10 seconds long at 50 fps. LTX-2 runs efficiently on consumer GPUs with multiple performance modes for different creative needs
Read more on the online application.
Posted by
Cătălin George Feștilă
Labels:
2025,
2025 news,
artificial intelligence,
news,
online tool,
website
News : 13,000x faster even the fastest classical supercomputers.
Today, we’re announcing research that shows — for the first time in history — that a quantum computer can successfully run a verifiable algorithm on hardware, surpassing even the fastest classical supercomputers (13,000x faster). It can compute the structure of a molecule, and paves a path towards real-world applications.
... more on the official google blogger.
News : UltraGen: High-Resolution Video Generation with Hierarchical Attention
UltraGen is a new AI that makes high-resolution videos, even 4K, more efficiently by using a smart attention system that balances local detail and global consistency. This can scale up video quality better than previous AI models or two-step super-resolution methods ...
Read more on the official project webpage.
News : DyPE: Dynamic Position Extrapolation for Ultra High Resolution Diffusion
DyPE (Dynamic Position Extrapolation) enables pre-trained diffusion transformers to generate ultra-high-resolution images far beyond their training scale. It dynamically adjusts positional encodings during denoising to match evolving frequency content—achieving faithful 4K × 4K results without retraining or extra sampling cost.
News : Smallest 64-bit Operating System in the World! by Datastream
... another video from Datastream - the official youtube channel.
This 64-bit operating system is less than 1.44MB in size, as it is running entirely off of a Floppy disk. It is called MenuetOS.
sâmbătă, 25 octombrie 2025
News : ... AI music online tools that compose, remix, and inspire !
... today I tested some free AI for music based on my tasks.
You can test these platforms not all are free. These use artificial intelligence to help users generate original music, soundscapes, and beats—whether you're a hobbyist, content creator, or professional musician.
Posted by
Cătălin George Feștilă
Labels:
2025,
2025 news,
artificial intelligence,
design,
news,
online,
online tool,
website,
websites
vineri, 24 octombrie 2025
News : Free Giveaway on Epic Games : Doodle Farm ...
Doodle Farm: Breeds and Beasts is free this week on the Epic Games Store for mobile
Free Giveaway Get a new free game every Thursday on Mobile and PC! App available globally on Android, and on iPhone and iPad in the EU.

Posted by
Cătălin George Feștilă
Labels:
2025,
2025 news,
Epic Games,
Epic Store,
mobile application,
news
miercuri, 22 octombrie 2025
News : ChatGPT Atlas browser.
Bring ChatGPT with you across the web for instant answers, smarter suggestions, and help with tasks—all with privacy settings you can control.
Chat GPT comes with a new browser.
Only on macOS, see the official website.
marți, 21 octombrie 2025
News : Google search comes with tools.
If you type "color picker" in the Google search box, it will show you this tool and many others ...

luni, 20 octombrie 2025
News : Google AI Studio - online apps and projects.
Google AI Studio is a browser-based platform that lets you:
- access Gemini AI models
- apps and code development projects
- fast prototyping and easy integration
You can see on this official website.
I tested the Fit Check application with my avatar photo, and this is the result:

Posted by
Cătălin George Feștilă
Labels:
2025,
2025 news,
artificial intelligence,
google,
Google AI Studio,
news
News : new Runway Aleph features for video
New changes on the Runway website :
Runway Aleph is a state-of-the-art in-context video model, setting a new frontier for multi-task visual generation, with the ability to perform a wide range of edits on an input video such as adding, removing, and transforming objects, generating any angle of a scene, and modifying style and lighting, among many other tasks.
Posted by
Cătălin George Feștilă
Labels:
2025,
2025 news,
2D,
3D,
artificial intelligence,
design,
graphic,
graphics,
news
News : Nasa - Carbon dioxide (CO2) animations.
You can find some graphics about Carbon dioxide (CO2) - old data, on NASA website.
Carbon dioxide (CO2) is the most prevalent greenhouse gas driving global climate change. However, its increase in the atmosphere would be even more rapid without land and ocean carbon sinks, which collectively absorb about half of human emissions every year. Advanced computer modeling techniques in NASA's Global Modeling and Assimilation Office allow us to disentangle the influences of sources and sinks and to better understand where carbon is coming from and going to.
NOTE: Due to the lapse in federal government funding, NASA is not updating this website. We sincerely regret this inconvenience.
See this website.
duminică, 19 octombrie 2025
News : Maintenance release: Godot 4.5.1
This new released was on 15 octomber 2025.
We saw the release of Godot 4.5 less than a month ago, and have already been absolutely overwhelmed with the positive reception. Since then, our team has been hard at work on the development phase of Godot 4.6 (and subsequently its first snapshot), and ensuring that any new regressions/bugs reported after the release of 4.5 are dealt with swiftly. The community has done an absolutely fantastic job at helping our team find and squash all of those aforementioned issues, and paved the way for us to deliver 4.5.1-stable for you today!
See more on the official blog.
sâmbătă, 18 octombrie 2025
Security : WinSpy++
WinSpy++ is a handy programmer’s utility which can be used to select and view the properties of any window in the system. WinSpy is based around the Spy++ utility that ships with Microsoft Visual Studio.
See this website.
Posted by
Cătălin George Feștilă
Labels:
2025,
2025 news,
news,
security,
tool,
windows 10,
Windows OS
joi, 16 octombrie 2025
News : Demo: Visualizing AlphaEarth Satellite Embeddings in 3D
Today I tested the new Google DeepMind on this official website. You need to have an billing account for commercial use , because : "Error: Cannot register a project without a billing account for commercial use."
I tested with : You are now registered for noncommercial use.
You can see my simple project on my python blogger ...
Google DeepMind has released a new satellite embedding dataset called AlphaEarth. This dataset contains annual satellite embeddings from 2017 to 2024, with each pixel representing a 10x10 meter area. The dataset is available on Google Earth Engine, and can be used to train machine learning models to classify satellite imagery.
Posted by
Cătălin George Feștilă
Labels:
2025,
2025 news,
Google DeepMind,
maps,
news,
programming,
web development
News : NVIDIA NeMo and NIM: AI Tools
Today I tested this and works well:
NVIDIA NeMo™ is an end-to-end platform for building and customizing enterprise-grade generative AI models that can be deployed anywhere, across cloud and data centers.
NeMo Curator is a GPU-accelerated data-curation tool that improves generative AI model accuracy by processing text, image, and video data at scale for training and customization. Apply for the video curation early access program below.
NVIDIA is revolutionizing the way developers build and deploy generative AI with two powerful platforms: NeMo and NIM.NeMo offers a modular framework for customizing large language models, multimodal agents, and speech systems, while NIM delivers optimized microservices for fast, scalable inference across any NVIDIA-powered infrastructure.
Whether you're building enterprise-grade AI or experimenting with cutting-edge models, these tools provide the flexibility, performance, and simplicity needed to accelerate innovation. Explore NeMo's capabilities on the NeMo Developer Portal and test NIM APIs directly via NVIDIA Build.
News : Blender 5 - AWESOME New Features Hands-On! from Gamefromscratch.
... another good video from Gamefromscratch about Blender 3D version 5.
miercuri, 15 octombrie 2025
News : The new Gleam programming language.
Gleam is a friendly language for building type-safe systems that scale!
The power of a type system, the expressiveness of functional programming, and the reliability of the highly concurrent, fault tolerant Erlang runtime, with a familiar and modern syntax.
See the official webpage.
marți, 14 octombrie 2025
luni, 13 octombrie 2025
News : myCompiler I.D.E. online tool.
An online IDE to edit, compile and run code
This online I.D.E. supports 16 programming languages with features like auto-completion, syntax highlighting, and more ...
Posted by
Cătălin George Feștilă
Labels:
2025,
2025 news,
news,
online,
online tool,
programming,
web development
duminică, 12 octombrie 2025
News : Copilot and poetry - 12.10.2025 .
I spend some time with copilot and this is the result:
Upon a map of flick’ring light,
Where firewalls rise like rampart height,
Two wardens clad in ciphered mail
Did ride through circuits worn and frail.
One bore a sigil, firm and bright,
A seal of truth in cryptic rite;
The other held a lance of scan,
To pierce the veil of shadowed man.
Beneath their steeds, the troglodytes
Did crawl through folders lost to blight,
And relics, cursed with ancient code,
Lay buried deep in data’s road.
Above, the flags of packets torn
Did flutter like a ghost forlorn,
And whispers from the RAM-bound vale
Spoke of passwords grown cold and pale.
Yet lo — within a server’s keep,
Where silence coils and shadows creep,
A wraith did stir, with fingers thin,
A hacker veiled in digital sin.
No helm he wore, nor armor true,
But bore a charm of twisted hue:
An app disguised, a spell unclean,
A script of chaos, sharp and keen.
The wardens felt his crooked trace,
Not by scent, but by misplace —
By angles bent, by logs unround,
By logic’s cry, a broken sound.
They rode unto the cache-bound gate,
Where silence held the hand of fate,
And with a gesture, swift and grim,
They cast the wraith from system’s rim.
No clash of swords, no cry of war,
Just order, woven evermore —
In realms where not all souls are brave,
And some but seek a silent grave.
sâmbătă, 11 octombrie 2025
News : Bun v1.3 is here !
Whats new ?!
- Security Scanner API
- Bun 1.3 introduces a Security Scanner API that checks packages before installation.
- It integrates with tools like Socket, which scans for malware, typosquatting, and risky dependencies during bun install or bun add.
- You can enforce organization-wide security policies in local development and CI environments.
- 🐘 PostgreSQL Client (Coming Soon)
- A PostgreSQL client is planned for Bun 1.2 but already available in preview builds.
- This adds to Bun’s built-in SQLite support, expanding its database capabilities.
- 🧠 Chrome DevTools Debugging
- Bun now supports V8 heap snapshots, allowing developers to debug memory usage using Chrome DevTools.
- This bridges the gap between Bun’s JavaScriptCore engine and Chrome’s debugging tools.
- 🌐 S3 API Support
- Bun adds support for S3-compatible APIs, including AWS, Google Cloud, DigitalOcean, and Cloudflare.
- You can use Bun.s3 or Bun.S3Client to interact with storage services, including generating presigned URLs.
- 🧩 HTML & CSS Bundling (Experimental)
- Bun can now bundle HTML and CSS files alongside JavaScript using experimental flags.
- This enables building optimized static sites with tree-shaking and asset copying.
- These features make Bun 1.3 a more powerful and secure tool for building modern web
News : xBrowserSync
Browser syncing as it should be: secure, anonymous and free!
xBrowserSync respects your privacy and gives you complete anonymity. No sign up is required and no personal data is ever collected. To start syncing simply download xBrowserSync for your desktop browser or mobile platform, enter an encryption password and click Create New Sync! You’ll receive an anonymous sync ID which identifies your data and can be used to access your data on other browsers and devices.
Read more on the official website.
Posted by
Cătălin George Feștilă
Labels:
2025,
2025 news,
news,
online,
online tool,
web,
website,
websites
vineri, 10 octombrie 2025
News : ... WiGLE WiFi Wardriving to deal with wifi networks !!
... if you can block wifi networks, then you can use this android application to get all wifi device !!
* 2.95 - 2.96 (09/25/2025)
Vector based encryption icons
Check token state to handle device migrations
Informative 429 error message
Various bug fixes
joi, 9 octombrie 2025
News : Blockbench 5 new changes .
The new Blockbench 5 is a major update including a new user interface design, improved animation tools, new modelling tools.
This can automatically create a UV map and template for your model so that you can start painting directly on the model in 3D .
See the official website.
News : SuperSplat - online tool.
SuperSplat is an advanced browser-based editor for manipulating and optimizing 3D Gaussian Splats.
See this online tool.
Posted by
Cătălin George Feștilă
Labels:
2025,
2025 news,
3D,
design,
graphic,
graphics,
news,
online,
online tool
marți, 7 octombrie 2025
News : New videos from Moho Animation Software.
... the last videos from Moho Animation Software - the official youtube channel :

News : Game smarter, not harder with Snapdragon Elite Gaming
... graphics and design from Snapdragon - the official youtube channel .
News : GIMP - new release
The GIMP team released version 3.0.6 on October 6, 2025
We are happy to announce the third micro-release GIMP 3.0.6. During our development of GIMP 3.2 we’ve found and fixed a number of bugs and regressions. We have backported many of those bugfixes to this stable release, so you don’t have to wait for the upcoming 3.2 release candidate to receive them!
Read on the official website .
luni, 6 octombrie 2025
duminică, 5 octombrie 2025
sâmbătă, 4 octombrie 2025
vineri, 3 octombrie 2025
News : Rebelle 8 is Here - free trial only 30 days !
Note: I tested with my old laptop with 4Gb RAM and it runs very slowly. With a similar open source software with similar features on the same hardware the open source software was much faster.
... from twitter : We’re excited to announce that Rebelle 8 has officially moved out of Early Access and is now available as the full Rebelle 8.1 release! Try Rebelle 8 for free for 30 days:
News : Google Apps Script - check websites for google ads.
Today, I will show you a way to check for the existence of Google Ads through a script or implementation, similar to what exists on Blogger. I haven't tested it very thoroughly, but it seems functional and is a good starting point in programming with GAScript. I used a spreadsheet and entered a personal Blogger in cell A2. I still recommend following Google's conditions because Google is very clever at detecting fakes and has protections even against attacks...
function onOpen() {
// Creează un meniu personalizat în Spreadsheet
var ui = SpreadsheetApp.getUi();
ui.createMenu('Verificare Reclame Blogger')
.addItem('Verifică Reclame', 'checkBloggerAds')
.addItem('Verifică și Trimite Email', 'checkBloggerAdsAndEmail')
.addToUi();
}
function checkBloggerAds() {
// Obține foaia activă
var sheet = SpreadsheetApp.getActiveSpreadsheet().getActiveSheet();
// Citește datele din coloana A (website-urile)
var range = sheet.getRange("A2:A" + sheet.getLastRow());
var urls = range.getValues();
var results = [];
// Indicatori specifici pentru Google Ads/AdSense pe Blogger
var adsScriptPattern = "adsbygoogle.js"; // Pentru coloana B
var bloggerAdsPatterns = [
"data-ad-client", // Atribut specific AdSense
"google_ad_client", // Folosit în codurile mai vechi sau automate
'class="adsbygoogle"' // Tag-ul <ins> folosit pentru reclame
];
// Verifică fiecare URL
for (var i = 0; i < urls.length; i++) {
var url = urls[i][0];
if (url) { // Verifică dacă URL-ul nu este gol
try {
var response = UrlFetchApp.fetch(url, { muteHttpExceptions: true });
var content = response.getContentText();
var scriptFound = content.includes(adsScriptPattern);
var bloggerAdsFound = false;
// Verifică indicatorii specifici Blogger
for (var j = 0; j < bloggerAdsPatterns.length; j++) {
if (content.includes(bloggerAdsPatterns[j])) {
bloggerAdsFound = true;
break;
}
}
// Adaugă rezultatele pentru coloanele B și C
results.push([scriptFound ? "Da" : "Nu", bloggerAdsFound ? "Da" : "Nu"]);
} catch (e) {
results.push(["Eroare: " + e.message, "Eroare: " + e.message]);
}
} else {
results.push(["", ""]);
}
}
// Scrie rezultatele în coloanele B și C
if (results.length > 0) {
sheet.getRange(2, 2, results.length, 2).setValues(results);
}
}
function checkBloggerAdsAndEmail() {
// Obține foaia activă
var sheet = SpreadsheetApp.getActiveSpreadsheet().getActiveSheet();
// Citește datele din coloana A (website-urile)
var range = sheet.getRange("A2:A" + sheet.getLastRow());
var urls = range.getValues();
var results = [];
var emailBody = "Rezultatele verificării reclamelor Google Ads pe blogurile Blogger:\n\n";
emailBody += "URL | Script adsbygoogle.js | Implementare Blogger\n";
// Indicatori specifici pentru Google Ads/AdSense pe Blogger
var adsScriptPattern = "adsbygoogle.js"; // Pentru coloana B
var bloggerAdsPatterns = [
"data-ad-client",
"google_ad_client",
'class="adsbygoogle"'
];
// Verifică fiecare URL și construiește corpul email-ului
for (var i = 0; i < urls.length; i++) {
var url = urls[i][0];
if (url) { // Verifică dacă URL-ul nu este gol
try {
var response = UrlFetchApp.fetch(url, { muteHttpExceptions: true });
var content = response.getContentText();
var scriptFound = content.includes(adsScriptPattern);
var bloggerAdsFound = false;
// Verifică indicatorii specifici Blogger
for (var j = 0; j < bloggerAdsPatterns.length; j++) {
if (content.includes(bloggerAdsPatterns[j])) {
bloggerAdsFound = true;
break;
}
}
// Adaugă rezultatele pentru coloanele B și C și la email
results.push([scriptFound ? "Da" : "Nu", bloggerAdsFound ? "Da" : "Nu"]);
emailBody += `${url} | ${scriptFound ? "Da" : "Nu"} | ${bloggerAdsFound ? "Da" : "Nu"}\n`;
} catch (e) {
results.push(["Eroare: " + e.message, "Eroare: " + e.message]);
emailBody += `${url} | Eroare: ${e.message} | Eroare: ${e.message}\n`;
}
} else {
results.push(["", ""]);
}
}
// Scrie rezultatele în coloanele B și C
if (results.length > 0) {
sheet.getRange(2, 2, results.length, 2).setValues(results);
}
// Trimite email-ul
MailApp.sendEmail({
to: "catalinfest@gmail.com",
subject: "Rezultate Verificare Reclame Google Ads pe Blogger",
body: emailBody
});
}
Abonați-vă la:
Comentarii (Atom)

