[Web Development w/ Google’s Go (golang) Programming Language]
Category: Udemy
Learn How To Code: Google’s Go (golang) Programming Language
This is an intro to the GO language.
[Learn How To Code: Google’s Go (golang) Programming Language]
[golang.org] – docs on language and standard library
[godoc.org] – docs include 3rd party libs
Learn to Code Games in Roblox Studio
[Udemy: Learn to Code Games in Roblox Studio]
Only the server can use the [HttpService].
Udemy: Node-Red and ESP32 Terrarium
Udemy: React JS Web Development – The Essentials Bootcamp
Unreal Engine Blueprint Developer: Learn Visual Scripting
Discovering Godot: Make Video Games in Python-like GDScript
The Complete WordPress Website Business Course
Designing for 3D Printing with Fusion 360
[Fusion 360 for 3D Printing – Design Fidget Spinners]
[Designing for 3D Printing with Fusion 360]
Devin and I have been following along with the tutorials.
The Unity RPG Creator in C#
Udemy: Node.js Codeless API Creation: Up And Running With Swagger
Udemy: Xamarin Forms: Build Native Cross-platform Apps with C#
Unreal Engine 4: How to Develop Your First Two Games
Udemy: How to setup a SQLite Database in an Android App
Udemy has a great course that covers how to use SQLite databases.
Udemy: Ableton Live Introduction
Udemy has a free music course on [Ableton Live Introduction].
Udemy: Create Electronic Music With Reason 9
Udemy has a free music course on [Create Electronic Music With Reason 9].
Unreal Engine 4 – Learn to Make a Game Prototype in UE4
[Unreal Engine 4 – Learn to Make a Game Prototype in UE4] is on sale now through January 10th for just $10.
GameDev Community Discussions
The [Gamedev Community Discussions] are available to ask questions about Unity, VR, Blender, and Unreal. The top tutorials are: [The Complete Blender Creator Course], [The Complete Unity Developer Course], [The Unreal Engine Developer Course], and [Make VR Games in Unity with C#].
Amazon Lumberyard
Amazon has a new open-source, free, and royalty free game engine called [Amazon Lumberyard]. Lumberyard licensed and extends the [Crytek Engine]. Udemy offers [CryENGINE SDK Game Programming Essentials] to quickly ramp up and get started. Amazon has a [MarketPlace] but it’s still early to expect an asset store to sell game content[?] The [download page] has several game assets available.
From 0 to 1: Machine Learning, NLP & Python-Cut to the Chase
Udemy offers the [From 0 to 1: Machine Learning, NLP & Python-Cut to the Chase] course covers a high-level overview for the types of machine learning algorithms that are available.
Introducing C++ For Unreal Engine 4 Game Development
Udemy offers the [Introducing C++ For Unreal Engine 4 Game Development] course to teach users how to use Unreal on Mac and Windows. The course has even more content planned after its successful [Kickstarter].
Devin’s First Unity Program
Devin completed his first Unity program while taking the [Udemy Unity Course].
using UnityEngine; using System.Collections; public class NumberQizards : MonoBehaviour { int max = 1000; int min = 1; int guess; // Use this for initialization void Start() { StartGame(); } void StartGame () { print("Pick a number in your head but dont tell me."); max = 1000; min = 1; guess = 500; print("The highist number you can pick is " + max); print("The lowest number you can pick is " + min); NextGuess(); } void NextGuess() { print("Is the number higher or lower then " + guess + "?"); print("Up arrow for higher , down arrow for lower"); } // Update is called once per frame void Update() { if (Input.GetKeyDown(KeyCode.UpArrow)) { min = guess; guess = Mathf.FloorToInt((max + min) / 2f); NextGuess(); } else if (Input.GetKeyDown(KeyCode.DownArrow)) { max = guess; guess = Mathf.CeilToInt((max + min) / 2f); NextGuess(); } else if (Input.GetKeyDown(KeyCode.Return)) { print("You won!"); StartGame(); } } }
Learn To Code by Making Games – The Complete Unity Developer
Udemy offers an online course to learn Unity with [Learn To Code by Making Games – The Complete Unity Developer]. Right now the course is 95% off! The course has videos and progress tracking with assignments that teach Unity development by making games.