
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,
vineri, 1 august 2025
News : NodeJS and JavaScript security packages over sercurity areas.
Because I used NodeJS and JavaScript on web development, today I will show you some good packages for security using tree main areas of security ...
The first one:
ACLs known as Access Control Lists this use node_acl - npm package.
Will allow you to integrates with Express, also supports role-based access control known as RBAC, and stores rules in memory, Redis, or MongoDB.
The main goal is to define user roles and permissions for resources.
The RBAC known as Role-Based Access Control): A security model where user permissions are assigned based on roles. Each role has specific access rights to resources, simplifying management and ensuring users only access what’s necessary for their job.
The second one:
SAML known as Security Assertion Markup Language:
This allow you to use passport-saml - npm package.
This package configure SAML strategy in Express for secure authentication.
Enables SSO by integrating with identity providers (e.g., Okta, Azure AD).
The SSO known as Single Sign-On is a system allowing users to authenticate once with an identity provider as IdP known as Identity Provider and access multiple applications without re-entering credentials, improving user experience and security.
The IdP is a system that manages user identities and authenticates users for applications.This verifies user credentials (e.g., username/password) and issues security tokens (e.g., SAML assertions) to enable single sign-on aka SSO across trusted services, like Okta or Azure AD.
The last one is audit Log known as SIEM:
SIEM known as Security Information and Event Management is a system that collects, analyzes, and correlates logs and event data from various sources (e.g., systems, applications) in real-time.
This use winston or bunyan - npm packages for logging.
The main goal is to capture system/user events and integrate with SIEM systems like Splunk via HTTP or TCP forwarding.
Store logs in JSON format for compatibility.
Posted by
Cătălin George Feștilă
Labels:
2025,
2025 news,
development,
javascript,
news,
nodejs,
security,
web development

joi, 31 iulie 2025
News : Ollama’s new app.
Ollama’s comes with new app available for macOS and Windows.
See the official blog.
miercuri, 30 iulie 2025
News : Vite new changes.
From the official website ...
Vite is a blazing fast frontend build tool powering the next generation of web applications.
Vite makes web development simple again
The last release on GitHub project comes with the version 7.0.6 .
The good news comes from the same GitHub project and the x.com vite account:
The news is on this change log:
7.1.0-beta.0 (2025-07-30)
Posted by
Cătălin George Feștilă
Labels:
2025,
2025 news,
development,
github,
javascript,
news,
vite,
web development

News : app.1min.ai comes with credits for testing artificial intelligence issues.
... another news about the app.1min.ai - online tool.
the development team let users to add credits to test the artificial intelligence issues, I got already 745,000 credits.
you can see in the next image ...

Posted by
Cătălin George Feștilă
Labels:
2025,
2025 news,
artificial intelligence,
model,
models,
news,
online tool

News : Tiny Glade - Release Date Trailer by Ana & Tom.
... today , I saw one post on x.com , aka old twitter.com about the project on steam.
Tiny Glade is a small relaxing game about doodling castles. Explore gridless building chemistry, and watch the game carefully assemble every brick, pebble and plank. There's no management, combat, or wrong answers - just kick back and turn forgotten meadows into lovable dioramas.
This video is from 11 months ago on Ana & Tom - the youtube channel.
Posted by
Cătălin George Feștilă
Labels:
2025,
2025 news,
Ana & Tom,
news,
steam,
video,
video tutorial,
youtube

marți, 29 iulie 2025
News : New videos from UNIGINE.
... the latest videos from the UNIGINE - the official youtube channel.

