SShortSingh.
Back to feed

Developer Launches Personal Python Full-Stack Portfolio Website

0
·1 views

A software developer has completed and publicly launched their personal portfolio website built using Python full-stack technologies. The site was created to showcase the developer's projects, coding style, and progression in the software development field. Both a live version of the site and its source code have been made available for public viewing. The developer is seeking feedback from the community on the work presented.

Read the full story at DEV Community

This is an AI-generated summary. ShortSingh links to the original source for the complete article.

Discussion (0)

Log in to join the discussion and vote.

Log in

Related stories

0
ProgrammingHacker News ·

Ant: A New JavaScript Runtime, Package Manager, and App Deployment Platform

A developer has introduced Ant, a JavaScript ecosystem built around a custom runtime with its own JavaScript engine. The project includes a package manager, a package registry called ants.land, an application hosting and deployment platform, and Ant Desktop for building native desktop apps using web technologies. Ant Desktop is positioned as an alternative to tools like Electron. The creator aims for all components to function as a unified platform while remaining compatible with the broader JavaScript ecosystem. The project is in its early stages, and the author is seeking community feedback on its direction and feature priorities.

0
ProgrammingDEV Community ·

SQLite STRICT tables enforce data types and prevent silent type bugs since v3.37

SQLite, widely known for its flexible dynamic type system, has long allowed inserting mismatched data types into columns without raising errors. Since version 3.37.0, released on November 27, 2021, SQLite introduced STRICT tables, which enforce declared column types and reject incompatible values. Developer Evan Hahn recently highlighted the feature in a blog post, arguing that STRICT mode should be the default behavior for all SQLite databases. Activating STRICT mode requires only adding the STRICT keyword to a CREATE TABLE statement, with no extensions or extra configuration needed. However, converting an existing table to STRICT is not straightforward, as there is no ALTER command for this purpose and the table must be recreated with data copied over.

0
ProgrammingDEV Community ·

Zero-Copy Image Processing: The Key to Fixing Edge AI Slowdowns on Android

A technical deep-dive from DEV Community explains why on-device AI pipelines on Android often underperform despite optimized neural networks. The core problem, termed the 'Memory Wall,' stems from repeated data copying between the camera, CPU, GPU, and NPU rather than from insufficient compute power. Each memory copy operation wastes CPU cycles, spikes memory bandwidth, and generates heat that triggers thermal throttling, slowing down the very hardware the AI depends on. The proposed solution is zero-copy image processing, which uses Android's AHardwareBuffer and the Linux kernel's dmabuf mechanism to let multiple hardware units access the same physical memory simultaneously. This approach eliminates redundant data movement and is cited as foundational to high-performance AI features seen in products like Google's Gemini Nano.

0
ProgrammingDEV Community ·

Developer Builds 3D Exploded-View App to Teach How Gadgets Work

A college student has built 'Exploded', an interactive 3D web app that lets users disassemble virtual objects like hard disks, watches, and smartphones to learn how they work. The project was submitted for the DEV Community Weekend Passion Challenge, inspired by the developer's childhood habit of taking apart physical objects. Built with React and Three.js, the app integrates Google Gemini for a curiosity-driven Q&A experience and ElevenLabs for voice-narrated guided tours of each component. Objects were modeled using primitive 3D shapes rather than Blender imports, with Claude AI assisting in some design work. The app is deployed on Vercel, with the source code publicly available on GitHub.

Developer Launches Personal Python Full-Stack Portfolio Website · ShortSingh