Pages

vineri, 1 august 2025

News : Another videos from Escape Motions.

News : Plants vs. Zombies

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.

joi, 31 iulie 2025

News : Ollama’s new app.

Ollama’s comes with new app available for macOS and Windows.

miercuri, 30 iulie 2025

News : Vite new changes.

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)

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 ...

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.

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
}

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!

News : Bforartists 4.5.0 - Official Release - 🏛️The Asset Shelf Usability Upgrade

News : Transform Your Development Workflow with Kiro.

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:

News : ... free on Epic Games - 26 july 2025.

News : Cyberpunk 2077 — Update 2.3 Features Overview

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.

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.

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.

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 : Low Poly Tears in Blender! NEW TOOL | Tear Cards Generator

News : ... another videos from Reallusion .

News : Pokémon Friends – Overview Trailer – Nintendo Switch

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 : HomeGrown Devlog - Preparing for Gamescom! - from ThinMatrix.

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.

News : ... an old channel with video tutorials !!

luni, 21 iulie 2025

News : Invoke 6.0 introduces reimagined AI canvas, Flux Kontext, Export to PSD, and Smart Prompt Expansion

duminică, 20 iulie 2025

News : See these web browsers ...

Today, I will show these web browsers :
Active
Browser Developer Latest Version Operating Systems Status Download Link
ChromeGoogle130.0.6723.58Windows, macOS, Linux, Android, iOSActiveDownload
FirefoxMozilla Corporation131.0Windows, macOS, Linux, Android, iOSActiveDownload
EdgeMicrosoft Corporation130.0.2357.46Windows, macOS, Linux, Android, iOSActiveDownload
Internet ExplorerMicrosoft Corporation11.0.9600.18860WindowsSemi-activeDownload
SafariApple Inc.18.0macOS, iOSActiveDownload
OperaOpera Software ASA103.0.4928.34Windows, macOS, Linux, Android, iOSActiveDownload
SeaMonkeySeaMonkey Council2.53.18Windows, macOS, LinuxActiveDownload
MaxthonMaxthon7.1.8.9000Windows, macOS, Linux, Android, iOSActiveDownload
VivaldiVivaldi Technologies6.9Windows, macOS, Linux, AndroidActiveDownload
GNU IceCatFree Software Foundation, Inc.60.7.0Windows, macOS, LinuxActiveDownload
Comodo DragonComodo60.0.3112.114WindowsActiveDownload
Comodo IceDragonComodo65.0.2.15WindowsActiveDownload
SleipnirFenrir Inc.6.5.5Windows, macOSActiveDownload
Yandex BrowserYandex25.10.0.3145Windows, macOS, Linux, Android, iOSActiveDownload
TorThe Tor Project, Inc14.0.1Windows, macOS, Linux, AndroidActiveDownload
Pale MoonMoonchild33.3.0Windows, macOS, LinuxActiveDownload
The Classic BrowserThe Classic Tools2.6WindowsActiveDownload
DoobleDooble2023.12.25Windows, macOS, LinuxActiveDownload
TenFourFoxTenFourFox45.41.8macOSDiscontinuedDownload
Polarity BrowserPolarity10.0.4WindowsActiveDownload
Crusta BrowserTarptaeya Inc1.4.3Windows, macOSActiveDownload
Otter BrowserMichał Dutkiewicz1.0.03Windows, macOS, LinuxActiveDownload
BraveBrave Software Inc.1.71.114Windows, macOS, Linux, Android, iOSActiveDownload
WebThe GNOME Web Browser Developers47.1LinuxActiveDownload
QupZillaDavid Rosca2.2.6Windows, macOS, LinuxDiscontinuedDownload
iCabAlexander Cla Gen6.2.2macOSActiveDownload
ChromiumGoogle130.0.6723.58Windows, macOS, LinuxActiveDownload
Sogou BrowserSogou, Inc.12.0.1WindowsActiveDownload
Roccat BrowserRunecats7.7macOSActiveDownload
360 Security BrowserQihoo14.0.1086.0WindowsActiveDownload
SlimBrowserFlashPeak Inc.18.0.0.0WindowsActiveDownload
SlimjetFlashPeak Inc.43.0.6.0Windows, macOS, LinuxActiveDownload
360 Extreme ExplorerQihoo13.0.2312.0WindowsActiveDownload
KonquerorKonqueror24.12.0Windows, LinuxActiveDownload
Lunascape6.15.2Windows, macOSActiveDownload
MidoriTwoToasts.de11.3.4Windows, LinuxActiveDownload
AmayaW3C11.4.7Windows, macOS, LinuxDiscontinuedDownload
LinksMikuláš Patočka2.29Windows, macOS, LinuxActiveDownload
Dillo Web BrowserDillo3.1.0macOS, LinuxActiveDownload
WaterfoxAlex KontosG6.0.20Windows, macOS, LinuxActiveDownload
EpicHidden Reflex91.0.4017.71Windows, macOSActiveDownload
Iron BrowserSRWare98.0.4750.0Windows, macOS, LinuxActiveDownload
Avant BrowserAvant Force2020 build 3WindowsActiveDownload
FluidTodd Ditchendorf1.8.6macOSActiveDownload
KyloHillcrest Labs1.0.1.76141Windows, macOSDiscontinuedDownload
GreenBrowsermorequick6.9.1223WindowsActiveDownload
K-Meleonkmeleonbrowser.org76.5.1WindowsActiveDownload
NetSurfThe NetSurf Developers3.11macOS, LinuxActiveDownload
Baidu BrowserBaidu43.23.1000.500WindowsActiveDownload
Torch BrowserTorch Media Inc.69.2.0.1713Windows, macOSActiveDownload
BriskBardSalvador Díaz Fau3.9.0WindowsActiveDownload
surfsuckless.org2.0LinuxActiveDownload
CitrioCatalina Group Ltd.45.0.2454.266Windows, macOSDiscontinuedDownload
uzbluzbl0.9.1LinuxDiscontinuedDownload
ConkerorConkeror.org1.0.4Windows, macOS, LinuxActiveDownload
IbrowseStefan Burstroem2.5AmigaOSActiveDownload
UC BrowserUCWeb7.0.185.1002Windows, Android, iOSActiveDownload
NanoNano Browser PVT LTD.1.0Windows, macOS, LinuxActiveDownload
OmniWebThe Omni Group5.11.2macOSDiscontinuedDownload
ArachneMichal Polák & Jeremiah Zavala1.97Linux, DOSActiveDownload
ShenzBrowserShenz International1.1WindowsActiveDownload
Browse3DBrowse3D Corporation3.5WindowsDiscontinuedDownload
Bitty BrowserTurnstyleUnknownWindows, macOS, LinuxDiscontinuedDownload
Elinks Text WWW BrowserElinks0.17.0LinuxActiveDownload
Cốc Cốc BrowserCốc Cốc125.0.255Windows, macOSActiveDownload
LynxThomas Dickey2.9.2Windows, LinuxActiveDownload
The World BrowserPhoenix Studio3.5.0.3WindowsActiveDownload
ClassillaClassilla9.3.4macOSDiscontinuedDownload
TTTencent Holdings4.8 (1000)WindowsActiveDownload
Pink browserMind Vision Software (MVS)1WindowsDiscontinuedDownload
QtWebQtWeb.NET3.8.5Windows, macOS, LinuxDiscontinuedDownload
StainlessMD Software, LLC1.1.5macOSDiscontinuedDownload
KidZuiKidZui, IncUnknownWindowsDiscontinuedDownload
MenuBoxCloanto Corporation6.0.3.0WindowsActiveDownload
WebPositiveRyan Leavengood1.1-alphaHaikuActiveDownload
Wyzo media browserRadical Software Ltd.3.6.4Windows, macOSDiscontinuedDownload
xombreroConformalOpenSource1.6.4Windows, LinuxDiscontinuedDownload
CometBirdCometBird11WindowsDiscontinuedDownload
AWebYvon Rozijn3.4AmigaOSActiveDownload
SafeZone BrowserAvast Software s.r.o.UnknownWindowsActiveDownload
ZAC BrowserPeople CD Inc.1.5Windows, macOSDiscontinuedDownload
Acoo BrowserAcoo Browser1.98.744WindowsDiscontinuedDownload
TimberwolfFriedenHQ4.0.1.0252AmigaOSDiscontinuedDownload
KazehakaseKazehakase0.5.8LinuxDiscontinuedDownload
rekonqAndrea Diamantini2.4.2LinuxDiscontinuedDownload
IceweaselDebian ProjectUnknownLinuxDiscontinuedDownload
Netscape NavigatorNetscape Communications Corporation9Windows, macOS, LinuxDiscontinuedDownload
SwiftweaselSticKK3.5.5LinuxDiscontinuedDownload
GaleonThe GNOME team2.0.7LinuxDiscontinuedDownload
FlockFlock, Inc.3.6.4Windows, macOS, LinuxDiscontinuedDownload
CaminoThe Camino Project2.1.2macOSDiscontinuedDownload
AroraBenjamin C. Meyer0.11.0Windows, macOS, LinuxDiscontinuedDownload
Titan BrowserTitan Browser Corp.33.0.1712.0WindowsDiscontinuedDownload
ShiiraShiira Project2.3macOSDiscontinuedDownload
Beonex CommunicatorBen Bucksch0.8.2-stableWindows, macOS, LinuxDiscontinuedDownload
xB BrowserXeroBank3.9.10.24WindowsDiscontinuedDownload
AOL ExplorerAOL1.5WindowsDiscontinuedDownload
space timespace time1.0.0.2WindowsDiscontinuedDownload
NeoPlanetNeoPlanet, Inc1.262WindowsDiscontinuedDownload
GrailCNRI0.6Windows, macOS, LinuxDiscontinuedDownload
SlimBoatFlashPeak Inc.1.1.54Windows, macOS, LinuxDiscontinuedDownload
Deepnet ExplorerDeepnet Security1.5.3WindowsDiscontinuedDownload
RockmeltTim Howes & Eric Vishria2.2.0WindowsDiscontinuedDownload
VoyagerVaporWare3.3.125AmigaOSDiscontinuedDownload
Lobo Java Web BrowserThe Lobo Project0.98.4Windows, macOS, LinuxDiscontinuedDownload
UltrabrowserUltrabrowser.com Inc11WindowsDiscontinuedDownload
XtravoJawocoUnknownWindowsDiscontinuedDownload
KidRocketKidRocket.org1.5.0.2WindowsDiscontinuedDownload
Crazy BrowserCrazy Browser3.1WindowsNot RecommendedDownload
Enigma BrowserAdvanced Search Technologies, Inc.3.8.8WindowsNot RecommendedDownload
Nuke BrowserNuke Tech1.01WindowsNot RecommendedDownload

vineri, 18 iulie 2025

News : Blender with Stable Diffusion XL Tutorial - 3D mountains.

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 ...

joi, 17 iulie 2025

News : KAKU: Ancient Seal – Trailer d'Annonce

... one day ago , another video from the Microids - the official youtube channel .

News : Alliance Tournament XXI - Teaser Trailer

News : For Honor: Content Of The Week - 17 July

News : The “Biggest” AI That Came Out Of Nowhere! - from Two Minute Papers .

News : Quick Backgrounds in Blender Renders : The FAST & EASY Way (Compositor Tutorial) - from the Grant Abbitt (Gabbitt)

News : 2D Beginner Game: Sprite Flight

News : Consumables in 25 Seconds | Farming Simulator 25

News : Inside Star Citizen | Alpha 4.2.1: Resource Drive

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.

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

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

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.

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.

News : How to Draw Masked Officer | Squid Game

duminică, 6 iulie 2025

News : 10 Best Circuit Simulators for 2025!

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.
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.

News : How to Move Real Objects using Geo Nodes (Triangle Parenting in Blender)

... another video live from the CartesianCaramel - youtube channel.

News : Animating Parkour Tricks from a Reference Video | Cascadeur Timelapse

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
Just use the edit command to run it.

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.

News : The Scope | Destruction of 1DQ1-A Keepstar