News : another update on KLING AI !
You can find a new update for artificial intelligence on the official website - KLING AI.
You know already about the KLING AI online tool, and now comes with new changes for the artificial intelligence on the website features tools : KLING AI ver 2.1 and KLING AI 2.1 master !!
luni, 28 iulie 2025
News : Google Apps Script - add link to google document.
Today, I tested how to add a link to google drive document.
I tried some issues with some source code and this issue not work !
Let's see some simple examples:
/**
* Creates a new Google Docs document with a test link.
* This script is intended to verify the functionality of setLinkUrl and document placement in a folder.
*/
function createDocumentWithTestLink() {
const docTitle = "Document Test Link GAS";
const doc = DocumentApp.create(docTitle); // Creates the initial document in My Drive
const body = doc.getBody(); // Gets the body of the document to add content
// Add a paragraph of text to the document body
const paragraph = body.appendParagraph("This is a test link to Google.");
// Define the test URL (ensure it's a complete URL with protocol, e.g., https://)
const testUrl = "https://www.google.com";
// Set the hyperlink for the entire paragraph
try {
paragraph.setLinkUrl(testUrl); // Applies the URL as a hyperlink to the paragraph
Logger.log(`Link "${testUrl}" was successfully set on the paragraph.`);
} catch (e) {
Logger.log(`Error setting the link: ${e.message}`); // Logs any error during link setting
}
// --- NEW: Move the document to the same folder as the spreadsheet ---
try {
const spreadsheet = SpreadsheetApp.getActiveSpreadsheet(); // Gets the currently active spreadsheet
const spreadsheetFile = DriveApp.getFileById(spreadsheet.getId()); // Gets the Drive file object for the spreadsheet
// Get the parent folder(s) of the spreadsheet. Assumes there is at least one parent folder.
// If the spreadsheet is in the root of My Drive, this might require different handling.
const parentFolders = spreadsheetFile.getParents(); // Gets an iterator for parent folders
if (parentFolders.hasNext()) { // Checks if there is at least one parent folder
const parentFolder = parentFolders.next(); // Gets the first parent folder
DriveApp.getFileById(doc.getId()).moveTo(parentFolder); // Moves the newly created document to the parent folder
Logger.log(`Document "${docTitle}" was moved to folder: ${parentFolder.getName()} (${parentFolder.getUrl()})`);
} else {
// If the spreadsheet has no parent folder (i.e., it's in My Drive root), the document stays in root.
Logger.log(`Spreadsheet "${spreadsheet.getName()}" has no parent folder. The document remains in the root.`);
}
} catch (e) {
Logger.log(`Error moving the document to the folder: ${e.message}`); // Logs any error during folder move
}
// ------------------------------------------------------------------
// Get the URL of the created document and log it
const docUrl = doc.getUrl();
Logger.log(`Document was created: ${docUrl}`);
// Display a notification to the user (will appear in the script editor or logs)
SpreadsheetApp.getUi().alert('Document created', `A new document with a test link has been created. Check the logs for the document URL and its folder.`, SpreadsheetApp.getUi().ButtonSet.OK);
}
/**
* Adds an option to the "Custom Menu" to run the test function.
* This function is automatically called when the Google Sheet is opened.
*/
function onOpen() {
SpreadsheetApp.getUi() // Gets the user interface object for the spreadsheet
.createMenu('Custom Menu') // Creates a new custom menu named "Custom Menu"
.addItem('Create Test Link Document', 'createDocumentWithTestLink') // Adds an item to the menu that calls createDocumentWithTestLink
.addToUi(); // Adds the custom menu to the spreadsheet's UI
}
duminică, 27 iulie 2025
sâmbătă, 26 iulie 2025
News : Create your mail from google document!
Now, you can write in your document on google drive and send as mail.
First, click on edge document area to see templates buttons.Click the button Email draft, then will see an template for mail in the document.
You can click to star icon to star your document.
If you lost the visibility of these template buttons, just write something the delete all with backspace key.
This action will make template buttons: Templates, Metting notes, Email draft, More.
Fill with your content for mail, then press the blue M mail button.
This will open an gmail dialog with your data from document, then sent your mail!

Posted by
Cătălin George Feștilă
Labels:
2025,
2025 news,
google,
news,
online,
online tool,
website,
websites

News : Transform Your Development Workflow with Kiro.
Today, I saw this official webpage - kiro.dev.
Go from concept to production and beyond - Kiro is an AI IDE that works alongside you to turn ideas into production code with spec-driven development.
... another video from Kiro - the official youtube channel:
Posted by
Cătălin George Feștilă
Labels:
2025,
2025 news,
artificial intelligence,
development,
Kiro,
news,
video,
youtube

News : Cyberpunk 2077 — Update 2.3 Features Overview
... from eight days ago on Cyberpunk 2077 - the official youtube channel :
vineri, 25 iulie 2025
News : Google Patents source
Google Patents is a free, intuitive tool from Google designed to search and browse patents and patent applications from around the globe. It pulls together information from major patent offices like the USPTO, EPO, and WIPO, among others, creating a centralized hub for patent data. Using Google’s robust search engine, users can locate patents by entering keywords, patent numbers, inventor names, or other specific terms. The platform provides in-depth access to patent documents, including detailed technical descriptions, legal claims, illustrations, and translated texts, making it a vital resource for inventors, researchers, and companies.
Its standout features include powerful search filters, automatic translations for patents in foreign languages, and a straightforward interface for exploring patent details. While it doesn’t handle patent filings, Google Patents is an essential resource for uncovering prior art, studying existing technologies, or diving into innovations
Today, I found this great sci-fi knife design of the Collapsing Blade by Joseph Varner on the google patents website:

News : Introducing Opal.
Discover Opal, a new experimental tool that helps you compose prompts into dynamic, multi-step mini-apps using natural language.
Opal removes the need for code, allowing users to build and deploy shareable AI apps with powerful features and seamless integration with existing Google tools.
Not works on my country : Opal is not available in your country yet
You can try this google tool on the official website.
... another video from Google Developers - the youtube official channel.
Posted by
Cătălin George Feștilă
Labels:
2025,
2025 news,
google,
Google Developers,
news,
video,
video tutorial

News : Mini Trailer Rumba 2.0
Designed from the ground-up for animation, Rumba makes the animation process fast and intuitive. It provides a real-time creative experience that reduces time-consuming tasks to let the animators focus on their artistic expression.
You can read more on the official website.
... another video from Rumba Animation - the official youtube channel.
News : Pixel Composer by MakhamDev.
Today, I saw this project and seams to be a good one:
See more on these webpages: the documentation (WIP) webpage and the Pixel Composer on itch with full feature list.
You can see some videos on the MakhamDev - the official youtube channel.
Posted by
Cătălin George Feștilă
Labels:
2025,
2025 news,
itch,
news,
Pixel Composer,
video,
video tutorial,
youtube

joi, 24 iulie 2025
News : glTF Sizzle Reel
I don't see any post on my blog about The Khronos Group - youtube official channel. I don't know why !?
The Khronos Group, Inc. is an open, non-profit, member-driven consortium of 160 organizations developing, publishing and maintaining royalty-free interoperability standards and vibrant eco-systems for 3D graphics, VR, augmented reality, parallel computation, vision acceleration and machine learning.
News : Star Trek Online - Risa 2025 event comes with a new ship.
The new ship from the Risa 2025 event comes with the MIRANDA interior and these capabilities:


