close
Skip to main content
The 2026 Annual Developer Survey is live— take the Survey today!
Filter by
Sorted by
Tagged with
Filter by Employee ID
Advice
0 votes
3 replies
25 views

So, I have a simple web server written in Python using Bottle.py # Useful functions from bottle import * import random # define what features of a quote we care about class Quote: def __init__(...
Score of -2
1 answer
40 views

Trying to install mypy in PyCharm. However mypy install doesn't appear to complete and shows error "mypy configuration is incomplete". I suspect this is because PyCharm cannot find the ...
Advice
1 vote
1 replies
73 views

I am trying to set up a call table referring to class methods but I cannot find the appropriate languade solution. # class instruction table for assembler # class variable instrList contains ...
Score of -1
2 answers
53 views

I want to perform ydata_profiling on a dataset, but whenever i run the code of ydata_profiling then it shows me this error: --------------------------------------------------------------------------- ...
Score of -3
2 answers
106 views

I have a for loop that creates buttons but I cannot access each one individually. What I tried was using a list but one cannot assign an Object to a String Object that's the error I got. Another try ...
Advice
1 vote
4 replies
85 views

I have built a solid foundation in Python fundamentals and intermediate concepts. However, I am facing a common hurdle: transitioning from theoretical knowledge to real-world application. I observe ...
Score of 2
2 answers
132 views

I am getting this type hint error in PyCharm (Python 3.14): Unexpected type(s): (str | None) Possible type(s): (LiteralString) (str) but can't see what is wrong with my code. filename: str | None = ...
Best practices
0 votes
1 replies
61 views

Title: How can I implement orthophoto generation and orthomosaic creation in a GIS web application? I'm developing a GIS web application and would like to add an Orthophoto / Orthomosaic generation ...
Best practices
4 votes
4 replies
183 views

I would like to create my own programming language for educational and novelty purposes. I am comfortable with Python 3xx, HTML 5, CSS and half of JavaScript. I had a go in python but I was basically ...
Best practices
0 votes
9 replies
123 views

On paper, I can reduce 977 down to 30 but the below code gets wrong values. random import sys n=63799 pt = n//2 db=[] d= 977 We are expecting: 977 488 244 122 61 30 db.append(d) for i in range(5): ...
Score of 1
0 answers
62 views

I am currently working on a bot that uses reinforcement learning to trade stocks, There are 2 types of models, one for the individual companies, like tsla or msft, and that model is trained only on ...
Score of -6
0 answers
74 views

I'm developing a Python web scraper using Camoufox, Playwright, cloudscraper, requests, and BeautifulSoup. The target website occasionally serves a CAPTCHA page instead of the expected HTML, even when ...
Score of 0
0 answers
59 views

I have a MySized protocol and a mylen function expecting a MySized argument: # coding: utf-8 from abc import ABC, abstractmethod class MySized(ABC): __slots__ = () @abstractmethod def ...
Advice
3 votes
11 replies
217 views

If you don't have a fair amount of experience in the world of coding, do you think copy and pasting codes back and forth from Claude should be avoided? Take my case for example, I have a couple of ...
Score of 2
1 answer
90 views

I'm hitting a bit of a wall with TQL (GridDB's query language) performance on my GridDB Cloud instance. I've got a TimeSeries container that's grown quite large (about 500 million rows of sensor data),...

15 30 50 per page
1
2 3 4 5
147029