Skip to content

Instantly share code, notes, and snippets.

View EdThePro101's full-sized avatar
🏫
In High School

Edwin Pratt EdThePro101

🏫
In High School
View GitHub Profile
@EdThePro101
EdThePro101 / Matrix.hs
Last active February 4, 2021 06:09
This Gist contains some useful matrix operations such as addition, subtraction, exponentiation, etc.
module Matrix where
import Data.List (transpose)
newtype Matrix = Matrix [[Integer]] deriving (Show, Eq)
mFromList :: [[Integer]] -> Matrix
mFromList lst = Matrix lst
mToList :: Matrix -> [[Integer]]
@EdThePro101
EdThePro101 / how-to-setup-tlauncher.md
Created January 20, 2022 14:54
This is a guide to setting up TLauncher!

How to: Set up TLauncher

If you try installing TLauncher with JDK 17, you may end up with an error saying you need to install Java 8. The solution to this problem is a bit tedious, as you need two Java versions. So I hope this guide will clear everything up 😄

This was tested on Windows 10 and Adoptium's OpenJDK.

First and foremost, uninstall any Java versions on your system including TLauncher.

Afterwards, head over to Adoptium's OpenJDK 8 Archive and download the JRE Installer for your system. While the JRE is installing, make sure that all the features except Set JAVA_HOME variable is selected.