marți, 22 iulie 2025
News : ... the fast version 5.0 of Blender 3D.
I have already seen that version 5.0 Alpha of the Blender 3D software is on YouTube channels. I assume the community is eager to test it. I have followed it and they have stagnated in development. You can see the way the development team works with a repository tool. It is not the only software that has fluctuations in development - Godot had the same progression.
I saw this video today named "Why Blender 5.0 is already getting crazy" from the 3Dan - the official youtube channel.
... and is not only one, most users not use the apha version of software :
The alpha phase of the release life cycle is the first phase of software testing (alpha is the first letter of the Greek alphabet, used as the number 1). In this phase, developers generally test the software using white-box techniques. Additional validation is then performed using black-box or gray-box techniques, by another testing team. Moving to black-box testing inside the organization is known as alpha release.[1][2]
News : What's New in Blender 4.5 LTS! Official Overview .
... from 15 July on the Blender 3D - the official website with the title : What’s New Recap Round-up of what’s new in Blender 4.5 LTS, in detail.
luni, 21 iulie 2025
News : Invoke 6.0 introduces reimagined AI canvas, Flux Kontext, Export to PSD, and Smart Prompt Expansion
Today, I saw this new software from the Invoke - the official youtube channel.
Posted by
Cătălin George Feștilă
Labels:
2025,
2025 news,
Invoke,
news,
video,
video tutorial,
youtube

duminică, 20 iulie 2025
News : See these web browsers ...
Today, I will show these web browsers :
Browser | Developer | Latest Version | Operating Systems | Status | Download Link |
---|---|---|---|---|---|
Chrome | 130.0.6723.58 | Windows, macOS, Linux, Android, iOS | Active | Download | |
Firefox | Mozilla Corporation | 131.0 | Windows, macOS, Linux, Android, iOS | Active | Download |
Edge | Microsoft Corporation | 130.0.2357.46 | Windows, macOS, Linux, Android, iOS | Active | Download |
Internet Explorer | Microsoft Corporation | 11.0.9600.18860 | Windows | Semi-active | Download |
Safari | Apple Inc. | 18.0 | macOS, iOS | Active | Download |
Opera | Opera Software ASA | 103.0.4928.34 | Windows, macOS, Linux, Android, iOS | Active | Download |
SeaMonkey | SeaMonkey Council | 2.53.18 | Windows, macOS, Linux | Active | Download |
Maxthon | Maxthon | 7.1.8.9000 | Windows, macOS, Linux, Android, iOS | Active | Download |
Vivaldi | Vivaldi Technologies | 6.9 | Windows, macOS, Linux, Android | Active | Download |
GNU IceCat | Free Software Foundation, Inc. | 60.7.0 | Windows, macOS, Linux | Active | Download |
Comodo Dragon | Comodo | 60.0.3112.114 | Windows | Active | Download |
Comodo IceDragon | Comodo | 65.0.2.15 | Windows | Active | Download |
Sleipnir | Fenrir Inc. | 6.5.5 | Windows, macOS | Active | Download |
Yandex Browser | Yandex | 25.10.0.3145 | Windows, macOS, Linux, Android, iOS | Active | Download |
Tor | The Tor Project, Inc | 14.0.1 | Windows, macOS, Linux, Android | Active | Download |
Pale Moon | Moonchild | 33.3.0 | Windows, macOS, Linux | Active | Download |
The Classic Browser | The Classic Tools | 2.6 | Windows | Active | Download |
Dooble | Dooble | 2023.12.25 | Windows, macOS, Linux | Active | Download |
TenFourFox | TenFourFox | 45.41.8 | macOS | Discontinued | Download |
Polarity Browser | Polarity | 10.0.4 | Windows | Active | Download |
Crusta Browser | Tarptaeya Inc | 1.4.3 | Windows, macOS | Active | Download |
Otter Browser | Michał Dutkiewicz | 1.0.03 | Windows, macOS, Linux | Active | Download |
Brave | Brave Software Inc. | 1.71.114 | Windows, macOS, Linux, Android, iOS | Active | Download |
Web | The GNOME Web Browser Developers | 47.1 | Linux | Active | Download |
QupZilla | David Rosca | 2.2.6 | Windows, macOS, Linux | Discontinued | Download |
iCab | Alexander Cla Gen | 6.2.2 | macOS | Active | Download |
Chromium | 130.0.6723.58 | Windows, macOS, Linux | Active | Download | |
Sogou Browser | Sogou, Inc. | 12.0.1 | Windows | Active | Download |
Roccat Browser | Runecats | 7.7 | macOS | Active | Download |
360 Security Browser | Qihoo | 14.0.1086.0 | Windows | Active | Download |
SlimBrowser | FlashPeak Inc. | 18.0.0.0 | Windows | Active | Download |
Slimjet | FlashPeak Inc. | 43.0.6.0 | Windows, macOS, Linux | Active | Download |
360 Extreme Explorer | Qihoo | 13.0.2312.0 | Windows | Active | Download |
Konqueror | Konqueror | 24.12.0 | Windows, Linux | Active | Download |
Lunascape | 6.15.2 | Windows, macOS | Active | Download | |
Midori | TwoToasts.de | 11.3.4 | Windows, Linux | Active | Download |
Amaya | W3C | 11.4.7 | Windows, macOS, Linux | Discontinued | Download |
Links | Mikuláš Patočka | 2.29 | Windows, macOS, Linux | Active | Download |
Dillo Web Browser | Dillo | 3.1.0 | macOS, Linux | Active | Download |
Waterfox | Alex Kontos | G6.0.20 | Windows, macOS, Linux | Active | Download |
Epic | Hidden Reflex | 91.0.4017.71 | Windows, macOS | Active | Download |
Iron Browser | SRWare | 98.0.4750.0 | Windows, macOS, Linux | Active | Download |
Avant Browser | Avant Force | 2020 build 3 | Windows | Active | Download |
Fluid | Todd Ditchendorf | 1.8.6 | macOS | Active | Download |
Kylo | Hillcrest Labs | 1.0.1.76141 | Windows, macOS | Discontinued | Download |
GreenBrowser | morequick | 6.9.1223 | Windows | Active | Download |
K-Meleon | kmeleonbrowser.org | 76.5.1 | Windows | Active | Download |
NetSurf | The NetSurf Developers | 3.11 | macOS, Linux | Active | Download |
Baidu Browser | Baidu | 43.23.1000.500 | Windows | Active | Download |
Torch Browser | Torch Media Inc. | 69.2.0.1713 | Windows, macOS | Active | Download |
BriskBard | Salvador Díaz Fau | 3.9.0 | Windows | Active | Download |
surf | suckless.org | 2.0 | Linux | Active | Download |
Citrio | Catalina Group Ltd. | 45.0.2454.266 | Windows, macOS | Discontinued | Download |
uzbl | uzbl | 0.9.1 | Linux | Discontinued | Download |
Conkeror | Conkeror.org | 1.0.4 | Windows, macOS, Linux | Active | Download |
Ibrowse | Stefan Burstroem | 2.5 | AmigaOS | Active | Download |
UC Browser | UCWeb | 7.0.185.1002 | Windows, Android, iOS | Active | Download |
Nano | Nano Browser PVT LTD. | 1.0 | Windows, macOS, Linux | Active | Download |
OmniWeb | The Omni Group | 5.11.2 | macOS | Discontinued | Download |
Arachne | Michal Polák & Jeremiah Zavala | 1.97 | Linux, DOS | Active | Download |
ShenzBrowser | Shenz International | 1.1 | Windows | Active | Download |
Browse3D | Browse3D Corporation | 3.5 | Windows | Discontinued | Download |
Bitty Browser | Turnstyle | Unknown | Windows, macOS, Linux | Discontinued | Download |
Elinks Text WWW Browser | Elinks | 0.17.0 | Linux | Active | Download |
Cốc Cốc Browser | Cốc Cốc | 125.0.255 | Windows, macOS | Active | Download |
Lynx | Thomas Dickey | 2.9.2 | Windows, Linux | Active | Download |
The World Browser | Phoenix Studio | 3.5.0.3 | Windows | Active | Download |
Classilla | Classilla | 9.3.4 | macOS | Discontinued | Download |
TT | Tencent Holdings | 4.8 (1000) | Windows | Active | Download |
Pink browser | Mind Vision Software (MVS) | 1 | Windows | Discontinued | Download |
QtWeb | QtWeb.NET | 3.8.5 | Windows, macOS, Linux | Discontinued | Download |
Stainless | MD Software, LLC | 1.1.5 | macOS | Discontinued | Download |
KidZui | KidZui, Inc | Unknown | Windows | Discontinued | Download |
MenuBox | Cloanto Corporation | 6.0.3.0 | Windows | Active | Download |
WebPositive | Ryan Leavengood | 1.1-alpha | Haiku | Active | Download |
Wyzo media browser | Radical Software Ltd. | 3.6.4 | Windows, macOS | Discontinued | Download |
xombrero | ConformalOpenSource | 1.6.4 | Windows, Linux | Discontinued | Download |
CometBird | CometBird | 11 | Windows | Discontinued | Download |
AWeb | Yvon Rozijn | 3.4 | AmigaOS | Active | Download |
SafeZone Browser | Avast Software s.r.o. | Unknown | Windows | Active | Download |
ZAC Browser | People CD Inc. | 1.5 | Windows, macOS | Discontinued | Download |
Acoo Browser | Acoo Browser | 1.98.744 | Windows | Discontinued | Download |
Timberwolf | FriedenHQ | 4.0.1.0252 | AmigaOS | Discontinued | Download |
Kazehakase | Kazehakase | 0.5.8 | Linux | Discontinued | Download |
rekonq | Andrea Diamantini | 2.4.2 | Linux | Discontinued | Download |
Iceweasel | Debian Project | Unknown | Linux | Discontinued | Download |
Netscape Navigator | Netscape Communications Corporation | 9 | Windows, macOS, Linux | Discontinued | Download |
Swiftweasel | SticKK | 3.5.5 | Linux | Discontinued | Download |
Galeon | The GNOME team | 2.0.7 | Linux | Discontinued | Download |
Flock | Flock, Inc. | 3.6.4 | Windows, macOS, Linux | Discontinued | Download |
Camino | The Camino Project | 2.1.2 | macOS | Discontinued | Download |
Arora | Benjamin C. Meyer | 0.11.0 | Windows, macOS, Linux | Discontinued | Download |
Titan Browser | Titan Browser Corp. | 33.0.1712.0 | Windows | Discontinued | Download |
Shiira | Shiira Project | 2.3 | macOS | Discontinued | Download |
Beonex Communicator | Ben Bucksch | 0.8.2-stable | Windows, macOS, Linux | Discontinued | Download |
xB Browser | XeroBank | 3.9.10.24 | Windows | Discontinued | Download |
AOL Explorer | AOL | 1.5 | Windows | Discontinued | Download |
space time | space time | 1.0.0.2 | Windows | Discontinued | Download |
NeoPlanet | NeoPlanet, Inc | 1.262 | Windows | Discontinued | Download |
Grail | CNRI | 0.6 | Windows, macOS, Linux | Discontinued | Download |
SlimBoat | FlashPeak Inc. | 1.1.54 | Windows, macOS, Linux | Discontinued | Download |
Deepnet Explorer | Deepnet Security | 1.5.3 | Windows | Discontinued | Download |
Rockmelt | Tim Howes & Eric Vishria | 2.2.0 | Windows | Discontinued | Download |
Voyager | VaporWare | 3.3.125 | AmigaOS | Discontinued | Download |
Lobo Java Web Browser | The Lobo Project | 0.98.4 | Windows, macOS, Linux | Discontinued | Download |
Ultrabrowser | Ultrabrowser.com Inc | 11 | Windows | Discontinued | Download |
Xtravo | Jawoco | Unknown | Windows | Discontinued | Download |
KidRocket | KidRocket.org | 1.5.0.2 | Windows | Discontinued | Download |
Crazy Browser | Crazy Browser | 3.1 | Windows | Not Recommended | Download |
Enigma Browser | Advanced Search Technologies, Inc. | 3.8.8 | Windows | Not Recommended | Download |
Nuke Browser | Nuke Tech | 1.01 | Windows | Not Recommended | Download |
vineri, 18 iulie 2025
News : Blender with Stable Diffusion XL Tutorial - 3D mountains.
... another video from the BlenderStudy - the official youtube video.
Posted by
Cătălin George Feștilă
Labels:
2025,
2025 news,
artificial intelligence,
news,
video,
video tutorial,
youtube

