Pages

duminică, 26 aprilie 2026

News : Google AI Plus in Romania excellent offer.

The promotional price of RON 13.99/month is an excellent offer to test the capabilities of the Gemini 1.5 Pro model.
It offers a massive context window (up to 2 million tokens), which means you can upload entire documentations or massive codebases.
Use with IDE for Development
You can use Gemini for development, but the experience differs depending on how you want to integrate it:
Google IDX: Google has its own cloud-based IDE (Project IDX) that natively integrates Gemini for auto-completion, code explanation, and unit testing.
Android Studio: Gemini is directly integrated to assist mobile app developers.
VS Code / IntelliJ: There is no official "Gemini" extension as ubiquitous as GitHub Copilot, but you can use the API included in the subscription or third-party extensions (such as Codeium or Continue) that allow configuring a Gemini API key to generate code directly in the editor.
Code Analysis: Thanks to the large context window, you can "copy-paste" 10-20 code files into the chat interface, and it will understand the architecture of the entire project, unlike other models that "forget" the beginning of the conversation.

News : Starminer Release Date Announcement Trailer.

News : Elvenar gift !

I got one gift from the elvenar game online.

Tools : Deluge Free Software.

I install the deluge yesterday, last used was on romanian filelist website long time ago, because I used into 2009 testing the torrents ... now magnets are more good.
NOTE : I don't agree that hacking should be used in laboratory conditions, but I agree with sharing ownership in accordance with creative commons licenses and access to information and its persistence in time and space.
Deluge is a lightweight, Free Software, cross-platform BitTorrent client.
  • Full Encryption
  • Web User Interface
  • Plugin System
  • Much more...
You can find share software with torrents and magnets files on the https://www.limetorrents.fun website.

sâmbătă, 25 aprilie 2026

Tools : Material Maker

Material Maker is a procedural materials authoring and (experimental) 3D model painting tool, based on the Godot Engine. Materials and brushes are defined as graphs where nodes create or transform textures, and can be exported for the Godot, Unity and Unreal game engines.
Most nodes are defined as GLSL shaders, and when connecting them, Material Maker will generate combined shaders (instead of rendering an image for each node). It is also possible to create new nodes either by combining and grouping existing nodes, or by writing your own GLSL shaders.
Material Maker is available for Windows, Linux and MacOS.

News : How I Made Real-Time Shadows in 2D.

News : Lost and Found | STFC Animated Short ft. Nana Visitor

News : Star Trek Online: Return to Duty in the Quickstart Event!

vineri, 24 aprilie 2026

News : 007 First Light – Rules of Spycraft

News : Totopia | Official Gameplay Reveal Trailer.

Tools : Quantum computers with artificial intelligence.

Today, I tested a new issue about the quantum computers theory and artificial intelligence.
Superconducting Quantum Computers — Circuit Quantum Electrodynamics (cQED) use qubits.
Photonic Quantum Computers — Linear Optical Quantum Computing (LOQC) use photons.
Let's see one "educational poster" created with artificial intelligence based.

marți, 21 aprilie 2026

News : Palia | 10 Million Players Celebration Event

News : Odin Programming Language

Odin is a general-purpose programming language with distinct typing built for high performance, modern systems and data-oriented programming.
Odin is the C alternative for the Joy of Programming.
Odin has been designed to be a pragmatic and evolutionary language, and as such, most people have come to appreciate the results of that, especially stability of language features.
The compiler currently supports compiling on:
  • Windows x86-64/AMD64 (MSVC)
  • Linux x86-64/AMD64 and ARM64
  • MacOS x86-64/AMD64 and ARM64
  • FreeBSD x86-64/AMD64 and ARM64
  • NetBSD x86-64/AMD64 and ARM64
  • OpenBSD x86-64/AMD64
  • Haiku x86-64/AMD64 (experimental)
You can read more about this programming language on the official website.
Let's see one simple source code with odin:
package main

import "core:fmt"

main :: proc() {
	program := "+ + * 😃 - /"
	accumulator := 0

	for token in program {
		switch token {
		case '+': accumulator += 1
		case '-': accumulator -= 1
		case '*': accumulator *= 2
		case '/': accumulator /= 2
		case '😃': accumulator *= accumulator
		case: // Ignore everything else
		}
	}

	fmt.printf("The program \"%s\" calculates the value %d\n",
	           program, accumulator)
}