Skip to content

Instantly share code, notes, and snippets.

View h2kyaw's full-sized avatar
🎯
Focusing

Hein Htet Kyaw h2kyaw

🎯
Focusing
View GitHub Profile
@ardhptr21
ardhptr21 / README.md
Last active September 24, 2024 16:11
Customize Git Bash Terminal

Customize Git Bash Terminal 🐱‍💻

preview

Usefull Link:

@narate
narate / create-hotspot.md
Last active August 16, 2025 11:55
Create Wi-Fi Hotspot on Linux using nmcli

Create a Wi-Fi hotspot on Linux using nmcli

Original post : https://unix.stackexchange.com/a/310699

nmcli con add type wifi ifname wlan0 con-name Hostspot autoconnect yes ssid Hostspot
nmcli con modify Hostspot 802-11-wireless.mode ap 802-11-wireless.band bg ipv4.method shared
nmcli con modify Hostspot wifi-sec.key-mgmt wpa-psk
nmcli con modify Hostspot wifi-sec.psk "veryveryhardpassword1234"
@jedsundwall
jedsundwall / gist:586144
Created September 18, 2010 23:00
CSS to add commas to items in an unordered list without leaving a comma hanging at the end of the list
ul.tags {
display: inline;
margin: 0;
padding: 0;
}
ul.tags li {
display: inline;
list-style: none;
margin: 0;