Newest Questions
24,146,130 questions
Tooling
0
votes
0
replies
10
views
I've been struggling to manage my work with 10+ tabs open in my browser. Can you suggest a tool that lets me organize everything in one place?
Every morning starts with the same routine: Jira for sprint tasks, Slack for team conversations, Jibble to clock in, Trello for planning, Gmail for emails, Google Docs for notes, GitHub for code ...
Score of 0
0 answers
3 views
How does one create a single input with multiple segments in tailwind?
I was looking thru all of the sites in the internet, and apparently, no one bothered to show an example where there would be a single text-box, but I can input on different segments in that same text-...
Tooling
0
votes
0
replies
4
views
Tailwind Color Palette Generator – Is There a Simple Way to Generate Consistent Shades?
I'm working on a Tailwind CSS project and I'm looking for a good way to generate a complete color palette from a single base color.
Ideally, I need a tool that can create shades like 50, 100, 200......
Best practices
0
votes
0
replies
11
views
How Can I Create More Professional Designs in Adobe Express?
I recently started using Adobe Express to create social media posts, flyers, and promotional graphics. So far, I’ve found it to be an easy and user-friendly platform, especially for someone who wants ...
Score of -1
1 answer
41 views
Encoding detected wrong, reading fails
I want to read CSV files with a German encoding saved by Windows.
I try to detect the encoding with this code:
# detect encoding
with open(impportFile, "rb") as f:
...
Best practices
0
votes
0
replies
19
views
Asking suggestion for explaining differences in probability
I do work in healthcare improvement and we sometimes set goals based on probability. For example, reducing hospital 30-day readmissions back into the hospital around the mean of 0.10. Or if our median ...
Tooling
0
votes
3
replies
38
views
Replace values in SQL
How can I replace numerical values with NULL in SQL
You’re a junior data analyst working for a local news station and your team uses BigQuery to analyze weather trends. The station’s meteorologist ...
Advice
0
votes
0
replies
10
views
Computing class group of the splitting field of a polynomial
Let $f(X) \in \mathbb{Q}[X]$ be a fixed irreducible polynomial of degree $5$ whose splitting field $F$ is an $S_5$-extension of $\mathbb{Q}$. I am trying to compute the $p$-class group of the ...
Best practices
0
votes
1
replies
45
views
time complexity ~~ python
Find the maximum subarray sum (Kadane's Problem) in an array containing negative numbers. Brute force is O(n²)/O(n³) — optimize to O(n).
Find all pairs in an array that sum to a target value (return ...
Score of -1
0 answers
36 views
Vulkan dynamic rendering (vkCmdBeginRendering) hangs on Intel UHD when using a depth attachment and 1 or more color attachments
This is my second attempt at asking about this issue. I'm building a render graph for an in-house Vulkan engine using dynamic rendering (Vulkan 1.3, dynamicRendering + synchronization2), on Win32. I'...
Advice
0
votes
1
replies
33
views
involves responsive and adaptive design in flutter
Sizing info is a class that has properties orientation, device screen and the screen size. I am just trying to understand the code below, I am a beginner. if you need more information, I am ready to ...
Advice
0
votes
0
replies
18
views
Procedure for goldengate DR failover
I am trying to define failover runbook for goldengate failover in following environment. Could someone help me to prepare the document based on the best practise.
1.Enabled oracle active dataguard to ...
Advice
0
votes
1
replies
68
views
How to turn a list of strings into multiple dictionary keys?
For my project, I need to access a nested dictionary using a path system.
I need to convert ["test1", "test2"] into dict["test1"]["data"]["test2"][&...
Tooling
0
votes
0
replies
30
views
Seeking Guidance from Experienced ML/Embedded Engineers on an Edge AI Sign Language Recognition Project
Hi everyone,
I'm a final-year Electronics Engineering student, and my team is working on our major project. I'd really appreciate feedback from people who have experience in computer vision, embedded ...
Score of -2
0 answers
40 views
Why does YAML with colon inside quotes fail parsing?
a:
- b "c: "
Every YAML parser I could find chokes on the colon here. It works if I do "c:" without the space. Why?