Pages

luni, 1 ianuarie 2024

News : Escape Academy free on Epic Games.

Welcome to Escape Academy. Train to become the ultimate Escapist. Solve Puzzles. Hack Servers. Meet the Faculty. Brew the perfect cup of tea. Escape Rooms in single player or co-op with a friend - local or online!

duminică, 31 decembrie 2023

News : Pantone of the year 2024

Every year Pantone chooses a color that sets the trend all over the world, but not many know how it is decided
For 2024, Pantone went with a calming, warm and welcoming hue reflecting "our desire to want to be close to those we love and the joy we get when allowing ourselves to tune into who we are and just savor a moment of quiet time alone, ..."
The color for the year 2024 is Peach Fuzz 13-1023.
You can read more on the official webpage.

sâmbătă, 30 decembrie 2023

News : Saints Row - free on Epic Games.

Welcome to Santo Ileso, a vibrant fictional city in the American Southwest. In a world rife with crime, a group of young friends embark on their own criminal venture, as they rise to the top in their bid to become Self Made.

News : Online tool for 2D textures.

If you don't have 3D objects to bake textures for normal map and only have 2D images then this online tool can help you.
See this screenshot:

joi, 28 decembrie 2023

News : Online tool for assembly with simulator and debugger ...

CPUlator is a full-system Nios II, ARMv7, and SPIM-compatible MIPS simulator that runs in a web browser. It is designed for education use to teach computer ...
This runs inside a web browser.
  • Instruction sets: Nios II, ARMv7, and MIPS
  • I/O devices:
  • Nios II and ARMv7: Includes most devices found on a DE1-SoC (and other board models used by the Altera University Program), including interrupt support.
  • MIPS: Includes SPIM-compatible terminal
  • Nothing to install: Runs entirely inside a web browser
  • Debugger: Single-step, breakpoints, watchpoints, trace, call stack, examine disassembly, memory and registers
  • Debug assertions: Optional runtime assertions catch many potential errors
  • Input: Accepts both assembly source code and ELF executables
I tested with the simple basic assemnbly source code and works well:
.global _start
_start:
	mov r0,#1
	mov r1,#3
	push {r0,r1}
	bl get_value
	pop {r0,r1}
	B end
get_value:
	mov r0,#5
	mov r1,#7
	add r2,r0,r1
	bx lr
end:
You can save, load and compile this sorce code like a simple file type : simple.s
This is the result:

News : Released snapshot of Godot 4.3!

The team working on Godot Engine have released the first snapshot of Godot 4.3 which brings with it some big rendering changes that sound quite exciting overall.
You can find this release on the official webpage.
NOTE: this snapshot will solve android with NET ...
To export to Android, .NET 7.0 or later is required. To export to iOS, .NET 8.0 is required. Make sure to set the target framework in the .csproj file.