mini shxp
@minishxp
Hey! I'm Minishxp. I code in Python, Node.JS & C#.
Contact me: minishxp.c#0001
One of my (big) projects: iohost.mikhailbratsian.repl.co
Hi.
I made a thing, it's a simple file uploader with an API for
Python 3.9+.
yeahhhhhhhhhhhhegoheiruukdjngs
Node.js
DynamicSquid Nice! I don't think it detects newlines in files though, so the entire file is just displayed in one line2 years ago
1
I was coding my multitool program and I came across a weird error that just says:
inconsistent use of tabs and spaces in indentation
and it point out
RYANTADIPARTHI Solution
one good way of solving that is. unindenting everything near it, and indenting again. I've had this problem multiple times. Sometimes python gets confused on what's indented, and what's not. So like this:
if os == "Firefox" or os == "firefox":
print(chr(27) + '[2j')
print('\033c')
print('\x1bc')
driver = webdriver.Firefox()
driver.get(input("URL? "))
and indent it back again:
if os == "Firefox" or os == "firefox":
print(chr(27) + '[2j')
print('\033c')
print('\x1bc'2 years ago
An apps with different functions like formatting text into bytes and video game wasd controls