News : Through The Nightmares Launch Trailer

marți, 1 iulie 2025

News : Star Trek Online - Risa event 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 :

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.

News : PCC EU Prelims Day 1 | '25 Summer Series | Predecessor Tournament

News : New videos from Houdini !

... the latest videos from the Houdini - youtube channel :

News : GTA Online: Money Fronts Now Available

News : Graphite is AWESOME! from Gamefromscratch.

News : Overgrown! - Official Demo Announcement Trailer

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:

News : Starsand Island NPC Affection System Trailer

News : Two Point Museum - Trailer

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.

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.

News : Lost in Random: The Eternal Die – Launch Trailer – Nintendo Switch

News : Star Citizen | Alpha 4.2: Storm Breaker

News : Partnership Series: Heart Aerospace

News : Dune: Awakening — Accolades Trailer

News : Corrode // Official Map Trailer - VALORANT

News : The Scope | Devastating Clash in Lantorn

News : Event on Star Trek Online - Hearth Of The Master.

vineri, 20 iunie 2025

News : Cast n Chill

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.

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);
  }
}

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.

News : Farmatic Official Reveal Trailer

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 : Tamagotchi Plaza - Nintendo Switch 2 Edition

News : PEAK Trailer: OUT NOW!

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

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

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!

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.

News : Europe's Next Industrial Revolution Has Arrived

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!