Pages

marți, 1 aprilie 2025

News : Taskade's BIG Update: New Table View, Task Automation, and Multi-Feed YouTube & RSS Blogs

News : Charters of Commerce | Announcement Trailer | Victoria 3

... you can follow this game on the official youtube channel - Victoria.
Planned Release Date: 17 Jun, 2025
This game plans to unlock in approximately 2 months
Developer: Paradox Development Studio
Publisher: Paradox Interactive

News : ... news from Ubisoft ??

... new video from UbiSoft : For Honor: Content Of The Week - 1 April
... really ?

News : Gemini 2.5 is so cracked ...

I consider that April 1st April Fools' Day is a serious error propagated.
This video from the AI Search - youtube channel come with examples with Gemini 2. about how good is or not.

luni, 31 martie 2025

News : Animation with CRAYONS! 🖍️

News : This Chrome Extension Makes AI Agents Super Easy!

News : EVE Online Starships Size Comparison

News : STEEL HUNTERS: Hunter Stories - Ursus

Headstrong and stoic Henrietta Björnsdottir worked as a struggling miner before and after Mayday Omega. Upon discovering the suffering Scrappers abandoned on Earth, Henrietta championed their cause and went on to become the First Hunter—one that wasn't created in a lab, but was rather forged through pain and sacrifice amid a fierce battle for Scrapper independence. Now she's ready to take down anyone who threatens the livelihood of any of her Scrappers.
... https://play.steelhunters.com/Steam_YT !

News : The Blender Addon You Probably Haven't Heard Of!

Mira Tools Download: https://github.com/mifth/mifthtools, from the Josh - Blender Bros - youtube channel.

News : Wordfence: An Entrepreneurship Success Story | Wordfence Entrepreneur Essentials #1

... good tool but expensive , I used on my old website.

News : Civilization VII Developer Update - March 2025

News : Unreal engine game tutorials from Mary.

Hello, my name is Mary and this channel was to originally chronicle my journey of learning Blender 3d software, Unity and Unreal game engines. I also do some gameplay videos on my channel as well.
... another video tutorial, you can find more about how to work with unreal game engine on this channel.

News : A MINECRAFT MOVIE – DLC Trailer – Nintendo Switch

A MINECRAFT MOVIE DLC is available now on Nintendo Switch: https://ninten.do/6050qcMZ8

News : Mini Royale - Out Now on the Epic Games Store!

News : Darfall - Lore Trailer | Paradox Arc !

duminică, 30 martie 2025

News : City Tales - Early Access Release date trailer (FGS Spring 2025)

City Tales: Medieval Era is an upcoming city-building game set to enter early access on May 22, 2025. Players will have the opportunity to create and manage their own medieval cities, shaping their kingdoms while managing resources and making choices that influence the narrative.

News : 10,295 FREE 3D Clothing Models: How to Use Them in Blender

Discover where to find over 10,000 free 3D clothing models for your projects and how to use them effectively! I'll walk you through workflows for Blender, Marvelous Designer, and Style3D, so you can create professional results with ease.
...
Where to download 7,225 garments from Marvelous Designer Connect and 3,070 garments from Style3D.
Step-by-step workflows for importing, retopologizing, and simulating garments in Blender and other tools.

News : Star Citizen | Introducing Drake Golem: For the Workers

News : Patapon 1+2 Replay - Announcement Trailer | PS5 Games

News : Top 5 Things You Missed in Undermine | World of Warcraft

News : Build Modes | Mini Tutorial 22 | Kaiserpunk

News : Blight: Survival – Step Into the Marshlands

sâmbătă, 29 martie 2025

News : A MINECRAFT MOVIE DLC Trailer .

News : Nice Day For Fishing | Console Announcement Trailer .

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.

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

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 .

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.