Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
31 views

I am writing a piece of Python code which will output results in binary, denary, hexadecimal or even octal. I would like to provide a subscript to indicate the relevant base – e.g. : 10 + 11 = 1012 ...
ArthurDent's user avatar
1 vote
1 answer
43 views

Some audio CDs have a file called audio.cdindex with artist, album and a list of the titles. I have a python tool to copy my CDs on the NAS and if I don't find the ID of a CD on musicbrainz or cddb I ...
tommiport5's user avatar
Advice
0 votes
2 replies
33 views

(If StackOverflow is not the place for these kinds of general guidance questions, please point me to where I should ask them 😊) Hi there! I have a lot of experience as a programmer, but I've never ...
Shahar Nacht's user avatar
Advice
0 votes
2 replies
36 views

I am working on a retail shelf product detection system using YOLO11m fine-tuned on a 110k SKU dataset with a single class `product`. The model performs well overall but I have two problems after ...
dounia's user avatar
  • 11
Advice
0 votes
5 replies
60 views

I need some star signed borders around my billing form. The first thing that comes to mind is adding star symbols all throughout the code manually. This should work. My question is if there is a ...
Freddy_Nova's user avatar
0 votes
1 answer
47 views

I have a python project with uv where I want to set an exclude-newer policy but it ignores duration. In my pyproject.toml I have [tool.uv] exclude-newer = "7 days" However when I run e.g. ...
Honestiore's user avatar
Tooling
0 votes
6 replies
93 views

With Python it's gorgeously simple, my problem is instantly solved in one method: text=''' dab a b c dab e f g dab h i j ''' print(text.split('dab')) Nevertheless, doing everything in Bash is a ...
Signor Pizza's user avatar
-2 votes
0 answers
37 views

I am building a Python library for molecular dynamics simulations using Domain-Driven Design. My Molecule entity will have a Topology value object to handle coarse-grained representations. I found two ...
Pablo Sánchez González's user avatar
-5 votes
0 answers
55 views

I recently used this python library on injecting proxy username and password on Selenium https://github.com/freezingdata/selenium-authenticated-proxy It worked for a couple of months, but recently ...
Rocky's user avatar
  • 129
Advice
0 votes
1 replies
37 views

How can I automate the extraction of team page data from multiple websites? I need to collect person details from pages like “Team,” “Our Team,” “Meet the Team,” “Leadership,” or “Join the Team.” ...
Khan Kabir's user avatar
0 votes
0 answers
75 views

In the following snapshot, the image of the pet is supposed to be in an "Idle" state, but is currently in a "Sad" state, despite the console saying the state is currently in "...
floofyneko69's user avatar
0 votes
0 answers
59 views

In the following window, I intend to have the labels on the right to be updated as the variables relating to these labels are modified import random, csv import tkinter as tk from tkinter import ttk, ...
floofyneko69's user avatar
0 votes
0 answers
78 views

I have a complex C++ application (call it foo) that exposes an API that is wrapped for Python via Swig. This provides a 'statefull' library -- i.e. large amounts of complex data are kept on the C++ ...
Rob McDonald's user avatar
Best practices
1 vote
0 replies
60 views

I'm creating a project to add to a not-yet-existent portfolio and I have some things I'm confused about. The goal of the project is to create the most comprehensive collection of artwork (drawings,...
somedude's user avatar
Best practices
0 votes
1 replies
55 views

I have a FastAPI app using LangChain agents that works fine at low traffic but struggles at scale. Current setup: from fastapi import FastAPI from langchain.agents import initialize_agent, AgentType ...
Sergio G's user avatar

15 30 50 per page
1
2 3 4 5
147090