welcome lionet!
So, update on the project in my application. I have added a bunch of content on the main page. It's basically finished as of now. The second page has started getting content, and i have made it so the remaining pages will use the same layout as the main page. For now it looks a bit empty but I'll try to fix that soon enough. I'm really happy with the fact that the main page is using units like vw and hw, which means the main banner is always the exact size of the users screen. This way it keeps looking clean no matter the monitor.
Btw, sorry that everything is in a foreign language. I have to use swedish since it's a school project.
Also note that everything in this is fictional. It's a website made for a made up band.
previews
Link to github
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);
});