-
Flatpaks for newbies
Sunday, September 13, 2020
Flatpaks are special apps that are sandboxed, and are from special repositories. The most popular Flatpak repository is Flathub, where anyone can put any Flatpak. Also, Flatpaks work for over 27 distros, which make it a good choice for deploying software. In this post, i’ll show you how to get Flatpak, and the basics of Flatpaks. Installation It depends on your distribution, they have a setup page that shows you how to install it.…
-
Kubuntu Installation Guide
Sunday, September 13, 2020
In this post, i will show you some Linux basics and a little bit about Kubuntu. Kubuntu is a Linux distribution that is basically Ubuntu but with KDE Plasma as the desktop environment (like a GUI). I’d like to thank Zera since he wanted me to make a post about some debian based distro. Installation The Kubuntu installation is pretty straight forward, you go to the Kubuntu Website and you download the latest LTS version.…
-
The Brave Browser, should you use it?
Friday, September 11, 2020
Brave is a popular chromium based browser made by Brendan Eich (co-founder of Firefox) that is open source. Brave comes built-in with an ad blocker, and because of that, it’s faster than Chrome. Many people like it, but should you use it? That is the question i will try to answer. Good stuff Brave blocks ads, and upgrades your connection to HTTPS when it can. This makes it better than typical browsers such as Chrome for privacy.…
-
My Experience With Endeavour OS
Thursday, September 10, 2020
A few weeks ago, i decided to install Endeavour OS, an Arch Linux based distro, on my laptop. I was bored of Kubuntu, and it had issues with my CPU since it was not well supported by the LTS kernel. In general, i also prefer getting updates faster. All of this made me want to switch to a rolling release distro. The first distro that i tried to install was Manjaro, it was everything i wanted, however, the installer would freeze, something that holded me back from trying it (it did work on a VM).…
-
Python vs JavaScript
Wednesday, September 9, 2020
Both languages are very good, but what should you use for what, and why? That’s what i will be discussing in this post. I’d like to thank ZaphireHacks for bringing this up, i already had this debate before, but i think it’s important to have it again. I will be rating JS and Python with 3 points, which are: Performance Functionality and Difficulty First, i think it’s important to define what we mean by Python and JavaScript, because for some points, the language itself can’t just define that because there are multiple implementations.…
-
Welcome to my blog!
Wednesday, September 9, 2020
This will be my blog, i made it in Hugo and it’s pretty good imo. There’s a few stuff i still gotta learn about Hugo but the docs are pretty straight forward. Let’s see how code looks in it (i use monokai) [print(f"Whats up! It's number {i}") for i in range(1, 100000000001)] From what i’m seeing, it looks pretty good! In this blog, i’ll talk about computers, programming, linux and stuff like that.…
-
Why All the Hate for JavaScript?
Wednesday, September 9, 2020
Hello World! I just wanted to ask you a question, why do so many people hate JS? Btw this is a test article, i’ll add stuff later. Express server: const express = require("express") const app = express(); app.get("/", (req, res) => { res.send("Are you da legendary captain milk?") }) app.listen(process.env.PORT || 3000, () => console.log("Server up!")) Test test test test x2