text string | meta dict |
|---|---|
Q: Using the same table in another value from previous COALESCE I have view that combines two tables. One of the requested values by select has to be in either one of those tables and the other has to have null as this value. As a solution I use coalesce
COALESCE(tbl1.Val, tbl2.Val) As Val
I am now struggling to select... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634893",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: FirebaseError: Messaging: We are unable to register the default service worker. Django Rest + Reactjs App My web app has a django rest framework backend and reactjs frontend. I want to add firebase push notification service to my web app. According to the tutorials I added the firebase-messaging-sw.js in the public ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634895",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Other clients not be blocked while the transaction is executing in redis? Code:
func main() {
ctx := context.Background()
rdb := redis.NewClient(&redis.Options{
Addr: "localhost:6379",
Password: "", // no password set
DB: 0, // use default DB
})
pipe := rdb.TxPipeli... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634896",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Next auth with SpringBoot as resource server I have a NextJS app with NextAuth setup as my authentication service.
My backend is in Springboot 3.0.3.
I am trying to set up the oauth2 resource server in spring-boot to be able to decode the JWT token from NextAuth but I cannot find any valid issuer-URI in order to be ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634897",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Excel Slicer not able to filter a chart because of inactive relationship in data model I have created a dashboard on Excel and used a Year slicer to dynamically change charts. But 1st chart in my dashboard is not changing as per the slicer. I have created a Date Table in Excel data modeling and mapped date column fr... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634898",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: What is the reason for getting HTTP 504 while trying to make HTTP call-back to retrieve further information from caller API in Django?
The above is the very high-level sequence diagram for two APIs trying to communicate with each other. The frontend does only communicate with AppOne. AppOne calls AppTwo to store so... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634901",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: I look for a light solution to auto reload my asyncio python script I'm tinkering this Python nats POC.
I run the script:
$ python read_pull.py
My question: what do you recommend to automatically restart the read_pull.py script when its content is modified?
I have looked https://github.com/gorakhargosh/watchdog but... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634905",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-4"
} |
Q: Is there a way to run Tensorflow Object Detection API's model_main_tf2.py from within a Jupyter Notebook cell? From https://github.com/tensorflow/models/blob/master/research/object_detection/model_main_tf2.py, the approach shared was to run Tensorflow object detection API from the linux terminal or anaconda prompt.
... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634906",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Can you take average of two document-topic matrices for example one is produced by LDA and the other one is produced by NMF? I'd like to use two models for topic modelling. Can it be possible that I get the average of two different document-topic matrices to have a new document-topic matrix? If not is there a way to... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634908",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: FoundationDB as storage backend for JanusGraph: still feasible and advisable? I'm interested to know the state of the JanusGraph-FoundationDB Storage Adapter:
Four years ago it was announced: https://www.youtube.com/watch?v=rQM_ZPZy8Ck&list=PLU8TPe7k8z9ew5W6YpACnGvjBDYaJVORZ&index=1
According to the README: https://... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634910",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Can't see changes to the json file when the application is running I have an ASP.NET 6 Core application. There is a serilog.json file with the Serilog configuration. At runtime, if you change this file, Serilog does not see the change, but the reloadOnChange configuration parameter is true.
Method main of the Progra... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634912",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Parsing a string that has some boolean values back to json (Python) I want to parse a string of JSON back into a JSON. the string has some boolean values.
Example input:
str_json = "{'name': 'bob', 'id': '11111', 'happy': True, 'sad': False}"
Example output:
d = {"name": "bob", "id": "11111", "happy": "True", "sad":... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634916",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Inserting a picture When i try to insert picture manually it gets inserted. When i try to insert it with the recorded macro it shows error cannot insert picture. i think it is due to picture name.
image name
HCLL20220419 色块 50x65cm-效果图.jpg\
Recorded Macro
ActiveSheet.Pictures.Insert( "C:\Users\ABDULLAH\Pictures\HCL... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634917",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Query for Fetching related data from multiple PostgreSQL tables at once I'm using postgresql to create a database driven web app.
The user makes a post, then can add related documents and photos to that post.
The documents and photos are stored in their tables along with the 'contentid' of the post they were added t... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634918",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-2"
} |
Q: Patch request is not working multipart form data Any idea why PATCH wouldn't be accepting multipart/form-data file uploads? I am trying to update data using mumultipart form data but my postman is not recognising variables If I POST the file, it works fine. following is my function in php
function updateImage($wr... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634919",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to get request object inside the entity class in nestJs I'm working on a small project in nestJs,
I need to add audit columns for some entities.
For that I'm setting user information on a request object, I'm sure that it is setting correctly.
And Saw working fine if I print request object in controller .
But thi... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634920",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: flutter app gradle Daemon is stuck , how to solve it? I want to run my Flutter app for the first time on emulator . at first I had problem to running it at gradle . then I deleted the gradle folder and download it manuall and replace it in the folder . gradle version is 8.0-all , its fine here . but the Daemon part ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634921",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Google Workspace Add-On on Node.JS + Cloud Run - how to allow another user make test deployment while it's still unpublished I'm developing Google Workspace Add-On based on Node.JS + Cloud Run (NOT Apps Script!).
I want to let my client install this Add-On while it's still unpublished to see the progress.
It's easil... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634922",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Display information about mysql queries in PHP please tell me, in php there is a command like phpinfo (), which displays a query table on a page from the database (request and its processing time)
very handy tool, but after changing the project I forgot the name. Searching again on google didn't help.
A: You can to... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634923",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-3"
} |
Q: facing issue in login and registration in android studio using SQLite + kotlin I try to login. after registration had done.
When I try to login it shows invalid password and username.
But, I mention the correct password and username
github file
package com.example.app
import android.content.Intent
import android.os... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634930",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Extracting a comma seperated list of numbers from an array I am reading data from a MYSQL database using the following SQL:
SELECT GROUP_CONCAT(MemberMemberId SEPARATOR ',')
AS
MemberMemberId
FROM
member_events
WHERE
event_date = "2000-01-01"
AND
EventEventId= 1;
This SQL is embedded as raw SQL in a Seq... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634931",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-2"
} |
Q: How to config Oracle CDC with WSO2 Streaming Integrator I am trying to setup Change Data Capture (CDC) between wso2si and a local OracleDB.
I have added ojdbc8-12.2.0.1.jar to <SI_HOME>/lib (I am following Installing a specfic Siddhi Extension to install cdc-oracle ).
But I got issues:
Connection to the database los... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634932",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: how can I solve 0x800706b5 error while installing adobe xd I have a problem while installing adobe xd !
I got this error ![image of error] (https://i.stack.imgur.com/ntB8v.png)
What should I do ?
I tried every way, but ... !
| {
"language": "en",
"url": "https://stackoverflow.com/questions/75634933",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: bind between various keys in the appsettings.json file I am following this sample :
https://github.com/Azure-Samples/ms-identity-blazor-server/tree/main/WebApp-OIDC/MyOrg
The app-settings.json file is as follows :
{
"AzureAd": {
"Instance": "https://login.microsoftonline.com/",
"Domain": "[Enter the domain... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634935",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How can I add share image on whatsapp on my website, I had got the source code but when I changed the image link , the image didn't display When I change the image link and I put mine, It doesn't display in whatsapp
I tried to change the link of an image and I put mine, the image refused to display in whatsapp
| {
"language": "en",
"url": "https://stackoverflow.com/questions/75634936",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-2"
} |
Q: wx.FilePickerCtrl SetBackgroundColor of File/Path box instead of entire object I have a wxFilePickerCtrl & am trying to colour the filepath/text background e.g. when the filepath no longer exists.
tcf_entry = wx.FilePickerCtrl(myframe, message="Select File", wildcard="TCF files (*.tcf)|*.tcf|All files (*.*)|*.*", na... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634937",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Creating multiple plots using loops I have a dataset and I want to draw scatterplots for all the columns with the last column (Result), using subplots.
fig, ax = plt.subplots(figsize=(10, 6))
for i in range(len(columns)-1):
columns = df.columns[i]
ax.scatter(x = df[columns], y = df['Result'])
plt.xlabel(... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634939",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Save a sf object in r as a shapefile with embedded style I use R to manipulate my data then take the vector files I generate into a GIS platform such as QGIS (because my datasets are large and cannot be easily interrogated using leaflet, mapview, etc.
I would like to save my point vector file as a shapefile with the... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634942",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: How can I bring the different widget interface gui in the right window according to the items I selected in the listview window? The window shown in green is the listview. Widgets information is kept which window will be opened in Listview. I want to bring different gui designs in the window on the right according t... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634946",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: POST variables in wordpress plugin I have the code below as a template for a plugin that will hopefully eventually allow easy sharing of content to social media.
In testing, however, it seems the values are not being set in the POST.
The testing code I put in does not run - there are no error messages.
What have I d... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634947",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Why i am getting ValueError at /login The given username must be set in Request Method POST- DJANGO ValueError at /login
The given username must be set
Request Method: POST
Below is the code for views.py and signup.html
views.py
def login(request):
if request.method == 'POST':
email = request.POST['emai... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634948",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Color output in terminal using 24-bit RGB code (r,g,b) where r,g and b goes each from 0 to 255? I am aware of the fact that we can print colors in the terminal as mentioned here: stdlib and colored output in C and here: https://en.wikipedia.org/wiki/ANSI_escape_code#Colors
Is it possible to output more custom color ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634949",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-2"
} |
Q: why am i unable to get a log transformed value showing normality? iam receiving an error in check_model() in performance package.
data from library (ISLR)
m<-lm(log(salary)~poly(age, 2)*health,dd)
plot(allEffects(m))
check_model(m)
i am unable to get multicollinearity and non normality of residuals
| {
"language": "en",
"url": "https://stackoverflow.com/questions/75634951",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: How to set Togglebutton's background where it has checked i have a Toogle button in my UWP i need to change its default color value if it is checked i need the both check and Uncheck color to white
<StackPanel Height="200" >
<ToggleButton Width="100" Height="100" Checked="ToggleButton_Checked" >
... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634952",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Is there a function that can notify me when the expiry date is reached? When an expiry date is added for a particular good, how do I write code that will give me an alert when the expiry date reaches the computer date
Vb.net
| {
"language": "en",
"url": "https://stackoverflow.com/questions/75634954",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-3"
} |
Q: Dev-C logging compile not showing I try to run code in Dev-c but it doesn't work. I want to find where is wrong but ide compile not logging that.
enter image description here
How can I fix to be like this
enter image description here
| {
"language": "en",
"url": "https://stackoverflow.com/questions/75634955",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: cypress test in Jenkins CI/CD pipeline not working I want to use cypress to do end-to-end testing in my web applications.
When I do them locally has been quite easy:
*
*Install cypress: npm install cypress
*Run tests: npx cypress run
I want to test it in Jenkins, in my CI/CD pipelinee. Following the https://docs.... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634957",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Telegram login widget with django TypeError: Cannot read properties of null (reading 'postMessage') with some browsers I'm trying to implement Telegram login widget in my Django website. I'm using django-allauth and the login did work indeed for my test with Firefox browser but it failed to work on mobile devices an... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634961",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to delete packages in without opening Unity? My project doesn't opens after added texture pack from asset store.
It's Stucking on Initial Asset DataBase Refresh.
I'm guessing it'll open after deleting that package. Added
But I couldn't find information about how to delete packages without opening Unity.
Can so... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634962",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Completely stumped on calculating percentage when denominator is negative I think this is more of a math question than anything else. I can return a calculation, but no matter how I try to manipulate it, I get an answer that has to be wrong. I've been using the simple formula [(X/Y)-1].
| Company | 2020 profi... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634964",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: tf.nn.conv3d No algorithm worked! when appying dilation in "D" dimension I am tying to implement a Depthwise 3D convolution. In the process, I am using a tf.nn.conv3d operation, where I utilize as input a 5D tensor, with shapes [batch, depth, height, width, channels] and a filter with exactly the same dimension than... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634965",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Building wheel for twisted-iocpsupport (pyproject.toml) did not run successfully I am trying to install scrapy using pip but this happened. I already have a virtualenv and all.
` Building wheel for twisted-iocpsupport (pyproject.toml) ... error
error: subprocess-exited-with-error
× Building wheel for twisted-iocpsup... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634966",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to convert gmt time to UTC using php I am working on Php and right now i am getting "start_date" from database and i am trying to convert datetime into "UTC" time , But how can i do this ? I tried with following code
$tymEnd2 = $_POST['end_time']; // dynamic time
$endTime2 = date('h:i A', strtotime($tymEnd2));
$... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634967",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: white-space: nowrap; Causes grid-item to expand My issue is that adding white-space: nowrap; to any of my classes, this causes my .grid-item to expand.
.grid-container {
display: grid;
grid-template-columns: repeat(6, 1fr);
grid-template-rows: repeat(4, 200px);
justify-content: center;
grid-column-gap: 5... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634968",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Flutter responsive framework : snapback from scale size to the original size I am using flutter responsive framework on my project to make a responsive UI, After setting brakes point there is an issue when Ui changed scaling to resizing.
snapback from scale size to the original size
return ResponsiveWrapper.builde... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634969",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How can I toggle between sources in grafana? Problem
I have grafana dashboards with a "Data source" variable, allowing the user to select different databases. All panels in the dashboard reference the selected data source.
The databases that the user can select from are as follows:
Source selection:
*
*aaa
*aaa_... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634970",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Local grade build not updating local repository cache Given
I have 2 repos
Repo-core
*
*has below core library modules
*
*
*module 1
*
*
*module 2
Repo-web
*
*has module1 and module2 as dependent jars
*builds war file using the dependent module1 and module2 jar, by referring to grade local cache
Pro... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634973",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Run tasks after another without using result of first task in second task I have two celery tasks task1 and task2 which write to database. The third task task3 reads from the same database. task1 and task2 can run in parallel. task3 will run after both task1 and task2 have run.
I have looked at groups, chains and ch... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634975",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to tag docker image with release version number from a previous job I have the following action that first runs a semantic release and then builds a docker image. At the moment the image is tagged with master but I want it to be tagged with the release i.e. v1.0.8
I assumed that ${{ github.ref_name }} would refe... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634978",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: kibana tag cloud does not count frequency of words in a text field kibana tag cloud does not count frequency of words in my text field
let's say i have a field named : Ticket_text.keyword and here are some examples:
hello world here I am
hello everybody this is blah
in this world
I want my visualization to show "he... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634979",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to use sync if I have such an array? Good afternoon. I work with laravel and use sync. I get an array in this form:
[
0 => ['attribute' => '...', 'value' => '...']
1 => ['attribute' => '...', 'value' => '...']
...
]
Is it possible to stuff such an array into sync? If possible, can you tell me how to do it corr... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634981",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: I want to keep blinking the led till i give the input for next colour to blink? QUESTION -
Create a program so that when the user enters “B” the green light blinks, “g” the green light is illuminated “y” the yellow light is illuminated and “r” the red light is illuminated.
The above question is about controlling LED... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634982",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Nested JsonSubType using JacksonMapper in kotlin I have a message delivery system which can be either a push notification, or sms or ...
and each of these can have their own subtypes, like Sms can be Irancell or Mediana or ...
I want to use JsonSubType to find out the class of my message and use their corresponding ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634983",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: I am creating an API in Cake php 4, following the CMS Tutorial - Authentication. How to deal with the Error: Missing Route that I get when I post enter image description hereI am creating an API in Cake php 4, following the CMS Tutorial - Authentication, and I was getting an error when using Postman to post in Json,... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634984",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Div Background of content placeholder in asp.net changes im using div to wrap content placeholder in masterpage of asp.net web app.
```<div id="bg" class="">
<!-- Main Content Placeholder -->
<asp:ContentPlaceHolder ID="ContentPlaceHolder1" runat="server">
</asp:ContentPlac... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634985",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Flutter time picker with 1-12 in the outer circle, and 13-00 in the inner circle I'm using showTimePicker in flutter with 24 hour format.
My Code:
var selectDateTime = await showTimePicker(
context: context,
initialTime: TimeOfDay.now(),
builder: (context, child) {
... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634989",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Update Material UI DataGrid row via Dialog Popup with Edit-Form in Material UI V5 I have Material UI DataGrid table with an Action column which contains an edit button per row.
How is it possible to update a DataGrid row through a Dialog Popup with an Edit-Form that opens when the Edit Button of a row is clicked, ra... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634990",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: In ros2_control,the foxy version, how can the ros2_control_node read the hardware_interface and controller info? here is the source code of ros2_control_node:
int main(int argc, char ** argv)
{
rclcpp::init(argc, argv);
std::shared_ptr<rclcpp::Executor> executor =
std::make_shared<rclcpp::executors::MultiT... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634997",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: how to make drag-drop list in HTML and send List order to asp.net core backend? I am working on an HTML file
When I show a list on a page, I want the user to be able to drag and drop items from the list to a part of the same page.
The list contains sample questions of a lesson, which the user selects by dragging one... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634998",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Cannot fetch data from Sanity.io -- Unable to parse entire expression - I am working on React App, nothing much in it a basic website.
I followed the docs from Sanity about creating the blog. I have used Sanity earlier and back then it was working fine on other project.
The query in the VISION section is returning v... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634999",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: NextJS authentication HOC not getting value from state value on initial load I have created a HOC for authentication in NextJS.For storing the logged in user I am using redux.
But when user is logged in and I make changes to a page which is using the withAdmin hoc development server have to perform hard-reload or us... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75635002",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Excel macro execution taking long time The following macro is working fine at debugging stage, but when you execute on a worksheet keeps on executing for more than 15 minutes. I have 47126 rows of data. and also how to minimize the code?
Sub RAmount()
Dim Month As Range, rAmnt As Range, tprem As Range
Dim a As Ra... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75635011",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: In Android 9, Why is my app service not running automatically after device reboot? In Android 9, I tried to run the app service automatically after rebooting the device, but I did not receive the toast message. However, when I tested the same process on Android 7, it worked properly, and the toast message appeared. ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75635015",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Informatica update target table I have a requirement in which I need to update the target table in informatica.
The data is coming hourly and a similar id can contain updated columns from multiple rows.
Consider below scenario, if there are 5 rows coming for 2 different id, the target column should have only 2 rows ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75635016",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: I am trying to get the number of unique groups of 3 users who know each other . I need to display who the three users are in each group i need Compute the number of unique groups of 3 users who know each other from the below database and also Display
who are the 3 users in each identified group to justify the answ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75635017",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: mbedTLS ECDSA verification fails I am porting one ECC ECDSA verify library to mbedTLS to benefit from large pool of crypto functions and I'm at a point where after 2 nights, I'm not able to verify the signature. It works well with another lib of mine.
Test program, keys are generated with pycryptodome python library... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75635019",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Tasmota.lib missing HttpClient declarations? I have a .Net C++ project which uses the tasmota static library (tasmota.lib). The project is being built using Visual Studio 2022 (up to date), on Windows 7. There are no compilation errors, but I have unresolved externals in the linking phase, all of which should be res... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75635020",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: UserManager not updating User after changes to a property .net7 I'm getting an "ConcurrencyFailure" with "Optimistic concurrency failure, object has been modified." message after trying to save a new object to a list.
I tried the methods with the row version and [ConcurrencyCheck] in the property but still no succes... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75635024",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to check current aof/rdb enableness status on a running redis server cli and how to enable them? How to check current aof/rdb enableness status on a running redis server's cli ?
How to enable them on cli ?
I'm using redis 6.
A: *
*to [ check current aof/rdb enableness status on a running redis server's cli ]
... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75635027",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Codeigniter - Ajax Request works, how to handle standart request? I work with Codeigniter and I want to tackle following problem.
I tried to ajaxify my project and this works perfectly.
The ajax onclick event works.
But when I visit the url through my browser (e. g. visit my homepage via external website)
of course ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75635028",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: What's the counterpart of np.clip in Julia? In Python, one can use np.clip(arr, min, max) to assign the min value to the elements lower than min and for max vice versa. I wonder If we have an identical counterpart in Julia?
Python:
>>> a = np.array([0, 1, 2, 3, 4, 5, 6, 7, 8, 9])
>>> np.clip(a, 1, 8)
array([1, 1, 2,... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75635029",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: How do I save a file from logback fileappnder on AWS Function? I want to save the file from logback file appender in /tmp directory in AWS Lamda function.
The logback config file look like this:
<configuration>
<appender name="FILE" class="ch.qos.logback.core.FileAppender">
<file>tmp/app.log</file>
<encod... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75635032",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Navbar collapsing pushes right justified asset to newline I have put the code on codeply, have a look to see what I mean:
https://www.codeply.com/p/t0wDqYIOrh
Basically I am using bootstrap 5.3.0 (downloading using cdn) and my <nav> looks like this:
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75635033",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to make a parent element click thought and still maintaining background on top of child elements I have a problem, when using background: linear-gradient(); on parent element, child elements can`t be clicked, trying pointer-events: makes child element not be under the parent element background.
In summary I want... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75635035",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: how does this for loop move the snakeBody along with the head? I don't quite understand this for loop, the code is used to move the snakeBody with the head:
for (let i = snakeBody.length-1; i > 0; i--) {
snakeBody[i] = snakeBody[i-1];
}
I think the second row of code just takes the selected snakeBody ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75635037",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-5"
} |
Q: debug and require node_modules after yarn 4 update I am using yarn 4.0.0-rc.39 version which produces .pnp.cjs instead of node_modules directory for fast installations. So, it there any new recommended way of adding breakpoints directly in the cache directory because it is outside of IDE's workspace.
Secondly, in RE... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75635038",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: When I run "truffle migrate", I got CONNECTION ERROR When I run "truffle migrate", I got CONNECTION ERROR.
I tried these ports for localhost, but nothing has changed!
*
*8545
*24012 (Connected with browser metamask)
Error:
> Something went wrong while attempting to connect to the network at http://127.0.0.1:2401... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75635040",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Python script works well on its own, but crashes when running it form another script using Tkinter I would like to execute a python script sequence.py by clicking a button on usercontrol.py, all the necessary code I want to initiate is located in sequence.py main() function sequentially.
The script sequence.py works... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75635041",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How springboot handles transactions in integration tests? I'd like to know, what is transaction handling in integration tests. I'm trying to verify some controller for which I need to setup db state. If there is better way how to do that, please suggest, but main point of question is to understand the transactions.
... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75635044",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: React-Native: add IOS app icon without Xcode My app is rejected by Apple because "the app icon displayed on the device is blank".
I have uploaded an app icon on App Store Connect, so Im assuming they mean in the build (like I do with app icons in "res folder" on Android. Is there any way to add icon to an IOS build ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75635046",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: data not showing in first click in react.js import React from 'react'
import { useState } from 'react'
const App = () => {
const [txt,setTxt] = useState("")
const [num,setNum]= useState(0);
const [data, setData]=useState([]);
const Clicked = ()=>{
const obj={
id: data.length ==... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75635047",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: How make scrollable dropdown in foreignkey field Django I need to make the city field scrollable, how can I do this?
models.py
from django.db import models
from django.contrib.auth.models import User
from django.core.validators import RegexValidator
from django.dispatch import receiver
from django.db.models.signals... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75635049",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "2"
} |
Q: Disable labels above chart (ChartJS) How can I hide these labels on top of my Chart?
If I remove the labels field in the data object, it also removes the name of each piece in the chart when it is hovered (In the picture below it shows the name of the piece because the labels field its still there).
I want to only... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75635050",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Merging large TCGA .tsv files in a memory-efficient way on Posit Cloud (formerly RStudio) I have 448 .tsv files that contain gene expression data (RNAseq) that were downloaded from The Cancer Genome Atlas Genomic Data Commons (GDC) Portal.
These files have 60666 rows and 9 columns. Then there is a metadata file that... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75635051",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: tmLanguage: how to match custom patterns in match I'm developing a VS Code extension for a small language that I made.
In my lang.tmLanguage.json,
let's say that in the repository I have defined patterns #A and #B.
I want to create the following pattern
{
"X": {
"match": "start <#A> <#B>"
}
}
Good examples ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75635052",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to iterate through JSON Array or JSON object in JSP using JSTL I'm having this json:
{"maxAgentAmt":66,"minComAmt":3,"maxTxn":7,"maxAmt":99,"minAmt":3,"maxComAmt":99}
and I also have to get values from json array having multiple json objects:
[{"comType":"V","comValue":5757,"comMode":"E","maxAmt":7575,"minAmt":3... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75635053",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Does the `requires` nested in a requires-expression introduce a requires-clause? From questions like this, from C++20 - The Complete Guide, and even from cppreference, my understanding is that the keyword requires can do one of 2 things only:
*
*introduce a requires-clause
*introduce a requires-expression
and I a... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75635054",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-3"
} |
Q: exploring data from google cloud not get am/pm from date column I have a data set that has a date column formatted in UTC timestamp
when I try to export the data to csv and convert it to the time stamp in python (jupyter labs) I don't seem to be getting any am/pm the data should definitely have hours in am and pm,... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75635056",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Python Get a Dataset from other Dataframe with two conditions I am trying to create a dataframe from another dataframe with two conditions. I want to create a new DataFrame called 'dt_train' from the old DataFrame called 'dt'.
I tried this code:
dt_train = dt.loc[dt['Cardhldr'] == 1 | dt['Cardhldr'] == 0]
But I get... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75635057",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How do I correct my code to create a new variable using two specifications in Stata? Please correct my code so that the new variable takes on value 1 if column treatment ==1 and column category_assetprovision =="Accepted" and it takes on the value 0 if column treatment ==0 & column category_assetprovision =="Refused... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75635058",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Bug render in VS Code I have a rendering problem in my Visual Studio Code => some character is rendering in red...
A screen of the problem : (https://i.stack.imgur.com/YgMKS.png)
It's only on react JSX and not in simple .html file.
I try to uninstall all extensions of vscode linked to react but nothing
| {
"language": "en",
"url": "https://stackoverflow.com/questions/75635059",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Android stdio lấy dữ liệu từ php mysql Mọi người chỉ e cách lấy dữ liệu php dùng xamp mysql trong android stdio thì làm như nào ạ
Em thử xem trên mạng họ dùng nhữ thư viện khó hiểu quá làm theo thì nhiều lúc khai báo lớp còn không có, em muốn làm cách chúng nhất để hiểu hơn về nó để tư duy hơn về sau ạ.
| {
"language": "vi",
"url": "https://stackoverflow.com/questions/75635060",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: phpmyadmin not working after change php version from php8.1 to php7.4 Recently I have changed the PHP version on my Ubuntu ec2 server from php 8.1 to php 7.4.
After changing php version i am not able to access my phpmyadmin so i am very tired to solve this problem.
I have a problem with phpmyadmin in Ubuntu. http://... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75635062",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Succinct way to use GADTs for exhaustiveness-checking in Scala? I'm looking for the same behavior as the following OCaml code, where the compiler understands the match is exhaustive because we've expressed that the two scrutinees must have the same type:
type circle
type rectangle
type _ figure =
| Circle : int... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75635063",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: how to request a refund for a fee paid to Google Developer account by mistake? so I created Google Developer account and i paid the fee ( $25 USD),and all fine
when I on the step where I have to verify my identity its show only united state AND I can't select the country I'm from to verify my identity.
picture of th... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75635064",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-3"
} |
Q: Automatically restart docker container in a single-instance AWS Elastic Beanstalk environment I'm trying to run an old Node.js project in AWS Elastic Beanstalk. It sometimes crashes and the environment health goes to "Degraded," but instead of restarting the container, EB just leaves it hanging.
Looking at the logs,... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75635066",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Failed to load module script - ViteJS Typescript I finished a small personal project and deployed it via github.
The problem is that I have a mime type error (see screen) in the console once the project is deployed (on github). In dev I have no worries.
Therefore, on the deployed site I only have the html and css lo... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75635067",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: I can't figure out why this ESP8266 code occasionally freezes I've been working on this code to "simulate" a lavalamp on WS2812 strips running on an ESP8266. 98% of the time it works just fine, but occasionally the animation will just freeze. Here's a repo with the code:
https://github.com/HaLo2FrEeEk/ESP-Neopixel-L... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75635068",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-2"
} |
Q: Install-Package : NU1201: Project System.Compiler is not compatible with net452 I am getting the following error in vs 2022 when trying to install a package:
> Install-Package : NU1201: Project System.Compiler is not compatible
> with net452 (.NETFramework,Version=v4.5.2). Project System.Compiler
> supports: net48 ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75635069",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Python fails to present a module's docstring in ```help()``` saying it doesn't recognize the module
Python presents the docstrings for functions in help(...) but fails to present the docstring for the module the functions are defined in.
A: I imported the module with import <module name> as <other name> and used h... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75635071",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |