text string | meta dict |
|---|---|
Q: Xamarin app is crashing within 2-3 seconds after launching the app in VIVO 1904 device(funtouch OS) I have developed a xamarin app which is working fine for all other devices. But it is crashing only in VIVO 1904 device, crash/errors are not logged in app center. App is silently closing within 2-3 seconds after laun... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595297",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: allocating dynamic 2D/3D arrays in c++ with contiguous memory I need to dynamically allocate 2D/3D arrays in c++. I would like these to have contiguous memory, for purposes of sending/receiving with MPI. Is there any advice on how to dynamically allocate 2D/3D matrices, with contiguous memory, and be able to access/... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595298",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Why MYSQL auto-increment doesn't work when i insert a row? When my web application wants to insert new rows in the mysql product table, it's always the same id that is inserted.
Except that this creates errors because the identifier must be unique.
The auto-increment is activated in the product table, this happens s... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595300",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: While(true) Loop Running, But Not Execeuting? I have written a loop, which I want to run, every second, until the present time is equal to a time specified outside of the loop. If the time matches, it would log 'it is time', and break out of the loop; otherwise, it would run again in one second.
I've used node to ru... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595301",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: How can I extract data from complicated set of Arrays in Databricks SQL? I've been trying to export the data I need from the set of arrays. So in short, I have like a dozen of arrays inside of another array. So the basic structure looks as follows:
id example (here I don't know exactly how many objects are ins... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595305",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Azure Ad Authorization is not working in .net 7 mvc, roleClaims count is empty I have implemented Azure Ad Authentication in my .net7 mvc webapp, but failed(actually stuck) to add Azure role based authorization.
I have registered the app, created the roles, and assigned to my user in Azure portal also added the code... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595306",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Does changeNotifireProxyProvider will rebuild if notifyListeners() called? I am use changeNotifireProxyProvider to pass the pass the data from one ChangeNotifire to other ChnageNotifire, In an app there is logout button whener it's clicked it's run the a methode with notifylister() which is the provider I passed the... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595308",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Multiple LoadMemoryAnnotation Exception I created a SRAM module with SyncReadMem, and I preload it with loadMemoryFromFile method like code below.
class SRAM(filename: String) extends Module
{
val io = IO(new SRAMIO())
// Sequential/Synchronous-Read, Sequential/Synchronous-Write Memory
val sram = SyncR... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595309",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: in map() Images Files rerender and redownload everytime useState changes. Is there anything we can do? Like UseMemo This is a Chat app with channels like Slack App. Now, I have a map() function with filtering. The array has all the channels data. When I change the channel, it filters out it's chat (messages and Imag... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595312",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: OData Connector in Power BI issue I am trying to integrate Power BI (desktop) and Dynamics NAV 2017 with OData url. I have created the OData, the link is working fine, but unfortunately when I try to connect on Power BI with the same url I get error: "We couldn't authenticate with the credentials provided". I assume... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595313",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to pause the process in MVC and resume when user select YES and should be aborted for NO My application is in MVC, and database SQL. In our scenario user upload an excel file which may contain more than 100,000 records. The file is converted into data table and than uploaded to the database. Their is a validatio... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595315",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Weird PHP FTP login issue I'm trying to connect to a server setup using FTPES. I looked online and I'm told the way to do this is using ftp_ssl_connect, so I have this code. The variables are all defined to info I've been given.
$ftp = ftp_ssl_connect($ftp_server) or die("Couldn't connect to $ftp_server");
$logi... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595317",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: List of elements (names, attributes and values) to customize backstage view of word? I may be looking in the wrong way and not in the right place, but I can't find in the Microsoft documentation (and elsewhere), a complete explanation for customizing the backstage view of word 365. I peck away at almost nothing here... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595318",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-2"
} |
Q: How do you count unique lists (including combinations) within a list? How do I build a set of lists that are unique but cover the of the potential values within that list. Example below.
Using the example CSV data:
1,2,3,4
2,3,4,2
1,4,2,3
1,2,4,3
1,5,4,2
I do not care about the first item (field) in each row; the... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595319",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Stanza based auto-py-to-exe GUI app throws exception (Windows 10) I am building a Window based .exe for a python script using auto-py-to-exe. It uses Stanza. I am able to build and run the Console based version of the app (the GUI + Console). But the GUI only .exe (Console hidden) based on same auto-py-to-exe settin... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595323",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: DeprecationWarning: executable_path has been deprecated when running my code I get the following error
DeprecationWarning: executable_path has been deprecated, please pass in a Service object
driver = webdriver.Chrome(ChromeDriverManager().install(),options=chrome_options)`
I understand that the error is saying t... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595324",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Pyvis problem with Networkx after Graph Reload I'm here because I ran into some strange behavior during my work with graphs.
I placed here a simple python script to show the problem:
pip install networkx pyvis
from pyvis.network import Network
import networkx as nx
import json
# Generate Graph
nx_graph = nx.cycle_... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595326",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Any way to get out of a while loop I am making blackjack for a small project and I have the basics set up but I have encountered an issue. the game runs off of while Phand!=21 it will ask the user to hit fold or stand. when it hits its fine as it repeats and adds a a card and folding is fine too as it ends the prog... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595330",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to solve this error: type 'Null' is not a subtype of type 'num' of 'other'? This is my code:
sentence_game.dart
import 'package:flutter/material.dart';
import 'package:provider/provider.dart';
import 'package:type/providers/game_state_provider.dart';
import 'package:type/utils/socket_client.dart';
import 'packag... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595331",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: How can I use a parameter URL as a filter in a Looker Studio report? I've followed the instructions to pass a parameter in the URL and I can see it's value in my report.
Seems like I should be able to use it as the value in a filter expression using the URL ID as value.
There must be a way to do this, seems like a ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595332",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Minecraft server startup with ubuntu automatically? How can I make this command run automatically on every boot and work?
screen -S Minecraft java -Xmx3G -Xms3G -jar minecraft_server.1.19.3.jar nogui
I try cronjob but this not works.
| {
"language": "en",
"url": "https://stackoverflow.com/questions/75595333",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: add name of people to the scatterplot I have a dataset of 6 people, which is called df
People
Height
weight
Neil
186
90
Olaf
187
60
Jake
188
75
Mitt
189
77
Gaby
181
62
Sam
180
65
Now I would like to to do a scatterplot which shows the name of the people in above left of the point in the scatter... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595334",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: using PHP how do to check if IP address exist in the IP Blocks list range? using PHP how do i check if user IP address exist in the IP Blocks list range?
i have this user IP address : 102.90.43.205
i have this list of IP Block range like this as a text
102.36.176.0-102.36.179.255
102.36.228.0-102.36.231.255
102.38.5... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595336",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-2"
} |
Q: How to build a desktop application using django project I have one project a screenshot of the user in django i want to host it in ec2 server and many user uses it and admin views the screenshot of every user.
Plz solve with full code
| {
"language": "en",
"url": "https://stackoverflow.com/questions/75595343",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-3"
} |
Q: Selecting an value from a table I'm trying to make an "entity" selector when the user run a function. For example look the code
foo = {
{['selected'] = 1},
{['selected'] = 0}
}
local arrow = true
if arrow then
for k, v in pairs(foo) do
if v.selected == 1 then
v.selected = 0
... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595344",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Communication between subnetwork and another subnetwork secondary IPv4 Here is my network problem on GCP :
*
*VPC : "main"
*
*Subnetwork : "VPN" 10.0.2.0/24
*Subnetwork : "kube" 10.52.0.0/16
*
*Secondary IPv4 ranges for "kube" : "gke-services-range" 10.152.0.0/16
Could I communicate from my VM (10.0.2.3... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595346",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: ./gradlew signingReport ----> BUG! exception in phase 'semantic analysis' in source unit '_BuildScript_' Unsupported class file major version 63 Vs Code da Flutter ile çalışırken Firebase de kullanmak üzere SHA1 ve SHA-256 kodlarını alırken ./gradlew signingReport ile oluşan bug
BUG: BUG! exception in phase 'semant... | {
"language": "tr",
"url": "https://stackoverflow.com/questions/75595347",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: React with Typescript object destructure while setting state I have a type
export type Team={TeamID:string,Description:string}
const [teamdropdownvalues,setTeamValue]=useState<Team[]>([])
const{team}=apiresult
in above result team I am getting array of id,description,name,sortorder. In setstate I am trying array de... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595348",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Finally runs in try/except/finally code block without waiting for complete output of try in Python I have a code block, something like :
file_ctr = 4
try:
if (file_ctr!=5):
raise ValueError('The number of files is different than expected.')
print("I made it")
print("I made it")
print("Model s... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595350",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Nginx - ifs and conditions. Applying headers conditionally So I have these two pieces of code that I am trying to use for our test environment. I am trying to wrap my head around why the add_header works if it's in the if clause, and it doesn't otherwise.
This does add the Access-Control-Allow-Origin header:
locati... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595351",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Ionic 3 Cordova: CSS does not load in iOS simulator only I was trying to create a simulator build on iOS simulator provided by XCode, but the layout is completely not usable when I open it in a simulator.
I tried to inspect the page on Safari and I found all CSS are lost and no styling is applied to the page.
Meanwh... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595352",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Creating a color gradient grid with javascript I am trying to create a variable grid of colors, using Javascript. The rule is that adjacent colors MUST always be similar (no green touching red, for example).
I managed to create something pretty close to what I wanted, but there are a few things that are still bother... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595354",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "3"
} |
Q: How to implement horizontal virtualisation in tanstack table v8? I am building a full scale, editable, sortable table using tanstack table. I have already added virtualisation to rows using the example provided at tanstack table website. However, I also want to implement horizontal virtualisation, and I am lost on i... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595356",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How do I turn on overtype mode I've tried everything? I don't know how to turn overtype mode on, on the chromebook. Could you explain the keys and if I need to press them individually or together.
I am expecting to be able to type over my letters and it not disappear. I've tried the command that the chromebook is te... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595357",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-3"
} |
Q: Spring JDBC failing - Method org.postgresql.jdbc.PgConnection.createClob() is not yet implemented I am working on an application that uses Spring JDBC and postgresql-42.4.24.jar. While executing an update query, the batch application fails with the below exception.
Caused by: java.sql.SQLFeatureNotSupportedException... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595358",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to position interactive icons responsively over a large image? I'm looking for the most sensible way to position interactive markers onto a large image, preferably in a responsive way.
The idea is for the user to be able to click on these various different parts of the image where the icons will be placed, and f... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595359",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to use google-api-python-client package in PyCharm? I am using PyCharm Community Edition 2022.1, with Python 3.10 interpreter.
I am trying to use the google-api-python-client to add elements to a Google Slide.
I've tried import googleapiclient, but it does not recognize the package. When I click the context acti... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595365",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Android Kotlin - QR scanner detecting QR code but not redirecting to default browser When a QR code is detected the integrated camera will close but nothing happens afterwards
binding.scanQR.setOnClickListener() {
val scanner = IntentIntegrator(this)
scanner.setDesiredBarcodeFormats(IntentIntegra... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595367",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Application does not run on IIS server I have an desktop application (not web application) that installed on IIS server (version 8.5 with Windows Server 2012R2). Also, the server has a service to run batch script to generate report. When I run the application, there is no report created, no log files , no file creat... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595369",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-3"
} |
Q: Android: Execute methods when displaying components on screen without interacting with them I have started programming with FireMonkey on Android (until now I was programming in C++Builder 6), and the first problems begin to appear.
As an example:
In both BCB6 and FireMonkey on Windows, if I create a TForm with a TP... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595370",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to check if scroll is on top in nuxt.js? I have a navbar that is transparent only when scroll is on top. Normally, checking the scroll position could be easily done with document.documentElement.scrollTop. The problem is that the document object doesn't exist in server side rendering. How could i dynamically set... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595371",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: how can i fetch the activity_message value if given conditions are verified using python sample data:
user_id = 1
project_id = 2
a = [{
"_id": {
"$oid": "63fda80f3ab1f908c146131d"
},
"data": {
"project_id": 2,
"user_id": 1,
... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595372",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: k8s network policy with helm template I've created the following newtworkPolicy file (for the first time :) and I've issue with the syntax, the error is for line 14 .
templates/network-policy.yaml: error converting YAML to JSON: yaml: line 14: block sequence entries are not allowed in this context
{{- $name := "cv... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595373",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Incrementing total hours using TimeOfDay I have the following code:
String total = "";
var format = DateFormat("HH:mm");
void increment() {
setState(() {
data = {
'beginHour': result['beginHour'], // this gets the value "09:00" for example (String)
'endHour': result['endHour'], // as well as this, ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595374",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to run all tests in one file for different data in Cypress I am using cypress 12.3. I have written page level validation and e2e tests for my application. I want to achieve following - For page level validation, i have written 10 tests. I want to run these tests for 3 brands. For one brand, url hit - run all tes... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595375",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to get attachments from an email using the Microsoft Graph API? I use the Spring Boot framework to develop a program that allows me to obtain the attached files of an email, but there is a code according to the Microsoft page that says that by means of the following code you can obtain the properties of the atta... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595376",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: How to rollback a system (vmlinuz) update on GCP? I thought we had a ubuntu-20 system on GCP that wasn't auto-updating, but apparently not. It was recently auto-updated, and broke some redmine related plugins.
Is there a proper way to rollback to the previous system?
ls -l vmlin*
lrwxrwxrwx 1 root root ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595377",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How do i create read only user in PGAdmin and assign it to role? We have Pgadmin server and dashboard and we need to create new user and make him able to login to PGadmin dashboard and read only from all databases.
I spend couple of hours with PGadmin tutorials but didn't found a way to do that.
If i create user in ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595385",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How could I do a filtered join in Kusto? How could I do a filtered join in Kusto?
E.g. I would like to do the following join:
a
| join kind=leftouter b on id
but also, if a has more than one matching rows in b I would like to pick only a single row from b with the earliest timestamp.
A: let a = datatable(id:int)[1... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595386",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to remove the bold white box cursor in command prompt in eclipse? In eclipse when I opened terminal (command prompt), I'm getting this bold white box cursor and the backspace buttons and delete buttons are working weirdly like while pressing backspace button it is clearing the entire word and if there are two w... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595390",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Claims for a role assigned to user not present in the produced JWT I have a role admin assigned to a user. On that role, there's a claim elevated. When I sign in using authorization code flow and get the token, the sub field is correctly set. However, there's no sight of the role nor the claim for it.
I checked the ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595391",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Why is the score on the test set lower than cross-validation score? I am using a Decision Tree model to classify tabular data. I have created a model as following:
tree = DecisionTreeClassifier(random_state=42, criterion='entropy', max_depth=20, min_samples_split=2)
I use cross-validation to evaluate its performanc... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595393",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Cannot see/execute "c:\windows\system32\rdpclip.exe" from Delphi code, but can see it and execute it using the same user login in File Explorer I am trying to execute c:\windows\system32\rdpclip.exe from my Delphi program (Delphi CE 10.4) on Windows 10.
I can see and execute this file just fine from Windows Explorer... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595394",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Date time conversion (input format yyyy-MM-dd HH:mm:ss.SSSSS) in Mule 4 Getting the following error when trying to convert date time to a specific string format:
Cannot coerce String (2023-02-07 08:23:00.167000) to LocalDateTime, caused by: Text '2023-02-07 08:23:00.167000' could not be parsed, unparsed text found a... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595396",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Unity how to change the default position of the Scroll Rect content in elastic movement type from center to the top edge I have a problem with default position of my Scroll Rect content. My content have dynamicly adjusted size and from time to time it is smaller than my Scroll Rect Panel. When the content is smaller... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595397",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to casting String into MenuItem Name I am quite a new user in C# and I am writting GUI for a product using WPF of C#. In order to quick the use of the interface, I put in place a config file that the users can choice to update at the end of their session for saving their set up.
This settings are default checked... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595398",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Auto generate arb files for multi language support I have a big flutter app but now I need to translate everything to other languages, of course it will be a huge work manually adding all the strings to the arb file and manually modify all the Text widgets to make them able to read from the arb file. I am looking fo... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595402",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Table not updating using MERGE INTO I have a dataframe which is converted to a Spark df in Azure Databricks, then a temporary view:
spark_df = spark.createDataFrame(df)
spark_df.createOrReplaceTempView("myTemp")
I use the following to insert columns to an existing table:
spark.sql(
f"""MERGE INTO prp_b901_group... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595403",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Python: equivalent of os.walk for folders that are stored in a git repository Current code
myfolder = '../../../../../config'
for directory, subdirectories, files in os.walk(myfolder ):
myfolder used to be in the same git repo as this code.
But a refactoring lead to it being moved in another git repository
What's ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595405",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Spring Boot 3 / Hibernate 6 / PostgresSql ENUM Mapping Issue I'm upgrading to spring boot 3 and updating from MySql to Postgres at the same time (I'm aware I probably should do one at a time) and I'm running into issues with my ENUMS.
Worth noting the enums are custom types in the Postgres example below;
CREATE TYPE... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595407",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: AWS Step Function: Comparing Items in Different Arrays I have a step function where I'm trying to check if one or all items in array 1 match any item in array 2 but I am coming up blank.
The JSON is as below:
{
"Data": {
"Array1": [
"X",
"Y",
"Z"
],
"Array2": [
"A",
"B",
... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595410",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: QML Item cliping shadow ShaderEffect I'm trying to add shadow to my component using the ShaderEffect, and the problem is that the parent item clips the shader effect. Previously I used Qt Graphical Effects, but now I am using QT6, where this component is removed.
Currently I'm using shaders from ShaderEffects exampl... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595411",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: responsive layout for social media icons Showing social media icons in the footer of a website is one of the most ubiquitous aspects of websites. So I'm sure that some common implementations have been created which provide a responsive wrapper for this. What are the most common design and implementation patterns f... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595417",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: How to use custom domain in CloudFront distribution? I recently deployed an application to the S3 service. As this S3 service does not enable HTTPS, I decided to use the CloudFront service that allows the use of HTTPS. However, I don't want my users to access the cloudfront domain.
I have a domain registered with Ho... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595418",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: i want to zoom user1 location direction using direction render api form this pkg @react-google-maps/api I want zoom customer location direction
I was trying zoom user1 location like the user has driver zoom location and the customer has driver zoom
location
| {
"language": "en",
"url": "https://stackoverflow.com/questions/75595422",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Creating appinstaller on Azure DevOps results in empty file I'm creating an appinstaller file on Azure DevOps, but the file is empty (497 bytes). When I download it, change the extention to .zip and extract I get "the compressed (zipped) folder is empty".
Here's the relevant YAML (using the MSIX extension):
- pwsh: ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595425",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Salesforce DevOps Center Report in Work Item I created a Custom Object, a Analytics Snapshot and a Report in my Dev Environment.
Now I like to deploy my changes into production, but after I pull the changes I only able to create a Work Item with the Custom Object and the Analytics Snapshot. The Report doesn't show u... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595426",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How can I properly type a subclass of class which sub-types a Generic base class? I have two classes inheriting from dict, like this:
class A(dict):
class B(A):
This all works fine - the two classes use the inherited dict functionality and do other required stuff. However, I also want to use type-hinting. The fi... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595427",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Memory Leak in Pyside6 QAbstractTableModel I have a PySide6 application using an MVC structure. It utilizies two threads. The main thread is the Qt Event loop(GUI). The Model utilizes an asyncio event loop which runs in the other thread. The Model handles all the IO for the application. When new data is imported int... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595428",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: 'ascii' codec can't encode character - jupyter notebook python 3.9 i know this has brought up quite a few times, but I'm actually having quite a funky issue. I am trying to run a python 3.9 notebook, but even if i don't write anything in the cells, i get an error message about encoding. In the past, i have had this ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595432",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Spread function into React JS hook component Is there a chance I can spread the next function (as in the example below) inside the <ConfirmForm /> component? It looks as if PHPStorm throws the following error: 'next' is declared here. Block-scoped variable 'next' used before its declaration.?
Error message:
Referenc... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595433",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Cypress with BDD or TDD - how to make choice We have started using cypress for our project. We are still deciding between TDD/BDD for cypress. Its for banking project - tests will be running for multiple brands and users.
Some are in favour of BDD as if someone new joins - its easy to understand. Some are in favour ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595436",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: single line command to create a file via Vim editor and save to a location I am writing a script for some specific test scenarios that requires saving the file via VIM with some text using a single command.
I tried the below command
echo -e 'This is some text.\n:wq\n' | vim -E -s /Volumes/DummyVolume/mytest.txt
Thi... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595438",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Radio button in parent and child component - Angular I was wondering if it was possible to have half of the radio button in a parent component and the other half in the child component. I would like to reduce the code repeated.
I tried this :
parent.html
<div class="container" [formGroup]="form">
<div class="r... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595440",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Current R script says it cannot find function "rule" is this me or incorrect install? I am attempting to get some conditional formatting on an created .xlsx file with R and openxlsx. Wrote the below code which has worked in the past but I am now receiving the error below. I cannot tell if this is a me problem or if ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595441",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How can I solve the analytical case as a numerical case? I want to solve y variable in terms of p_h and p_s. From analytical case, it is not solved and the output given parameters is empty list. I want to solve it as a numerical case. How can I do that? How can I solve y in terms of p_h and p_s with numerical soluti... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595446",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: XGBoost only predcinting single class for the unseen data out of 18 classes for Multiclass Text Classification problem In the current situation, the XGBoost model that I have trained is only producing a single class for the unseen dataset though the accuracy that I have received on then validation set is around 64% ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595450",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to utilize .GroupBy based on two parameters? I have a data which I need to split based on two fields. I am using .GroupBy to do that but looks like I am not getting desired result.
Here is my condition to split the data:
*
*Split them by supplierName. (This can be simply done by .GroupBy. 2nd point is little t... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595453",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: validating data I have on a website is correct compared to what I have on a data base Here is what I am trying to do: scrape a website with bunch of table and compare the values with what I have on a database. Example
say that I have the table below and I wanna compare it with what have in ms sql.
what tools can I ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595455",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Check if lambda can be evaluated constexpr (C++17) I'm trying to find a way to check whether a lambda can be constant evaluated or
not in C++17. Let's assume the lambda I want to check takes no
parameters.
I stumbled upon
this
question, whose accepted answer looks something like this:
template <class Lambda, int = (... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595456",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: What are the minimum system requirements to run qtspim (assembly)? I am just starting to learn assembly and I am using QtSpim to run the programms. If i run it line by line the outcome is correct but if I click "run" the application crashes. Any one knows whether this is a machine problem (laptop is wearing a Ryzen ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595457",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Why isn't the FolderBrowserDialog (Windows Forms) localized after programmatically setting the culture? I'm showing the FolderBrowserDialog from a WPF application, and the thread's culture properties have been set like this:
Thread.CurrentThread.CurrentCulture = CultureInfo.CreateSpecificCulture("es");
Thread.Curren... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595459",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: how to reset variables and cancel any active stream and reset everything in app i am building app that contains the following
1- global variables (depend on user inputs) .
2- StreamSubscription for firstore listen functions .
3- other active tasks like await-async function , timers , audio global instance .
4- and... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595461",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Cannot build together CUDA and C modules I'm trying to build a cuda program (.cu) with CMake using cuda_add_executable, but I need to link to the source file some C modules.
When doing the same with only C files it all goes smoothly (using add_executable), but with cuda as the main source file the building process d... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595462",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-2"
} |
Q: Throws Uncaught TypeError: Cannot read properties of undefined (reading 'includes') in the first render I want to map through an array that is inside an object and see if the array contains the teacherId and store it in a state, then map it so the <Section /> component can render it.
const teacherId = details.id;
c... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595463",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Need .ASPX page that will return a random .png file I would like to create an .ASPX/.ASP file that I can use as the image src= to generate a random image. The use case is for a random email footer image.
random images would be located in a folder
C:<random_email_footer_images>
image_1.png
image_2.png
image_3.png
ima... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595465",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: 'Object reference not set to an instance of an object' error on .OwnsMany() when creating EF Core migration for multiple Aggregates I'm building an app following the DDD principles and using Aggregates, Entities and Value objects. These are my two aggregate roots for which I wrote configurations which are then used ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595467",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Laravel required if doesnt skip on false Whenever I use required_if:field,value with another validation, it doesn't skip other validation:
[
'admin' => ['sometimes','in:0,1']
'something' => ['required_if:admin,1','min:6']
]
If admin is 1 everything is fine, if admin is 0 I keep getting 422 for min:6 rule. Why isn't... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595469",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: What is the difference between hover and hover+? I've encountered both ways to apply a hover effect to show another element. What would be the difference between the following:
.div1:hover .div2{}
.div1:hover+.div2{}
I have googled - didn't really find any answers.
| {
"language": "en",
"url": "https://stackoverflow.com/questions/75595472",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Ensuring Sequential function calls with database Calls TL;DR: Someone having trouble ensuring sequential function calls in Javascript.
First i have a large JSON that consists of customer-data I want to store in a database.
It looks like this:
result: [
{
"id": "01158eeccd3f00000331005056C00008",
"customerN... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595474",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Typing nested objects I am trying to create Context Provider in React for Locales (language) using TypeScript. I'm using this link as a base and adapting it.
My folder structure is:
*Top level de.ts file just imports all files and exports pages as one object.
I've enforced the same structure across locales using a ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595475",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How do I add complete functionality to Microsoft Graph Toolkit's templating? I'm using the mgt-file-list component from the Microsoft Graph Toolkit and this code works just fine within my application after authentication. It displays a file upload button, and I can upload files into the specified folder. The files a... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595477",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Prometheus to count times an ip is announced by a given node (metallb) I´d like to detect times where an IP is jumping between nodes. Each time an ip jumps, it is announced by the node and that is visible via this prometheus metric: metallb_speaker_announced
This metric will show the following info:
metallb_speaker_... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595480",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Spring Cloud Stream: How to get KafkaEvents like ListenerContainerIdleEvent? We are using the functional programming model of Spring Cloud Stream and the Apache Kafka Streams binder. Unfortunately, we are currently not able to access the KafkaEvents - in particular the ListenerContainerIdleEvent.
@EventListener
publ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595486",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to permanently purge deleted Azure Storage Account? I'd like to re-use the name of the storage account since it's tied to other configs. Looks like it' held for 14 days even after delete.
Is there a way to purge a deleted storage account so that the name becomes available again?
Preferraby in the UI or az CLI?
... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595487",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Keycloak token exchange does not return refresh token I have an application with regular REST api, and I'm usink Keycloak for the authentication. The frontend is a React application with its own Client ID (no secret because it's a public page), the backend is a Node application with another Client ID (and secret, ob... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595493",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: không mở được cửa sổ cmd trên thư mục bằng shift chuột phải dù đã thử rất nhiều cách không thể có"opend command window here" bằng cách nhấn shiff +nhấn chuột phải , mặc dù đã thử rất nhiều cách
thử rất nhiều cách nhưng vấn không hiệu quả
| {
"language": "vi",
"url": "https://stackoverflow.com/questions/75595495",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-2"
} |
Q: Cant see echo logs of GitHub Actions hook workflow I am trying to setup a server-side pre-receive git hook on GitHub Actions.
I want this to check incoming commits for a specific string in commit message, and if exists then reject the push.
The workflow is getting triggered and passed, but I don't see the expected r... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595501",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: How can I use jupyter notebook with binder and appmode? I want to create demo app by jupyter notebook and appmode and then would like to push to binder.
However, after pushing to binder, we can't use appmode in that notebook. Should I do anything special for that?
I tried to add 'environment.yml'
channels:
- conda... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595504",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Can a stored proc be declared with a table-valued parameter along with other parameters in SQL Server? Edit: one of the comments mentions "misuse" of parentheses around the parameter. I'm attaching a screen-capture of the Microsoft documentation page showing those parentheses; and my stored proc wouldn't compile wit... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75595508",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |