Pages

joi, 17 aprilie 2025

Artificial Intelligence: Ollama duplicate model .

Ollama can be install on your computer and changed according with your hardware requirements.
I will show how to duplicate a model and use it, see these commands:
D:\AI_Ollama>ollama list
NAME                ID              SIZE      MODIFIED
orca-mini:3b        2dbd9f439647    2.0 GB    16 hours ago
tinyllama:latest    2644915ede35    637 MB    16 hours ago
gemma2:2b           8ccf136fdd52    1.6 GB    16 hours ago
llama3.1:latest     46e0c10c039e    4.9 GB    5 weeks ago
llava:latest        8dd30f6b0cb1    4.7 GB    2 months ago

D:\AI_Ollama>
D:\AI_Ollama>
D:\AI_Ollama>
D:\AI_Ollama>ollama show tinyllama:latest --modelfile
# Modelfile generated by "ollama show"
# To build a new Modelfile based on this, replace FROM with:
# FROM tinyllama:latest

FROM C:\Users\nicol\.ollama\models\blobs\sha256-2af...
TEMPLATE "<|system|>
{{ .System }}
<|user|>
{{ .Prompt }}
<|assistant|>
"
SYSTEM You are a helpful AI assistant.
PARAMETER stop <|system|>
PARAMETER stop <|user|>
PARAMETER stop <|assistant|>
PARAMETER stop 


D:\AI_Ollama>ollama show tinyllama:latest --modelfile >  new.modelfile

gathering model components
gathering model components
gathering model components
gathering model components
gathering model components
gathering model components
gathering model components
gathering model components
copying file sha256:2af3b81862c6be03c769683af18efdadb2c33f60ff32ab6f83e42c043d6c7816 100%
parsing GGUF
using existing layer sha256:2af3b81862c6be03c769683af18efdadb2c33f60ff32ab6f83e42c043d6c7816
using existing layer sha256:af0ddbdaaa26f30d54d727f9dd944b76bdb926fdaf9a58f63f78c532f57c191f
using existing layer sha256:c8472cd9daed5e7c20aa53689e441e10620a002aacd58686aeac2cb188addb5c
using existing layer sha256:fa956ab37b8c21152f975a7fcdd095c4fee8754674b21d9b44d710435697a00d
writing manifest
success

D:\AI_Ollama>ollama list
NAME                    ID              SIZE      MODIFIED
new-tinyllama:latest    add64faa5d3b    637 MB    5 seconds ago
orca-mini:3b            2dbd9f439647    2.0 GB    16 hours ago
tinyllama:latest        2644915ede35    637 MB    16 hours ago
gemma2:2b               8ccf136fdd52    1.6 GB    16 hours ago
llama3.1:latest         46e0c10c039e    4.9 GB    5 weeks ago
llava:latest            8dd30f6b0cb1    4.7 GB    2 months ago

D:\AI_Ollama>ollama run new-tinyllama:latest
>>> Hello
Yes, of course! I'm happy to hear that you found my message helpful. Let
me know if you have any further questions or concerns in the future. If
you need further assistance, feel free to reach out again at your
convenience. Have a great day!

>>> Send a message (/? for help)

miercuri, 16 aprilie 2025

News : Frozen Frontier - Horticular DLC Launch Trailer - Cozy Garden Game inspired by Viva Pinata

News : Google Apps Script - add movies from website into new sheet.

This source code with GAScript add few movies from cinemagia website:
The commant the lines from the last post tutorial and use this source code.
This will add movies into separated sheet by date, see the source code:
  // try {
  //   const sheet = SpreadsheetApp.getActiveSpreadsheet().getActiveSheet();
  //   const currentDate = new Date();
  //   extractedData.forEach((movie, rowIndex) =&gt; {
  //     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);
  // }
  try {
  const spreadsheet = SpreadsheetApp.getActiveSpreadsheet();
  const currentDate = new Date();
  
  // Formatăm data curentă pentru numele sheet-ului
  const formattedDate = Utilities.formatDate(currentDate, SpreadsheetApp.getActiveSpreadsheet().getSpreadsheetTimeZone(), "yyyy-MM-dd");
  const sheetName = `Data-${formattedDate}`;
  
  // Verificăm dacă sheet-ul cu acest nume există deja
  let sheet = spreadsheet.getSheetByName(sheetName);
  if (!sheet) {
    // Creăm un nou sheet dacă nu există
    sheet = spreadsheet.insertSheet(sheetName);
  }
  
  extractedData.forEach((movie) =&gt; {
    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]);
      
      // Păstrăm formatarea originală pentru înălțimea rândurilor
      sheet.setRowHeight(rowIndexAdjusted, 76); 
    }
  });
} catch (error) {
  console.error("A apărut o eroare:", error.message);
}

News : Human Heritage - Cinematic Reveal Trailer

We are thrilled to unveil the official trailer for Human Heritage, a groundbreaking historical RPG built in Unreal Engine 5. Winner of the prestigious Global Entertainment Awards 2025, this game promises to redefine storytelling and immersive gameplay.

News : Viewing HTML in your Terminal by Kris Occhipinti.

This is an old channel with good content that I was looking at about 10 years ago... My internet content is being cut for some reason and I saw this new video today.

luni, 14 aprilie 2025

News : GDScript Playground online tool.

You can find this online tool for testing the GDScript source code !

duminică, 13 aprilie 2025

News : New game engine TexTperience by Pisces Studios.

Basic and simple text game engine and I tested with the default example Snow Day !
It's Free!
TexTperience is free to download and use for your personal or commercial project!
No Programming Experience!
TexTperience features customizable action sequences to make your game unique without knowing a single line of code!
Export!
TexTperience can export your project as playable executables for distribution to your audience!
System Requirements
Operating System Windows
Storage 2MB
Framework .NET Core 9
This game engine uses windowsdesktop-runtime-9.0.4-win-x86.exe
You can read more about this game engine on the official website and download from the itch.io account.

News : Compare Llama 4 Scout and Llama 4 Maverick online

Meta Platforms (META.O), opens new tab on Saturday April 5 released the latest version of its large language model (LLM) Llama, called the Llama 4 Scout and Llama 4 Maverick.

sâmbătă, 12 aprilie 2025

News : Vancouver Film School videos - starting from 2025 !

News : CGI & VFX Breakdowns: "Muscle-driven Creature (In-House Test)" - by Ghost VFX | TheCGBros

News : How to Draw Invincible – Art Lesson for Teens & Beginners

News : ... about Plarium Global Ltd. !

... I play only the Vikings:War of Clans game online, here where I live now. Not very impressed by game play, but a lot of good graphics.
Plarium Global Ltd. is dedicated to creating the best mobile and PC experience for our community of over 500 million mid-core and casual registered gamers worldwide. Our diverse portfolio includes 20 games ranging from hardcore RPGs to casual adventures, featuring acclaimed titles such as RAID: Shadow Legends, Mech Arena, Vikings: War of Clans, Lost Island: Blast Adventure, and the Stormfall franchise.
The App Store and Google Play regularly feature our games, with Facebook twice recognizing us as a top hardcore Facebook developer. We employ more than 1300 specialists and are headquartered in Israel with seven offices and development studios across Europe.
Our games are available on iOS, Android, and PC. They are also available through Plarium Play, our optimized game launcher for PC and Mac players.

News : Creating 256 Bytes of Memory (in a simulation)