Newest Questions
24,178,462 questions
0
votes
0
answers
2
views
Python Multiplication of Two Arrays that May or May Not Have Same Shape
I have a problem where I have two arrays that can possibly have different shapes that I want to multiply together. Let's say I have two cases (I'm just using zeros right now cause all I care about is ...
0
votes
0
answers
8
views
How Do I Use RefCell Correctly?
I'm working on a game based on [agb](https://agbrs.dev). The question is not agb-specific, but I'm forced to work with no_std because of it.
interaction.rs
use agb::fixnum::Vector2D;
use alloc::boxed::...
-1
votes
0
answers
13
views
Space Complexity - more clarification needed
String class are immutable and have an O(n) space complexity, while the StringBuilder class is mutable and has an O(1) space complexity, is this statement valid, or is it inaccurate? Please provide ...
0
votes
0
answers
12
views
R is making the first 26 rows of my data into dates
Heres' my code:
#sum the scores for each protein (collapse based on the same gene symbol)
# Check columns
colnames(subset_df)
ncol(subset_df)
subset_df <- subset_df %>%
mutate(
...
-1
votes
0
answers
8
views
When I generate swagger UI documentation the path has an extra part that is not needed
When I generate the documentation for my AWS API Gateway API there are a couple of odd things going on. First the title that is specified in the openapi.yml file is disappearing. So the title AWS ...
0
votes
0
answers
6
views
python installation on Windows not working
I am having problems installing pytorch in windows. I have recreated another environment, installed pytorch again, but still didnt help
Can you let me know what I am doing wrong? Please see details ...
-2
votes
0
answers
15
views
Why does the `java.util.UUID` class seem to repeat its validation when parsing an input string?
The UUID specifications, RFC 9562 & RFC 4122, both define a canonical textual representation of 128 bits as groups of hexadecimal digits delimited by HYPHEN-PLUS character, 8-4-4-4-12, like this:
...
-1
votes
0
answers
14
views
STUIDO 2026 VB.NET ISSUE WITh FORM DESIGNER
I think this has been going on since Studio 2022
I believe that at one point I renamed the form and now when using 2022 or 2026 (that I love)
I'm having serious issues working whenever I add - remove ...
0
votes
0
answers
5
views
Nuget isn't returning all versions
I'm trying to install the Nuget Package:
dotnet add package Python.Runtime --version 3.0.4
In VS2026 for one of my projects, and it fails stating that the nearest version available is 2.7.9.
If I go ...
0
votes
0
answers
7
views
Problem with Vist List in Odoo Community >18
can anyone tell me why, starting with Odoo 18, `tree` was replaced by `list`, and if this change has been maintained in Odoo 19?
0
votes
0
answers
13
views
How to get html button to display horizontally on mobile
screenshot of mobileWe are currently using a website platform that is very limited so we resorted to using an html button which was working great until we realized how it was displaying on mobile. ...
0
votes
0
answers
17
views
fish shell trap (or --on-signal function) triggers but only when using stdin
Maybe I'll rewrite this to python as I understand the error handling in there a bit better but I'm curious why the behavior is different when it's running as a pipeline vs not:
function args.or.stdin
...
Advice
0
votes
1
replies
3
views
How to fix sfs modding toolkit opening
How to open the spaceflight simulator Modding toolkit in the Unity hub without errors saying files are missing and without it saying it's not safe?
(Make sure you choose the modding toolkit folder ...
0
votes
0
answers
9
views
Change Published Calendar TimeZone in AWS Connect
I am trying to change the timezone from my Published Calendar in AWS Connect, however, it doesn´t let me change it directly. All my forecasted data and staffing groups are already in the time zone I ...
1
vote
0
answers
15
views
Add context info without modifying root logger
I have some custom file writing library code which uses the logging module, like this:
import logging
logger = logging.getLogger(__name__)
class FileWriter:
def write():
logger.info(&...