question_id int64 37.6M 73.2M | input_text stringlengths 88 52.4k | output_text stringlengths 37 35.6k | title stringlengths 15 150 | tags stringlengths 1 107 | q_score int64 -19 397 | view_count int64 3 879k | answer_count int64 1 21 | accepted_answer_id int64 37.6M 73.8M | answer_id int64 37.6M 73.8M | a_score int64 -5 1.29k | is_accepted bool 1
class | creation_date stringlengths 20 24 | input_text_instruct stringlengths 251 52.6k |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
72,230,617 | How do I run SQL queries on the airflow meta db from inside an airflow DAG?<p>I'm looking for a way to extract execution_date, start_date, end_date etc. of the last successful run instance of a task in a DAG and then decide to raise an error if some branch hasn't been triggered in let's say a week.</p>
<p>Is there a wa... | <p>You could create a PythonOperator task that queries the task instance state from the metastore. Airflow internally queries the database via <a href="https://www.sqlalchemy.org/" rel="nofollow noreferrer">SQLAlchemy</a>, a Python ORM framework. You can use this to query the database from your tasks too. For example:<... | How do I run SQL queries on the airflow meta db from inside an airflow DAG? | airflow|directed-acyclic-graphs | 0 | 358 | 1 | 72,234,694 | 72,234,694 | 0 | true | 2022-05-13T13:46:49.980Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How do I run SQL queries on the airflow meta db from inside an airflow DAG?<p>I'm looking for a way to extract execution_date, start_date, end_date etc. of t... |
72,229,434 | AWS CDK : Exception while creating API Gateway with VPC Interface Endpoint<p>I am trying to lookup for an existing VPC, retrieve all the private subnets (making sure there is only private subnet in each availability zone). Create VPC endpoint and later associate that with API gateway during creation of the API gateway.... | <p>The issue turned out to be a basic one. I needed to use the right API Gateway service endpoint which is "com.amazonaws.us-east-2.execute-api". So creating the VPC endpoint in below way fixed the issue:</p>
<pre><code>vpc_endpoint = aws_ec2.InterfaceVpcEndpoint(self,
id="vpcendpoint"... | AWS CDK : Exception while creating API Gateway with VPC Interface Endpoint | amazon-web-services|amazon-cloudformation|aws-cdk | 0 | 354 | 1 | 72,234,721 | 72,234,721 | 0 | true | 2022-05-13T12:13:27.747Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
AWS CDK : Exception while creating API Gateway with VPC Interface Endpoint<p>I am trying to lookup for an existing VPC, retrieve all the private subnets (mak... |
72,234,673 | how to create a list of pdf page numbers if pdf page contains specific text strings using python<p>I am trying to extract PDF page numbers if the page contains certain strings, and then append the selected page numbers to a list. For example, page 2, 254, 439 and 458 meet the criteria and I'm expecting the output as a ... | <p>Right now you are defining a new llst in every iteration, so you have to define the list only once, before the loop. Also print it outside the loop:</p>
<pre><code>Pagelist=[]
for i in range(0,NumPages):
# rest of the loop
print(Pagelist)
</code></pre> | how to create a list of pdf page numbers if pdf page contains specific text strings using python | python|pdf | 0 | 64 | 1 | 72,234,728 | 72,234,728 | 0 | true | 2022-05-13T19:40:23.387Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
how to create a list of pdf page numbers if pdf page contains specific text strings using python<p>I am trying to extract PDF page numbers if the page contai... |
72,144,088 | How to click on a descendant li element with Selenium?<p>I am automating with selenium and reached a point where I click a drop down and there are 3 options and they are in a ul list, and each option is an li role. I am able to locate them and selenium can see them but selenium cannot click on them, it says it is not i... | <p>I figured it out, I had to have the drop down open to click on them but the dropdown would immediately close when selenium clicked on it, all I had to do was make selenium click on it twice and that fixed the issue.</p> | How to click on a descendant li element with Selenium? | python|selenium|xpath|css-selectors|webdriverwait | 0 | 304 | 2 | 72,234,750 | 72,234,750 | 0 | true | 2022-05-06T15:37:34.003Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to click on a descendant li element with Selenium?<p>I am automating with selenium and reached a point where I click a drop down and there are 3 options ... |
72,234,655 | Adding Java home not working on windows ZSH<p>I have java installed and set up properly and works fine with the normal Windows Powershell. However, I'm trying to make java work with the ZSH terminal and I cannot get it to work.</p>
<p>My JAVA_HOME (in powershell) is set to this path:</p>
<p>C:\Program Files\Java\jdk-15... | <p>The backticks are trying to "execute" that folder as a shell command.</p>
<p>Double quotes will store that variables as a string</p>
<pre><code>export JAVA_HOME="/mnt/c/Program Files/Java/jdk-15.0.2"
</code></pre>
<p>But this doesn't guarantee that <code>java</code> command itself will work.</p> | Adding Java home not working on windows ZSH | java|windows|oh-my-zsh | 0 | 94 | 1 | 72,234,789 | 72,234,789 | 0 | true | 2022-05-13T19:38:20.557Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Adding Java home not working on windows ZSH<p>I have java installed and set up properly and works fine with the normal Windows Powershell. However, I'm tryin... |
72,234,741 | How can I display an random quote from an Javascript Array in html?<p>im trying to make random quotes that are listed in an array appear on my website on reload however I cant quite get it to work</p>
<p>Javascript:</p>
<pre><code>
function textOfToday() {
var textOfTodayArray = [
'String 1', 'String 2... | <p>You need to use the <code>innerHTML</code> property to display in the HTML element. Also make use of the id tag when you are targeting by Id. Also, You never invoked your function so it never ran.</p>
<p><div class="snippet" data-lang="js" data-hide="false" data-console="true" data-babel="false">
<div class="snippet... | How can I display an random quote from an Javascript Array in html? | javascript|html | 0 | 56 | 3 | 72,234,843 | 72,234,843 | 0 | true | 2022-05-13T19:48:16.813Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How can I display an random quote from an Javascript Array in html?<p>im trying to make random quotes that are listed in an array appear on my website on rel... |
72,234,554 | I am trying to merge two dataframes<p>I have this dataframe</p>
<pre class="lang-none prettyprint-override"><code>firm formtype Date_Filed
GameStop Corp. 8-K 2021-04-01
</code></pre>
<p>I want to change the <code>Date_Filed</code> to <code>2021-04-01 00:00:00</code>.</p>
<p>I am using <code>pd.to_datetim... | <p>Not sure what you meant by merge two dataframes but if all you want is to change the date format of your column, you can do:</p>
<pre><code>df = pd.DataFrame({'firm': {0: 'GameStop Corp.'},'formtype': {0: '8-K'},'Date_Filed': {0: '2021-04-01'}})
df['Date_Filed'] = pd.to_datetime(df['Date_Filed'])
df['Date_Filed1'] =... | I am trying to merge two dataframes | python|pandas|dataframe | 0 | 25 | 1 | 72,234,912 | 72,234,912 | 0 | true | 2022-05-13T19:26:22.023Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
I am trying to merge two dataframes<p>I have this dataframe</p>
<pre class="lang-none prettyprint-override"><code>firm formtype Date_Filed
GameStop... |
72,224,368 | appending rows to pandas dataframe results in duplicate rows<p>here's a MWE that illustrates a problem I'm having, where incrementally saving values to a dataframe over the course of a series of loops results in what looks like the overwriting of previous rows.</p>
<pre><code>import pandas as pd
import numpy as np
sav... | <p>Well, it seems that making a copy of the array within the loop for saving solves both scenarios.<br />
For the first, I used
<code>saved.loc[t] = m.copy()</code> and for the second I used <code>saved_list.append(m.copy())</code>.<br />
It may be obvious to some that when the array is defined outside the loop, the it... | appending rows to pandas dataframe results in duplicate rows | pandas | 0 | 44 | 2 | 72,234,913 | 72,234,913 | 0 | true | 2022-05-13T04:16:22.723Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
appending rows to pandas dataframe results in duplicate rows<p>here's a MWE that illustrates a problem I'm having, where incrementally saving values to a dat... |
72,235,036 | Is there a possibility to remap Heroku PORT environment variable to another name?<p>I need to deploy an existing web application to Heroku using Docker and it expects the port to be passed as <code>APPNAME_PORT</code> and not <code>PORT</code>.</p>
<p>I know I can rebuild the Docker image to do the mapping internally, ... | <p>Answer from Heroku support:</p>
<blockquote>
<p>I'm afraid there's no native feature to alias config vars - you can do this for add-ons via the <code>-as</code> flag with the <code>addons:attach</code> command but that's only for add-ons which are irrelevant here. You would need to alias the port in your code.</p>
<... | Is there a possibility to remap Heroku PORT environment variable to another name? | heroku | 0 | 18 | 1 | 72,235,037 | 72,235,037 | 0 | true | 2022-05-13T20:19:55.447Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Is there a possibility to remap Heroku PORT environment variable to another name?<p>I need to deploy an existing web application to Heroku using Docker and i... |
72,235,201 | Elasticsearch Password reset failing with https<p>When I try to reset elastic search password using below command (in bin directory of elastic search).</p>
<pre><code>elasticsearch-reset-password -u elastic -i
</code></pre>
<p>It is throwing below error.</p>
<pre><code>warning: ignoring JAVA_HOME=C:\Program Files\Eclip... | <p>In case of https we can reset password using <code>--url</code> option as below.</p>
<p>It doesn't throw any error and successfully changed password.</p>
<p><code>elasticsearch-reset-password -u elastic -i --url https://localhost:9200</code></p>
<p>Source: <a href="https://www.elastic.co/guide/en/elasticsearch/refer... | Elasticsearch Password reset failing with https | elasticsearch|authentication|https|command-line-interface|change-password | 0 | 570 | 1 | 72,235,202 | 72,235,202 | 0 | true | 2022-05-13T20:39:25.253Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Elasticsearch Password reset failing with https<p>When I try to reset elastic search password using below command (in bin directory of elastic search).</p>
<... |
72,206,004 | Error using MultiWorkerMirroredStrategy to train object detection research model ssd_mobilenet_v1_fpn_640x640_coco17_tpu-8<p>I'm trying to train research model ssd_mobilenet_v1_fpn_640x640_coco17_tpu-8 using the MultiWorkerMirroredStrategy (by setting --num_workers=2 in the invocation of model_main_tf2.py). I'm trying... | <p>Ok, I think I understand the issue. In the object detection library there is a file called dataset_builder.py that builds the training dataset from the TFRecord stored in the file specified in the pipeline.config file (in the input_path item of the tf_record_input_reader). The function that actually reads the TFRe... | Error using MultiWorkerMirroredStrategy to train object detection research model ssd_mobilenet_v1_fpn_640x640_coco17_tpu-8 | python-3.x|tensorflow|distributed-computing|tensorflow-model-garden | 0 | 95 | 1 | 72,235,241 | 72,235,241 | 0 | true | 2022-05-11T18:31:49.293Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Error using MultiWorkerMirroredStrategy to train object detection research model ssd_mobilenet_v1_fpn_640x640_coco17_tpu-8<p>I'm trying to train research mod... |
72,235,220 | How to Remove Date Format SAS<p>I have a column of dates with the DATE9. format applied. How can I remove that format so it just shows the SAS date number. For example, I have the date 01JUN2021 but I want it as 22432.</p> | <p>Use the format statement but don't apply a format.
This essentially removes a format. Alternatively you could apply a numeric format such as 8. or best12.</p>
<pre><code>format variableName;
</code></pre> | How to Remove Date Format SAS | sas | 0 | 83 | 1 | 72,235,291 | 72,235,291 | 0 | true | 2022-05-13T20:41:41.277Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to Remove Date Format SAS<p>I have a column of dates with the DATE9. format applied. How can I remove that format so it just shows the SAS date number. F... |
72,230,744 | SwiftUI Create Picker with possibility to add elements<p>I'm trying to build a swift app with categories, I created a Picker for my categories but I would like to be able to create a Category inside the Picker itself. But I can't figure how to do it properly, I've tried something sketchy but it's kinda ugly and working... | <p>As commented not sure what you try to achieve.<br />
But as I understand it a <code>Menu</code> might be an easier way to go:</p>
<pre><code>struct ContentView: View {
@State private var categories = [
Category(name: "Beer"),
Category(name: "Red Wine"),
Category(n... | SwiftUI Create Picker with possibility to add elements | swift|swiftui|categories|picker|swiftui-picker | 0 | 66 | 1 | 72,235,299 | 72,235,299 | 0 | true | 2022-05-13T13:55:07.480Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
SwiftUI Create Picker with possibility to add elements<p>I'm trying to build a swift app with categories, I created a Picker for my categories but I would li... |
72,205,206 | digital ocean deployment error: 502 Bad Gateway<p>I had my site up and running, but the admin CSS was not loading, I am not sure what I did that the server did not agree, but now the entire site is down with a <code>502 Bad Gateway</code> message.</p>
<p>Here are the content of some key files</p>
<p><code>sudo nano /et... | <p>So, my problems, which could be someone else's problems too, were:</p>
<ol>
<li>I did not have all my packages installed on my virtual environment (hence the infamous <code>502 bad gateway</code>)</li>
<li>My environment variables were not set (So, I got <code>500 Server Error</code>). I just made a <code>.env</cod... | digital ocean deployment error: 502 Bad Gateway | django|nginx|deployment|gunicorn|digital-ocean | 0 | 262 | 1 | 72,235,316 | 72,235,316 | 0 | true | 2022-05-11T17:23:52.057Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
digital ocean deployment error: 502 Bad Gateway<p>I had my site up and running, but the admin CSS was not loading, I am not sure what I did that the server d... |
72,204,747 | Make JTable cells in specific column scrollable<p>I'm creating GUI in java using swing. I use JTable that looks like this.<a href="https://i.stack.imgur.com/8PgBy.png" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/8PgBy.png" alt="My table" /></a></p>
<p>I need to make cells of last column("Popis&qu... | <p>It can be solved by creating private class that extends <code>AbstractCellEditor</code> and implements <code>TableCellEditor</code>. Then create and customize the scrollbar. Here is example.</p>
<pre><code>public class MainForm {
private JTable table1;
private JPanel panel1;
private JTextArea text = new ... | Make JTable cells in specific column scrollable | java|swing|jtable | 0 | 39 | 2 | 72,235,321 | 72,235,321 | 0 | true | 2022-05-11T16:43:22.753Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Make JTable cells in specific column scrollable<p>I'm creating GUI in java using swing. I use JTable that looks like this.<a href="https://i.stack.imgur.com/... |
72,234,593 | php Keeping only 1 date occurence in multi-dimensional array<p>I have this array with certain brand_ids, within these brands I have an array of dates in which a sale occured but these are based on the products in sale so they may appear multiple times on the same brand_id;</p>
<p>This is my array:</p>
<pre><code>array:... | <p>Use <code>in_array</code> as <a href="https://stackoverflow.com/users/3965631/tim-lewis">Tim Lewis</a> proposed:</p>
<pre><code>foreach($historySales as $key => $historySale) {
$saleDateToCompare = Carbon::createFromFormat('Y-m-d H:i:s', $historySale['sale_date'])
->format('Y-m-d');
if(in_arra... | php Keeping only 1 date occurence in multi-dimensional array | php|arrays|laravel|multidimensional-array|array-unique | 0 | 41 | 1 | 72,235,477 | 72,235,477 | 0 | true | 2022-05-13T19:31:55.637Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
php Keeping only 1 date occurence in multi-dimensional array<p>I have this array with certain brand_ids, within these brands I have an array of dates in whic... |
72,235,453 | how to properly get day of the week (name) with moment.js?<p>Im using <a href="https://openweathermap.org/" rel="nofollow noreferrer">https://openweathermap.org/</a> api. It provides timezone in seconds. How to properly get day of the week (name) using moment.js?</p>
<pre><code> const timezoneInMinutes = 7200 / 60;
co... | <p>You are putting <code>currentDate</code> into <code>day()</code>, you need to put it on <code>moment()</code>.</p>
<p><div class="snippet" data-lang="js" data-hide="false" data-console="true" data-babel="false">
<div class="snippet-code">
<pre class="snippet-code-js lang-js prettyprint-override"><code>const timezone... | how to properly get day of the week (name) with moment.js? | javascript|momentjs | 0 | 22 | 1 | 72,235,531 | 72,235,531 | 0 | true | 2022-05-13T21:09:21.627Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
how to properly get day of the week (name) with moment.js?<p>Im using <a href="https://openweathermap.org/" rel="nofollow noreferrer">https://openweathermap.... |
72,234,473 | How to send a ngfor object variable to a function<p>I have a *ngFor list for my categories and inside to list i wanna show subcategories list. subcategory data coming from firebase so i querying it with category_id. My problem is i dont know how to pass category_id from html to function for every member of category.</p... | <p>Because it is not clear how your data are structured, but you seem to be getting both categories and subcategories. A little work around with nested *ngFor, *ngIf and div could do the trick. Might not be the best practice :</p>
<p><strong>TS file</strong></p>
<pre><code>Categories = [
{ id: 1, name: 'one' },
{ id: 2... | How to send a ngfor object variable to a function | angular|typescript|ionic-framework | 0 | 138 | 1 | 72,235,609 | 72,235,609 | 0 | true | 2022-05-13T19:16:20.210Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to send a ngfor object variable to a function<p>I have a *ngFor list for my categories and inside to list i wanna show subcategories list. subcategory da... |
72,231,952 | Deploying a Django application to Heroku - No module named 'django_project.wsgi<p>I'm trying to deploy a django application but I keep getting this error:</p>
<pre><code>ModuleNotFoundError: No module named 'django_project.wsgi'
</code></pre>
<p>In fact, here's the full log:</p>
<pre><code>2022-05-13T14:52:06.436735+00... | <p>With <strong>Procfile</strong> at the root directory (that is, one level above <strong>manage.py</strong>), I've changed its content to the following:</p>
<pre><code>web: gunicorn --pythonpath django_project django_project.wsgi --log-file -
</code></pre>
<p>As per <a href="https://stackoverflow.com/a/19671818/116272... | Deploying a Django application to Heroku - No module named 'django_project.wsgi | python|django|heroku|deployment | 0 | 134 | 3 | 72,235,629 | 72,235,629 | 0 | true | 2022-05-13T15:22:57.973Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Deploying a Django application to Heroku - No module named 'django_project.wsgi<p>I'm trying to deploy a django application but I keep getting this error:</p... |
72,174,958 | How to send jsonfile in api Request<p>I am facing an issue while sending the json file in request for RestController, Please check the details below</p>
<p>I have a json file , let say test.json</p>
<pre><code>{
"PolicyNumber": "123",
"Type": "Test",
"Tenture&quo... | <p>Would like to add my answer in case anyone who also faces a similar issue can use it.
TestController</p>
<pre><code>@RestController
public class TestController {
@PostMapping("/uploadJsonFile")
public ResponseEntity<String> uplaodFile(@RequestParam("file") final MultipartFi... | How to send jsonfile in api Request | java|json|spring|api | 0 | 53 | 2 | 72,235,707 | 72,235,707 | 0 | true | 2022-05-09T16:03:05.957Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to send jsonfile in api Request<p>I am facing an issue while sending the json file in request for RestController, Please check the details below</p>
<p>I... |
72,230,582 | Reuse a parent CDK Stack in other App project<p>First at all, it's important mention that I'm not using CDK as usual. Instead I'm creating resources on-the-fly programatically. So, basically, I have a multi-tenant application that on onboard it's created a customer root stack, that will be included nested stacks with r... | <p>I found a solution and created this example repository:</p>
<ul>
<li><a href="https://github.com/renanwilliam/cdk-reuse-stack-example" rel="nofollow noreferrer">https://github.com/renanwilliam/cdk-reuse-stack-example</a></li>
</ul>
<p>I have made a mix with AWS SDK CloudFormation module:</p>
<p><strong>src/index.js<... | Reuse a parent CDK Stack in other App project | amazon-web-services|aws-cdk | 0 | 495 | 2 | 72,235,732 | 72,235,732 | 0 | true | 2022-05-13T13:44:18.347Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Reuse a parent CDK Stack in other App project<p>First at all, it's important mention that I'm not using CDK as usual. Instead I'm creating resources on-the-f... |
72,235,527 | Why is sqlconnection.open nosing around in my config file?<p>Today I thought, Oh, I'll just add some SQL logging to a C# SFTP custom (console) program we have. I didn't write it, and it has perhaps an odd configuration file. It looks like the SQL Performance Counters require a well conformed config file? Add the catch... | <p>The group is not needed, so far the following has got around the original issue:</p>
<pre><code><configuration>
<configSections>
<section name="CustomAppSettings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561... | Why is sqlconnection.open nosing around in my config file? | c#|ado.net|app-config|sqlconnection|configurationmanager | 0 | 44 | 1 | 72,235,755 | 72,235,755 | 0 | true | 2022-05-13T21:20:48.900Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Why is sqlconnection.open nosing around in my config file?<p>Today I thought, Oh, I'll just add some SQL logging to a C# SFTP custom (console) program we hav... |
72,213,792 | ERROR with sharp dependency when deploying nodejs app to AWS elastic beanstalk<p>i am a beginner in AWS, and I encountered this problem very early on.
I created an EB environment and a code-pipeline in AWS. So whenever I push something to the repository, the app gets deployed. So for now I just have a "Hello world... | <p>Please reference my "workaround" solution provided in the following GitHub Issue (<a href="https://github.com/lovell/sharp/issues/3221#issuecomment-1126528844" rel="nofollow noreferrer">Fails to install on AWS ElasticBeanstalk with node16 #3221</a>) for a full explanation.</p>
<p><strong>Solution:</strong>... | ERROR with sharp dependency when deploying nodejs app to AWS elastic beanstalk | node.js|amazon-web-services|amazon-elastic-beanstalk|aws-codepipeline|sharp | 0 | 254 | 1 | 72,235,796 | 72,235,796 | 0 | true | 2022-05-12T10:16:08.217Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
ERROR with sharp dependency when deploying nodejs app to AWS elastic beanstalk<p>i am a beginner in AWS, and I encountered this problem very early on.
I crea... |
72,235,841 | How do I Add Text to a form pull<p>So I'm trying to make an API Fetch from a Form Input (The Search bar of my site), I Want to add Text to whatever was inputted to the Text Field and then send it trough to be pulled.</p>
<pre><code><form id="SearchBoxMainNav" style="display: flex;">
<in... | <p>Concatenate the text with <code>jsonObject.search</code>, not <code>jsonObject</code>.</p>
<p><code>Object.fromEntries()</code> returns a new object, there's no need to duplicate it with <code>{...formDataSerialized}</code></p>
<p><div class="snippet" data-lang="js" data-hide="false" data-console="true" data-babel="... | How do I Add Text to a form pull | javascript | 0 | 32 | 1 | 72,235,883 | 72,235,883 | 0 | true | 2022-05-13T22:10:35.293Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How do I Add Text to a form pull<p>So I'm trying to make an API Fetch from a Form Input (The Search bar of my site), I Want to add Text to whatever was input... |
72,223,991 | Sending Queries to a table in RMySQL, using R variables<p>I am trying to write data I have created in R and stored in arrays to MySQL table. Currently this is how I am doing it,</p>
<pre><code>for(z in 1:60){
dbSendQuery(
mydb,
"insert into minutely_predictions(id,server_pred, server_hi, server_lo, os_p... | <p>I was able to fix it by using the function sprintf and storing the variable that way, hopefully this may help others in the future.</p>
<pre><code>queryform = "insert into table(parameters) values('%d' .....)"
query = sprintf(queryform, value[1])
send = dbSendQuery(mydb,query)
</code></pre> | Sending Queries to a table in RMySQL, using R variables | mysql|r|syntax|rmysql | 0 | 36 | 2 | 72,235,906 | 72,235,906 | 0 | true | 2022-05-13T02:58:03.930Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Sending Queries to a table in RMySQL, using R variables<p>I am trying to write data I have created in R and stored in arrays to MySQL table. Currently this i... |
72,176,337 | NetSuite SOAP API: Populate PurchaseOrderList on VendorBill record retrieval<p>When using the NetSuite SOAP API I would like to retrieve the <code>purchaseOrderList</code> for a <code>VendorBill</code> record. The <code>purchaseOrderList</code> field is shown as a <code>RecordRefList</code> on <a href="https://system.n... | <p>After searching through the docs online it seems that the <code>purchaseOrderList</code> property on the Vendor Bill is only used when updating the bill to associate it with Purchase Orders, it doesn't look like the property can be returned when retrieving Vendor Bill records. See <a href="https://docs.oracle.com/en... | NetSuite SOAP API: Populate PurchaseOrderList on VendorBill record retrieval | soap|netsuite|suitetalk | 0 | 52 | 1 | 72,235,928 | 72,235,928 | 0 | true | 2022-05-09T17:58:03.277Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
NetSuite SOAP API: Populate PurchaseOrderList on VendorBill record retrieval<p>When using the NetSuite SOAP API I would like to retrieve the <code>purchaseOr... |
72,235,217 | Need help changing the color of the line and where it says "Other Commands" in VSCode when you press Ctrl + Shift + P<p>Here is the image of the Command Palette:</p>
<p><a href="https://i.stack.imgur.com/gWkDZ.png" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/gWkDZ.png" alt="control palette category te... | <p>If you are looking to change the color of the text <code>other commands</code> in your Command Palette example, use this <code>colorCustomization</code>:</p>
<pre><code>"workbench.colorCustomizations": {
"pickerGroup.foreground": "#ff0000"
}
</code></pre>
<p>inside of your <cod... | Need help changing the color of the line and where it says "Other Commands" in VSCode when you press Ctrl + Shift + P | visual-studio-code | 0 | 27 | 1 | 72,235,979 | 72,235,979 | 0 | true | 2022-05-13T20:41:03.110Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Need help changing the color of the line and where it says "Other Commands" in VSCode when you press Ctrl + Shift + P<p>Here is the image of the Command Pale... |
72,233,111 | List in Python help needed: how to Avoid calling repetitive code<p>I have a function shown below:</p>
<pre class="lang-py prettyprint-override"><code>def _extract_parent(matched_list, json_data, info_type):
return [json_data[match_lst][info_type] for match_lst in matched_list]
parent_lst = list(map(lambda x: _extr... | <p>Your long statements where you call your code via <code>map</code> and a <code>lambda</code> are just an inconvinient way of doing another list comprehension:</p>
<pre><code>parent_lst = [_extract_parent(x,json_data, "parent_info")
for x in flashtext_matched_pattern]
</code></pre>
<p>If you ... | List in Python help needed: how to Avoid calling repetitive code | python|list|optimization | 0 | 73 | 1 | 72,236,072 | 72,236,072 | 0 | true | 2022-05-13T17:03:45.247Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
List in Python help needed: how to Avoid calling repetitive code<p>I have a function shown below:</p>
<pre class="lang-py prettyprint-override"><code>def _ex... |
72,231,187 | get data-value with variable value<p>I have a <code>data-value</code> in my php code that is used in several places, for example:</p>
<pre><code><a class="dropdown-item" data-value="<?= $i ?>"></a>
<a class="dropdown-item" data-value="<?= $k ?>"><... | <p>since you want to get the data-value of a specific element with the $k variable, your best bet is giving an id to that specific element and selecting it by id:</p>
<p>HTML</p>
<pre><code><a id="element_with_k" class="dropdown-item" data-value="<?= $k ?>"></a>
</code></... | get data-value with variable value | javascript|php | 0 | 173 | 1 | 72,236,132 | 72,236,132 | 0 | true | 2022-05-13T14:27:05.970Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
get data-value with variable value<p>I have a <code>data-value</code> in my php code that is used in several places, for example:</p>
<pre><code><a class=... |
72,207,533 | Unable to mount a developer disk image. iOS 15.4.1 - Xcode 13.3.1 (13E500a)<p>iOS: 15.4.1 , Xcode: 13.3.1 (13E500a), macOS: 12.3.1 (21E258)</p>
<p>Hi, I was originally trying to remote debug in Terminal by:</p>
<pre><code>idevicedebugserverproxy -d 9999
</code></pre>
<p>then in a lldb session:</p>
<pre><code>process co... | <p>I managed to solve this problem by uninstalling libplist, usbmuxd, libimobiledevice, ideviceinstaller from brew and manually build the latest version from GitHub.</p>
<pre><code>done.
Mounting...
Done.
Status: Complete
</code></pre> | Unable to mount a developer disk image. iOS 15.4.1 - Xcode 13.3.1 (13E500a) | ios|iphone|xcode | 0 | 572 | 1 | 72,236,254 | 72,236,254 | 0 | true | 2022-05-11T20:58:34.157Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Unable to mount a developer disk image. iOS 15.4.1 - Xcode 13.3.1 (13E500a)<p>iOS: 15.4.1 , Xcode: 13.3.1 (13E500a), macOS: 12.3.1 (21E258)</p>
<p>Hi, I was ... |
72,236,123 | python 3 how to generate multiple random element in list for loops<p>I'm doing a coding exercise and it's to build a password generator. I understand I need to utilize the for loop with the list containing the elements but I'm having trouble getting multiple random elements. If the user input is 5, I'm able to generate... | <p>There could be better ways - I've just used your code.
The for loop you are using is redundant.</p>
<p>Can do something like -</p>
<pre><code>import random
letters = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', 'A', 'B', 'C', 'D', ... | python 3 how to generate multiple random element in list for loops | python-3.x|list|loops|for-loop|random | 0 | 35 | 1 | 72,236,265 | 72,236,265 | 0 | true | 2022-05-13T23:01:50.827Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
python 3 how to generate multiple random element in list for loops<p>I'm doing a coding exercise and it's to build a password generator. I understand I need ... |
72,217,813 | Errors with PyZabbix host.create method<p>I'm getting this problem:</p>
<pre><code>pyzabbix.ZabbixAPIException: ('Error -32602: Invalid params., Incorrect arguments passed to function.', -32602)
</code></pre>
<p>Here is my code:</p>
<pre><code>add_host = zapi.host.create(
host = host_sharepoint,
... | <p><a href="https://support.zabbix.com/browse/ZBX-18128" rel="nofollow noreferrer">here</a> is the explanation</p>
<p><a href="https://github.com/ansible/ansible/issues/70383" rel="nofollow noreferrer">here</a> is an example</p>
<p>You need to change the code like this</p>
<pre><code>add_host = zapi.host.create(
... | Errors with PyZabbix host.create method | python|python-3.x|zabbix|zabbix-api | 0 | 144 | 1 | 72,236,431 | 72,236,431 | 0 | true | 2022-05-12T14:54:31.580Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Errors with PyZabbix host.create method<p>I'm getting this problem:</p>
<pre><code>pyzabbix.ZabbixAPIException: ('Error -32602: Invalid params., Incorrect ar... |
72,157,241 | UninitializedPropertyAccessException in Android Studio using Kotlin<p>I am a beginner making use of a Roomdatabase. Mostly using it to load in and pass items between tables using simple relationships.</p>
<pre><code> package com.example.allin
import android.app.AlertDialog
import android.net.Uri
import android.os.... | <p>It turned out that the error occurred because I was tapping the checkbox itself and not just the card.</p> | UninitializedPropertyAccessException in Android Studio using Kotlin | sql|database|sqlite|android-studio|kotlin | 0 | 41 | 1 | 72,236,453 | 72,236,453 | 0 | true | 2022-05-08T00:20:08.057Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
UninitializedPropertyAccessException in Android Studio using Kotlin<p>I am a beginner making use of a Roomdatabase. Mostly using it to load in and pass items... |
72,180,593 | Fitting Python Progress Bar into all command prompt window sizes<p>How to make the progress bar size same on same line at all command prompt window sizes without splitting into half or even multiple times when adjusting the cmd window size?</p>
<p>def progress bar(stream, chunk, bytes remaining):</p>
<pre><code>percent... | <ol>
<li>Determine Terminal width<br />
You can use <a href="https://docs.python.org/3/library/os.html" rel="nofollow noreferrer">os.get_terminal_size()</a> to do that</li>
</ol>
<pre class="lang-py prettyprint-override"><code>width = os.get_terminal_size().columns
</code></pre>
<ol start="2">
<li>Determine the size of... | Fitting Python Progress Bar into all command prompt window sizes | python|progress-bar|pytube | 0 | 183 | 1 | 72,236,573 | 72,236,573 | 0 | true | 2022-05-10T03:59:18.640Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Fitting Python Progress Bar into all command prompt window sizes<p>How to make the progress bar size same on same line at all command prompt window sizes wit... |
72,226,056 | does redux change the reference of rootState object when a field's value in a sub state changes?<p>i have my redux states setup like this</p>
<pre><code>rootState
subState1
field1
field2
subState2
field1
field2
</code></pre>
<p>multiple sub states inside a root state. i... | <p>Yes, the root state object is always replaced, because this is a fundamental principle of immutable updates: <strong>an immutable update requires copying <em>every</em> level of nesting down to the field that needs to be updated!</strong></p>
<p>In other words, if I need to update <code>state.a.b.c.d</code>, I have ... | does redux change the reference of rootState object when a field's value in a sub state changes? | redux|react-redux|redux-toolkit | 0 | 109 | 1 | 72,236,606 | 72,236,606 | 0 | true | 2022-05-13T07:43:36Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
does redux change the reference of rootState object when a field's value in a sub state changes?<p>i have my redux states setup like this</p>
<pre><code>root... |
72,228,550 | Convert string date format MM/dd/yyyy HH:mm:ss.SSSS to timestamp presto<p>I have a string that looks like:</p>
<pre><code>2022-03-30 17:18:09.569000
</code></pre>
<p>I am trying to convert this to a timestamp as follows:</p>
<pre><code>select "date_parse"("date_format"('2022-03-30 17:18:09.569000', ... | <p>The value in your example matches the format of timestamp literals in SQL, so you can convert it to a <code>timestamp</code> type by just casting the value to the desired type:</p>
<pre><code>> select cast('2022-03-30 17:18:09.569000' as timestamp(6));
_col0
----------------------------
2022-03-30 17:... | Convert string date format MM/dd/yyyy HH:mm:ss.SSSS to timestamp presto | sql|datetime|presto | 0 | 327 | 1 | 72,236,615 | 72,236,615 | 0 | true | 2022-05-13T11:03:42.777Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Convert string date format MM/dd/yyyy HH:mm:ss.SSSS to timestamp presto<p>I have a string that looks like:</p>
<pre><code>2022-03-30 17:18:09.569000
</code><... |
72,180,509 | problem associated with web3.py installation on windows10<p>I tried installing web3, but I got the error in the picture below. I installed VS build tools using the link VS Code provided but I'm still getting the same error.</p>
<p><img src="https://i.stack.imgur.com/uu824.png" alt="" /></p> | <p>i downloaded Vs build tools installer and installed the missing files</p> | problem associated with web3.py installation on windows10 | python|visual-studio|visual-studio-code|solidity|web3py | 0 | 37 | 2 | 72,236,668 | 72,236,668 | 0 | true | 2022-05-10T03:44:31.290Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
problem associated with web3.py installation on windows10<p>I tried installing web3, but I got the error in the picture below. I installed VS build tools usi... |
72,234,713 | Pandas - Key Exception - Length mismatch: Some times Expected axis has 3 elements, Some times has 2 elemnts<p>I have built a script to update stock values from yahoo finance with pandas.</p>
<p>Sometimes the script works fine, but at some point it gets an error:</p>
<p><code>Key Exception - Length mismatch: Expected ax... | <p>Found the solution. Using <code>if</code> and <code>else</code>, so the command <code>if yahoo_df.shape[1] == 3</code> , checks if the axis is equal 3.</p>
<p>And <code>yahoo_df["price"] = yahoo_df["price"].fillna(yahoo_df["price2"])</code> fill the NaN of the column price with the valu... | Pandas - Key Exception - Length mismatch: Some times Expected axis has 3 elements, Some times has 2 elemnts | python|pandas | 0 | 45 | 1 | 72,236,826 | 72,236,826 | 0 | true | 2022-05-13T19:45:12.183Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Pandas - Key Exception - Length mismatch: Some times Expected axis has 3 elements, Some times has 2 elemnts<p>I have built a script to update stock values fr... |
72,236,460 | Adding basic data to database - Laravel 8 + ajax<p>My laravel framework version is on 8.83.12</p>
<p>I am trying to build a form that creates a database entry based on Vehicle data, Make, Model, Version.. etc.</p>
<p><strong>My Model</strong> (name:Vehicle)</p>
<pre><code>namespace App\Models;
use Illuminate\Database\... | <p>Try this refactor, your are wrongly saving the model.</p>
<p><strong>Vehicle Model</strong></p>
<pre class="lang-php prettyprint-override"><code>namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Vehicle extends Model
{
use HasFactory;
... | Adding basic data to database - Laravel 8 + ajax | php|laravel | 0 | 73 | 1 | 72,236,832 | 72,236,832 | 0 | true | 2022-05-14T00:18:20.443Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Adding basic data to database - Laravel 8 + ajax<p>My laravel framework version is on 8.83.12</p>
<p>I am trying to build a form that creates a database entr... |
72,236,047 | Started fullstackopen for the first time and getting a "favicon.ico" request in the network tab<p>So I basically started this web dev course by fullstackopen and in one of the steps it says that once you open the Developer Console, and refresh the tab, 2 requests shall appear (one HTTP GET request and the another for a... | <p>As Akki mentioned, this is the icon you would see on a tab in the browser. Like the StackOverflow icon for this page.</p>
<p>You are getting a status 200 response, so it does find it in your root</p> | Started fullstackopen for the first time and getting a "favicon.ico" request in the network tab | frontend|favicon|web-development-server|react-fullstack | 0 | 52 | 2 | 72,236,859 | 72,236,859 | 0 | true | 2022-05-13T22:46:22.630Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Started fullstackopen for the first time and getting a "favicon.ico" request in the network tab<p>So I basically started this web dev course by fullstackopen... |
72,236,354 | How to join two very large dataframes together with same columns?<p>I have two datasets that look like this:</p>
<p><code>df1</code>:</p>
<div class="s-table-container">
<table class="s-table">
<thead>
<tr>
<th>Date</th>
<th>City</th>
<th>State</th>
<th>Quantity</th>
</tr>
</thead>
<tbody>
<tr>
<td>2019-01</td>
<td>Chi... | <p>If performance is not critical, you could create a defaultdict of dict and use the first three values as the dict key and then add quantity and sales to the value dict. This would allow you to process the files without reading them into memory first.</p>
<pre><code>from collections import defaultdict
from pathlib im... | How to join two very large dataframes together with same columns? | python|r|pandas|dataframe | 0 | 40 | 1 | 72,236,874 | 72,236,874 | 0 | true | 2022-05-13T23:53:33.907Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to join two very large dataframes together with same columns?<p>I have two datasets that look like this:</p>
<p><code>df1</code>:</p>
<div class="s-table... |
72,236,646 | Excel Conditional Formatting if cell in Column A AND the cell in Column B are blank than highlight cell in Column G<p>I am trying to use the conditional formatting in Excel so that
if a cell in Column A is blank and the cell in Column H (of the same row) is also blank then the cell in Column G gets highlighted in blue.... | <p>Try this rule-</p>
<pre><code>=AND($A1="",$H1="")
</code></pre>
<p><a href="https://i.stack.imgur.com/owlhj.png" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/owlhj.png" alt="enter image description here" /></a></p> | Excel Conditional Formatting if cell in Column A AND the cell in Column B are blank than highlight cell in Column G | excel|conditional-formatting | 0 | 23 | 1 | 72,236,943 | 72,236,943 | 0 | true | 2022-05-14T01:14:00.140Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Excel Conditional Formatting if cell in Column A AND the cell in Column B are blank than highlight cell in Column G<p>I am trying to use the conditional form... |
72,235,221 | Pyspark: Write CSV from JSON file with struct column<p>I'm reading a .json file that contains the structure below, and I need to generate a csv with this data in column form, I know that I can't directly write an array-type object in a csv, I used the explode function to remove the fields I need , being able to leave t... | <p>Use <em>explode</em> on array and select("struct.*") on struct.</p>
<pre><code>df.select("trial", "id", explode('history').alias('history')),
.select('id', 'history.*', 'trial.*'))
</code></pre> | Pyspark: Write CSV from JSON file with struct column | apache-spark|pyspark|struct | 0 | 235 | 1 | 72,236,988 | 72,236,988 | 0 | true | 2022-05-13T20:41:47.753Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Pyspark: Write CSV from JSON file with struct column<p>I'm reading a .json file that contains the structure below, and I need to generate a csv with this dat... |
72,236,800 | Shiny Error: replacement has 2 rows, data has 1<p>I am trying to create a Shiny app, in which users can select an "option" in the drop-down box(created using selectInput) and Shiny will display the data table accordingly. Now, I have the parts where users can click on the link per each observation and it will... | <p>The culprit is your statement</p>
<pre><code>data$Website <- paste0("<a href='//", car_df$website,"'>",car_df$website,"</a>")
</code></pre>
<p>As you know when you select a state, <code>data</code> has only one record. However, <code>car_df</code> has 2 records.</p>
<p>Tr... | Shiny Error: replacement has 2 rows, data has 1 | r|shiny | 0 | 57 | 1 | 72,237,012 | 72,237,012 | 0 | true | 2022-05-14T02:01:11.383Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Shiny Error: replacement has 2 rows, data has 1<p>I am trying to create a Shiny app, in which users can select an "option" in the drop-down box(cre... |
72,236,508 | Returning MIME data from a function in Qt<p>I am trying to create a class with drag and drop. I want it to be used as a base class for future derived classes. I want derived classes to specify MIME data for Drag and Drop. I made a function that returns MIME data as a pointer, I am not sure if it is safe to do so. Is it... | <p>The man page for <a href="https://doc.qt.io/qt-5/qdrag.html#setMimeData" rel="nofollow noreferrer">QDrag::setMimeData()</a> says that “ownership of the QMimeData object is transferred to the QDrag object”, which is another way of saying that the QDrag object will delete the QMimeData object when it is done with it. ... | Returning MIME data from a function in Qt | c++|qt | 0 | 33 | 1 | 72,237,025 | 72,237,025 | 0 | true | 2022-05-14T00:31:30.117Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Returning MIME data from a function in Qt<p>I am trying to create a class with drag and drop. I want it to be used as a base class for future derived classes... |
72,230,336 | How can I reduce the number of database queries for a one to many association in Strawberry GraphQL and FastAPI?<p>I'm developing a python GraphQL API server using FastAPI and Strawberry, and I'm implementing this feature:
I have two entities, User and Order, which have a one to many association (a User can have many O... | <p>The data loader function itself can do the grouping.</p>
<pre><code>async def load_orders_by_user(keys: list[int]) -> Iterable[list[Order]]:
orders = # select * from order where user_id in keys
groups = {key: [] for key in keys} # dict maintains order
for order in orders:
groups[order.user_id... | How can I reduce the number of database queries for a one to many association in Strawberry GraphQL and FastAPI? | database|optimization|graphql|fastapi|strawberry-graphql | 0 | 263 | 1 | 72,237,048 | 72,237,048 | 0 | true | 2022-05-13T13:26:43.683Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How can I reduce the number of database queries for a one to many association in Strawberry GraphQL and FastAPI?<p>I'm developing a python GraphQL API server... |
72,232,804 | Do i have to put a foreign key relation to any column in a table with relation with another table? larvavel 8, Sql<p>I have multiple tables, and some do have columns which are related but I am not certain if I have to put the foreign key relations to all columns which are related.</p>
<p>Here are some of my migrations ... | <p>Well, in fact, when you use <code>$table->foreign('user_id')</code> besides creating a key, Laravel is also creating the regarding index for that foreign key.</p>
<p>The main benefit of foreign keys is that they enforce data consistency, meaning that they keep the database clean.
It is true that foreign keys will... | Do i have to put a foreign key relation to any column in a table with relation with another table? larvavel 8, Sql | mysql|sql|laravel|database | 0 | 27 | 2 | 72,237,049 | 72,237,049 | 0 | true | 2022-05-13T16:35:10.493Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Do i have to put a foreign key relation to any column in a table with relation with another table? larvavel 8, Sql<p>I have multiple tables, and some do have... |
72,228,429 | Create branch in Google Cloud source repository<p>I have created repository in google cloud source repository . It got created with default branch "Master" , i want to create repository with two branch or need to add branch but i am not getting option.</p>
<p>Can anyone help?</p> | <p>I got the answer to my query.</p>
<p>Go to Git terminal and run below
1)git: git branch
2) git push -u
Refresh repo in GSR.</p> | Create branch in Google Cloud source repository | google-source-repositories | 0 | 252 | 2 | 72,237,189 | 72,237,189 | 0 | true | 2022-05-13T10:53:13.177Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Create branch in Google Cloud source repository<p>I have created repository in google cloud source repository . It got created with default branch "Mast... |
72,228,245 | Generate json request body using Lombok annotation<p>I tried multiple pattern , but still no success how can I create JSON Array object with nested JSON object similar like below</p>
<pre><code>{
"deduction": [
{
"id": "50258779",
"amount": {
"value... | <p>First, you define <code>private List<Deduction> deduction;</code> --> you will supply <code>List</code>.</p>
<p>Second, to make builder work, you have to call <code>.build()</code></p>
<pre><code>public Transf trans() {
return Transf.builder()
.deduction(Arrays.asList(Transf.Deduction.builde... | Generate json request body using Lombok annotation | java|lombok|rest-assured | 0 | 477 | 2 | 72,237,390 | 72,237,390 | 0 | true | 2022-05-13T10:38:32.950Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Generate json request body using Lombok annotation<p>I tried multiple pattern , but still no success how can I create JSON Array object with nested JSON obje... |
72,237,225 | How I use return inside a recursive functions in php<p>I have a php recursive function as shown in the below:</p>
<pre><code>function displayDropdown(&$catList, $parent, $current=[], $level=0) {
if ($parent==0) {
foreach ($catList[$parent] as $catID=>$nm) {
displayDropdown($catList, $catID, $current... | <p>you need also like this <code>$optionsHTML .= displayDropdown(...)</code></p>
<pre><code>function displayDropdown(&$catList, $parent, $current=[], $level=0) {
$optionsHTML = '';
if ($parent==0) {
foreach ($catList[$parent] as $catID=>$nm) {
$optionsHTML .= displayDropdown($catList, $catID, $cur... | How I use return inside a recursive functions in php | php|function|recursion | 0 | 33 | 1 | 72,237,418 | 72,237,418 | 0 | true | 2022-05-14T03:52:35.100Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How I use return inside a recursive functions in php<p>I have a php recursive function as shown in the below:</p>
<pre><code>function displayDropdown(&$c... |
72,237,114 | Assign value to only one bit in a vector module output<p>I have the following code and I get an error. I am trying to use only one bit out of the four lines in the inputs A, B, and the output, Y. To be clear, I do not want to use the AND operator, I want to use the AND module that I made.</p>
<pre><code>AND_Gate_Quad_S... | <p>An output port cannot be connected to numeric literal constant.</p>
<p>There at least three options I can think of</p>
<ol>
<li>Do a simple connection and live with a port size mismatch warning <code>.y(clk_buffer)</code></li>
<li>Declare as a 4-bit <code>wire [3:0] clk_buffer</code> and only use <code>clk_buffer[0]... | Assign value to only one bit in a vector module output | verilog|iverilog | 0 | 59 | 1 | 72,237,503 | 72,237,503 | 0 | true | 2022-05-14T03:27:14.130Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Assign value to only one bit in a vector module output<p>I have the following code and I get an error. I am trying to use only one bit out of the four lines ... |
72,234,540 | How to update the source when use retrywhen RxJs<p>I'm doing a request to an API to create an order, it's probably got an error when trying to create the order with the same code because the method generateCode() is a random generator!</p>
<p>When performing retries, it uses the same source, which means, uses the same ... | <p>Try warp with <code>defer</code> in you <code>sendRequest</code> method, which should re run everytime when retry</p>
<pre><code>sendRequest(): Observable<any> defer(()=>{
let order = {
code: generateCode()
};
return this.service.createOrder(order);
})
</code></pre> | How to update the source when use retrywhen RxJs | angular|rxjs|observable|retrywhen | 0 | 96 | 1 | 72,237,685 | 72,237,685 | 0 | true | 2022-05-13T19:24:46.683Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to update the source when use retrywhen RxJs<p>I'm doing a request to an API to create an order, it's probably got an error when trying to create the ord... |
72,230,240 | Kotlin read from room database in fragment<p>I write an application with room database and I have a problem with reading data and use it in the mine thread.</p>
<p>consider tables as those:</p>
<p><strong>Table1</strong></p>
<pre><code>| ID | Name |
| -- | ------ |
| 1 | first |
| 2 | second |
</code></pre>
<p><st... | <p>The problem is that you are trying to retrieve XTypeString before your asynchronous task(readAllData from ViewModel) has completed. You should move the binding of XTypeText inside observe, as below. Note the change in function signature for bindXTypeText().</p>
<pre><code>private fun bindXTypeText(id: Int) {
var X... | Kotlin read from room database in fragment | kotlin|thread-safety|android-room | 0 | 210 | 1 | 72,237,785 | 72,237,785 | 0 | true | 2022-05-13T13:18:36.280Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Kotlin read from room database in fragment<p>I write an application with room database and I have a problem with reading data and use it in the mine thread.<... |
72,237,709 | how to initialize a class object reference in C++ to simulate NRVO?<p>I meet a course programming problem, which asks me to initialize the <code>A a</code> using passing by reference (initialize the <code>A a</code> in the <code>func</code>). How can I call <code>A</code>'s constructor by <code>A</code>'s reference?</p... | <p>The syntax <code>a.A::A(10);</code> is incorrect.</p>
<p>Constructor is used to create an object of a class, you cannot call it on an already existing object. Even a constructor cannot be explicitly called. It is implicitly called by the compiler.</p>
<p>From <a href="https://eel.is/c++draft/class.ctor#general-1.sen... | how to initialize a class object reference in C++ to simulate NRVO? | c++|syntax | 0 | 56 | 2 | 72,237,791 | 72,237,791 | 0 | true | 2022-05-14T05:56:18.543Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
how to initialize a class object reference in C++ to simulate NRVO?<p>I meet a course programming problem, which asks me to initialize the <code>A a</code> u... |
72,195,875 | Laravel 7: External link not working in localhost<p>The external links of CSS and JS are not working when I try access my Laravel project from localhost by <code>www.localhost/myproject</code> this. But others porject run well. I have to run <code>php artisan serve</code> command to run my project perfectly. When I upl... | <p>I have solve my problem with updating htaccess file.</p>
<p>htaccess file:</p>
<pre><code> <IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
Options -MultiViews -Indexes
</IfModule>
RewriteEngine On
# Handle Authorization Header
RewriteCond %{HTTP:Authorization}... | Laravel 7: External link not working in localhost | laravel|laravel-7 | 0 | 125 | 3 | 72,237,877 | 72,237,877 | 0 | true | 2022-05-11T05:32:35.850Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Laravel 7: External link not working in localhost<p>The external links of CSS and JS are not working when I try access my Laravel project from localhost by <... |
72,215,379 | Creating and migrating a devise-driven User model in a main/replica context<p>The following main/replica database structure</p>
<pre><code>development:
primary:
<<: *default
database: users_development
username: deploy_root
password: password
host: "localhost"
migrations_paths:... | <p>The primary database is assumed to have its migrations in the <code>migrate</code> directory, not a sub-directory.</p>
<pre><code>development:
primary:
<<: *default
database: users_development
username: deploy_root
password: password
host: "localhost"
primary_replica:
<... | Creating and migrating a devise-driven User model in a main/replica context | ruby-on-rails|devise|distributed-database | 0 | 40 | 1 | 72,238,084 | 72,238,084 | 0 | true | 2022-05-12T12:13:55.363Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Creating and migrating a devise-driven User model in a main/replica context<p>The following main/replica database structure</p>
<pre><code>development:
pri... |
72,212,419 | Use FilePond with Dynamic Import and Code Splitting<p>I would like to load FilePond core including needed plugins only if they are really used on the page. I thought using <a href="https://v4.webpack.js.org/guides/code-splitting/#dynamic-imports" rel="nofollow noreferrer">Webpack Dynamic Imports</a>.</p>
<p>Example: <a... | <p>You need to access the <code>default</code> property as the plugin uses default export.</p>
<p>In these situations the best course of action is to <code>console.log</code> variables to see what is inside.</p>
<p>Working version: <a href="https://codesandbox.io/s/filepond-lazy-load-example-forked-gvxrom?file=/src/com... | Use FilePond with Dynamic Import and Code Splitting | webpack|es6-promise|filepond | 0 | 79 | 1 | 72,238,170 | 72,238,170 | 0 | true | 2022-05-12T08:36:08.370Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Use FilePond with Dynamic Import and Code Splitting<p>I would like to load FilePond core including needed plugins only if they are really used on the page. I... |
72,230,485 | AutoHotKey Date Parsing returning today's date<p>I had been working on a QoL macro to convert selected text dates into a desired format. For that purpose I was trying to utilize the DateParse function that is referenced from the AHK archive forum. After going through all 7 pages of that thread none of the implementatio... | <p>I am fairly familiar with regex, and I do not think that some of those expressions will compile correctly (specifically "?:" within a literal string). Try using ErrorLevel by msgbox after each regexMatch call. I'd be willing to bet it is throwing errors silently about compile issues.</p>
<p>Were I in this ... | AutoHotKey Date Parsing returning today's date | regex|date|format|autohotkey | 0 | 155 | 1 | 72,238,415 | 72,238,415 | 0 | true | 2022-05-13T13:38:17.340Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
AutoHotKey Date Parsing returning today's date<p>I had been working on a QoL macro to convert selected text dates into a desired format. For that purpose I w... |
72,237,257 | Wordpress Get the same meta<p>i have problem about get post meta , i want to show meta by per user , but when i addet meta+user_id i cant get all some meta</p>
<p>My code is</p>
<p><div class="snippet" data-lang="js" data-hide="false" data-console="true" data-babel="false">
<div class="snippet-code">
<pre class="snipp... | <p>Try this one:</p>
<pre><code><?php
$post_id = get_the_ID();
$users = get_users( array( 'fields' => array( 'ID' ) ) );
foreach($users as $user){
get_post_meta($post_id , 'meta'.$user->ID ,true);
}
?>
</code></pre> | Wordpress Get the same meta | wordpress|meta | 0 | 25 | 1 | 72,238,506 | 72,238,506 | 0 | true | 2022-05-14T04:00:18.683Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Wordpress Get the same meta<p>i have problem about get post meta , i want to show meta by per user , but when i addet meta+user_id i cant get all some meta<... |
72,236,527 | Discord.js V13: How do I get/ find a category?<p>I want to find a category just like how you find a channel.</p>
<pre class="lang-js prettyprint-override"><code>let channel = message.guild.channels.cache.get(<id>);
</code></pre>
<p>Is there a way to find a category like this? I am trying to see if a specific cate... | <p>It same with channels because categories are type of channel.</p>
<pre class="lang-js prettyprint-override"><code>message.guild.channels.cache.find(channel => channel.type == "GUILD_CATEGORY" && channel.name == "xxx")
// this returns you category with this name if exists.
</code></pre... | Discord.js V13: How do I get/ find a category? | node.js|discord|discord.js | 0 | 341 | 1 | 72,238,693 | 72,238,693 | 0 | true | 2022-05-14T00:36:33.293Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Discord.js V13: How do I get/ find a category?<p>I want to find a category just like how you find a channel.</p>
<pre class="lang-js prettyprint-override"><c... |
72,232,792 | Covariant return type on Eigen Matrix for base class method<p>Suppose that I have two different solvers that both will be called at run time.</p>
<ul>
<li>I want to call solvers' api and get resulted Eigen matrix through the base class pointer.</li>
<li>The solved matrix size are selected from a few known values depend... | <p>The easiest solution would be to just store a <code>VectorXd solution_;</code> inside <code>Solver</code> itself. But if you insist on storing the actual solution vector only in the derived classes, you can have <code>solution()</code> return an <code>Eigen::Ref<const Eigen::VectorXd></code> which can be creat... | Covariant return type on Eigen Matrix for base class method | c++|templates|design-patterns|polymorphism|eigen | 0 | 40 | 1 | 72,238,950 | 72,238,950 | 0 | true | 2022-05-13T16:34:08.673Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Covariant return type on Eigen Matrix for base class method<p>Suppose that I have two different solvers that both will be called at run time.</p>
<ul>
<li>I ... |
72,228,511 | Binning 2D data with circles instead of rectangles - from pandas df<p>I have a dataframe of x, y data and need to bin it into circles. Ie a grid of circles of certain size and spacing centered on some point. So for example some data would be left out after this sampling/binning. How is this possible?</p>
<p>I have trie... | <p>The only way this can be done is by looping over your points and grid of circles like so:</p>
<pre><code>def inside_circle(x, y, x0, y0, r):
return (x - x0)*(x - x0) + (y - y0)*(y - y0) < r*r
x_bins = np.linspace(-9, 9, 30)
y_bins = np.linspace(-9, 9, 30)
h = df['upmm']
w = df['anode_entrance']
histo = np... | Binning 2D data with circles instead of rectangles - from pandas df | python|pandas|dataframe|histogram|sampling | 0 | 27 | 1 | 72,238,968 | 72,238,968 | 0 | true | 2022-05-13T10:59:40.290Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Binning 2D data with circles instead of rectangles - from pandas df<p>I have a dataframe of x, y data and need to bin it into circles. Ie a grid of circles o... |
72,208,371 | ESP32 AWS IoT transportStatus=-1<p>I'm following the espressif docs for connecting a ESP32 to AWS IoT shadow. I'm using the example <a href="https://github.com/espressif/esp-aws-iot/tree/master/examples/thing_shadow/main" rel="nofollow noreferrer">github.com/espressif/esp-aws-iot</a> for shadow mqtt synchronisation. I ... | <p>I found the error. Something was messed up with the policy I created for that device. I'm still not 100% sure what exactly was the problem, but when I removed the code that tried to delete the shadow first before the actual shadow operations begin, the example worked fine. I can now pub/sub to my shadow.</p>
<p><str... | ESP32 AWS IoT transportStatus=-1 | c|amazon-web-services|mqtt|esp32|esp-idf | 0 | 99 | 1 | 72,239,007 | 72,239,007 | 0 | true | 2022-05-11T22:45:19.407Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
ESP32 AWS IoT transportStatus=-1<p>I'm following the espressif docs for connecting a ESP32 to AWS IoT shadow. I'm using the example <a href="https://github.c... |
72,181,467 | Use C# Task Scheduler library to End Task<p>I'm currently using this library for the windows task scheduler <a href="https://github.com/dahall/TaskScheduler" rel="nofollow noreferrer">https://github.com/dahall/TaskScheduler</a></p>
<p>What I want is to end the running task. In my research, I found that I can able to di... | <p><code>task.Enabled = false</code> will disable the single task immediately. <code>task.Definition.Settings.Enabled = false</code> is used to disable a task before registration.</p>
<p>To terminate a running task, use:</p>
<p><code>if (task.IsActive && task.State == TaskState.Running) task.Stop();</code></p> | Use C# Task Scheduler library to End Task | c#|taskscheduler|windows-task-scheduler | 0 | 189 | 3 | 72,239,063 | 72,239,063 | 0 | true | 2022-05-10T06:13:33.873Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Use C# Task Scheduler library to End Task<p>I'm currently using this library for the windows task scheduler <a href="https://github.com/dahall/TaskScheduler"... |
72,231,232 | python: apply all functions inside a class to a user input<p>I have a class and a some functions that changes the user input and saves it in a file as follows.</p>
<pre><code>import os
import pandas as pd
from langdetect import detect
class Changer(object):
def __init__ (self, sent, id):
self.sent = sent
... | <p>Answer based on the comments in the question.</p>
<pre><code>class Changer(object):
def __init__(self, sent, id):
self.sent = sent
self.id = id
def panda_creator(self):
dic = {'text': [self.sent], 'id': [self.id]}
data = pd.DataFrame.from_dict(dic, orient='columns')
s... | python: apply all functions inside a class to a user input | python|function|class | 0 | 60 | 1 | 72,239,164 | 72,239,164 | 0 | true | 2022-05-13T14:30:33.917Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
python: apply all functions inside a class to a user input<p>I have a class and a some functions that changes the user input and saves it in a file as follow... |
72,232,247 | Jenkins build failing without updating Xray with the failed status<p>Please forgive me if this is not the place to ask this question. I'm running python scripts in a Jenkins pipeline from a Jenkinsfile. I am also updating Jira Xray tickets within the Jenkisfile. Behave is being used to validate the test status. If the ... | <p>Your case should be easy to fix. Behave utility returns exit code 1 if tests fails..</p>
<p>Just add this to the end of your behave command <code> || /usr/bin/true</code> (please make sure of the path of the "true" command).
This will make your command to always return true even if some problems exist with... | Jenkins build failing without updating Xray with the failed status | python|jenkins|python-behave|jira-xray | 0 | 75 | 1 | 72,239,307 | 72,239,307 | 0 | true | 2022-05-13T15:46:20.167Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Jenkins build failing without updating Xray with the failed status<p>Please forgive me if this is not the place to ask this question. I'm running python scri... |
72,218,978 | React native (expo) have a different navigation bar color for each page (on Android)<p>Android phones that have a navigation bar like that from the iPhone, have the default background color as white, which looks really off if my screen's background color is different than white, so I need to change the background color... | <p>What I ended up doing is using <code>useIsFocused</code> from <code>@react-navigation/native</code> to tell when the user came back to the screen and then calling <code>NavigationBar.setBackgroundColorAsync</code> again</p> | React native (expo) have a different navigation bar color for each page (on Android) | react-native|expo | 0 | 428 | 2 | 72,239,557 | 72,239,557 | 0 | true | 2022-05-12T16:14:59.340Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
React native (expo) have a different navigation bar color for each page (on Android)<p>Android phones that have a navigation bar like that from the iPhone, h... |
72,237,053 | Does `offsetof(struct Derived, super.x) == offsetof(struct Base, x)` hold true in C?<p>I am unsure what André Caron means here:</p>
<p><a href="https://stackoverflow.com/questions/6844471/virtual-functions-in-c">Virtual functions in C</a></p>
<blockquote>
<p>... some of this code relies on (officially) non-standard beh... | <blockquote>
<p>However, why is it necessary for a POD structure to have another pointer void *foo::hook?</p>
</blockquote>
<p>It isn't necessary. From the original question and answer:</p>
<blockquote>
<p>This technique is more reliable, especially if you plan to write the "derived struct" in C++ and use vir... | Does `offsetof(struct Derived, super.x) == offsetof(struct Base, x)` hold true in C? | c|pointers|struct | 0 | 84 | 1 | 72,239,678 | 72,239,678 | 0 | true | 2022-05-14T03:13:50.977Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Does `offsetof(struct Derived, super.x) == offsetof(struct Base, x)` hold true in C?<p>I am unsure what André Caron means here:</p>
<p><a href="https://stack... |
72,233,325 | Import error when using pymeshlab and Pyinstaller<p>I am currently writing a program using pymeshlab, which I would like to deploy using pyinstaller. After I deployed the program, I tried to run it and got the folowing error.</p>
<pre><code>[78981] Module object for struct is NULL!
Traceback (most recent call last):
Fi... | <p>What can be used instead of pyinstaller cx_freeze. Using cx_freeze the applications runs fine!</p> | Import error when using pymeshlab and Pyinstaller | pyinstaller|pymeshlab | 0 | 81 | 1 | 72,240,173 | 72,240,173 | 0 | true | 2022-05-13T17:19:56.753Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Import error when using pymeshlab and Pyinstaller<p>I am currently writing a program using pymeshlab, which I would like to deploy using pyinstaller. After I... |
72,213,620 | Start roblox script with RemoteEvent<p>How i can do something like that and fix this (i learn script)</p>
<pre><code>local Event = game.ReplicatedStorage.SoundPlayEventWirlord
Event.OnServerEvent:Connect(function(plr, NameId)
local theplayer = plr
print(NameId)
if NameId == "one" then
gam... | <p>Based on the comments, your question seems to be how to properly find the player's character model in the workspace.</p>
<p>You can do this two ways. You can use the player's name to index into the Workspace :</p>
<pre><code>game.Workspace[plr.Name].one:Play()
</code></pre>
<p>or, you can simply use the <a href="htt... | Start roblox script with RemoteEvent | lua|roblox | 0 | 67 | 1 | 72,240,215 | 72,240,215 | 0 | true | 2022-05-12T10:03:10.190Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Start roblox script with RemoteEvent<p>How i can do something like that and fix this (i learn script)</p>
<pre><code>local Event = game.ReplicatedStorage.Sou... |
72,224,037 | H-Captcha can't verify captcha key/token<p>Here is my code:</p>
<pre><code>let result = await axios({
method: 'post',
url: 'https://hcaptcha.com/siteverify',
params: {
secret: "secret would be here",
response: req.body.hcap
}
... | <p>I ended up finding the solution to be installing the <a href="https://www.npmjs.com/package/hcaptcha" rel="nofollow noreferrer">hcaptcha package</a> which made this a lot simpler.</p> | H-Captcha can't verify captcha key/token | javascript|node.js|axios|hcaptcha | 0 | 294 | 1 | 72,240,842 | 72,240,842 | 0 | true | 2022-05-13T03:08:13.487Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
H-Captcha can't verify captcha key/token<p>Here is my code:</p>
<pre><code>let result = await axios({
method: 'post',
url: 'https://h... |
72,200,736 | How to prevent exception logs of malformed requests in Spring Boot Application<p>Spring Boot 2.6.x</p>
<pre><code>May 11 14:08:41 ubuntu java[1831]: 2022-05-11 14:08:41.239 INFO 1831 --- [nio-2023-exec-7] o.apache.coyote.http11.Http11Processor : Error parsing HTTP request header
May 11 14:08:41 ubuntu java[1831]: N... | <p>Is this a service that restarts quite often? Like, you get a request that starts-up Tomcat, then shuts-down, only to restart for another request after that?</p>
<p>Tomcat will only log the message you see above once per run at the <code>INFO</code> level, and those after that will be logged at the <code>DEBUG</code>... | How to prevent exception logs of malformed requests in Spring Boot Application | spring-boot|tomcat | 0 | 219 | 1 | 72,240,917 | 72,240,917 | 0 | true | 2022-05-11T12:02:25.303Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to prevent exception logs of malformed requests in Spring Boot Application<p>Spring Boot 2.6.x</p>
<pre><code>May 11 14:08:41 ubuntu java[1831]: 2022-05-... |
72,160,261 | Postgres Join tables and create new field if join exists<p>I'm new to Postgres and I have a confusing one.
Basically, I want to find if my post is bookmarked by the user or not in a new field <code>bookmarked = true / false</code></p>
<p><strong>Here are my tables</strong></p>
<pre><code>CREATE TABLE blog_posts (
... | <p>If anyone would encounter the same problem here is how I fixed it</p>
<pre><code>SELECT blog_posts.* , count(ratings.*) as ratings_count, avg(ratings.rating) as avg_rating, users.avatar as author_avatar,
users.name as author_name, users.role as author_role, users.location as author_location, users.description as... | Postgres Join tables and create new field if join exists | database|postgresql | 0 | 33 | 1 | 72,240,973 | 72,240,973 | 0 | true | 2022-05-08T10:51:04.850Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Postgres Join tables and create new field if join exists<p>I'm new to Postgres and I have a confusing one.
Basically, I want to find if my post is bookmarked... |
72,236,863 | How to listen to realtime database changes (like a stream) in firebase cloud functions?<p>I am trying to listen to the changes in a specific field in a specific document in Firebase Realtime database. I am using Node JS for the cloud functions. this is the function.</p>
<pre><code>const functions = require("fireba... | <p>From the comments it seems that the <code>cond</code> property is updated from outside of the Cloud Function. When that happens, it will trigger a new instance of the Cloud Function to run with its own <code>curr</code> variable, but it won't cause the <code>curr</code> value in the current instance to be updated. S... | How to listen to realtime database changes (like a stream) in firebase cloud functions? | node.js|firebase|firebase-realtime-database|google-cloud-functions | 0 | 200 | 1 | 72,241,150 | 72,241,150 | 0 | true | 2022-05-14T02:21:38.940Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to listen to realtime database changes (like a stream) in firebase cloud functions?<p>I am trying to listen to the changes in a specific field in a speci... |
72,162,766 | Where to set the S3 configuration in Spark locally?<p>I've setup a docker container that is starting a jupyter notebook using spark. I've integrated the necessary jars into spark's directoy for being able to access the S3 filesystem.
My Dockerfile:</p>
<pre><code>FROM jupyter/pyspark-notebook
EXPOSE 8080 7077 6066
RU... | <p>After a few days of browsing the web, I found the correct properties (not in the official documentation though) that were missing in the spark-defaults.conf:</p>
<pre><code>spark.hadoop.fs.s3a.aws.credentials.provider com.amazonaws.auth.EnvironmentVariableCredentialsProvider
</code></pre> | Where to set the S3 configuration in Spark locally? | apache-spark|amazon-s3|pyspark | 0 | 335 | 2 | 72,241,436 | 72,241,436 | 0 | true | 2022-05-08T15:56:23.083Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Where to set the S3 configuration in Spark locally?<p>I've setup a docker container that is starting a jupyter notebook using spark. I've integrated the nece... |
72,230,636 | Python Knapsack problem - using the average value of the selected items as a constraint?<p>I'm still relatively new to python so I'm having trouble figuring out how to accomplish a certain feat.</p>
<p>What I'm trying to do: I have an Excel file with two columns - Sell and margin. There could be a variable number of ro... | <p>Adding an average Margin constraint is not very difficult, once you write things down.</p>
<p><strong>Constraint to keep the Average margin within two bounds</strong></p>
<p>To your model you would add the following:</p>
<pre><code>min_acceptable_margin = data['target_margin'][0] * 0.95
max_acceptable_margin = data[... | Python Knapsack problem - using the average value of the selected items as a constraint? | python|linear-programming|knapsack-problem | 0 | 77 | 2 | 72,241,499 | 72,241,499 | 0 | true | 2022-05-13T13:47:46.293Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Python Knapsack problem - using the average value of the selected items as a constraint?<p>I'm still relatively new to python so I'm having trouble figuring ... |
72,233,061 | ASP.NET Core MVC. Implementation of the IDataProtectionKeyContext interface<p>There is a data context:</p>
<pre><code>public class OurDbContext : DbContext, IOurDbContext, IDataProtectionKeyContext
{
public DbSet<Employee> Employees { get; set; }
public DbSet<Role> Roles { get; set; }
... | <p>In short, I tried to change the context from PostgreSQL to MS SQL and Sqlite, and everything works well in them with the configuration that Microsoft recommends in its help.</p> | ASP.NET Core MVC. Implementation of the IDataProtectionKeyContext interface | entity-framework-core|asp.net-core-mvc|mediatr | 0 | 98 | 1 | 72,241,846 | 72,241,846 | 0 | true | 2022-05-13T16:58:12.263Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
ASP.NET Core MVC. Implementation of the IDataProtectionKeyContext interface<p>There is a data context:</p>
<pre><code>public class OurDbContext : DbContext, ... |
72,216,279 | Flutter check if stream is empty before close end<p>I'm using <code>BehaviorSubject</code> as a Stream controller.</p>
<p>In one of my functions, I want to <code>.add</code> more items only in case the Stream is empty of events.</p>
<pre><code> @override
Future<void> fetchNextOverviewPolls() async {
if (aw... | <p><a href="https://pub.dev/documentation/rxdart/latest/rx/BehaviorSubject-class.html" rel="nofollow noreferrer">BehaviorSubject</a> supports <a href="https://pub.dev/documentation/rxdart/latest/rx/BehaviorSubject/hasValue.html" rel="nofollow noreferrer">hasValue</a>.</p>
<p>In the above case, use this line instead:</p... | Flutter check if stream is empty before close end | flutter|stream|rxdart | 0 | 224 | 1 | 72,242,075 | 72,242,075 | 0 | true | 2022-05-12T13:14:53.820Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Flutter check if stream is empty before close end<p>I'm using <code>BehaviorSubject</code> as a Stream controller.</p>
<p>In one of my functions, I want to <... |
72,225,661 | How to filter Microsoft Graph API JSON response using Power Query language?<p>My request is</p>
<pre><code>GET https://graph.microsoft.com/v1.0/applications?$select=appRoles
</code></pre>
<p><a href="https://i.stack.imgur.com/5g8Fm.png" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/5g8Fm.png" alt="enter... | <p><strong>Assuming you have...</strong></p>
<ul>
<li>... a working Custom Connector named <code>myCustConn</code></li>
<li>... with a GET method called <code>GetRoles</code></li>
</ul>
<p><strong>try this:</strong></p>
<p>In the PowerApp, insert a Button control and set its <code>OnSelect</code> property to:</p>
<ul>
... | How to filter Microsoft Graph API JSON response using Power Query language? | microsoft-graph-api|azure-ad-graph-api|powerapps-canvas | 0 | 248 | 1 | 72,242,076 | 72,242,076 | 0 | true | 2022-05-13T07:08:05.907Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to filter Microsoft Graph API JSON response using Power Query language?<p>My request is</p>
<pre><code>GET https://graph.microsoft.com/v1.0/applications?... |
72,234,973 | I need help for a query elasticsearch<p>I need help for a query.</p>
<p>This is my query and my sample :</p>
<pre><code>GET /product/_search
{
"query": {
"bool" : {
"must" : {
"multi_match" : {
"query": "Torsades",
&... | <p>You tried to use <a href="https://www.elastic.co/guide/en/elasticsearch/reference/6.8/search-request-collapse.html#search-request-collapse" rel="nofollow noreferrer">Field Collapsing</a>?</p>
<pre><code>GET test/_search
{
"query": {
"bool": {
"must": {
"multi_ma... | I need help for a query elasticsearch | elasticsearch | 0 | 42 | 1 | 72,242,230 | 72,242,230 | 0 | true | 2022-05-13T20:13:02.160Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
I need help for a query elasticsearch<p>I need help for a query.</p>
<p>This is my query and my sample :</p>
<pre><code>GET /product/_search
{
"query&... |
72,234,716 | Fatal Exception startactivity in Android studio<p>I am totally new at Android / Java. and i have some project school and i have this code</p>
<pre><code>```
package com.example.utsmobileprograming;
import androidx.appcompat.app.AppCompatActivity;
import android.content.Intent;
import android.os.Bundle;
import android.w... | <p>You have to add ActivityHasil to your AndroidManifest.xml file like following</p>
<pre><code><activity android:name="ActivityHasil" android:exported="false"/>
</code></pre> | Fatal Exception startactivity in Android studio | android-studio | 0 | 48 | 1 | 72,242,238 | 72,242,238 | 0 | true | 2022-05-13T19:45:19.380Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Fatal Exception startactivity in Android studio<p>I am totally new at Android / Java. and i have some project school and i have this code</p>
<pre><code>```
... |
72,229,590 | about replace methods in string in js<pre><code>let code = document.querySelector('.Nform').innerHTML;
localStorage.setItem('code',JSON.stringify(code));
let finalCode = code.replace(/ <p class="removeElement" onclick="removeElement()"></p> /g , ` ` );
console.log(finalCode);
document.qu... | <p>In your regex, You have to escape these four special characters <strong>:</strong> <code>"</code>, <code>(</code>, <code>)</code>, <code>/</code></p>
<p>Demo <strong>:</strong></p>
<p><div class="snippet" data-lang="js" data-hide="false" data-console="true" data-babel="false">
<div class="snippet-code">
<pre cl... | about replace methods in string in js | javascript|string|replace | 0 | 42 | 2 | 72,242,290 | 72,242,290 | 0 | true | 2022-05-13T12:26:16.583Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
about replace methods in string in js<pre><code>let code = document.querySelector('.Nform').innerHTML;
localStorage.setItem('code',JSON.stringify(code));
let... |
72,227,895 | Download txt file from text in React Native<p>I'm trying to Download txt file from a text but that function is not working fine.</p>
<p><strong>Txt Function</strong></p>
<pre><code>import RNFS from 'react-native-fs';
const txtDownload = () => {
let path = `${RNFS.DocumentDirectoryPath}/${filename}.txt`;
R... | <p>Log the path and check the location where it's trying to store. For me, it shows the location as below when I try to store in <code>${RNFS.DocumentDirectoryPath}/help.txt</code></p>
<pre><code>/data/user/0/com.sample/files/help.txt
</code></pre>
<p>I suspect you were checking in the Documents folder. I don't know if... | Download txt file from text in React Native | react-native|text-files|react-native-fs | 0 | 182 | 1 | 72,242,401 | 72,242,401 | 0 | true | 2022-05-13T10:12:05.190Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Download txt file from text in React Native<p>I'm trying to Download txt file from a text but that function is not working fine.</p>
<p><strong>Txt Function<... |
72,209,631 | No module named 'django.conf.urls.defaults'<p>I upgraded from django 3.2.5 to django 4.0.4.
I know that this <code>'django.conf.urls.defaults'</code> must be deprecated.
My problem is that I don't get this error in the development environment but when I push to production, it shows the error. Why is this so???
Also I t... | <p>After trying all the possibles at my level , I had to revert to <code>django 3.2.5</code></p> | No module named 'django.conf.urls.defaults' | django | 0 | 141 | 1 | 72,242,613 | 72,242,613 | 0 | true | 2022-05-12T02:55:32.013Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
No module named 'django.conf.urls.defaults'<p>I upgraded from django 3.2.5 to django 4.0.4.
I know that this <code>'django.conf.urls.defaults'</code> must be... |
72,190,610 | Uvicorn behind Nginx<p>I'm starting with starlette and uvicorn. A RHEL8 EC2 server runs Nginx and then uvicorn.
The (minimal) App is (note the two alternatives lines uvicorn.run(...)):</p>
<pre><code>import uvicorn
from starlette.applications import Starlette
from starlette.responses import JSONResponse
from starlette.... | <p>During tests, disabling SElinux solves the problem.</p>
<pre><code>SELINUX=disabled
</code></pre> | Uvicorn behind Nginx | nginx|unix-socket|selinux|uvicorn|rhel8 | 0 | 524 | 1 | 72,242,802 | 72,242,802 | 0 | true | 2022-05-10T17:21:26.317Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Uvicorn behind Nginx<p>I'm starting with starlette and uvicorn. A RHEL8 EC2 server runs Nginx and then uvicorn.
The (minimal) App is (note the two alternativ... |
72,220,948 | Find place that causes segmentation fault without IDE<p>I'm studying one project in C++. It's quite big, build is created with cmake. After installing all dependencies and libs it's the build is done fine. But when I run it, I get <code>Segmentation fault</code>.</p>
<p>Here is the thing: There is no IDE, running this ... | <p>I've found a solution for my case and here's what I've done:</p>
<ol>
<li>Installed these VS Code Extensions - CodeLLDB</li>
<li>Added Configuration File: Run/'Add Configuration...'</li>
<li>The config file was at <root_dit>/.vscode/launch.json and looked like this:</li>
</ol>
<pre><code>{
"version"... | Find place that causes segmentation fault without IDE | c++|debugging|visual-studio-code|segmentation-fault|gdb | 0 | 85 | 1 | 72,243,167 | 72,243,167 | 0 | true | 2022-05-12T19:09:39.653Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Find place that causes segmentation fault without IDE<p>I'm studying one project in C++. It's quite big, build is created with cmake. After installing all de... |
72,236,398 | Find nth week recurrence on week days with moment js<p>I have just started moment js, I'm trying to generate recurrence for every nth week for defined week days</p>
<p>I have tried this code so far but not getting True for defined week days</p>
<pre><code>// Create a date to start from
let date = moment(new Date("... | <p><strong>This will work perfectly</strong></p>
<p><code>moment('05-14-2022', 'MM-DD-YYYY').recur().every(2).day().every([5]).daysOfWeek();</code></p>
<p>Now it is recurring for every <strong>2 weeks</strong> on <strong>Saturday</strong> from the start date.</p> | Find nth week recurrence on week days with moment js | javascript|date|time|calendar|momentjs | 0 | 114 | 1 | 72,244,050 | 72,244,050 | 0 | true | 2022-05-14T00:04:27.960Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Find nth week recurrence on week days with moment js<p>I have just started moment js, I'm trying to generate recurrence for every nth week for defined week d... |
72,179,925 | Eclipse 4.23.0 Connection refused to host: localhost; nested exception is: java.net.ConnectException: Connection refused: connect<p>I'm working through the proxy pattern section in Head First Design Patterns 2nd edition, by Freeman and Robson. I'm running Windows 10 and I've determined that localhost is functioning pro... | <p>I solved the problem. I needed to re-do the project as a fresh java project to clear up what were probably some dependency conflicts. It also served as a good learning lesson rmi and xampp local server configuration as well.</p> | Eclipse 4.23.0 Connection refused to host: localhost; nested exception is: java.net.ConnectException: Connection refused: connect | java|rmi | 0 | 131 | 1 | 72,244,092 | 72,244,092 | 0 | true | 2022-05-10T01:56:09.540Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Eclipse 4.23.0 Connection refused to host: localhost; nested exception is: java.net.ConnectException: Connection refused: connect<p>I'm working through the p... |
72,237,359 | CodeIgniter call_hook('post_controller_constructor') exits<p>I have inherited a webapp using CodeIgniter
I am trying to get it to run locally on my mac</p>
<p>when I try to go to http://localhost ,i can see via the debug logs i connect ok to the db
but when i get to this line in the file CodeIgniter.php it just stops. ... | <p>Maybe an error in your hooks that stop the execution?</p>
<p>Did you check those in the application/hooks folder?</p> | CodeIgniter call_hook('post_controller_constructor') exits | php|codeigniter | 0 | 29 | 1 | 72,244,689 | 72,244,689 | 0 | true | 2022-05-14T04:29:17.247Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
CodeIgniter call_hook('post_controller_constructor') exits<p>I have inherited a webapp using CodeIgniter
I am trying to get it to run locally on my mac</p>
<... |
72,208,983 | How to create a JSON body with PowerShell which is Deserializable by .NET6 when using az rest to call a .NET6 Azure Function<p>We are using AzureCLI to be able to call an Azure Function endpoint upon a successful deployment. The call to get token works and the call to our azure function makes it into MyFunction.</p>
<... | <p>Az rest is very sensitive about the format of JSON input. For example, it requires double quotes to be escaped, even on Windows. It also doesn't like newlines, as you already noticed.</p>
<p>Try this way:</p>
<pre><code>$body = (@{
ResourceId="$(Environment.ResourceId)";
ResourceName="$(Environmen... | How to create a JSON body with PowerShell which is Deserializable by .NET6 when using az rest to call a .NET6 Azure Function | powershell|azure-pipelines|.net-6.0|azure-cli|system.text.json | 0 | 232 | 1 | 72,245,554 | 72,245,554 | 0 | true | 2022-05-12T00:50:50.003Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to create a JSON body with PowerShell which is Deserializable by .NET6 when using az rest to call a .NET6 Azure Function<p>We are using AzureCLI to be ab... |
72,176,800 | Displaying child records based on parent id from URL<p>I have one model <code>Dataset</code> and another one called <code>DatasetReview</code>, where <code>DatasetReview</code> has a foreign key connection to <code>Dataset</code>. I would like to display all of the <code>DatasetReview</code> models that are tied to a s... | <p>Figured this out.</p>
<p>The key is within <code>class DatasetReviewsView(DetailView)</code> in <code>views.py</code>. I first needed to change this inheritance to a <code>ListView</code> to enable what I was looking for.</p>
<p>Next, I just needed to provide context for what I wanted to show in my html page. This i... | Displaying child records based on parent id from URL | python|django|django-views|django-urls | 0 | 51 | 1 | 72,245,602 | 72,245,602 | 0 | true | 2022-05-09T18:40:55.363Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Displaying child records based on parent id from URL<p>I have one model <code>Dataset</code> and another one called <code>DatasetReview</code>, where <code>D... |
72,233,229 | How to edit appsettings in Azure pipeline?<p>I'm trying to edit appsettings (.net) in azure pipelines, it's for differents environments(production, development, etc..)
For example I want to change this value in appsettings:</p>
<pre><code>"NodeServiceSettings":{
"Api": "http://localhost:4500/&q... | <p>There is a section in release pipelines to do exactly this, the section can be found here, but it is strongly recommended to use central Azure App Configuration and not local app settings so you can re use setitngs across applications.</p>
<p><a href="https://i.stack.imgur.com/P0dIF.png" rel="nofollow noreferrer"><i... | How to edit appsettings in Azure pipeline? | .net|azure|azure-devops | 0 | 167 | 1 | 72,245,765 | 72,245,765 | 0 | true | 2022-05-13T17:12:31.020Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to edit appsettings in Azure pipeline?<p>I'm trying to edit appsettings (.net) in azure pipelines, it's for differents environments(production, developme... |
72,196,269 | Different servers receive 200 and 410 status codes for the same URL<p>I am trying to access a website's API by Python's request library.</p>
<p>This is done from different servers (hosted by Hetzner). For some reason, one of the servers is getting 410 response status code, while the others work just fine (status code 2... | <p>Turns out that this website's API blocked this specific IP, and responded 410 on purpose.</p>
<p>It is some kind of mechanism that websites use to handle bots: they respond 410 to make them think this endpoint doesn't exist.</p> | Different servers receive 200 and 410 status codes for the same URL | http-status-code-410 | 0 | 16 | 1 | 72,245,883 | 72,245,883 | 0 | true | 2022-05-11T06:22:00.283Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Different servers receive 200 and 410 status codes for the same URL<p>I am trying to access a website's API by Python's request library.</p>
<p>This is done ... |
72,225,889 | I have a problem entering data into an object using FOR<p>I have an object I want to go through using the FOR loop
Because I want to change the object according to my needs</p>
<p>Here is my original object</p>
<p>I copied it from console.log()</p>
<p>(7) [{…}, {…}, {…}, {…}, {…}, {…}, {…}]</p>
<pre><code>[
{Order: 14... | <p><div class="snippet" data-lang="js" data-hide="false" data-console="true" data-babel="false">
<div class="snippet-code">
<pre class="snippet-code-js lang-js prettyprint-override"><code>let items = [{
Order: 14,
Address: 100101,
SKU: 'CJNSXZHL',
'CJ Quantity': '1',
Store: 'go',
},
{
SKU: '... | I have a problem entering data into an object using FOR | javascript|node.js|reactjs | 0 | 55 | 3 | 72,245,994 | 72,245,994 | 0 | true | 2022-05-13T07:30:02.080Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
I have a problem entering data into an object using FOR<p>I have an object I want to go through using the FOR loop
Because I want to change the object accord... |
72,231,890 | Redux -Having a 404 errror and state.category.push(action.payload) not a function error<p>I'm getting a 400 client error and saying state.category.push is not a function and the current state is pending. I will be happy if someone helps me out on this. The category array is not accepting the data coming into it. I have... | <p>It means that your state.category is not an array. At</p>
<pre><code>state.category.push(action.payload)
</code></pre>
<p>I assigned a value to the state.category which is not yet an array. By first creating an array and then putting that element into it.</p>
<pre><code>state.category= [action.payload]
</code></pre>... | Redux -Having a 404 errror and state.category.push(action.payload) not a function error | javascript|forms|api|redux|redux-toolkit | 0 | 68 | 1 | 72,246,357 | 72,246,357 | 0 | true | 2022-05-13T15:17:46.497Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Redux -Having a 404 errror and state.category.push(action.payload) not a function error<p>I'm getting a 400 client error and saying state.category.push is no... |
72,228,679 | how can i filter data between two time i am using date time field for it in django rest framework<p>I am trying to filter my data with a date-time field, but in my case its not working. So please someone suggest to me how can I filter my date with time</p>
<pre><code>start_time = 2022-05-13 02:19:19.146009
end_time = ... | <p>First, you need make sure which timezone your Django project is using.
You can check this from <code>TIME_ZONE</code> variable in settings.py file.
Let's say the timezone is <code>UTC</code>.</p>
<pre><code>from datetime import datetime
import pytz
# assume that start_time and end_time is at your local timezone
inf... | how can i filter data between two time i am using date time field for it in django rest framework | django|datetime|time|django-rest-framework | 0 | 113 | 2 | 72,246,545 | 72,246,545 | 0 | true | 2022-05-13T11:15:44.247Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
how can i filter data between two time i am using date time field for it in django rest framework<p>I am trying to filter my data with a date-time field, but... |
72,230,836 | How to get an object of current user in Spring Boot+JPA<p>I need to create shopping cart. I have a model CartItem:</p>
<pre><code>@Entity
@Table(name = "cart_items")
public class CartItem {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private int id;
@ManyToOne
@JoinColumn(name = "tour_i... | <p>I saw how I made controller User(method home()) and remade for a method showCart() in ShoppingCartController</p>
<pre><code>@GetMapping("/cart")
public String showCart(Model model){
Authentication auth = SecurityContextHolder.getContext().getAuthentication();
User user = userService.findUserByEmail... | How to get an object of current user in Spring Boot+JPA | java|spring-boot|spring-security|spring-data-jpa | 0 | 285 | 1 | 72,246,764 | 72,246,764 | 0 | true | 2022-05-13T14:01:38.397Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to get an object of current user in Spring Boot+JPA<p>I need to create shopping cart. I have a model CartItem:</p>
<pre><code>@Entity
@Table(name = "... |
72,225,719 | SetVirtualHostName within WebMessageReceived event handler doesn't work<p>I'm trying to dynamically create an image within a WebView2, using a source passed in from the WebView2's containing application.</p>
<p>The source image exists on an arbitrary location on the filesystem. To allow the WebView2 to access the image... | <p>I filed an <a href="https://github.com/MicrosoftEdge/WebView2Feedback/issues/2456" rel="nofollow noreferrer">issue</a> for this. Per the response, this behavior is documented:</p>
<blockquote>
<p>As the resource loaders for the current page might have already been created and running, changes to the mapping might no... | SetVirtualHostName within WebMessageReceived event handler doesn't work | c#|wpf|webview2 | 0 | 122 | 1 | 72,246,994 | 72,246,994 | 0 | true | 2022-05-13T07:15:05.603Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
SetVirtualHostName within WebMessageReceived event handler doesn't work<p>I'm trying to dynamically create an image within a WebView2, using a source passed ... |
72,236,145 | Android Studio Kotlin app "keeps stopping" when I run it<p>I am just trying to set up a spinner configured as a dropdown menu, but I can't even test my app to see if it works because every time I run it, it immediately crashes. I know that my issue is related to a null object reference at line 21 in my MainActivity.kt ... | <p>Declare spinner global for MainActivity:</p>
<pre><code>private lateinit var spinner: Spinner
</code></pre>
<p>On the method onCreate initialise the spinner and set its adapter, I would recommend you to set the array adapter as follows:</p>
<pre><code>spinner = findViewById<Spinner>(R.id.locations)
spinner.ad... | Android Studio Kotlin app "keeps stopping" when I run it | android-studio|kotlin|null | 0 | 39 | 1 | 72,247,039 | 72,247,039 | 0 | true | 2022-05-13T23:06:21.377Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Android Studio Kotlin app "keeps stopping" when I run it<p>I am just trying to set up a spinner configured as a dropdown menu, but I can't even test my app t... |
72,207,731 | python raspberry camera settings for night<p>I have here my perfect setup for my raspberry video.</p>
<p><code>raspivid -fps 25 -sh 0 -co 50 -br 50 -sa 0 -ISO 800 -ev +2 -ex auto -awb auto -mm average -n -b 2000000 -w 1920 -h 1080 -o /home/pi/cam/nachtvideo.h264 -t 0</code></p>
<p>Now I have but this fancy python scrip... | <p>The values, which the python script passes to the camera are sometimes a little bit different from the ones of the raspivid command. Raising the ISO, the brightness, the saturation and hardcoding a high exposure is sometimes necessary here. When I made a timelapse of my street at night, I had to use the 'verylong' e... | python raspberry camera settings for night | python|raspberry-pi|picamera | 0 | 72 | 1 | 72,247,388 | 72,247,388 | 0 | true | 2022-05-11T21:23:42.577Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
python raspberry camera settings for night<p>I have here my perfect setup for my raspberry video.</p>
<p><code>raspivid -fps 25 -sh 0 -co 50 -br 50 -sa 0 -IS... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.