The Llama AI model is an open-source model built by Meta. It can be used similarly to how OpenAI's ChatGPT can be used. In this article we will run the Llama AI model locally via Docker. We will NOT configure Llama to use the GPU in this article.
Setting up an NGINX reverse proxy
In this article we will set up an NGINX reverse proxy which will allow us to serve multiple sites on port 80 and 443 (default http/https ports) from a single server.
Welcome to the blog
Welcome to the blog! I probably won't post here more than a few times a year. I will primarily use this as a place to put text companions to YouTube videos.
Multistream with OBS and FFMPEG
This is a text companion to a YouTube video about streaming to multiple channels at once using OBS and FFMPEG.
Web Scraping with PHP
In this article I will be showing you how to use PHP to scrape a web page. This article assumes that you have a basic understanding of PHP and programming concepts, and that you have access to a server capable of running PHP. If you do not have access to a server capable of running PHP, you can install WAMP on Windows 10 by watching my installation video. In a way, scraping involves reverse engineering a web page so it helps to be familiar with HTML.
Input validation with Java
In this article I will be showing you how to perform validation on user input in Java. This article assumes that you have a basic understanding of Java and the Scanner class, and that you already have a compiler or IDE installed. I will be using JGrasp but you can use your favorite enviroment.