

Commodore has had an interesting year. A retro-tech YouTuber got into discussions with the company and ended up buying it. I think they had plans to become a public benefit company of some kind, with a focus on openness and preserving old tech.
I’m surprised that the Wikipedia article doesn’t have a lot of details on those recent developments from the past year













































WSL might make things a bit more complicated to understand at first, so that’s fair.
What do you see if you type
pwdinto the terminal where you are working? What aboutls? You can redact any personal info before pasting it in (ex. if your name is included in a file path).pwdwill output the current directory, which can help you track down the right folder to open in VSCodelswill output a list of all files in the current directory. If you see weird looking entries like.or.., don’t worry about those (I’m happy to explain, but for now it’s not important)Usually when you are working on something, you would put all the files related to that project in a folder. That highest level folder is the one that you open in VScode, since you will be able to see all the subfolders easily. For example, my folders might look like this
|- My Documents | |-repos | | |-My New Website | | | | | |-My app | |In VSCode, you would open the “My New Website” folder when you are working on that project. In your case, you likely need to open whatever folder comes up from the output of
pwd, or one of the subfolders (if that one shows “/…/…/repos”. If your terminal supports it, you might also be able to open the current folder in vscode with a command likecode ., or in the file explorer withopen .If you have a messy setup, I would recommend learning some basic CLI commands for navigating your terminal first. That will help a lot for figuring out what is happening. Afterwards, you can easily navigate to the folder with all of your Odin Project files via. the terminal.
As for the repository, usually the repository is created from the root (the highest level) of whatever project you are working on. So if I cloned a repository called
otter/my-new-website, the repository is tied to the foldermy-new-website.