24,227,584 questions
0
votes
0
answers
6
views
string is allocated but NULL in C
hello i have allocated a string in one function and i get the following error message if i try to initialize an other string in an other function with it.
typedef struct {
int number;
char *...
0
votes
0
answers
3
views
How is the defined function used in if statements in perl
currently I am trying to interpret the following line of code: if (! defined $variabletype) {$variabletype = "";}
I am relatively new to perl so while I can guess what this conditional ...
0
votes
0
answers
6
views
df.to_json output appears to skip a date that is in the dataframe
I have very limited knowledge of pandas.
The data I'm using covers 2 dst (daylight saving) transitions for the UK (from 1 Sep 24 to 30 Apr 25), and consist of timestamps in milliseconds with values. ...
0
votes
0
answers
6
views
Microsoft Graph API identify user License POWER BI versus POWER BI PRO -
The microsoft Graph API has GET USERS assigned plans which allows you to see if a user has power bi enabled however I cant seem to differentiate between a user with a pro license and just a normal PBI ...
0
votes
0
answers
6
views
Hybris: Get discount amount on items which are not in the cart
We are using SAP Commerce 2205 supporting a flow when user is on checkout page and proposed with similar products, but they could include some features.
Currently the ask is to show discounted price ...
0
votes
0
answers
8
views
Facing issues with DynamoDB Dax - Incorrect client builder
Working with Java and DynamoDB Dax, unable to find any clear examples for Dax. There are 3 packages
https://mvnrepository.com/artifact/software.amazon.dax/amazon-dax-client
https://mvnrepository.com/...
0
votes
0
answers
11
views
Why are posts created using pages api visible to only to admin?
I have a page, i have admin access for that page. Wanted to post blog to that page.
I'm able to implement login with facebook, and also able to get user and page access token. Also adding a post works....
0
votes
0
answers
12
views
How to enable multiple selection in data validation dropdown using Google Sheets API?
I'm trying to create a data validation rule that allows multiple selection from a dropdown list using the Google Sheets API. In the Google Sheets UI, there's an option "Allow multiple selections&...
2
votes
0
answers
14
views
How to Test Password Reset Endpoint Using a Token That Doesn’t Exist in the Database in FastAPI?
I'm building a backend system using FastAPI, and I’m currently working on implementing unit tests for the password reset functionality that involves using tokens.
Here’s the snippet of the code I’m ...
0
votes
0
answers
6
views
How to correctly serialize Nested columns for ClickHouse Kafka engine using C#?
I'm trying to send JSON messages from a C# application to ClickHouse via Kafka. My goal is to store data in a table with Nested columns, for example:
characteristics Nested (
char_id UInt32,
...
-1
votes
1
answer
19
views
switch constexpr member initialization dependend on bool template parameter
Is there a way to switch member variable initalization based on template parameter?
Some enable_if trick or something similar?
I could do something like this with a lambda call
template<bool A>
...
1
vote
0
answers
6
views
Initial task failed for action RecaptchaAction(action=signInWithPassword)with exception
I have a problem with my SignInWithPassword, the email and password are correct but the "auth credential" is invalid.
How I can solve this? I would to know if it's neccessary, for example, ...
0
votes
0
answers
4
views
Accessing doc strings from Spyder
It's hard to pull up the doc string of some objects in Spyder. In this particular case, I tried various ways to access the documentation for a pandas DataFrame and GroupBy object:
>>> import ...
0
votes
0
answers
4
views
Alias domain gets redirected by Wordpress or ends in 404
We have a domain alias.com , which is a CNAME to domain.com .
When we navigate to it (it's a Wordpress site) we get unexpected redirects to the original domain , even with malformed paths if it's a ...
0
votes
0
answers
9
views
How to copy the visible row instead of all row til the last row?
In my excel, there is a filter at E6 always, so the next visible row could be E170 or E600 or others, and i just wanna copy the visible rows under E6 instead of copying all rows before the last row. ...