.NET MAUI Data Binding with MVVM & XAML Damn this declarative stuff is confusing. No DB access their either. https://www.youtube.com/watch?v=5Qga2pniN78&list=PLdo4fOcmZ0oUBAdL2NwBpDs32zwGqb9DY
https://www.youtube.com/@PixelMystique/videos PixelMystique has good vids Creating Basic Shapes https://www.youtube.com/watch?v=yqL_9eEDm2E&t=7s Extrude https://youtu.be/md2OR4EualE?si=7n5XSoa48f19y_K-&t=462 Cut holes: 2 Methods there. Experimental and normal https://www.youtube.com/watch?v=Of1yrS_CsiI https://www.youtube.com/watch?v=_gDLA_0V2Bs brit guy with 38 subs. https://forum.unity.com/threads/does-probuilder-offer-a-way-to-measure-distance-between-two-verts.895658/ For doors; using game mode https://www.youtube.com/watch?v=dgLF-37SBDk
28JAN2025 Moving local folders was a breeze! Close VS code. Move the folder. Reopen. Done. git remote -v To check remote folder is correct git remote set-url origin <new-repository-URL> ..if not 23OCT2024 Make sure your .gitignore and .gitattributes files are in place. In VS you can press: CTRL + ' Or in Ubuntu go to the root of the solution in terminal git init git add . git commit -m "Initial commit" Then Create a Repository on GitHub : Go to GitHub and log in. Click on the New button to create a new repository. Name the repository, set it to public or private, and create it. Add the Remote Repository : Copy the repository URL from GitHub and use it to add a remote in your local Git. git remote add origin https://github.com/your-username/your-repository.git Push Your Code : Push your local repository to GitHub. git push -u origin master (check if master or main) git branch listed the branch, funnily enough Then later after some code-peddling git...
Comments
Post a Comment