I have published this mini virtualized Operating System that I am working on 😄
You can check it out on my GitHub. Let's connect and keep learning! 😊
github.com/RedLine404
so... I underestimated the project of making an operating system.... 💀
HOWEVER! I have made the kernel, the filesystem, and some commands like, `ls`, `echo`, and `cat`.😁
Hey everyone😊👋, a friend of mine is learning OOP. He was taking a user input string, splitting it into a list, and trying to pass the whole list into his __init__ method.
So, a quick tip, if you want to do so, you can use the splat operator `*`.
The class, and the usage:
@GithubProjects GitHub is a dating app for programmers.
You fork someone’s repo to show interest, submit a pull request to slide into their DMs, and if they merge it, congrats you’re now in a committed relationship.
The issues tab is where you have all your arguments.
Hey guys, what do you do to get motivation back?
Kinda feeling unmotivated lately, especially after 2 weeks of consistent 8 hours study sessions no days off :/
Template: is the HTML content with the Render Data in it.
Render Data: The data that will be rendered to the user.
Render Engine: Takes all the data/files, combines them together to show them to the user.
Rendered Output: The final result (Output) to be displayed to the user.
Still learning, have been pulling an all nighter for the past 7 days. But I am still pushing through!
quick tip, if you changed something in your `models` file, and you think your SQL data is messed up, try deleting every migration file, and run makemigrations again.
Django - python?
Project: The idea
apps: functionalities inside your `project`
Views: detailed functions inside each "app" (what does this page should do)
links.py: area where you can link the html to the functions (mechanics) inside your app (views)
Alright, views, urls, different apps in one project, I feel overwhelmed with it a little.🙃
views.py > functionality
polls/urls.py > connects "views" to the templates/
WE MUST CONNECT polls/urls.py to the main project/urls.py
we can use include().