This post is based on the workshop that we held on the 27th of March in-person, it'll cover everything we covered during the workshop!
Unlike the workshop, we'll mostly be using the Git and GitHub CLI to interact with Git but feel free to check out Last Year's Workshop if you prefer a more graphical method.
If you run into any issues or have any questions, feel free to ask on on Discord.
Whether or not you've done applications programming you've probably heard about how the framework of choice is JavaFX. This isn't the most friendly approach for people who are just getting started, fresh out of Prog 1 or even Prog Fund.
Let me tell you that there's a better way.
IntelliJ Idea, for free with your university email does all the setup for you. It automatically installs the correct Java version. It gives you a starter project for JavaFX and has advanced features like automatic imports and inbuilt documentation.
Rather than spending weeks messing around trying to get the right versions of Java and antiquated versions of JavaFX to work together you can simply avoid all the fuss and get a better experience for it.
The batteries-included guide to what UTS doesn't teach you
This post is aimed at the majority of people who use a Windows machine and want to get into web development in 2022. Modern web development has some fairly common environment setups, and this guide aims to explain all the software you'd need to be on top of things.
This guide covers how to install:
VS Code (the most popular web development environment)
VS Code Extensions
WSL2 Ubuntu (WSL = Windows Subsystem for Linux, developed by Microsoft)
Node.js (using NVM)
Docker Desktop (for building your apps, as well as running database servers locally with ease)
Whether or not you've heard of git before you should know that it's a skill that's almost universal when it comes to programming. An essential skill for anyone just getting started to the most skilled of experts, the ultimate headstart for getting your first developer gig or simply for organising your own projects.
Git is a piece of software designed to accomodate the massive amount of changes that occur in projects involving an insane amount of code being changed by many people all at once.
If you've ever done group work you'll have had this problem at some point where two people try to edit the same paragraph and it just ends up as a jumbled mess of randomly placed characters.
Git records everyone's changes line by line, making it easy to see what's been changed, when it's been changed and by whom whilst at the same time making sure your files don't end up like this.