News : Sora artificial intelligence comes on Microsoft copilot.
I saw today a new change on Microsoft copilot, the artificial intelligence comes with the Sora.
If you want to simply test whether an artificial intelligence that generates images and videos is well implemented, you need to find the correct prompt that highlights the way the model is created. Here is an example:
Make an video with Romanian actress dancing on beach!
Artificial intelligence will have to decide on implemented selection elements and perform complex movements - just like human dance. One can see how they try to create the image and the body is twisted, and completed with clothes; evidently, variations will be similar and will not go beyond these limits ...

Posted by
Cătălin George Feștilă
Labels:
2025,
2025 news,
artificial intelligence,
Microsoft,
Microsoft Windows,
news,
Sora

joi, 17 iulie 2025
News : KAKU: Ancient Seal – Trailer d'Annonce
... one day ago , another video from the Microids - the official youtube channel .
News : CachyOS July 2025 Release
This is our fifth release this year, and it includes a long-awaited requested feature, improvements for chwd, and more.
The user’s shell can now be chosen at installation time. In the package list selection, there is now an option to choose between cachyos-fish-config and cachyos-zsh-config. If neither is selected, the system will default to Bash. The default configuration will still be Fish, as it was before.
See the official website.
miercuri, 16 iulie 2025
News : Create chat avatar with your voice and your photo !
You can use that online tool with your photo and your voice and you have an avatar online with a chat area!

marți, 15 iulie 2025
News : Krita 5.2.10 Released
Today, I saw this not very old news about Krita software:
Krita 5.2.10 Released!
Wednesday, 2 July 2025
Today we're releasing Krita 5.2.10! This is a bug fix release. After this release we will focus on releasing Krita 5.3.0, the next feature release, and Krita 6.0.0, the first release based on Qt6.
[!NOTE] Note for users of keyboards with more than 12 function keys. Programs like WeChat regularly inject a spurious F22 keypress to get focus. From 5.2.10, Krita will by default ignore any function key higher than F12. If you have a keyboard or other device sending such keypresses, you can enable them by adding the following line to your kritarc file: ... ignoreHighFunctionKeys=false ...
News : DeviantArt - great upgrade to a xcore plan.
Offer valid until July 18, 2025 at 06:59 GMT. Promotion only valid for the initial Core subscription purchased during this sale.
Displayed discount prices are for yearly Core Membership, paid in full at the time of purchase. Additional Core membership period is available at full price. The final price can be seen on the purchase page, before payment is completed.
See some features are very good for a low price:
- Reduced monetization platform fees
- Prompts for DreamUp AI art creation
- Weekly Gems to award Hype and Core badges
- Sta.sh storage
- Advanced Studio capabilities
See the official website.
luni, 14 iulie 2025
News : Plasticity 2025.2 | Major Update
Plasticity 2025.2 introduces a broad set of new tools and improvements focused on surface modeling, analysis, and workflow efficiency. This release adds G0–G2 surface alignment via the new Align command (powered by xNURBS), real-time continuity and curvature analysis tools, fillet shell tension control, and region-based Boolean operations.
Artists will also benefit from enhanced lofting, isoparam subdivision, advanced selection tools, and extended support for operations like imprinting, sweeping, and trimming. Usability has been further refined with recursive duplication, math-enabled input fields, a visual zoom preference, and an updated render experience featuring HDRI environments and 34 physical materials.
duminică, 13 iulie 2025
News : Star Trek Online - new catch ball.
... many baseball equipment were available, and now a new action is coming to catch the ball!

