Posts

Showing posts from August, 2024

Game Theory Journey

 https://www.youtube.com/playlist?list=PLKI1h_nAkaQoDzI4xDIXzx6U2ergFmedo William Spaniel Bayesian 

Python & Django Journey

Image
02APR2025 Probably better to use . foldername, while ensuring ,gitignore has this. python -m venv .v env .venv \Scripts\activate pip install django 22FEB2025 python -m venv env env \Scripts\activate pip install django deactivate env \Scripts\activate 13FEB2025 python manage.py makemigrations and then python manage.py migrate python manage.py createsuperuser    python manage.py changepassword < user_name > 06FEB2025 Use the setup instructions for creating a github project in website first, then clone it locally. Now you have  C:\Source\github\bendecko\projectname\ Navigate to that folder and run  django-admin startproject longtermreviews .      (note .) This creates the standard structure: Where my_site is projectname (master) and blog,reviews,user,login etc is module/app level.  We don't have blog yet.  To get it, run: python manage.py startapp user  - Creates "user" application 31JAN2025 Consider Jinja2 as templating l...

net core 8 journey

 C:\Users\bende\OneDrive\Projects\preview\hotel----rooms.com   --not pretty got fed up because.. I did do one with controller action already, check on //erasumus long term reviews > was a chatgpt attempt. best one is makegtfs - contains a link to https://www.youtube.com/watch?v=J1f5b4vcxCQ&t=612s   - this video suggests all classes be implemented as interfaces from the get go (for testing) using the code aesthetic idea  https://chatgpt.com/c/66dec509-9174-800c-a9d2-bb3a53a62d85 hotel floor plans is a hybrid vb.net DI and c# frontend.  try on pc in henry's room when ready off eramus preview..  has compile error at this time. How to setup the standard config using ubuntu i want to create a new c# 8 solution with mvc site, classlib and be able to run background processes. do i need a console app to do that? what dotnet new command do I issue from the command line To set up a new C# 8 solution in Ubuntu with an MVC site, a class library,...