Setting Up a Django Project Structure

Creating the Project and Appplication # Generate the Django project structure named 'tpdemo' django-admin startproject tpdemo cd tpdemo # Create a new application within the project python manage.py startapp myapp # Establish template directories mkdir templates templates/myapp Database Configuration in settings.py Modify tpdemo/tpdemo/setti ...

Posted on Fri, 29 May 2026 21:39:51 +0000 by Drezard

Generating 12-Character Random Identifiers from Java UUIDs

Standard Universally Unique Identifiers (UUIDs) produced by Java typically generate a 36-character string containing hexadecimal digits and hyphens. Often, shorter identifiers are required for specific application contexts. The following procedure outlines how to derive a 12-character string from a standard UUID object. Process Overview The tra ...

Posted on Sun, 10 May 2026 20:18:22 +0000 by mansuang