sâmbătă, 12 iulie 2025
vineri, 11 iulie 2025
joi, 10 iulie 2025
miercuri, 9 iulie 2025
News : Tips and Tricks for Proggio Free Timeline Management Solution.
... use the Get Proggio Free button from the official webpage. They want to use it with business email, I used with yahoo with that button.
marți, 8 iulie 2025
News : Expedition 33 | Sandfall Interactive | Houdini Connect
... from 4 days ago from Houdini - the official youtube channel:
luni, 7 iulie 2025
News : Getting Starting Using Android XR in Unity.
Big news for XR developers! Unity's Android XR Public Verified Package is officially here, letting you build production-quality apps and games!
News : Stop Destroying Videogames
I don't know what real and legal is this , but you need to use your official document or number type ...
In my country you need to know this about you and your documents.
Sign this European citizens’ initiative:
This initiative calls to require publishers that sell or license videogames to consumers in the European Union (or related features and assets sold for videogames they operate) to leave said videogames in a functional (playable) state.
Specifically, the initiative seeks to prevent the remote disabling of videogames by the publishers, before providing reasonable means to continue functioning of said videogames without the involvement from the side of the publisher.
The initiative does not seek to acquire ownership of said videogames, associated intellectual rights or monetization rights, neither does it expect the publisher to provide resources for the said videogame once they discontinue it while leaving it in a reasonably functional (playable) state.
You can find this on the official website.
News : Cat Count REVEAL 🐱| Everdream Village – A Cozy Challenge
We are Untold Tales, a specialist game publisher with a soft spot for games with a unique story to tell.
Our team is a collection of industry veterans who have seen both the good and the bad of all things games publishing. So, we’re here to “cut the crap” out of a lot of the games publishing nonsense. We’re about treating devs and players with respect and openness.
Run by real people with industry experience, we’re both data and idea driven in how we help game creators in development, promotion and publishing.
See the official website.
duminică, 6 iulie 2025
News : 10 Best Circuit Simulators for 2025!
Posted by
Cătălin George Feștilă
Labels:
2025,
2025 news,
design,
news,
online tool,
website,
websites

News : The lovable AI-powered platform.
Build real web apps fast using natural language with Lovable
Lovable is an AI-powered platform that enables users of any skill level to create full-stack web applications without requiring coding expertise by simply describing what they want in plain English. Instead of hiring developers, users can generate web apps or websites instantly. - taking you from idea to app as fast as possible.
See more on the official website.
Visual Edits DO NOT consume any credits, so it’s totally FREE to use.
You can make multiple changes before saving them all at once.
Tailwind-native controls: Custom styling without leaving the UI.
News : Three.js Project: Geometric Shapes with TSL
... another video tutorial from the Robot Bobby - the official website.
Posted by
Cătălin George Feștilă
Labels:
2025,
2025 news,
news,
three.js,
video,
video tutorial,
youtube

News : How to Move Real Objects using Geo Nodes (Triangle Parenting in Blender)
... another video live from the CartesianCaramel - youtube channel.
sâmbătă, 5 iulie 2025
News : ... the ASCII editor from Microsoft!
If you do not like Notepad or Notepad++, then you can use the new editing application that comes with the old DOS design with ASCII!
They say on the official microsoft dev blog at May 19th, 2025:
Edit is a new command-line text editor in Windows. Edit is open source, so you can build the code or install the latest version from GitHub!
This CLI text editor will be available to preview in the Windows Insider Program in the coming months. After that, it will ship as part of Windows 11!
The news comes from development team. They comes with an released version last 3 weeks ago and last changes on development comes 3 days ago !!!
Use the widget tool to install:
winget install Microsoft.Edit
Found Edit [Microsoft.Edit] Version 1.2.0
This application is licensed to you by its owner.
Microsoft is not responsible for, nor does it grant any licenses to, third-party packages.
Downloading https://github.com/microsoft/edit/releases/download/v1.2.0/edit-1.2.0-x86_64-windows.zip
██████████████████████████████ 929 KB / 929 KB
Successfully verified installer hash
Extracting archive...
Successfully extracted archive
Starting package install...
Path environment variable modified; restart your shell to use the new value.
Command line alias added: "edit"
Successfully installed
joi, 3 iulie 2025
miercuri, 2 iulie 2025
News : SpaceCraft | Devblog | Gameplay Overview
Shiro Games is an independent video game development studio based in Bordeaux, France. Our team is made of talented and passionate developers who strive for excellence.
marți, 1 iulie 2025
News : Adobe Firefly - Free Generative AI - not free.
It is not entirely free, this online tool makes you two cartoon videos and then shows you the prices.
The last prompt was:
Mos Craciun coboara din cer impreuna cu sania plina cu cadouri si cu toti renii inhamati la aceasta din partea de stanga sus a ecranului - este abia vizibil si minimizat si se apropie, se mareste, si se opreste cu sania in stanga jos si renii aliniati catre dreapta in marime naturala ... acestia sunt nervosi si raman incremeniti si se transforma in figuri de zapada !
See the result :

