Skip to content

Instantly share code, notes, and snippets.

View tanbaycu's full-sized avatar
:shipit:
mai

Tran Minh Tan tanbaycu

:shipit:
mai
View GitHub Profile
/**
* Youtube Music Player dynamics island from askabot
* Original author: u/Askabot on Reddit
* Optimized for mobile responsiveness by: tanbaycu
* Last updated: 11/5/2025
*
* Changelog:
* - Cải thiện responsive trên điện thoại
* - Tối ưu hiệu năng phát nhạc
* - Thêm các animation mượt mà
@tanbaycu
tanbaycu / snippet.py
Created February 3, 2025 11:39
Code snippet created by Discord bot
x = 0
while x<10:
if x==5:
break
print("hello")
@tanbaycu
tanbaycu / snippet.py
Created February 1, 2025 04:43
Code snippet created by Discord bot
@bot.command(name="forward-notes")
async def forward_notes(ctx, *, content: str):
"""Chuyển tiếp ghi chú hoặc đoạn mã với hiệu ứng màu sắc và chi tiết thú vị."""
try:
channel = discord.utils.get(ctx.guild.channels, name="server-notes")
if channel:
# Tạo một màu ngẫu nhiên cho embed
random_color = discord.Color(random.randint(0, 0xFFFFFF))
# Danh sách các emoji ngẫu nhiên cho tiêu đề
@tanbaycu
tanbaycu / snippet.javascript
Created January 31, 2025 10:11
Code snippet created by Discord bot
function fibonacci(n) {
const fibSequence = [0, 1];
for (let i = 2; i < n; i++) {
fibSequence[i] = fibSequence[i - 1] + fibSequence[i - 2];
}
return fibSequence;
}
@tanbaycu
tanbaycu / snippet.html
Created January 31, 2025 10:09
Code snippet created by Discord bot
<!DOCTYPE html>
<html lang="vi">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Trang Web Đơn Giản</title>
</head>
<body>
<h1>Xin chào!</h1>
<p>Đây là một ví dụ về trang web đơn giản sử dụng HTML.</p>
@tanbaycu
tanbaycu / snippet.py
Created January 31, 2025 10:08
Code snippet created by Discord bot
x = 0
while x<10:
print("x: ",x)
if x==5:
break
x+=1
print("end")
@tanbaycu
tanbaycu / snippet.py
Created January 31, 2025 10:04
Code snippet created by Discord bot
x = 10
print(x)
@tanbaycu
tanbaycu / snippet.py
Created January 31, 2025 09:43
Code snippet created by Discord bot
x = 2
print(x)
@tanbaycu
tanbaycu / snippet.py
Created January 31, 2025 09:25
Code snippet created by Discord bot
x = 0
print(f"Gia tri cua {x} la:" ,x)
@tanbaycu
tanbaycu / snippet.python x=0
Created January 31, 2025 09:23
Code snippet created by Discord bot
while x>10:
print("X=: ", x)
if x==5:
break
x+=1
print("end")