Skip to content

Instantly share code, notes, and snippets.

@ruimelodev
ruimelodev / icons-list.json
Last active April 3, 2024 02:18
FontAwesome v6.5.2 free icons list
[
"fa-solid fa-house",
"fa-solid fa-magnifying-glass",
"fa-solid fa-user",
"fa-regular fa-user",
"fa-brands fa-facebook",
"fa-solid fa-check",
"fa-solid fa-download",
"fa-brands fa-twitter",
"fa-solid fa-image",
@ruimelodev
ruimelodev / progress.py
Created November 16, 2022 19:15
Get loop progress in Python
total = 12345
step = 10
iteration = 0
for _ in range(total):
iteration += 1
if (progress := iteration / total * 100) >= step:
print(f"Progress {round(progress)}% [{iteration}/{total}]")
step += 10
# Output: