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,
duminică, 30 martie 2025
sâmbătă, 29 martie 2025
News : Commandos: Origins aims to bring back a long-dormant but legendary franchise .
The year is 1940 and World War II is in full swing. With Britain the lone bastion against the onrushing tide of fascism, Prime Minister Winston Churchill asks for the bravest of the brave to fight behind enemy lines and buy the Allies more time. This is the setup for Commandos: Origins, the next iteration of the classic real-time tactics series where a select few soldiers are sent out on missions to throw a wrench in the plans of the Nazi war machine.
See more on the official website with a video from the KalypsoMediaGroup - youtube channel .
Posted by
Cătălin George Feștilă
Labels:
2025,
2025 news,
Epic Games,
Epic Store,
KalypsoMediaGroup,
news,
video,
youtube

News : Godot XR update - March 2025
In the second half of February 2025, the Godot XR Community held their latest Godot XR Game Jam. It was organised by Bastiaan Olij and Malcolm Nixon acting in their roles as representatives of the general Godot XR Community.
...
See this news on the godot official blogger.
News : Google Apps Script - add movies from website.
This source code with GAScript add few movies from cinemagia website:
This is the source code:

function scrapeProcessAndCleanUp() {
const url = "https://www.cinemagia.ro/program-tv/filme-la-tv/filme-pro-tv,antena-1,tvr-1,prima-tv,diva,pro-cinema,film-cafe/azi/";
let html;
try {
const response = UrlFetchApp.fetch(url);
html = response.getContentText();
Logger.log("Fetched HTML content length: ", html.length);
} catch (error) {
Logger.log("Error fetching HTML content: ", error.message);
return;
}
let doc;
try {
doc = DocumentApp.create("Temporary HTML Content");
doc.appendParagraph(html);
doc.saveAndClose();
Logger.log("Document created successfully with ID: ", doc.getId());
} catch (error) {
Logger.log("Error creating/saving document: ", error.message);
return;
}
let text;
try {
const document = DocumentApp.openById(doc.getId());
text = document.getBody().getText();
Logger.log("Document text content length: ", text.length);
} catch (error) {
Logger.log("Error opening document or extracting text: ", error.message);
return;
}
const titles = [...text.matchAll(/<li class="first">(.*?)<\/li>/g)];
const images = [...text.matchAll(/<img src="(https:\/\/static\.cinemagia\.ro\/img\/resize\/db\/movie.*?)"/g)];
const channels = [...text.matchAll(/<span class="r1">(.*?)<\/span>/g)];
const times = [...text.matchAll(/<span class="r2">(.*?)<\/span>/g)];
Logger.log("Titles found: ", titles.length);
Logger.log("Images found: ", images.length);
Logger.log("Channels found: ", channels.length);
Logger.log("Times found: ", times.length);
const extractedData = titles.map((title, index) => {
const image = images[index] ? images[index][1] : "N/A";
const channel = channels[index] ? channels[index][1].trim() : "N/A";
const time = times[index] ? times[index][1].trim() : "N/A";
return {
title: title[1].trim(),
image: image,
channel: channel,
time: time
};
});
try {
const sheet = SpreadsheetApp.getActiveSpreadsheet().getActiveSheet();
const currentDate = new Date();
extractedData.forEach((movie, rowIndex) => {
if (movie.title !== "N/A" && movie.image !== "N/A") {
const imageFormula = `=IMAGE("${movie.image}")`;
const rowIndexAdjusted = sheet.getLastRow() + 1;
sheet.appendRow([currentDate, movie.title, imageFormula, movie.channel, movie.time]);
sheet.setRowHeight(rowIndexAdjusted, 76); // Set row height to 330px
}
});
Logger.log("Processed movies count: ", extractedData.length);
} catch (error) {
Logger.log("Error adding data to spreadsheet: ", error.message);
}
}
This is the result:

Posted by
Cătălin George Feștilă
Labels:
2025,
2025 news,
google,
Google Apps Script,
news,
open source,
source code,
tutorial,
tutorials

vineri, 28 martie 2025
News : Civ Tour: Nepal | Civilization VII !!!
... it's a strategy game, I haven't played it and I don't think I'm going to play it, but I saw someone older than me playing it when the first version came out... I guess it's good.
News : Freja | New Hero Gameplay Trailer | Overwatch 2 - Season 16 on April 22 !
... Try out Freja during her limited-time trial today through Mar 24 before her official arrival in .
Posted by
Cătălin George Feștilă
Labels:
2025,
2025 news,
Blizzard Entertainment,
news,
Overwatch 2,
PlayOverwatch

News : many videos on Stunlock Studios !
We’re crafting groundbreaking, action-packed games with the players as our focus. Inspired by the simplicity of classic games, we add innovative ideas and creative mechanics with one purpose in mind - to give you an instantly exciting experience.
... more on the StunlockStudios - youtube channel .
News : Babylon.js now is on 8.0 ...
... almost a year ago Babylon javascript engine was at version 6.0, these days it reached version 8.0:
Windows 10 : Microsoft Edge WebView2 - stop PID's.
The Microsoft Edge WebView2 can stop some running software if the windows not work well.
I have on this laptop an old Windows 10 with 4 Gb RAM and some services go to low and PIS's are escape from basic running ...
The broker software cannot manage the all changes and Microsoft Edge WebView2 jump even on Copilot and stop my running work.
I thin k was a intrusinon on the windows os with some bad customization ...
Because I don't have time resource for learning Windows administrartion and for my provider of this local area network is a hacker or maybe is hached ... I use artificial intelligence to stop the Microsoft Edge WebView2 PID's that is stop and jump around ...
I created on admin command com this script to solve this part of runnig ...
@echo off
echo Closing processes named msedgewebview2...
tasklist | findstr "msedgewebview2" >nul
if %errorlevel%==0 (
taskkill /IM msedgewebview2.exe /F
echo Processes terminated successfully.
) else (
echo No processes found with the name msedgewebview2.
)
pause
Posted by
Cătălin George Feștilă
Labels:
2025,
artificial intelligence,
error,
Microsoft Windows,
script,
security,
windows 10

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