Skip to content

Instantly share code, notes, and snippets.

View aamaanaa's full-sized avatar
😍
Echinda from Re-Zero

Aamaanaa aamaanaa

😍
Echinda from Re-Zero
View GitHub Profile
@aamaanaa
aamaanaa / gist:7396a81be39d4549567e1484b82faef3
Last active March 5, 2026 22:36
How to Install Goland on Linux

Taken from: https://aamaanaa.com/


Goland, the Go IDE by JetBrains, can be installed manually on any Linux distribution using the official tarball. This approach ensures you always get the untampered, official binary without relying on Flatpak or third-party repositories.

This guide provides a ready-to-use bash script for automatic installation and also shows how to run the installation manually. This should work on any Linux distro.

If there is enough interest, future guides may cover multiple JetBrains products.

# [Sid Meier’s Civilization® VI]
# FiraxisBugReporter.exe
# 52.216.233.181, 52.216.166.5, 52.216.165.21
#0.0.0.0 s3.amazonaws.com # required for other stuff as well (websites and software)
# LaunchPad.exe
# Block: 180.213.167.255, 54.209.151.59, 52.72.178.179
0.0.0.0 2klauncher.2kcoretech.online # Graphics/advertising
0.0.0.0 cdn.2kgames.com # Graphics again/advertising
0.0.0.0 d19mxcar6gop8d.cloudfront.net
0.0.0.0 telemetry.api.2kcoretech.online
@aamaanaa
aamaanaa / NOTES.md
Last active February 20, 2026 15:12
Fedora notes

Fedora notes

These are my personal notes. It does not mean it is for you. I will update this from time to time.

Installing spotify

Install spotify:

sudo dnf install lpf-spotify-client -y

Add our user to pkg build group:

@aamaanaa
aamaanaa / gomutex.md
Last active January 30, 2025 11:02
Golang Linux & Mac Mutex | Lock file | Only allow one instance of your go app on unix based systems (mac os, Linux)
package utils

import (
    "errors"
    "golang.org/x/sys/unix"
    "os"
)

const lockFile = "/tmp/.test.lock"
@aamaanaa
aamaanaa / gist:20a55dcf98b094583196c662b03f7bbe
Created October 27, 2022 12:03
Linux write access to /var/www/html/project
You will need to add you user to the 'apache' group first. Log out afhter you have done that.
$ sudo mkdir /var/www/html/project
$ sudo chown -R $USER:apache /var/www/html/project
$ sudo chmod -R 775 /var/www/html/project