... from old character and the official youtube channel Aardman.Official.
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,
Se afișează postările cu eticheta design. Afișați toate postările
Se afișează postările cu eticheta design. Afișați toate postările
joi, 28 noiembrie 2024
miercuri, 20 noiembrie 2024
FASM : simple bootloader source code with menu .
This is the source code with a boot menu and can be tested with qemu emulator.
I need to use the Sonet 3.5 artificial inteligence to search infos and make this source code better, but I learn assembly in the past.
The compile commands of the source code:
mythcat@localhost:~/fasm$ ./fasm.x64
flat assembler version 1.73.32
...
mythcat@localhost:~/fasm$ ./fasm.x64 bootloader.asm bootloader.bin
flat assembler version 1.73.32 (16384 kilobytes memory, x64)
2 passes, 512 bytes.
The test with qemu tool:
mythcat@localhost:~/fasm$ qemu-system-x86_64 -drive format=raw,file=bootloader.bin
Let's see the source code:
; Simple Bootloader with Menu for QEMU
; Written in FASM
org 0x7C00
format binary
start:
; Clear the screen
xor ax, ax
mov ds, ax
mov es, ax
mov ah, 0x0
int 0x10
; Display the menu
call display_menu
main_loop:
; Wait for key press
call wait_for_input
; Check key pressed
cmp al, '1'
je handle_option1
cmp al, '2'
je handle_option2
; Invalid option, restart
jmp main_loop
handle_option1:
; Option 1 selected
mov si, option1_msg
call display_message
call wait_for_input ; Wait for any key
jmp start ; Return to menu
handle_option2:
; Option 2 selected
mov si, option2_msg
call display_message
call wait_for_input ; Wait for any key
jmp start ; Return to menu
display_menu:
; Display the menu
mov si, menu
call print_string
ret
wait_for_input:
; Wait for a key press
xor ax, ax
int 0x16
ret
print_string:
; Print string at DS:SI
mov ah, 0x0E
@@:
lodsb
test al, al
jz @f
int 0x10
jmp @b
@@:
ret
display_message:
; Print message at DS:SI
call print_string
ret
menu db 'Simple Bootloader Menu', 13, 10
db '1. Option 1', 13, 10
db '2. Option 2', 13, 10
db 'Select an option: ', 0
option1_msg db 13, 10, 'You selected Option 1!', 13, 10
db 'Press any key to return to menu...', 13, 10, 0
option2_msg db 13, 10, 'You selected Option 2!', 13, 10
db 'Press any key to return to menu...', 13, 10, 0
rb 510-($-$$)
db 0x55, 0xAA
This is the result:
Posted by
Cătălin George Feștilă
Labels:
2024,
artificial intelligence,
assembly,
design,
FASM,
graphic,
graphics,
tutorial,
tutorials
marți, 19 noiembrie 2024
joi, 14 noiembrie 2024
News : stablecog online tool generate artificial photos.
This news this online tool is old ...
My results with the free version were not very promising. Obviously, the basic test for those who know the theory and even for those who don't is to make substantial changes while keeping the information correctly framed.
Obviously it is possible, but I suspect that it is a deepfake protection.
More simply, I tried to modify a photo with a person ... if I modify the settings to keep realism, then it does not make any modifications.
I like that it contains many generators with many models of artificial intelligence and can be tested and the free version has a significant number of attempts.
Black Forest Labs, a company with a team that contributed to the creation of the original Stable Diffusion have released their new model called FLUX.1. It is a 12 billion parameter rectified flow transformer. Based on discussions on Reddit and HuggingFace, it seems like the community is very excited about this new model. We are as well, in fact, we think it is the best open-source AI image model currently available. Let’s take a look at what it offers.
Posted by
Cătălin George Feștilă
Labels:
2024,
2024 news,
artificial intelligence,
design,
graphic,
graphics,
news
duminică, 10 noiembrie 2024
Blender 3D : how to model this Snowflake Decor in blender _ blender modeling
... another video tutorial with a snowflake by CG VOICE !!!
Posted by
Cătălin George Feștilă
Labels:
2024,
2D,
3D,
Blender 3D,
design,
graphic,
graphics,
tutorial,
tutorials,
video tutorial,
youtube
Godot : How to implement wall sliding in Godot 4.3 ...
... another video tutorial with 2D game development from the GameDevJourney - youtube channel.
Posted by
Cătălin George Feștilă
Labels:
2024,
2D,
design,
development,
game development,
Godot,
graphics,
youtube
News : Have you tried Moho's Liquid Shapes? You can combine parts of a character and easily animate them
As far as I know, this software is mainly 2D software ... however, here are some 3D translations ...
Posted by
Cătălin George Feștilă
Labels:
2024,
2024 news,
2D,
3D,
design,
graphics,
Moho Animation Software
sâmbătă, 9 noiembrie 2024
News : Are you talking to a deepfake?
I learn from the U.S. learning platform and comes with good advanced learning skills ..., see the official youtube channel ...
I follow the free learn ... and these are my badges:
See another video from ...
Posted by
Cătălin George Feștilă
Labels:
2024,
2024 news,
design,
development,
news,
web development,
youtube
joi, 10 octombrie 2024
joi, 3 octombrie 2024
Pydroid 3 android application for python ...
The Pydroid3 android application is the best way to test and run python scripts.
I install python packages with the install option, the pip command on terminal comes with errors for same python package.
I used the free version but if you pay for monthly or lifetime then you can have more features.
Same team come with android applications to have add more features, see these IIEC team appplicatons.
sâmbătă, 21 septembrie 2024
Online tool : circuito.io with artificial intelligence.
... circuito.io is an online platform, generating wiring and code for Arduino projects.
Posted by
Cătălin George Feștilă
Labels:
2024,
artificial intelligence,
design,
graphic,
graphics,
online,
online tool
miercuri, 18 septembrie 2024
sâmbătă, 7 septembrie 2024
luni, 19 august 2024
News : New Goodnotes 6 Features you NEED to try!
On Sept 1, 2024, we're no longer supporting iOS/iPadOS 15 and macOS 12!
Now, this works on : iOS, Android, Windows, Web.
For windows the price is $6.99 per year, with a 1-week free trial.
... video tutorial from Kayla Le Roux - official youtube channel
Posted by
Cătălin George Feștilă
Labels:
2024,
2024 news,
2D,
design,
Goodnotes 6,
graphics,
news,
video,
video tutorial,
youtube
sâmbătă, 17 august 2024
News : Creator online tool for assembly with a good design.
This is an online tool for assembly proramming comes with example and a good interface.
CREATOR is a generic teaching simulator to program in assembly in which you can simulate the operation of different architectures on the same tool. This simulator is designed to be used as a tool in which students can put into practice the brews seen in the theoretical classes of the subjects of Architecture and Computer Structure.
You can find this tool on this webpage with examples included RISC-V and MIPS-32.
Posted by
Cătălin George Feștilă
Labels:
2024,
2024 news,
2D,
assembly,
design,
development,
news,
online,
online tool
luni, 8 iulie 2024
Testing 2D texture with runwayml artificial intelligence.
... as expected, because the artificial intelligence with a dataset to a model specially trained on 2D textures, the result after the request is one according to the dataset.
I have not found a dataset available online for generating 2D textures in the graphics domain for texturing 3D objects.
NOTE : If you want to generate a 2D texture for an airplane to be integrated into a 3D model, then you need a specific dataset.
This result is tested with runwayml by asking:
generate a 2D texture for a plane to use in an ice wall 3d object
... and result is:
Posted by
Cătălin George Feștilă
Labels:
2024,
2024 news,
artificial intelligence,
design,
graphics,
news,
runwayml
luni, 1 iulie 2024
Online tool with node-based design and animation ...
Polygonjs helps you create interactive 3D for the Web
Those experiences are notoriously difficult to create, as they require knowledge in both 3D and well, web. Crafting one that's functional can already be a challenge, and making it beautiful and performant is a whole different game. And we haven't even talked about the different specializations in 3D, like texture artists, modeller, riggers, animators, look dev, shader developer, etc. This can get complicated quickly.
See examples on the official website.
Posted by
Cătălin George Feștilă
Labels:
2024,
2D,
3D,
animation,
design,
graphics,
online,
online tool
sâmbătă, 8 iunie 2024
Blender 3D : How to create grass easily | Blender short tutorial
See more on the Baluprime - youtube channel!.
Posted by
Cătălin George Feștilă
Labels:
2024,
2D,
3D,
Blender 3D,
design,
graphics,
tutorial,
tutorials,
video,
video tutorial,
youtube
duminică, 2 iunie 2024
The 3dwarehouse website comes with good 3D free resources.
This is a good website with a lot of resources.
The collada and sketchup are free and for another format you need a paid subscription.
vineri, 31 mai 2024
News : METATAILOR
METATAILOR is an interactive, real-time content creation tool designed for virtual fashion enthusiasts, game developers, and 3D artists. It empowers users to design outfits and dress 3D avatars with ease, offering a wide range of tools for creating unique outfits and accessories.
You can find this tool on the official webpage.
Abonați-vă la:
Postări (Atom)