luni, 30 iunie 2025
News : World’s Largest Hackathon presented by Bolt with the $1M+ in prizes.
... another project for this hackathon: World’s Largest Hackathon presented by Bolt
Build with AI for a shot at some of the $1M+ in prizes.
You can find my project on the official webpage.
Posted by
Cătălin George Feștilă
Labels:
2025,
2025 news,
artificial intelligence,
bolt.new,
generative AI,
google,
hackathon,
netlify,
news

sâmbătă, 28 iunie 2025
Blender 3D : create winter sprites with RealSnow addon.
A simple method to create snow sprites. I imported an image with a fence, created a roof for each slat using a subdivided and bent plane to be able to put snow with the RealSnow addon. I used an array to create a matrix and used the RealSnow addon to add the snow. I just need to hide the fence, and as it looks from the render, I will have various sprites for the fence.


vineri, 27 iunie 2025
News : Discord limited channels and whiteboard app.
I tried few days ago to use an discord server invitation, but I got an error ... this is the main reason:
Your invite issue and the notification about reaching the channel limit relate to Discord's restrictions on server and channel memberships. Users can only join up to 100 servers (or up to 200 with Discord Nitro) and per server, the maximum channel limit is 500.
Discord comes with an whiteboard application for teams and users:

joi, 26 iunie 2025
miercuri, 25 iunie 2025
News : STO event - 8000 dilithium rewards !
I see the new RISA event ... maybe this will be the next ship ??
After rewards , today is the first day for 8000 dilithium rewards !
See wikipedia article : Dilithium (Star Trek)



marți, 24 iunie 2025
News : Bluesky social app with the Atmosphere Protocol.
Bluesky is a social app that is designed to not be controlled by a single company. We're creating a version of social media where it's built by many people, and it still comes together as a cohesive, easy-to-use experience. We've done this by building Bluesky on the AT Protocol, an open source toolbox for building social apps that can all talk to each other.
Traditional social networks are often closed platforms with a central authority. There’s a small group of people who control those companies, and they have total control over how users can use the platform and what developers can build.
As a developer, if you try to build a new app, you have to overcome network effects to rebuild the social graph from scratch, and if you try to build on the APIs of these companies they can cut you off and kill your company in the blink of an eye. As a creator, you might spend years building an audience only to lose access to it when the platform changes the rules on you.
You can find me at this social account
News : Developer Update | Season 17: Map Updates, Stadium Heroes, & More
Senior Game Designer Dylan Snyder, UI Artist Sadie Boyd, and Senior Systems Designer Connor Kou are here to go over some of the awesome new arrivals coming during Season 17!
luni, 23 iunie 2025
News : Lemmy Release v0.19.12
Lemmy is a self-hosted social link aggregation and discussion platform. It is completely free and open, and not controlled by any company. This means that there is no advertising, tracking, or secret algorithms. Content is organized into communities, so it is easy to subscribe to topics that you are interested in, and ignore others. Voting is used to bring the most interesting items to the top.
Read more on the official website.
News : my first generator on perchance.org
My first generator on the official perchance.org.
Is very easy to use if you know javascript. I tested with two plugins and with canvas area. First is a random basic text generator and second one will generate image based on text prompt.

Posted by
Cătălin George Feștilă
Labels:
2025,
2025 news,
2D,
drawing,
graphic,
graphics,
news,
online tool,
perchance

News : O&O ShutUp10++ - Free antispy tool for Windows 10 and 11.
O&O ShutUp10++ means you have full control over which comfort functions under Windows 10 and Windows 11 you wish to use, and you decide when the passing on of your data goes too far. Using a very simple interface, you decide how Windows 10 and Windows 11 should respect your privacy by deciding which unwanted functions should be deactivated.
See this tool on the official website.
duminică, 22 iunie 2025
vineri, 20 iunie 2025
News : YouTube Data Analysis Workflow - my hackathon project on devpost
Here I managed with difficulty, the internet and this old laptop are slow, but I uploaded the project for the Agent Development Kit Hackathon with Google Cloud ...
See my project on the official website.
Project submitted! Continue to edit your project until the hackathon deadline: June 23, 2025 at 08:00pm EDT.
Posted by
Cătălin George Feștilă
Labels:
2025,
2025 news,
ADK,
Agent Development Kit,
devpost,
google,
Google Colab,
hackathon,
news,
python,
video,
youtube

joi, 19 iunie 2025
News : Google Apps Script - get products by region into new sheet.
... this is source code for search products on my region using google apps script:
function onOpen() {
SpreadsheetApp.getUi()
.createMenu('Ocazii Scraper')
.addItem('Scrape placa-de-baza', 'scrapeProcess_placa_de_baza')
.addToUi();
}
function scrapeProcess_placa_de_baza() {
const url_placa_de_baza = "https://www.okazii.ro/componente-computere/placa-de-baza/?judete_lp=35&sort=pret_asc";
let html;
try {
const response = UrlFetchApp.fetch(url_placa_de_baza);
html = response.getContentText();
} catch (error) {
Logger.log("Error fetching HTML: " + error.message);
return;
}
const itemRegex = /<div class="list-item[\s\S]*?<h2>[\s\S]*?<a[^>]+href="(.*?)"[^>]+title="(.*?)"[\s\S]*?<span class="prSup"><span>(\d+)<\/span>[\s\S]*?<span class="prList"><span>([\d,]+)<\/span>/g;
const spreadsheetName = "placa_baza_200625";
const spreadsheet = SpreadsheetApp.getActiveSpreadsheet();
const sheet = spreadsheet.getSheetByName(spreadsheetName) || spreadsheet.insertSheet(spreadsheetName);
// Adaugă headere dacă e un sheet nou
if (sheet.getLastRow() === 0) {
sheet.appendRow(["Data", "Titlu", "Href", "Pret", "Livrare"]);
}
const now = new Date();
const formattedDate = Utilities.formatDate(now, SpreadsheetApp.getActive().getSpreadsheetTimeZone(), "ddMMyy");
let match;
while ((match = itemRegex.exec(html)) !== null) {
let [_, href, title, price, delivery] = match;
delivery = delivery.replace(",", "."); // înlocuiește virgula pentru formatare numerica
const row = [formattedDate, title, href, price, delivery];
sheet.appendRow(row);
}
}
Posted by
Cătălin George Feștilă
Labels:
2025,
2025 news,
google,
Google Apps Script,
news,
open source,
source code,
tutorial,
tutorials

