Virtual reality (VR) has rapidly gained popularity, offering immersive gaming and experiences that feel almost real. With more people adopting VR headsets, the demand for wireless solutions like the Oculus Quest 2 and 3 is rising. ALVR (Air Light VR) has emerged as a leading solution for Quest users, allowing… Read More... "Tutorial – VR on Linux with Meta Quest and ALVR"
Zig is a modern programming language designed to be robust, efficient, and easy to understand. It focuses on providing predictable performance and is often used for system programming, similar to C or Rust. It emphasizes safety, simplicity, and the absence of hidden control flow, making it a suitable choice for… Read More... "Zig: A Basic Introduction"
Go, also known as Golang, is an open-source programming language developed by Google. It is designed for simplicity, efficiency, and reliability, making it a popular choice for modern software development. This tutorial will guide you through the basics of Go, including setting up the environment, understanding functions and data types,… Read More... "GO: A Basic Introduction"
Bend is a high-level, massively parallel programming language. It feels like Python but scales like CUDA. Your code runs on CPUs and GPUs, and it automatically parallelizes anything that isn’t inherently sequential, using thousands of threads effortlessly. While Bend is promising, it has limitations. It isn’t as fast as state-of-the-art… Read More... "Bend: A Basic Introduction"
In today’s hyper-connected era, the convergence of advanced technologies like artificial intelligence (AI) and the proliferation of Internet of Things (IoT) devices has ushered in a new era of challenges in cybersecurity. The synergy between AI and cyber threats has given rise to sophisticated AI-driven cyber attacks, while the rapid… Read More... "Cybersecurity: How to remain safe online"
Gleam is a statically-typed functional programming language, which recently had its v1 released, designed for building scalable and maintainable software. It is inspired by languages like Elm and Rust and compiles down to Erlang, making it well-suited for building concurrent and distributed systems. In this tutorial, we’ll cover the basics… Read More... "Gleam: A Basic Introduction"
In the fast-paced realm of technology, COBOL, or COmmon Business-Oriented Language, emerges as a timeless cornerstone in the world of programming. Developed in the late 1950s with a clear focus on business applications, COBOL remains relevant today due to its readability, adaptability, and crucial role in maintaining the backbone of… Read More... "COBOL: A Basic Introduction"
Integrating PayPal payments into a Unity project involves several steps, and can be a little complicated for those unfamiliar with REST APIs. I chose to write this tutorial because back when I decided to monetize one of my games(add a small micro-transaction of 5$ in exchange for a life-time booster… Read More... "Tutorial – How to integrate PayPal and Unity"
Recently I went back to blender and did a mix of trying to remember what I knew and learning new stuff. Funny enough, when I looked up on google and youtube for any tutorials on Liquid physics simulation and how to make it look realistic, I couldn’t find many tutorials… Read More... "How to create Realistic Liquids on Blender 4.0"
Rust is a powerful, low level programming language initially made by Mozilla, which I’ve covered the backs for in a previous tutorial. It’s memory safety and performance are great, but running things off of one single thread can be too slow at times, no matter the language. In this tutorial,… Read More... "Parallel and Asynchronous Programming in Rust"