Skip to content

Instantly share code, notes, and snippets.

View SymphonySimper's full-sized avatar
🎯
Focusing

Sri Senthil Balaji J SymphonySimper

🎯
Focusing
View GitHub Profile
@SymphonySimper
SymphonySimper / arch.conf
Last active August 2, 2023 07:08
This for silent boot in systemd file location /boot/loader/entries/arch.conf
# Created by: archinstall
# Created on: 2023-07-24_05-27-46
title Arch Linux (linux)
linux /vmlinuz-linux
initrd /intel-ucode.img
initrd /initramfs-linux.img
options root=PARTUUID=2f1636a4-d5be-48c2-8d4a-8435d2227a56 zswap.enabled=0 rw rootfstype=btrfs quiet loglevel=3 systemd.show_status=auto module_blacklist=r8169 r8168.aspm=0 r8168.eee_enable=0 pcie_aspm=off rd.udev.log_level=3
@Prakasaka
Prakasaka / bash-colors.md
Created July 25, 2020 09:14 — forked from JBlond/bash-colors.md
The entire table of ANSI color codes.

Regular Colors

Value Color
\e[0;30m Black
\e[0;31m Red
\e[0;32m Green
\e[0;33m Yellow
\e[0;34m Blue
\e[0;35m Purple
@lopspower
lopspower / README.md
Last active December 26, 2025 18:22
Hexadecimal color code for transparency

Hexadecimal color code for transparency

Twitter

How to set transparency with hex value ?

For example, you want to set 40% alpha transparence to #000000 (black color), you need to add 66 like this #66000000.

All hex value from 100% to 0% alpha:

@Tblue
Tblue / mozlz4a.py
Last active November 16, 2025 16:46
MozLz4a compression/decompression utility
#!/usr/bin/env python3
# vim: sw=4 ts=4 et tw=100 cc=+1
#
####################################################################################################
# DESCRIPTION #
####################################################################################################
#
# Decompressor/compressor for files in Mozilla's "mozLz4" format. Firefox uses this file format to
# compress e. g. bookmark backups (*.jsonlz4).
#