Recently Active Questions
24,158,515 questions
1
vote
2
answers
3k
views
Css countdown circled animation
I am trying to create a circled countdown animation. I have created almost all the parts except I can't add another circle inside the circle that should animate together down.
All I need is to get the ...
Advice
0
votes
5
replies
57
views
Looking for App Feature Ideas Aligned with My Travel & Tour Business
I run a small travel and tour business that offers customizable tour packages, transportation, and guided experiences. Most bookings currently happen via Facebook, WhatsApp, and direct messaging.
I’m ...
0
votes
2
answers
302
views
how to make python __FILE__ display symbolic path when accessed use symbol path
the __FILE__ is a convenient macro designed to access current FILE path in python. But there's some issue with it when I use it. I have a file say /home/a/b.py so when accessed from directory a the ...
Tooling
2
votes
2
replies
55
views
Free .NET Maui translator
I am looking for a free .NET C# library that can translate texts. It doesn't need to be that good.
I am looking for something that can preferably auto detect languages.
Can you recommend an translator ...
Advice
1
vote
1
replies
109
views
Constraints in the first template parameter
Why can't we put a constraint on the first type parameter of the concept?
Why can't we use the short form of the concept for non-type parameter?
Why is it possible to specialize concepts only in ...
1
vote
1
answer
40
views
One aync lock call or multiple async lock calls, what is better and safer in Python?
I trying to make ratelimiter for users in aiogram bot with middlware, now I created class for requests and class for ratelimiter, where reuqest are. My problem is what is better for performance and ...
0
votes
0
answers
9
views
Malloc makes code crash in C while doing merge sort
I'm new to the C language (I'm doing CS50x) and I want to code a merge sort algorithm. I want to debug my code but I can't figure out why malloc in sort_disassemble is crashing.
P.S. The code isn't ...
0
votes
0
answers
4
views
Problem displaying a message on a ajaxToolkit:ModalPopupExtender
When I display message from within a ajaxToolkit:ModalPopupExtender the ajaxToolkit:ModalPopupExtender closes after the message closes.
How can I display ajaxToolkit:ModalPopupExtender and still ...
1
vote
2
answers
166
views
Difference between dates in SAS doesn't match results
I need to recreate the code from SAS in R but I'm struggling to get the same results. I can get some rows to be the same but at the same time some other rows are different.
Can anyone help with ...
0
votes
0
answers
7
views
Loading pytest fixtures from separate Poetry package
I am trying to move some test configuration into a common Poetry package to avoid repetition of the same fixtures.
In a project there is a package named user-service with tests folder inside. Inside ...
2
votes
2
answers
8k
views
complex number to polar form in python
I'm new to python so please bear with me.
The problem is:
"Write a function polar(z) to convert a complex number to its polar form (r,theta). You may use the math.atan2 and math.hypot functions but ...
-5
votes
1
answer
21
views
How to Integrate a Currency Exchange API to Get Real-Time Rates in JavaScript
I am trying to integrate the Currencylayer API into my website to fetch real-time exchange rates for different currencies.
My goal is to display converted currency values dynamically on my website, ...
Best practices
0
votes
0
replies
8
views
API for study purpose
Good day everyone looking for public api ai for free for study purpose can you give me a links or any api's to support my study in webdev- and any tips about WEB DEV API build with an app how to ...
Tooling
0
votes
12
replies
85
views
Git automatically identifying the common ancestor for an "onto" rebase
An integral component of my workflow with Git is to rebase one branch onto another branch, that is, to invoke the rebase command with the option --onto.
Even with the option, it is required to specify ...
0
votes
2
answers
44
views
Splitting string into respective columns
I am trying to read the log files and split the data into multiple columns using Databricks and Python. So far I have been able to split the string into the Array format, but I not able to put them ...