News : Construct 3 r444.2 Beta.
A new Beta version of Construct 3 has just been published - please note that Beta versions are not as thoroughly tested as Stable versions. If you choose to use Beta versions, please ensure you backup your work regularly and are willing to file bug reports if you run into any issues.
See the official website.
miercuri, 18 iunie 2025
News : Libre Graphics Meeting 2025 on inkscape website
Right after Inkscape Summit in Nuremberg, from May 28th to the 31st, the team attended to the Libre Graphics Meeting 2025, also in Nuremberg. It was a great opportunity to learn and share, and a unique experience to see how Inkscape contributes to the Libre Graphics scenario globally.
You can read about this on the inkscape official website.
News : Upcoming (serious) Web performance boost by Adam Scott.
... Starting with 4.5 dev 5, you can expect your Web games to run a little bit more smoothly, without having to do anything. Especially when things get chaotic (for your CPU). It isn’t a silver bullet for poorly optimized games, but it will help nonetheless. Also, note that it cannot do anything for GPU rendering bottlenecks.
... From here on out, the 4.5 release official templates will only support WebAssembly SIMD-compatible browsers in order to keep the template sizes small. We generally aim to maintain compatibility with the oldest devices we can. But in this case, the performance gains are too large to ignore and the chances of users having browsers that are that far out of date is too small relative to the potential benefits.
See the full blog article from the official website.
marți, 17 iunie 2025
News : Meet Stridewing - Your Wildest Travel Companion
... today I found this game by White Frame Technologies LLC:
Explore cosmic worlds, build unique bases, and battle for resources in this browser-based sandbox game. Interact with players from around the globe
duminică, 15 iunie 2025
sâmbătă, 14 iunie 2025
News : Dear Roblox Developers...
... another video from the Crusherfire - the official youtube channel.
Posted by
Cătălin George Feștilă
Labels:
2025,
2025 news,
news,
Roblox,
Roblox Studio,
video,
video tutorial,
youtube

joi, 12 iunie 2025
News : Another videos from https://www.weavy.ai !
Professional design platform unifying AI models with professional editing tools. Currently in private beta with selected creators. ... by https://www.weavy.ai

Posted by
Cătălin George Feștilă
Labels:
2025,
2025 news,
artificial intelligence,
news,
online tool

News : the app.1min.ai online tool comes new models !
I saw today these new changes into the app.1min.ai - online tool with a lot of artificial intelligence models!

Posted by
Cătălin George Feștilă
Labels:
2025,
2025 news,
artificial intelligence,
model,
models,
news,
online tool

News : FOSDEM 2025 Talk: From Pixels to Procedures.
Graphite is a free, open source vector and raster graphics editor, available now in alpha. Get creative with a fully nondestructive editing workflow that combines layer-based compositing with node-based generative design.
The GitHub repo for this project can be found on the github repo - GraphiteEditor/Graphite.
miercuri, 11 iunie 2025
News : FLUX.1 Kontext
Today I found this online tool named FLUX.1 Kontext.
FLUX.1 Kontext revolutionizes AI image generation with advanced text-to-image capabilities. Experience FLUX.1 Kontext's professional-grade quality, supporting image editing, style transfer, and creative workflows. FLUX.1 Kontext empowers creators with intuitive AI tools for stunning visual content.
You can find this online tool on the official webpage.
Today I found this online tool named FLUX.1 Kontext.

Posted by
Cătălin George Feștilă
Labels:
2025,
2025 news,
artificial intelligence,
FLUX.1 Kontext,
news

News : Fedora 42 (Adams) !
Fedora 42 is a version of Fedora released to the public on 15 April 2025[1], under the codename "Adams". This version is notably the first version since Fedora 23 to use a codename. This version updates GNOME to version 48.
Yesterday I installed the Fedora Linux distro with version 42 also known as Adams, on the old Cosmic environment.
The packages were installed correctly and updated to version 42. The Cosmic environment, although it has a pretty good design, is just as poor as some of the implemented applications. I tried with about three screenshot applications to take a screenshot and I couldn't succeed. I noticed some packages for basic and cosmic implementation, but they didn't solve anything. Moreover, it seems that cosmic is related to rust and it's throwing me some strange messages!!!
I had to take a picture of the screen for this installation ... after all, it is a test version from the Fedora team based on RedHat linux!

Abonați-vă la:
Postări (Atom)