Pages

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 :