Skip to content

Instantly share code, notes, and snippets.

View HieuPythonBeginner's full-sized avatar

HieuPythonBeginner

View GitHub Profile
@HieuPythonBeginner
HieuPythonBeginner / Caculator (my first project)
Last active August 13, 2025 14:17
Python first project
import sys
import time
def type_effect(text, delay=0.05):
"""In ra từng ký tự với hiệu ứng gõ chậm."""
for char in text:
sys.stdout.write(char)
sys.stdout.flush()
time.sleep(delay)
print() # Xuống dòng sau khi in xong
@HieuPythonBeginner
HieuPythonBeginner / just a how to dowload Vscode in Kali Linux with LMArena Ai
Last active August 14, 2025 04:10
dowload Visual Studio code in Kali Linux
# 1) Cập nhật và cài gói cần thiết
sudo apt update
sudo apt install -y curl gpg
# 2) Thêm khóa GPG và repo của Microsoft
sudo install -d -m 0755 /etc/apt/keyrings
curl -fsSL https://packages.microsoft.com/keys/microsoft.asc \
| sudo gpg --dearmor -o /etc/apt/keyrings/microsoft.gpg
echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/microsoft.gpg] https://packages.microsoft.com/repos/code stable main" \
| sudo tee /etc/apt/sources.list.d/vscode.list > /dev/null
@HieuPythonBeginner
HieuPythonBeginner / Data.py
Created September 27, 2025 07:22
coloring text Terminal
import time
import sys
import math
def data(text, delay=0.03):
"""
Hiệu ứng gõ phím từ từ với màu sắc RGB đổi liên tục.
"""
# ANSI escape codes cho màu RGB
def rgb_to_ansi(r, g, b):