Skip to content

Instantly share code, notes, and snippets.

View JadeMin's full-sized avatar
:dependabot:
I may be slow to respond.

JadeMin

:dependabot:
I may be slow to respond.
View GitHub Profile
@JadeMin
JadeMin / ko_kr.yml
Last active January 26, 2024 14:10
Authy Korean translation
# key template:
# [where]_[section]_[key]
enabled: "&a활성화됨:"
disabled: "&c비활성화됨:"
# can be in minecraft (&x) or hex (#abc123) format
prefix_warning_value: "&l(!)"
prefix_warning_color: "#FFDA4A"
@JadeMin
JadeMin / for.py
Last active September 15, 2023 00:51
Fibonacci with Python
def fibonacci(num: int) -> int:
if num <= 1: return num
prev, current = 0, 1
for index in range(2, num+1):
next = prev + current
prev, current = current, next
return current