- React JS
- Redux Thunk
- Redux Form
- Redux Logger
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Node modules | |
node_modules/ | |
# Bun dependencies | |
bun.lockb | |
.bun/ | |
# Logs | |
logs/ | |
*.log |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"Code":"XX", | |
"Name":"-No Country-", | |
"ISO_Alpha_2_Code":"", | |
"ISO_Alpha_3_code":"", | |
"ISO_Numeric":"" | |
}, | |
{ | |
"Code":"AF", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"currencyCode": "AED", | |
"currencyName": "UAE Dirham", | |
"country": "United Arab Emirates", | |
"countryCode": "AE", | |
"flag": "https://flagcdn.com/ae.svg" | |
}, | |
{ | |
"currencyCode": "AFN", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"currencyCode": "AED", | |
"currencyName": "UAE Dirham", | |
"country": "United Arab Emirates", | |
"countryCode": "AE", | |
"flag": "https://flagcdn.com/h20/ae.png" | |
}, | |
{ | |
"currencyCode": "AFN", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"currencyCode": "AED", | |
"currencyName": "UAE Dirham", | |
"country": "United Arab Emirates", | |
"countryCode": "AE", | |
"flag": "https://twemoji.maxcdn.com/2/svg/1f1e6-1f1ea.svg" | |
}, | |
{ | |
"currencyCode": "AFN", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pyautogui as bibi | |
import time | |
time.sleep(5) | |
for i in range(150): | |
bibi.write("khor thodd dw lieng sa khai mouk~~") | |
time.sleep(.5) | |
bibi.press("Enter") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
n = 8 | |
m = n+1 | |
for i in range(n//2-1): | |
for j in range(m): | |
if i == n//2-2 and (j == 0 or j == m-1): | |
print("*", end=" ") | |
elif j <= m//2 and ((i+j == n//2-3 and j <= m//4) \ |