Skip to content

Instantly share code, notes, and snippets.

View ronniebasak's full-sized avatar
🏠
Working from home

Sohan Basak ronniebasak

🏠
Working from home
View GitHub Profile
@ronniebasak
ronniebasak / main.ts
Last active March 23, 2025 17:46
RGB to OKLCH
/*
* Copyright (C) 2025 Sohan Basak (iamsohan.in)
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the WTFPL, Version 2, as published by
* Sam Hocevar. See http://www.wtfpl.net/ for more details.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
@ronniebasak
ronniebasak / install.sh
Last active December 3, 2024 22:13
Setup a Fresh Rocky Installation as ROOT
#!/bin/bash
# Install essential utilities
dnf update -y
dnf install -y epel-release
dnf makecache
dnf install -y htop vim nano bash-completion openssh net-tools git curl wget unzip firewalld fail2ban policycoreutils-python-utils setroubleshoot setools-console
# Start and enable firewalld
systemctl start firewalld