Daos Portfolio

Medieval Room

Medieval Room Softwares Used Blender and Subtance Painter. Tags 3D Model Blender Render Assets Prop Texturized Medieval Watch the process

Medieval Houses

Medieval Houses 3D model of medieval houses created with modular assets, allowing for flexible customization and optimization in games and visualizations. Tags 3D Model Blender Render Prop Shading Assets Medieval Key Features – 124 assets covering ships, weapons, props, and environment elements. – Three levels of LOD for optimized performance. – Simple PBR materials for […]

Pirate Assets Pack

Pirate Assets Pack Pirate Adventure Asset Pack – 124 Modular Assets Set sail on your next game project with this high-quality Pirate Adventure Asset Pack! Featuring 124 assets, this collection provides everything you need to build a pirate-themed world, from mighty ships to treasure-filled hideouts. Key Features – 124 assets covering ships, weapons, props, and […]

Pirate Ship

Pirate Ship 3D prop modeling project of a pirate ship sailing. Softwares Used Blender. Tags 3D Model Blender Render Prop Shading Pirate Ship Pirate Watch the process

Millennium Falcon

Millennium Falcon Hard surface model of the Millennium Falcon. Softwares Used Blender. Tags 3D Model Blender Render Hard Surface Shading Ship Star Wars Watch the process

Password Manager

Password Manager This is a password manager developed in Python using Tkinter for the graphical interface. It allows users to add, view, delete and change passwords for different services. Language Python. Features Add Password: Allows you to enter the service, username and password. View Passwords: Displays a list of all saved passwords. Remove Password: Remove […]

Intrusion Detection System

Intrusion Detection System (IDS) This project is an application to detect network packets using Python and Scapy. Language Python. Requirements Make sure you have Python installed on your machine. Requires the following libraries: scapy tkinter Code import tkinter as tk from scapy.all import sniff, AsyncSniffer import threading class IDSApp: def __init__(self, master): self.master = master […]

Encryptor

Encryptor A simple message encryption program written in Python. It uses the cryptography library to encrypt and decrypt messages, allowing users to protect their information. Language Python. Requirements Python 3.x pip (gestor de paquetes de Python) Clave.key ta36_ktgnBctCOdQqjcAYHIMKwG8o2NAOMjZKY9TYtc= Code import tkinter as tk from tkinter import messagebox from cryptography.fernet import Fernet # Generar clave def […]

Age Calculator

Age Calculator A simple Python project to calculate age. Language Python. Code from tkinter import * from datetime import date root=Tk() root.geometry(«800×600») root.resizable(False,False) root.title(«Age Calculator») photo=PhotoImage(file=»Age_Calculator.png») myimage=Label(image=photo) myimage.pack(padx=15,pady=15) def calculateAge(): today=date.today() birthDate=date(int(yearEntry.get()),int(monthEntry.get()),int(dayEntry.get())) age=today.year – birthDate.year-((today.month,today.day)

Image Viewer

Image Viewer A simple Python project for viewing images. Language Python. Code from tkinter import * from tkinter import filedialog import tkinter as tk from PIL import Image,ImageTk import os def showimage(): filename=filedialog.askopenfilename(initialdir=os.getcwd(),title=»Select image file»,filetype=((«JPG File»,»*.jpg»),(«PNG file»,»*.png»),(«All file «,»how are you .txt»))) img=Image.open(filename) img=ImageTk.PhotoImage(img) lbl.configure(image=img) lbl.image=img root=Tk() fram=Frame(root) fram.pack(side=BOTTOM,padx=15,pady=15) lbl=Label(root) lbl.pack() btn=Button(fram,text=»Select Image»,command=showimage) btn.pack(side=tk.LEFT) btn2=Button(fram,text=»Exit»,command=lambda:exit()) […]