Recently installed this linux distro as my main system: https://getsol.us
quite happy with it so far, isn't based on ubuntu/arch/etc so it is it's own thing.
Pretty nice.
yeah, when I looked at it I thought about downloading it as well. I'm also looking for a new Compiler.
const Toribash = require("toriapi");
const Api = new Toribash();
Api.getUser("elite").then(user => {
console.log(user.clan.tag);
});
llvm + clang is pretty nice if you're doing low level stuff like C++/C
Update: Made a NodeJS module to make fetching toribash user info a bit easier
https://www.npmjs.com/package/toriapi
js code:const Toribash = require("toriapi");
const Api = new Toribash();
Api.getUser("elite").then(user => {
console.log(user.clan.tag);
});