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,918,570 | How to disable Learning phase in Tensorflow Java/scala as we do in python tf.keras.backend.learning_phase(0)<p>I am using lstm model and loading the saved model as below</p>
<pre><code>val modelFiles: List[String] = List(
"saved_model.pb",
"keras_metadata.pb",
"variables/varia... | <p>As per this conversation this is something controlled by the model. <a href="https://github.com/tensorflow/java/issues/465" rel="nofollow noreferrer">https://github.com/tensorflow/java/issues/465</a></p> | How to disable Learning phase in Tensorflow Java/scala as we do in python tf.keras.backend.learning_phase(0) | java|scala|tensorflow|keras|lstm | 0 | 47 | 1 | 72,929,145 | 72,929,145 | 0 | true | 2022-07-09T02:44:59.930Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to disable Learning phase in Tensorflow Java/scala as we do in python tf.keras.backend.learning_phase(0)<p>I am using lstm model and loading the saved mo... |
72,887,925 | DateTime.Date conversion in EF Core Generated Query<p>We have a project we are working on and we need to query the database for some data for a particular date.</p>
<p>We configured our DB to read and write date as UTC.</p>
<p>When writing the query to get the data, I noticed that the data for a date was not being pull... | <p>For anyone facing the same issue, here is a link to the resolution on EF core repo on github:</p>
<p><a href="https://github.com/dotnet/efcore/issues/28380" rel="nofollow noreferrer">https://github.com/dotnet/efcore/issues/28380</a></p>
<p>The issue was caused by a custom value converter that saves and reads all dat... | DateTime.Date conversion in EF Core Generated Query | c#|sql|asp.net-core|entity-framework-core | 0 | 47 | 1 | 72,929,620 | 72,929,620 | 0 | true | 2022-07-06T17:50:47.157Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
DateTime.Date conversion in EF Core Generated Query<p>We have a project we are working on and we need to query the database for some data for a particular da... |
72,929,373 | How to publish [my own] npm package that can be invoked globally<p>I've published a new public node app via npm. (Note: This is clearly an alpha. Don't expect very good, much less perfection.) I'm unable to get it work as a global install.</p>
<p><a href="https://www.npmjs.com/package/khutzpa" rel="nofollow noreferrer"... | <p>Looks like there may have been two issues:</p>
<p>I needed a "<a href="https://stackoverflow.com/a/33510581/1028230">sharp-exclamation</a>" in my <code>index.js</code> file to let npm know where node is (?).</p>
<p>I needed <a href="https://stackoverflow.com/a/54011384/1028230">a <code>"bin"</cod... | How to publish [my own] npm package that can be invoked globally | node.js|npm|npx | 0 | 47 | 1 | 72,929,911 | 72,929,911 | 0 | true | 2022-07-10T14:48:14.800Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to publish [my own] npm package that can be invoked globally<p>I've published a new public node app via npm. (Note: This is clearly an alpha. Don't expec... |
72,916,664 | Is it possible to send a DocuSign template via sms delivery?<p>As the title suggests, I'm wondering how I can send a template defined within Docusign via SMS delivery. However, I'm only seeing documentation on how to send a document from storage outside of docusign. Am I missing something?</p> | <p>Yes, for the recipients specified in a template, your API program can choose for them to be notified by SMS only, SMS and email, or email only.</p>
<ul>
<li>This <a href="https://apirequestbuilder.docusign.com/?eg=Template%20with%20SMS-only%20delivery" rel="nofollow noreferrer">live example via the API Request Build... | Is it possible to send a DocuSign template via sms delivery? | docusignapi | 0 | 47 | 1 | 72,931,751 | 72,931,751 | 0 | true | 2022-07-08T20:26:37.053Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Is it possible to send a DocuSign template via sms delivery?<p>As the title suggests, I'm wondering how I can send a template defined within Docusign via SMS... |
72,928,662 | Flutter json api problem, some of data not listening<p>Hello guys i have a small project with flutter. Try to list meals from <a href="https://www.themealdb.com/" rel="nofollow noreferrer">https://www.themealdb.com/</a>. I wish to list the meals in api. So far so good but the main problem some of the food listed some o... | <p>You have to add null check for each keys : for <code>Category</code> class</p>
<pre><code>factory Category.fromJson(Map<String, dynamic> json) => Category(
idCategory: json["idCategory"] ?? "",
strCategory: json["strCategory"] ?? "",
strCategoryThumb: json... | Flutter json api problem, some of data not listening | json|flutter|dart | 0 | 47 | 1 | 72,933,771 | 72,933,771 | 0 | true | 2022-07-10T13:01:15.197Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Flutter json api problem, some of data not listening<p>Hello guys i have a small project with flutter. Try to list meals from <a href="https://www.themealdb.... |
72,932,096 | CSVHelper remove space and dashes from headers<p>I have a project where the CSV file header has both spaces and dashes in the column header names.</p>
<p>The headers look like this:</p>
<pre><code>First Name, Last Name, E-mail Address, Phone
</code></pre>
<p>I am successful in removing the spaces using the following co... | <p>Thanks!</p>
<p>I was able to resolve the issue with the following regex:</p>
<pre><code>PrepareHeaderForMatch = header => Regex.Replace(header.Header, @"[\s-]+", string.Empty).ToLower()
</code></pre>
<p>I had tried variations of "[\s-]+" and kept running into issues. This variation provided th... | CSVHelper remove space and dashes from headers | csvhelper | 0 | 47 | 2 | 72,938,431 | 72,938,431 | 0 | true | 2022-07-10T21:44:08.077Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
CSVHelper remove space and dashes from headers<p>I have a project where the CSV file header has both spaces and dashes in the column header names.</p>
<p>The... |
72,918,116 | Convert SDO_ORDINATE_ARRAY to string using a function (for a function-based index)<p><em>Oracle 18c:</em></p>
<p>I have <code>SDO_GEOMETRY</code> objects:</p>
<pre><code>create table test_table (shape sdo_geometry);
insert into test_table (shape) values (sdo_geometry('linestring(10 20, 30 40, 50 60)'));
insert into te... | <p>Converting to JSON also seems to work:</p>
<pre><code>select json_array(t.x.sdo_ordinates returning clob) str
from (select sdo_geometry('linestring(10 20, 30 40, 50 60)') x from dual) t;
STR
-------------------
[10,20,30,40,50,60]
</code></pre>
<p>Source: <a href="https://community.oracle.com/tech/d... | Convert SDO_ORDINATE_ARRAY to string using a function (for a function-based index) | sql|oracle|function|oracle18c|varray | -1 | 47 | 2 | 72,938,767 | 72,938,767 | 0 | true | 2022-07-09T00:28:15.687Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Convert SDO_ORDINATE_ARRAY to string using a function (for a function-based index)<p><em>Oracle 18c:</em></p>
<p>I have <code>SDO_GEOMETRY</code> objects:</p... |
72,944,011 | Kotlin/AndroidStudio - problem with connect listView with RecyclerView<p>I’m still learning and I see that there’s a long way ahead of me. However I got stuck with my app and I can’t find any clues online so I need your help.</p>
<p>I have a problem with connect listView with RecyclerView: in the first ACTIVITY I have ... | <p>Then do this in your activity to add fragment:</p>
<pre><code> val itemClickListener =
OnItemClickListener { listView, v, position, id ->
if (position == 0) {
FragmentManager manager = getFragmentManager();
FragmentTransaction transaction = manager.beginTransact... | Kotlin/AndroidStudio - problem with connect listView with RecyclerView | android|android-studio|kotlin|android-recyclerview|android-listview | 0 | 47 | 1 | 72,947,156 | 72,947,156 | 0 | true | 2022-07-11T19:58:33.640Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Kotlin/AndroidStudio - problem with connect listView with RecyclerView<p>I’m still learning and I see that there’s a long way ahead of me. However I got stuc... |
72,947,143 | How to call a method in xaml.cs file from BaseViewModel xamarin<p>I have a requirement of opening <code>alert dialog</code> when a event is firing in <code>Baseviewmodel</code>. <code>alert dialog</code> opening logic is written in <code>xaml.cs</code> file's <code>button</code> click handler.</p>
<pre><code>//BaseView... | <p>Solved this using <code>MessegingCenter</code>.</p>
<p>In <code>BaseViewModel</code></p>
<pre><code>//BaseViewModel event
void CloseDialog()
{
//Call xaml.cs file `OpenDiaglog` event here
MessagingCenter.Send(Xamarin.Forms.Application.Current, "Hi");
}
</code></pre>
<p>In <code>xaml.cs</c... | How to call a method in xaml.cs file from BaseViewModel xamarin | c#|xamarin|xamarin.forms | 0 | 47 | 1 | 72,947,592 | 72,947,592 | 0 | true | 2022-07-12T04:45:04.950Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to call a method in xaml.cs file from BaseViewModel xamarin<p>I have a requirement of opening <code>alert dialog</code> when a event is firing in <code>B... |
72,947,245 | Scrapy spider middleware<p>I have a function (<strong>check_duplicates()</strong>) in the spider that checks for the presence of a <strong>url</strong> in my database, and in case of absence passes the url on to the <strong>parse_product</strong> method:</p>
<pre><code>def check_duplicates(url):
connection = mysql.... | <p>You can use a custom DownloadMiddleware that anlyzes the requests as they come in and check the request's url.</p>
<p>In your middlewares.py file:</p>
<pre class="lang-py prettyprint-override"><code>from scrapy.exceptions import IgnoreRequest
import mysql
class YourProjectNameDownloaderMiddleware:
def process... | Scrapy spider middleware | scrapy|scrapy-middleware | 2 | 47 | 1 | 72,947,728 | 72,947,728 | 0 | true | 2022-07-12T05:02:59.137Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Scrapy spider middleware<p>I have a function (<strong>check_duplicates()</strong>) in the spider that checks for the presence of a <strong>url</strong> in my... |
72,948,268 | Uncaught TypeError: Cannot convert "undefined" to int in Opencv.js<p>I am trying to detect document from an image locally by uploading from input file. To detect those followed steps available online by adding grayscale and blur to image and canny edge now when trying to find contours it's giving error.</p>
<p><a href=... | <p>As suggested by @Shrimp I wrote <code>cv.CHAIN_APPROX_SIMPLE</code> with <code>cv.CHAIN_APPPROX_SIMPLE</code> so that's why error is for argument having undefined.</p> | Uncaught TypeError: Cannot convert "undefined" to int in Opencv.js | javascript|html|opencv | 0 | 47 | 1 | 72,948,530 | 72,948,530 | 0 | true | 2022-07-12T07:04:18.437Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Uncaught TypeError: Cannot convert "undefined" to int in Opencv.js<p>I am trying to detect document from an image locally by uploading from input file. To de... |
72,949,785 | Maven To Gradle - Conversion<p>I am trying to convert an old <code>maven</code> to <code>gradle</code>. Below is the maven block I am trying to convert to <code>gradle</code> equivalent.</p>
<pre><code> <plugins>
<plugin>
<groupId>org.jvnet.jaxb2.maven2</groupId&g... | <p>There was no issue with the script, but in Gradle, the dependency i used was wrong.</p>
<p>it should be like</p>
<pre><code>configurations {
jaxb
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web:2.7.1'
jaxb(
'com.sun.xml.bind:jaxb-core:3.0.2',
'co... | Maven To Gradle - Conversion | maven|gradle|build.gradle | 0 | 47 | 1 | 72,951,057 | 72,951,057 | 0 | true | 2022-07-12T09:11:39.137Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Maven To Gradle - Conversion<p>I am trying to convert an old <code>maven</code> to <code>gradle</code>. Below is the maven block I am trying to convert to <c... |
72,951,209 | Single item of list as a multiline string<p>I am working with Python. I want to convert a single item list to a multiline string.</p>
<p>I fetched the email string from a database. All emails are stored as a list item (between ' ').</p>
<p>emails strings are have special-characters and also symbols like[ ' " , @ ... | <p>In python, the <code>print</code> command prints the string (or <code>str(obj)</code>) without the <code>'</code>s.</p>
<p>However, you can print them yourself:</p>
<pre><code>for massage in string:
print(f"'''{massage}'''")
</code></pre> | Single item of list as a multiline string | python|list|multilinestring | 0 | 47 | 1 | 72,951,265 | 72,951,265 | 0 | true | 2022-07-12T10:58:51.950Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Single item of list as a multiline string<p>I am working with Python. I want to convert a single item list to a multiline string.</p>
<p>I fetched the email ... |
72,940,233 | Intel's DftiComputeForward() not working correctly<p>I am facing an issue with DftiComputeForward(); The issue is when I am using the DftiComputeForward in the below format: status = DftiComputeForward(*dftiH, x, y); Instead of adding the computed value to "y", it is adding it in "x", and keeping th... | <p>I did find the issue with this one. It was in the creation of the descriptor handle dftiH. after creating the descriptor the code was setting value DFTI_INPLACE. This meant that the second parameter of "ComputeForward" will be treated as a variable that contains both in and out values. I have now set the v... | Intel's DftiComputeForward() not working correctly | c|fft|intel-mkl | 0 | 47 | 1 | 72,951,648 | 72,951,648 | 0 | true | 2022-07-11T14:32:59.230Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Intel's DftiComputeForward() not working correctly<p>I am facing an issue with DftiComputeForward(); The issue is when I am using the DftiComputeForward in t... |
72,956,278 | Priority Queue Comparator 2d Array descending order<p>I am creating a priority queue and using comparator to make sure things are storing in descending order, but end of the day it does not store the values in descending order.</p>
<pre><code> int[][] a = {{1,2},{6,5},{3,4}};
PriorityQueue<int[]> pq = new ... | <p>Try to traverse queue:</p>
<pre><code>while (!pq.isEmpty()) {
System.out.println(Arrays.toString(pq.poll()));
}
</code></pre>
<pre><code>[6, 5]
[3, 4]
[1, 2]
</code></pre> | Priority Queue Comparator 2d Array descending order | java|comparator|priority-queue | -1 | 47 | 1 | 72,956,474 | 72,956,474 | 0 | true | 2022-07-12T17:33:15.677Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Priority Queue Comparator 2d Array descending order<p>I am creating a priority queue and using comparator to make sure things are storing in descending order... |
72,904,435 | Rails - how to show :Confirm Modal with redirect_to<p>Rails, using ActiveAdmin, trying to warn users that some data might be missing.</p>
<p>--Not by using model validations--</p>
<p>I just need a modal that makes user acknowledge (by clicking 'OK' or 'Cancel') that some fields are missing, but can still submit the for... | <p>Could try something like:</p>
<pre><code>def create
create! do |format|
if resource.errors.present?
return render :edit
else
if !resource.GL_Permit.present?
format.html { redirect_to admin_gath_lines_path(), alert: "ALERT, WARNING"}
else
resource.reload
format.html { redirect_to admin_gat... | Rails - how to show :Confirm Modal with redirect_to | javascript|ruby-on-rails|activeadmin | 0 | 47 | 1 | 72,957,816 | 72,957,816 | 0 | true | 2022-07-07T21:29:08.227Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Rails - how to show :Confirm Modal with redirect_to<p>Rails, using ActiveAdmin, trying to warn users that some data might be missing.</p>
<p>--Not by using m... |
72,956,951 | Efficiently Scrape Website Looping Through URLs<p>I am trying to scrape population data for each US state for a range of years. Here is my code so far:</p>
<pre><code>#Import libraries
import numpy as np
import requests
from bs4 import BeautifulSoup
import pandas as pd
#Range of years
years = np.arange(1991,2019).tol... | <p>I figured it out - mostly needed to differentiate the subscripts</p>
<pre><code>#Set up dataframe
df = pd.DataFrame(
{
'State':[''],
'Year':[''],
'Population':['']
}
)
list_of_dfs=[]
#For each year - run through this process
for i in years:
full_link = url+'&od='+str(i)+'-0... | Efficiently Scrape Website Looping Through URLs | python|pandas|web-scraping|beautifulsoup|population | 0 | 47 | 2 | 72,958,076 | 72,958,076 | 0 | true | 2022-07-12T18:37:02.043Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Efficiently Scrape Website Looping Through URLs<p>I am trying to scrape population data for each US state for a range of years. Here is my code so far:</p>
... |
72,958,935 | how to check if a date is expired or not django?<p>I have a model that contains informations about trips and one field is a DateTimeField() like this:</p>
<pre><code>class Voyage(models.Model):
voyid = models.CharField(max_length=20, primary_key= True)
depart = models.CharField(max_length=30)
destination = ... | <p>You can <a href="https://docs.djangoproject.com/en/dev/ref/models/querysets/#filter" rel="nofollow noreferrer"><strong><code>.filter(…)</code></strong> <sup>[Django-doc]</sup></a> with <a href="https://docs.djangoproject.com/en/dev/ref/models/database-functions/#now" rel="nofollow noreferrer"><strong><code>Now</code... | how to check if a date is expired or not django? | python|django|django-models | 1 | 47 | 1 | 72,958,954 | 72,958,954 | 0 | true | 2022-07-12T22:16:36.950Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
how to check if a date is expired or not django?<p>I have a model that contains informations about trips and one field is a DateTimeField() like this:</p>
<p... |
72,799,192 | ksqlDB for finding average last hour, and store results back to a kafka topic?<p>We have a readpanda (kafka compatible) source, with sensor data. Can we do the following:</p>
<ol>
<li>Every hour, find the average sensor data last hour for each sensor</li>
<li>Store them back to a topic</li>
</ol> | <p>You want to create a materialized view over the stream of events that can be queried by other applications. Your source publishes the individual events to Kafka/Redpanda, another process observers the events and makes them available as queryable "tables" for other applications. Elaborating a few options:</... | ksqlDB for finding average last hour, and store results back to a kafka topic? | apache-kafka|ksqldb|redpanda | 0 | 47 | 1 | 72,963,149 | 72,963,149 | 0 | true | 2022-06-29T09:42:31.550Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
ksqlDB for finding average last hour, and store results back to a kafka topic?<p>We have a readpanda (kafka compatible) source, with sensor data. Can we do t... |
72,967,344 | implement forms in c++ sfml<h1>how should I implement forms and switch between them in SFML?</h1>
<p>I have a custom abstract Form class for displaying window and other stuff</p>
<pre><code>class Form {
public:
Form();
~Form();
void display();
protected:
sf::RenderWindow *window;
sf::Event event;... | <p>You need to share the window between all forms and close it ONLY when you want to exit the application.</p>
<p>In your example you're closing the window before displaying anything. If you close the window there's nothing to display to.</p>
<p>Look at the official documentation and note the flow of the example applic... | implement forms in c++ sfml | c++11|sfml | 0 | 47 | 1 | 72,968,451 | 72,968,451 | 0 | true | 2022-07-13T13:41:45.067Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
implement forms in c++ sfml<h1>how should I implement forms and switch between them in SFML?</h1>
<p>I have a custom abstract Form class for displaying windo... |
72,960,233 | How to encode arguments in AssemblyScript when calling Aurora contract from Near blockchain?<p>I'm trying to call a contract located in Aurora from a contract located in Near. I'm using AssemblyScript and I'm struggling with passing arguments to the Aurora contract itself. I receive <code>ERR_BORSH_DESERIALIZE</code> p... | <p>I managed to find a solution. The flow of calling the contract was right, however I had two errors in implementation.</p>
<ol>
<li>Wrong conversion of the contract address to 20 byte array. My custom implementation of the function a bit verbose, so here is a single line JS script that does the same:</li>
</ol>
<pre>... | How to encode arguments in AssemblyScript when calling Aurora contract from Near blockchain? | nearprotocol|assemblyscript|aurora-near | 0 | 47 | 1 | 72,969,836 | 72,969,836 | 0 | true | 2022-07-13T02:24:57.477Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to encode arguments in AssemblyScript when calling Aurora contract from Near blockchain?<p>I'm trying to call a contract located in Aurora from a contrac... |
72,972,226 | SwiftUI getting rid of quotes in a string variable<p>I have a string variable that gets populated from a text field. I want to remove any quotes a user might enter.</p>
<p>I've tried using replacingOccurrences in these examples.</p>
<pre><code>print("Test A --------------------")
var testA = "\"Hell... | <p>Since the double quotes offered by Xcode and Device Keyboard are different, you can try this way to ensure that different types of double quotes from these different devices will be removed effectively.</p>
<pre><code>import SwiftUI
struct Practice: View {
@State private var test = ""
@State private var t... | SwiftUI getting rid of quotes in a string variable | swift|string|swiftui | 1 | 47 | 1 | 72,973,118 | 72,973,118 | 0 | true | 2022-07-13T20:24:32.673Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
SwiftUI getting rid of quotes in a string variable<p>I have a string variable that gets populated from a text field. I want to remove any quotes a user might... |
72,880,063 | RecursiveAction cannot be resolved to a type<p>When I add jdk17.0.2 to my build path, in STS(eclipse), replacing 15, RecursiveAction cannot be resolved to a type. What gives? I know java.util.concurrent.RecursiveAction was not removed from the jdk. Reverting back to 15 solves it.</p> | <p>This ceased to be a problem, which suggests problems with the IDE(STS).</p> | RecursiveAction cannot be resolved to a type | java|java.util.concurrent|openjdk-17 | 0 | 47 | 1 | 72,976,962 | 72,976,962 | 0 | true | 2022-07-06T08:18:28.250Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
RecursiveAction cannot be resolved to a type<p>When I add jdk17.0.2 to my build path, in STS(eclipse), replacing 15, RecursiveAction cannot be resolved to a ... |
72,977,725 | Bold and/or Italic text within 'cell()' or 'multi_cell()'?<p>How can i use different fonts in the same cell !</p>
<p>Example :
In this scenario you will see a driving route</p>
<p>what i want :</p>
<p>In this scenario you will see a <strong>driving</strong> route</p> | <p>I found this <a href="https://github.com/PyFPDF/fpdf2/issues/108" rel="nofollow noreferrer">GIT issue</a> with the same question.</p>
<p>there is a work around to do that:</p>
<pre><code>from fpdf import FPDF
DATA = (
("First name", "Last name", "Age", "City"),
("... | Bold and/or Italic text within 'cell()' or 'multi_cell()'? | python|cell|fpdf | 0 | 47 | 1 | 72,977,750 | 72,977,750 | 0 | true | 2022-07-14T08:45:18.667Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Bold and/or Italic text within 'cell()' or 'multi_cell()'?<p>How can i use different fonts in the same cell !</p>
<p>Example :
In this scenario you will see ... |
72,978,255 | TypeError: unsupported operand type(s) for -: 'list' and 'list' when using quiver matplotlib<p>I was running the code below and the following error message came up.</p>
<p>I saw this post which might be potentially a fix to the issue, but I wasn't understanding how this can be applied to solve my issue. Any suggestion ... | <p>Using <code>numpy.diff(list)</code> should address the disered output, like this:</p>
<pre><code>import numpy
import matplotlib.pyplot as plt
x1 = [ 0.5, 0.6, 0.3, 0.2 ]
x2 = [ 0.5, 0.6, 0.3, 0.2 ]
x3 = [ 0.2, 0.3, 0.5, 0.6 ]
x4 = [ 0.4, 0.3, 0.2, 0.1 ]
y1 = [ 0.7, 0.9, 0.1, 0.2 ]
y2 = [ 0.8, 0.5, 0.9, 0.2 ]
y3 = ... | TypeError: unsupported operand type(s) for -: 'list' and 'list' when using quiver matplotlib | python|python-3.x|matplotlib | 0 | 47 | 1 | 72,978,360 | 72,978,360 | 0 | true | 2022-07-14T09:28:37.290Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
TypeError: unsupported operand type(s) for -: 'list' and 'list' when using quiver matplotlib<p>I was running the code below and the following error message c... |
72,983,994 | Create New row data based column value SQL<p>I am trying to create a new of data with the existing data but using a separated value in the column. i am running this on sql server 2014 vesrion.
Here is my table</p>
<pre><code>create table #test ( ID INT ,
CODE VARCHAR(10) ,M_U VARCHAR(5) , M_C VARCHAR(5) ,SEPERATOR_A... | <p>You don't need to scan the table three times, as @nbk suggested.</p>
<p>Instead, you can <code>CROSS APPLY</code> a union of the various columns while referring to the outer reference of the table.</p>
<pre class="lang-sql prettyprint-override"><code>SELECT
t.ID,
v.*
FROM #test t
CROSS APPLY (
SELECT t.CODE... | Create New row data based column value SQL | sql|sql-server|tsql | 0 | 47 | 2 | 72,986,357 | 72,986,357 | 0 | true | 2022-07-14T16:44:29.910Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Create New row data based column value SQL<p>I am trying to create a new of data with the existing data but using a separated value in the column. i am runn... |
72,985,189 | ClassCastException when using Mockito.thenAnswer<p>I am new to Kotlin. I get exception when trying to use Mockito's <code>thenAnswer</code> method</p>
<p>Controller:</p>
<pre><code>@RestController
class SampleRestController(
val sampleService: SampleService
) {
@PostMapping(value = ["/sample-endpoint"], ... | <p>Check this.</p>
<pre><code> @Test
fun doTest() {
val testData = listOf("123", "456")
//Mockito.`when`(sampleService.serviceCall(testData)).thenReturn("123456")
//Mockito.`when`(sampleService.serviceCall(testData)).thenAnswer { invocation -> "12... | ClassCastException when using Mockito.thenAnswer | kotlin|mockito | 1 | 47 | 1 | 72,986,618 | 72,986,618 | 0 | true | 2022-07-14T18:31:35.920Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
ClassCastException when using Mockito.thenAnswer<p>I am new to Kotlin. I get exception when trying to use Mockito's <code>thenAnswer</code> method</p>
<p>Con... |
72,988,636 | When i use BoxShadow Colors.grey.withOpacity(0.5) with opacity it show error<pre><code>import 'package:flutter/material.dart';
void main() {
runApp(MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('Welcome'),
),
body: Center(
child: Container(
alignment: ... | <p>Try this, Need to remove const</p>
<pre><code>Center(
child: Container(
alignment: Alignment.topCenter,
height: 260,
width: 260,
decoration: BoxDecoration(
color: Colors.blue,
borderRadius: BorderRadius.only(
topLeft: Radius.... | When i use BoxShadow Colors.grey.withOpacity(0.5) with opacity it show error | flutter|dart|flutter-layout | 0 | 47 | 2 | 72,988,874 | 72,988,874 | 0 | true | 2022-07-15T03:03:00.827Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
When i use BoxShadow Colors.grey.withOpacity(0.5) with opacity it show error<pre><code>import 'package:flutter/material.dart';
void main() {
runApp(Materi... |
72,953,168 | Tukey annotations on facet ggplot<p>I am trying to get annotations from a Tukey's test on to a facet'ed ggplot. I've tried multiple other answers (<a href="https://stackoverflow.com/questions/56136421/consistent-lettering-across-facets-for-tukey-letter-plot-on-ggplot">1</a>,<a href="https://stackoverflow.com/questions/... | <p>Please check out <a href="https://stackoverflow.com/a/70863531/8830099">my answer here</a>, where I went into a bit of detail on your options.</p>
<p>The outcome there that is closest to the one you are describing is this one:
<a href="https://i.stack.imgur.com/O79vW.png" rel="nofollow noreferrer"><img src="https://... | Tukey annotations on facet ggplot | r|ggplot2 | 0 | 47 | 2 | 72,990,038 | 72,990,038 | 0 | true | 2022-07-12T13:31:51.540Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Tukey annotations on facet ggplot<p>I am trying to get annotations from a Tukey's test on to a facet'ed ggplot. I've tried multiple other answers (<a href="h... |
72,991,909 | How to download Python modules on VS Code<p>I'm kinds new in the world of programming and ever since I started learning I got really comfortable working with VS Code due to its environment which is very flexible.</p>
<p>I'm in the process of doing Harvard's CS50 course and I need to download different modules for my co... | <p>I recommend you to install <a href="https://www.anaconda.com/products/distribution" rel="nofollow noreferrer">Anaconda</a>, especially for Machine Learning. I've been using it in combination with VS Code for quite some time and it works really good.</p>
<p>Once you have installed Anaconda, you can then create Conda ... | How to download Python modules on VS Code | python|scikit-learn | 0 | 47 | 1 | 72,992,087 | 72,992,087 | 0 | true | 2022-07-15T09:31:51.127Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to download Python modules on VS Code<p>I'm kinds new in the world of programming and ever since I started learning I got really comfortable working with... |
72,991,226 | How to select dependant on another value being within a range for a certain timerange<p>I have two tables one that reads voltage and one that reads current. The entries in these tables represent a change, therefore a specific value is constant until the next row.</p>
<p>I need to collect a voltage reading ONLY when the... | <p>The main problem you are facing is needing to analyze previous records. To achieve this you can use a <a href="https://cloud.google.com/bigquery/docs/reference/standard-sql/navigation_functions#lag" rel="nofollow noreferrer">LAG</a> function as shown below. This will allow you to set parameters in a Qualify clause... | How to select dependant on another value being within a range for a certain timerange | sql|google-bigquery | 0 | 47 | 2 | 72,992,812 | 72,992,812 | 0 | true | 2022-07-15T08:32:35.813Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to select dependant on another value being within a range for a certain timerange<p>I have two tables one that reads voltage and one that reads current. ... |
72,992,945 | *args calling plt.plot() for each optional argument<p>I'm having some trouble with passing an arbitrary number of arguments to <code>plt.plot()</code>. For each argument I try to pass via <code>*args</code> my function calls <code>plt.plot()</code> two times creating duplicates for each optional argument. The <code>re... | <p>By referring to the <a href="https://matplotlib.org/stable/api/_as_gen/matplotlib.pyplot.plot.html" rel="nofollow noreferrer">official document</a> of <code>matplotlib.pyplot.plot()</code>, we can find that <code>linestyle</code> is a <strong>keyword</strong> argument. This is why your code doesn't work as you expec... | *args calling plt.plot() for each optional argument | python|matplotlib|duplicates|arguments | 0 | 47 | 1 | 72,993,712 | 72,993,712 | 0 | true | 2022-07-15T10:58:42.773Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
*args calling plt.plot() for each optional argument<p>I'm having some trouble with passing an arbitrary number of arguments to <code>plt.plot()</code>. For e... |
72,995,012 | Why is my struct pointer creating function returning NULL because of a local declaration?<p>I've decided to go through all of D&R's exercises and in doing so I have encountered a peculiar event. Based on the book's own <code>addtree</code> function I modified it for my own structure:</p>
<pre><code>struct gnode {
... | <p>There are multiple issues in your code:</p>
<ul>
<li><p>when the tree is empty, the line in the original code <code>struct gnode *p = (struct gnode *)malloc(sizeof(struct gnode));</code> allocates a new <code>gnode</code> object, but also defines a new identifier <code>p</code> with a local scope, effectively shadow... | Why is my struct pointer creating function returning NULL because of a local declaration? | c|pointers|struct|dynamic-memory-allocation | 0 | 47 | 2 | 72,995,552 | 72,995,552 | 0 | true | 2022-07-15T13:46:01.133Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Why is my struct pointer creating function returning NULL because of a local declaration?<p>I've decided to go through all of D&R's exercises and in doin... |
72,997,171 | Do I have a stale closure in my React app using react-dnd for drag and drop?<p>I am building a drag-n-drop application that lets users build up a tree of items that they've dragged onto a list.</p>
<p>When dragging items onto a list, there are two possible actions:</p>
<ul>
<li>The item is dropped onto the list and add... | <p>Just figured this out after many wasted hours. react-dnd really need to improve their documentation as this is not an adequate explanation of what the <code>useDrop()</code> hook needs:</p>
<blockquote>
<p>depsA dependency array used for memoization. This behaves like the built-in useMemoReact hook. The default valu... | Do I have a stale closure in my React app using react-dnd for drag and drop? | reactjs|drag-and-drop|react-dnd | 0 | 47 | 1 | 72,997,753 | 72,997,753 | 0 | true | 2022-07-15T16:37:08.960Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Do I have a stale closure in my React app using react-dnd for drag and drop?<p>I am building a drag-n-drop application that lets users build up a tree of ite... |
73,002,412 | How to gotTo specific page using ngx-bootstrap pagination<p>I have a query where I need to implement: How to gotTo a specific page using
ngx- bootstrap pagination by entering the page number to some input field.</p>
<p>Here is the following code snippet :</p>
<pre><code>***Template:***
<div class="row"&g... | <p>According to the <a href="https://valor-software.com/ngx-bootstrap/#/components/pagination?tab=overview" rel="nofollow noreferrer">documentation</a>; you can bind <code>pagination</code> with <code>[(ngModel)]</code> to keep it synced with a particular instance member.</p>
<p>In your <code>DemoPaginationContentSwitc... | How to gotTo specific page using ngx-bootstrap pagination | html|css|angular|typescript|react-native | 0 | 47 | 1 | 73,003,006 | 73,003,006 | 0 | true | 2022-07-16T07:36:03.117Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to gotTo specific page using ngx-bootstrap pagination<p>I have a query where I need to implement: How to gotTo a specific page using
ngx- bootstrap pagin... |
72,998,730 | When I change an object's attribute it does not persist in the object somehow, knowing that object is inside a change notifier class?<p>My project is a quiz game. I have <strong>GameController</strong> class that extends <strong>ChangeNotifier</strong> and accessed throughout multiple widgets. in <strong>GameController... | <p>The problem resides in the <code>_HomeState</code>, take a look at this snippet:</p>
<pre class="lang-dart prettyprint-override"><code>class _HomeState extends State<Home> {
@override
Widget build(BuildContext context) {
var game = new Game(
teamsList: [
Player(name: "Aerobotix"... | When I change an object's attribute it does not persist in the object somehow, knowing that object is inside a change notifier class? | flutter|provider|flutter-provider|state-management|flutter-change-notifier | 2 | 47 | 2 | 73,003,073 | 73,003,073 | 0 | true | 2022-07-15T19:19:46.383Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
When I change an object's attribute it does not persist in the object somehow, knowing that object is inside a change notifier class?<p>My project is a quiz ... |
73,006,533 | How do I initialize a value in OpenCV CallBack function<p>I have the following code that displays an image if you have picture.png or similar.</p>
<pre><code>import cv2
def my_event(event, x, y, flags, params):
if event==cv2.EVENT_MOUSEWHEEL:
# displaying the coordinates
# on the Shell
... | <p>Callback function is not a "interrupt function" by itself.</p>
<p>By specifying <code>cv2.waitKey(0)</code> you have a blocking call in the main thread, and <code>imshow(...)</code> in the callback function can modify the context.</p>
<p>Following code works for me (zoom +/- by scrolling):</p>
<pre><code>i... | How do I initialize a value in OpenCV CallBack function | python|opencv | 0 | 47 | 1 | 73,006,839 | 73,006,839 | 0 | true | 2022-07-16T18:00:09.780Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How do I initialize a value in OpenCV CallBack function<p>I have the following code that displays an image if you have picture.png or similar.</p>
<pre><code... |
73,005,030 | How to remove Unnecessary Blank space above Stack-Pageview inside Scaffold in Flutter?<p><a href="https://i.stack.imgur.com/hptDS.jpg" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/hptDS.jpg" alt="The space is marked with the arrow" /></a>I'm making an on-boarding screen. Everything is working as expect... | <p>You have this problem because the <code>Column</code> widgets have a default<br><br> <code>mainAxisAlignment: MainAxisAlignment.center</code><br><br> so I am changing it to:<br><br> <code>mainAxisAlignment: MainAxisAlignment.start</code><br><br><br>Also my tests on your code indicate the nature of the image is playi... | How to remove Unnecessary Blank space above Stack-Pageview inside Scaffold in Flutter? | android|flutter|dart|flutter-layout|flutter-pageview | 0 | 47 | 2 | 73,007,011 | 73,007,011 | 0 | true | 2022-07-16T14:32:40.700Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to remove Unnecessary Blank space above Stack-Pageview inside Scaffold in Flutter?<p><a href="https://i.stack.imgur.com/hptDS.jpg" rel="nofollow noreferr... |
72,909,907 | Error in upset_data : unused argument (nsets = 5) What could be causing this and how coul I fix the issue?<p>I am very new to R and I would like to make UpSet plot of peptides.</p>
<p>I have five lists (sets) in .txt format (ID_list_vysledok_pos_vs_healthy_files.txt, ID_list_vysledok_pos_neg_files.txt, ID_list_vysledok... | <p>It looks like you might be mixing up packages. You are trying to use <code>upset_data</code> function from <code>ComplexUpset</code> package, but passing <code>nsets</code> argument which works with <code>upset</code> from <code>UpSetR</code> package. I would recommend taking a closer look at which functions you use... | Error in upset_data : unused argument (nsets = 5) What could be causing this and how coul I fix the issue? | r|dataframe|set|upsetr|upsetplot | 0 | 47 | 1 | 73,008,623 | 73,008,623 | 0 | true | 2022-07-08T10:14:44.180Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Error in upset_data : unused argument (nsets = 5) What could be causing this and how coul I fix the issue?<p>I am very new to R and I would like to make UpSe... |
73,008,914 | How can I split a string and sum all numbers from that string?<p>I'm making a list for buying groceries in Google Sheets and have the following value in cell B4.</p>
<pre><code>0.95 - Lemon Juice
2.49 - Pringle Chips
1.29 - Baby Carrots
9.50 - Chicken Kebab
</code></pre>
<p>What I'm trying to do is split using the das... | <h2>Answer</h2>
<p>The following formula should produce the result you desire:</p>
<pre><code>=SUM(ARRAYFORMULA(VALUE(REGEXEXTRACT(SPLIT(B4,CHAR(10)),"(.*)-"))))
</code></pre>
<h2>Explanation</h2>
<p>The first thing to do is to split the entry in B4 into its component parts. This is done by using the <code>=S... | How can I split a string and sum all numbers from that string? | google-sheets|split | 0 | 47 | 3 | 73,008,974 | 73,008,974 | 0 | true | 2022-07-17T02:40:30.583Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How can I split a string and sum all numbers from that string?<p>I'm making a list for buying groceries in Google Sheets and have the following value in cell... |
73,009,669 | MongooseError: The `uri` parameter to `openUri()` must be a string, got "undefined". first parameter to `mongoose.connect()`ion()` is a string<p><a href="https://i.stack.imgur.com/ys2aX.png" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/ys2aX.png" alt="Index.js file" /></a></p>
<p><a href="https://i.sta... | <p>i was creating .env file in src directory but it should be created in your root directory.
<a href="https://i.stack.imgur.com/UxH06.png" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/UxH06.png" alt="env file" /></a></p> | MongooseError: The `uri` parameter to `openUri()` must be a string, got "undefined". first parameter to `mongoose.connect()`ion()` is a string | javascript|node.js|api|mongoose|dotenv | 0 | 47 | 1 | 73,010,882 | 73,010,882 | 0 | true | 2022-07-17T06:32:15.160Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
MongooseError: The `uri` parameter to `openUri()` must be a string, got "undefined". first parameter to `mongoose.connect()`ion()` is a string<p><a href="htt... |
73,005,429 | Access a composition field of a struct from Trait<p>In the following example, is there any way to access the comp_field within the implementation of BaseTrait for MyStruct?</p>
<pre><code>pub trait CompositionTrait {
//methods
}
pub trait BaseTrait {
fn get_comp_field(&self) -> Box<dyn CompositionTra... | <p>The error occurs because you're trying to move the box out of the struct, but the struct is not mutable (and even if it was you would need to put something else in place of the box you're removing). Instead you should return a reference to the <code>CompositionTrait</code>:</p>
<pre><code>pub trait CompositionTrait ... | Access a composition field of a struct from Trait | rust|traits|composition | -1 | 47 | 1 | 73,013,378 | 73,013,378 | 0 | true | 2022-07-16T15:27:43.523Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Access a composition field of a struct from Trait<p>In the following example, is there any way to access the comp_field within the implementation of BaseTrai... |
72,900,737 | Spring Boot application to have separated multiple property files<p>Coming from Play Framework, a handy feature that has helped to organize the application configurations was to use <code>include</code>s (<a href="https://www.playframework.com/documentation/2.8.x/ConfigFile#Includes" rel="nofollow noreferrer">Link</a>)... | <p>My requirement was simply achieved using the <code>spring.config.import</code> (<a href="https://docs.spring.io/spring-boot/docs/current/reference/html/features.html#features.external-config.files.importing" rel="nofollow noreferrer">Link</a>).</p>
<p>I created multiple property files such as <code>hbase.properties<... | Spring Boot application to have separated multiple property files | spring-boot | 1 | 47 | 3 | 73,013,858 | 73,013,858 | 0 | true | 2022-07-07T15:42:58.937Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Spring Boot application to have separated multiple property files<p>Coming from Play Framework, a handy feature that has helped to organize the application c... |
73,013,959 | How to pass the id of a client by a html button in javascript<p>here’s my problem:</p>
<p>I’m making a client system in javascript and php.</p>
<p>I would like to be able to delete the account of a customer who has a unique identifier (id=x) by clicking on a “Delete Customer” button.</p>
<pre><code><div class="... | <p>add attribute data-id your a tag</p>
<p>like this:</p>
<pre><code><a id="kt_account_delete_account_btn" data-id="12" class="menu-link text-danger px-5"> Delete Customer</a>
</code></pre>
<p><strong>remember</strong>: 12 is example, you should load id dynamically by php</p>
<... | How to pass the id of a client by a html button in javascript | javascript|php | 0 | 47 | 2 | 73,014,004 | 73,014,004 | 0 | true | 2022-07-17T17:33:27.233Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to pass the id of a client by a html button in javascript<p>here’s my problem:</p>
<p>I’m making a client system in javascript and php.</p>
<p>I would li... |
73,005,244 | React Token Undefined (but in Postman I can have the token)<p>I use an route app.get('/jwtid')
to catch the token on home in my react app.
This route work with postman and my sever send me the token
but when I do a get axios on React I got an undefined token on my server.</p>
<p>Here is my authJwt.js:</p>
<p><div class... | <p>I found the solution:
In my front "login.js" when I call "axios" for post my login,
I must add withCredentials: true.
Like this:</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-html lang-html ... | React Token Undefined (but in Postman I can have the token) | node.js|reactjs|token | 0 | 47 | 2 | 73,014,015 | 73,014,015 | 0 | true | 2022-07-16T15:00:00.460Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
React Token Undefined (but in Postman I can have the token)<p>I use an route app.get('/jwtid')
to catch the token on home in my react app.
This route work wi... |
73,009,907 | XMLHttpRequest returns null on Apache server but not lo<p>The following snippet of code computes the size of files located at <code>url</code> on my local system using Javascript</p>
<pre><code>//returns file size given a URL
function getFileSize(url, key)
{
var fileSize = '';
var http = new XMLHttpRequest();
... | <p>I fixed the issue. In my <code>.htaccess</code>, I had added some filters to allow for HTML compression as explained <a href="https://www.youtube.com/watch?v=QDK2c7rokOw" rel="nofollow noreferrer">here</a>. However, this made my Apache server not include <code>content-length</code> in the html response (see <a href=... | XMLHttpRequest returns null on Apache server but not lo | javascript|apache|xmlhttprequest | 0 | 47 | 1 | 73,015,366 | 73,015,366 | 0 | true | 2022-07-17T07:22:28.770Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
XMLHttpRequest returns null on Apache server but not lo<p>The following snippet of code computes the size of files located at <code>url</code> on my local s... |
73,014,487 | DDD EF Core Is it possible to load entity with sub-entities without the navigation property for the collection?<p>I'm building a DDD application with CQRS.
In my aggregate I have a <code>Budget</code> aggregate root and <code>BudgetedTransaction</code> entity.
<code>Budget</code> keeps track of the transactions, the li... | <p>If you want use navigational properties as <code>include</code>, must add it as <code>public</code></p>
<pre><code>public Budget {
....
private readonly List<BudgetedTransaction> _budgetedTransactions;
public IEnumerable<BudgetedTransaction> BudgetedTransactions => _budgetedTransactions?.T... | DDD EF Core Is it possible to load entity with sub-entities without the navigation property for the collection? | .net|entity-framework-core|domain-driven-design | 0 | 47 | 1 | 73,016,407 | 73,016,407 | 0 | true | 2022-07-17T18:49:44.540Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
DDD EF Core Is it possible to load entity with sub-entities without the navigation property for the collection?<p>I'm building a DDD application with CQRS.
I... |
73,017,909 | flutter chat app with stream.io Adding extraData into user properties<p>i am looking to add extraData into the user properties but i am having this error: The argument type 'List<Map<String, String>>' can't be assigned to the parameter type 'User'. i am currently using stream.io sdk for my flutter chat appl... | <p>The <code>updateUser</code> method expects a <code>User</code> object. You're trying to pass in a List.</p>
<p>Here is an example of an approach you can take:</p>
<pre class="lang-dart prettyprint-override"><code>final client = StreamChatCore.of(context).client;
// Get the current user or create a user object and g... | flutter chat app with stream.io Adding extraData into user properties | flutter|getstream-io | 0 | 47 | 1 | 73,018,811 | 73,018,811 | 0 | true | 2022-07-18T06:04:25.873Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
flutter chat app with stream.io Adding extraData into user properties<p>i am looking to add extraData into the user properties but i am having this error: Th... |
73,016,675 | In outlook web addin, the Event "onAppointmentAttendeesChangedHandler" works on outlook web. But it fails to trigger on outlook desktop<p>I'm new to web-addin and trying to build an addin for outlook meeting. I need to capture the event when ever there is a change in attendees (participants).
I have subscribed to onApp... | <p>For the Windows based Outlook application the minimum required build is 16.0.14511.10000. If required, join the <a href="https://insider.office.com/join/windows" rel="nofollow noreferrer">Office Insider program</a> and choose the <code>Beta Channel</code> for access to Office beta builds.</p>
<p>You can read more ab... | In outlook web addin, the Event "onAppointmentAttendeesChangedHandler" works on outlook web. But it fails to trigger on outlook desktop | outlook|office-js|outlook-addin|office-addins|outlook-web-addins | 0 | 47 | 1 | 73,024,140 | 73,024,140 | 0 | true | 2022-07-18T02:10:36.297Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
In outlook web addin, the Event "onAppointmentAttendeesChangedHandler" works on outlook web. But it fails to trigger on outlook desktop<p>I'm new to web-addi... |
73,026,569 | Cant render Sidebar in React<p>I followed a tutorial and did everything the same way but React does not render my App.</p>
<p>Can anyone see what the problem is? I just get a blank page with no elements.</p>
<p>This is my index.js file:</p>
<pre><code>import React from 'react';
import ReactDOM from 'react-dom/client';
... | <p>Update your index.js to this</p>
<pre class="lang-js prettyprint-override"><code>import { StrictMode } from "react";
import { createRoot } from "react-dom/client";
import App from "./App";
const rootElement = document.getElementById("root");
const root = createRoot(rootEleme... | Cant render Sidebar in React | reactjs|render | 0 | 47 | 1 | 73,026,644 | 73,026,644 | 0 | true | 2022-07-18T17:52:07.623Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Cant render Sidebar in React<p>I followed a tutorial and did everything the same way but React does not render my App.</p>
<p>Can anyone see what the problem... |
73,026,343 | Changing image source on mouseover/mouseout in React/Next.js<p><strong>Technologies I use:</strong></p>
<p>Next.js
Styled-Components
Typescript</p>
<p><strong>What I want to do:</strong></p>
<p>I wish to change image to a different one when I hover over the parent div that wraps it (Card).</p>
<p><strong>What is my sol... | <p>Another Option is to make a component that handles the state itself then pass the two image options into it. Here is an example of a simple component that does that: <a href="https://codesandbox.io/s/hoverimage-ldscek?file=/src/OnHoverImage.js:40-449" rel="nofollow noreferrer">https://codesandbox.io/s/hoverimage-lds... | Changing image source on mouseover/mouseout in React/Next.js | reactjs|react-hooks|next.js|styled-components | 0 | 47 | 3 | 73,026,680 | 73,026,680 | 0 | true | 2022-07-18T17:32:53.360Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Changing image source on mouseover/mouseout in React/Next.js<p><strong>Technologies I use:</strong></p>
<p>Next.js
Styled-Components
Typescript</p>
<p><stron... |
73,017,884 | Check value of child in Firebase DB Java<p>I am trying to select data from my database and I want to check if a specific child node has a one or a zero as it's value. If it has a 1 then I don't want to show info from that specific user. If it has a zero then I want to show info from that specific user.</p>
<p>I did it ... | <p>The simple fix is that you should call <code>notifyDataSetChanged</code> <strong>after</strong> you modified the data that the adapter shows, where right now you're calling it before that.</p>
<p>So move the call to <code>userAdapter.notifyDataSetChanged()</code> to right after <code>mUsers.add(user)</code>:</p>
<pr... | Check value of child in Firebase DB Java | java|firebase|firebase-realtime-database | 0 | 47 | 1 | 73,029,457 | 73,029,457 | 0 | true | 2022-07-18T06:01:36.227Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Check value of child in Firebase DB Java<p>I am trying to select data from my database and I want to check if a specific child node has a one or a zero as it... |
73,030,370 | How to sort a composite struct with string and number?<p>So this is my struct. As you can see it's a composite struct (string and number/Decimal)</p>
<pre><code>use rust_decimal::prelude::*;
#[derive(Deserialize, Serialize, Clone, Eq, Ord, PartialEq, PartialOrd)]
pub struct Row {
pub acc_code: String,
pub acc... | <p>Instead of using <code>sort_by_key()</code>, use <a href="https://doc.rust-lang.org/stable/std/primitive.slice.html#method.sort_by" rel="nofollow noreferrer"><code>sort_by()</code></a>:</p>
<pre class="lang-rust prettyprint-override"><code>container.sort_by(|a, b| match sort_by.as_ref() {
"acc_code" =&... | How to sort a composite struct with string and number? | rust | 1 | 47 | 1 | 73,030,404 | 73,030,404 | 0 | true | 2022-07-19T02:08:06.737Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to sort a composite struct with string and number?<p>So this is my struct. As you can see it's a composite struct (string and number/Decimal)</p>
<pre><... |
73,020,037 | Unable To Get Lazy Images To Load, Even After Scroll To Bottom Of The Page Using C# Selenium & Browserless.io<p>I am using the latest selenium in a .Net test using Browserless.io. I'm trying to scroll down the page slowly and allow the images to load.</p>
<p>When I view this page manually in my browser, you can see the... | <p>I tried to reproduce your scenario and came up with this simple solution</p>
<pre><code>var collection = wait.Until(d => d.FindElements(By.XPath("//li[@class = 'story-collection__story__LeZ29 story-collection__default__G33_I']")));
foreach (var item in collection)
{
js.ExecuteScript("arguments[... | Unable To Get Lazy Images To Load, Even After Scroll To Bottom Of The Page Using C# Selenium & Browserless.io | c#|.net|selenium|selenium-webdriver | 1 | 47 | 1 | 73,031,238 | 73,031,238 | 0 | true | 2022-07-18T09:25:04.750Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Unable To Get Lazy Images To Load, Even After Scroll To Bottom Of The Page Using C# Selenium & Browserless.io<p>I am using the latest selenium in a .Net test... |
73,029,112 | Goroutines - send critical data to the single goroutine and wait for result<p>I have many goroutines running in my application, and I have another goroutine that must handle only one request at the same period of time and then send the result back to caller.</p>
<p>It means other goroutines should wait until the necess... | <p>Here a code snippet which has a few worker-goroutines and one processor-goroutine. Only one single worker-goroutine can send something to the processor because the the <code>processorChannel</code> only allows one entry. When the processor is done, he sends back the response to the worker he got the work from.</p>
<... | Goroutines - send critical data to the single goroutine and wait for result | multithreading|go|thread-safety|goroutine | -1 | 47 | 2 | 73,031,429 | 73,031,429 | 0 | true | 2022-07-18T22:06:33.870Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Goroutines - send critical data to the single goroutine and wait for result<p>I have many goroutines running in my application, and I have another goroutine ... |
73,029,776 | Package dependencies in a jar<p>I'm trying with a .jar library but the <code>init</code> method has a call to slf4j. I have added slf4j to my dependencies Project but I believe that I need to repackage the library with the dependency inside the jar.<br />
The method I'm calling in the jar has this line:</p>
<pre><code>... | <p>You also need an slf4j implementation, just as your error said. There are multiple. Here are a two:</p>
<p><a href="https://mvnrepository.com/artifact/org.slf4j/slf4j-simple" rel="nofollow noreferrer">slf4j-simple</a>: it prints out to your console/terminal</p>
<p><a href="https://mvnrepository.com/artifact/org.apac... | Package dependencies in a jar | java|jar|package | 1 | 47 | 1 | 73,032,487 | 73,032,487 | 0 | true | 2022-07-19T00:04:09.110Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Package dependencies in a jar<p>I'm trying with a .jar library but the <code>init</code> method has a call to slf4j. I have added slf4j to my dependencies Pr... |
73,026,135 | How to define an optional setting value in the datepicker using Material?<p>I am trying to create a reusable component of the Material datepicker but I can't find a solution to have a optional setting date of the component.</p>
<p><strong>resusable.datepicker.component.ts</strong></p>
<pre><code>@Input() currentValue: ... | <p>The solution was clear after a night sleep... just change this line:</p>
<p><strong>resusable.datepicker.component.ts</strong></p>
<pre><code>@Input() currentValue: FormControl = new FormControl();
</code></pre>
<p>This way the typing is correct and the default is a <em>non</em> date.</p> | How to define an optional setting value in the datepicker using Material? | angular|typescript|angular-material|datepicker | 0 | 47 | 1 | 73,035,541 | 73,035,541 | 0 | true | 2022-07-18T17:12:19.790Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to define an optional setting value in the datepicker using Material?<p>I am trying to create a reusable component of the Material datepicker but I can't... |
73,017,099 | How do I mock nested service call using moq<p>I have a statement similar to</p>
<pre><code>var res = _serviceA.MethodA(() => _serviceB.MethodB(new objectA(){ Id = 10 })
</code></pre>
<p>which is being called twice in the method and also the response changes based on the value of <code>Id</code>, hence I need to set... | <p>That worked for me:</p>
<pre class="lang-cs prettyprint-override"><code>using FluentAssertions;
using Moq;
namespace MockDifferentResult;
public class Tests
{
[Test]
public void Test1()
{
// Arrange
var serviceBMock = new Mock<IServiceB>();
serviceBMock
.Setup(... | How do I mock nested service call using moq | c#|nunit|moq | 0 | 47 | 1 | 73,047,046 | 73,047,046 | 0 | true | 2022-07-18T03:45:52.053Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How do I mock nested service call using moq<p>I have a statement similar to</p>
<pre><code>var res = _serviceA.MethodA(() => _serviceB.MethodB(new objectA... |
72,346,736 | Drupal multisite databases not being displayed in PHPMyadmin<p>Created Drupal 9 multisite with 2 subsites successfully
Created a separate database for each site
Logged in to PHPMyadmin databases for 2 subsites are not displayed there. Databases are present in MariaDB.
However, a database for the main site is present as... | <p>It worked by adding the service name to the list of hosts. "subsite1" is my service name, you can get the service name by "lando info" command.</p>
<pre><code>services:
phpmyadmin:
type: phpmyadmin
hosts:
- database
- subsite1
</code></pre> | Drupal multisite databases not being displayed in PHPMyadmin | phpmyadmin|multisite|drupal-9|lando | 0 | 47 | 1 | 73,063,675 | 73,063,675 | 0 | true | 2022-05-23T10:06:58.203Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Drupal multisite databases not being displayed in PHPMyadmin<p>Created Drupal 9 multisite with 2 subsites successfully
Created a separate database for each s... |
72,987,160 | How to move tick marks above the x-axis in Chart.js<p>I am working on a chart in Chart.js and my x-axis looks like this:
<a href="https://i.stack.imgur.com/520e1.png" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/520e1.png" alt="enter image description here" /></a></p>
<p>I have already looked into docu... | <p>I don't believe this is possible in Chart.js as of now.</p> | How to move tick marks above the x-axis in Chart.js | javascript|html|chart.js | 1 | 47 | 2 | 73,082,800 | 73,082,800 | 0 | true | 2022-07-14T22:14:48.927Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to move tick marks above the x-axis in Chart.js<p>I am working on a chart in Chart.js and my x-axis looks like this:
<a href="https://i.stack.imgur.com/5... |
73,030,360 | JavaScript validation for username and password not working in html file<p>I am creating a program called "Login & Sign-up Form". The program involve Java Servlet, HTML, CSS which are working fine and JavaScript which i am having problem. I am using JavaScript to validate the username, password and email ... | <p>In addition to Jon P's answer adding "required" in your html like:</p>
<pre><code><input type="password" name="password" placeholder="Password" required/>
</code></pre>
<p>will make it a required field for submission, this wont fix the validation problem but right now y... | JavaScript validation for username and password not working in html file | javascript|java|html|css | 0 | 47 | 2 | 73,082,929 | 73,082,929 | 0 | true | 2022-07-19T02:05:42.127Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
JavaScript validation for username and password not working in html file<p>I am creating a program called "Login & Sign-up Form". The program i... |
72,953,382 | How to color the rows and headers of a table with bootstrap<p>I need to display 3 types of data with different fields in the same table. To do this, I want to have 3 headers with a different color each.</p>
<p>I use bootstrap to make my design and my code is in Javascript with React.</p>
<p>I wrote the following code t... | <p>My problem was with the name of the <strong>className</strong> I was using to color my table. By using <strong>bg-success</strong> instead of <strong>table-success</strong> everything works normally. But I don't understand why the <strong>table-success</strong> class doesn't work as in this example: <a href="https:/... | How to color the rows and headers of a table with bootstrap | javascript|reactjs|typescript|twitter-bootstrap|html-table | 0 | 47 | 2 | 73,111,655 | 73,111,655 | 0 | true | 2022-07-12T13:46:39.967Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to color the rows and headers of a table with bootstrap<p>I need to display 3 types of data with different fields in the same table. To do this, I want t... |
73,011,279 | D3 world map, some countries centroid is off<p>Hi I am creating React app in which I am trying to make world map using D3. I want when user hovers on specific country to appear circle on centroid of that country path, but for some countries like "USA", "France", "Norway" centroid is a bit ... | <p>I found a solution, basically you need to fetch data from some service that contains lat/long values for each country and on that values apply the projection to the coordinates , without relying on calculating centroid for each country's shape.</p>
<p>This is maybe better explained in this article <a href="https://y... | D3 world map, some countries centroid is off | javascript|d3.js|topojson|world-map | 0 | 47 | 1 | 73,127,900 | 73,127,900 | 0 | true | 2022-07-17T11:13:39.263Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
D3 world map, some countries centroid is off<p>Hi I am creating React app in which I am trying to make world map using D3. I want when user hovers on specifi... |
72,912,808 | Does `gmp` library disregard index ordering in `[<-`?<p>Consider these two examples:</p>
<pre><code>> foo <- 1:5
> foo2 <- c(10,20)
> foo[3:2] <- foo2
> foo
[1] 1 20 10 4 5
> bar <- as.bigz(1:5)
> bar2 <- as.bigz(c(10,20))
> bar[3:2] <- bar2
> bar
Big Integer ('bigz') objec... | <p>I received confirmation from one of the authors (M Maechler) that this is one of several bugs in <code>gmp</code> related to indexing and subsetting. There's also problems when attempting to run certain <code>apply</code> functions, BTW. We'll just have to wait for the next version to be released.</p> | Does `gmp` library disregard index ordering in `[<-`? | r|indexing|gmp | 1 | 47 | 2 | 73,168,565 | 73,168,565 | 0 | true | 2022-07-08T14:20:15.080Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Does `gmp` library disregard index ordering in `[<-`?<p>Consider these two examples:</p>
<pre><code>> foo <- 1:5
> foo2 <- c(10,20)
> foo[3:2... |
72,974,323 | How to can I convert base64 to file in online nodejs server<p>I am trying to convert base64 with the code below which is working on my localhost but whenever I push to heroku server, I get error and the conversion will not work like that of the localhost</p>
<p>This is my nodejs code:</p>
<pre class="lang-js prettyprin... | <p>I have solved the issue. the error is from my gitignore file</p> | How to can I convert base64 to file in online nodejs server | javascript|node.js|react-native|base64|nodejs-server | -1 | 47 | 1 | 73,178,395 | 73,178,395 | 0 | true | 2022-07-14T01:44:07.270Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to can I convert base64 to file in online nodejs server<p>I am trying to convert base64 with the code below which is working on my localhost but whenever... |
72,900,860 | Create tex table with list of coefficients<p>I want to create a tex table showing the different coefficients of an x variable when regressed on different y variables. My code is as follows:</p>
<pre><code>local vars yvar1 yvar2 yvar3 etc. [there are over 100]
foreach var of local vars{
reghdfe `var' xvar, ... | <p>Sounds like you can use the following code. However, does not seem efficient since you'd need to input the variable names into the frmttable command. You can do this automatically with outreg2. However, you would have 100 columns. There is probably a more efficient way to present your output than a table with 100 r... | Create tex table with list of coefficients | latex|stata | 0 | 47 | 1 | 73,210,451 | 73,210,451 | 0 | true | 2022-07-07T15:53:22.537Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Create tex table with list of coefficients<p>I want to create a tex table showing the different coefficients of an x variable when regressed on different y v... |
72,830,260 | Walrus operator in dict declaration<p>I want to use the walrus operator in a dictionary declaration. However the <code>:</code> is propably causing a problem. I have a dictionary declaration nested in a list comprehension, but I don't want to decompose it into a simple for-loop (that would be a lazy answer). Is it even... | <p>As <a href="https://stackoverflow.com/users/1324033/sayse?tab=profile">@Sayse</a> pointed out in the comments, the trick is to wrap it in parentheses <code>()</code>.</p>
<p>So the solution for the general scenario is simply:</p>
<pre class="lang-py prettyprint-override"><code>foo = {
'a': (a := some_calculation... | Walrus operator in dict declaration | python|dictionary|list-comprehension|walrus-operator | 0 | 47 | 2 | 73,212,626 | 73,212,626 | 0 | true | 2022-07-01T13:46:14.563Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Walrus operator in dict declaration<p>I want to use the walrus operator in a dictionary declaration. However the <code>:</code> is propably causing a problem... |
73,014,863 | Mysql show average of selected options<p>I have a table that has a unique id for each question:</p>
<div class="s-table-container">
<table class="s-table">
<thead>
<tr>
<th>Question_Id</th>
<th>Selected_Option</th>
</tr>
</thead>
<tbody>
<tr>
<td>65</td>
<td>Option A</td>
</tr>
<tr>
<td>101</td>
<td>Option B</td>
</tr>... | <p>Try this:</p>
<pre><code>select distinct question_id,
concat(selected_option,' has a select percentage of ',
(select truncate(count(case selected_option when q.selected_option then 1 end) /count(selected_option)*100,0)
from questions
where question_id=q.question_id
group by question_id), -- this... | Mysql show average of selected options | mysql | -1 | 47 | 1 | 73,018,734 | 73,018,734 | 0 | true | 2022-07-17T19:43:36.490Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Mysql show average of selected options<p>I have a table that has a unique id for each question:</p>
<div class="s-table-container">
<table class="s-table">
<... |
72,846,915 | how to bring out a variable outside of indention?<p>I created a program that has indention in it (you know , like for and while loops , if , elif , else , def and any another thing that has indention after it.)
and this indention has some new created variables in it. like this :</p>
<pre><code> .
.
... | <p>Try this.</p>
<pre><code>def calculate(num) :
num2 = num * big_input
num3 = num2 / little_input
print(num3)
rmin = num2 % little_input
if rmin == 0 :
print(num3)
# after you do what you need with this function
# you will endup with value for num3, right?
# we will give it to t... | how to bring out a variable outside of indention? | python|python-3.x|variables|input|indentation | 0 | 47 | 3 | 72,847,143 | 72,847,143 | 0 | true | 2022-07-03T13:32:22.820Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
how to bring out a variable outside of indention?<p>I created a program that has indention in it (you know , like for and while loops , if , elif , else , de... |
72,825,159 | Add and display all values<p>There are 2 tables called Item & Items_in_issue_Note(Items_in_issue_Note is a many to many table).</p>
<p>In Item table there is a column called Available_Qty and in Items_in_issue_Note there is a column called Issued_Qty.</p>
<p>I want to get the sum of Issued_Qty for each item and add... | <p>By using group by and join you may get the desired result. Try the following</p>
<pre><code>select
A.itemCode,
A.Available_Qty + Coalesce(sum(B.Issued_Qty),0)
from Item A left join
Items_In_Issue_Note B on A.ItemCode=B.ItemCode
group by A.itemCode,A.Available_Qty
</code></pre>
<p>Your code modified below one ... | Add and display all values | sql|sql-server | 0 | 47 | 1 | 72,825,395 | 72,825,395 | 0 | true | 2022-07-01T06:25:54.747Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Add and display all values<p>There are 2 tables called Item & Items_in_issue_Note(Items_in_issue_Note is a many to many table).</p>
<p>In Item table ther... |
72,841,046 | How to cut specifics parts of a line with Python?<p>I'm trying to make a script that <strong>display</strong> recent Ban, Found or Unban infos that are in fail2ban logs (/var/log/fail2ban), but I want to <strong>hide</strong> this selection for all lines :</p>
<p><em>,325 fail2ban.actions [424]: NOTICE [sshd]<... | <p>You can use replace function .</p>
<pre><code>with open('/var/log/fail2ban.log', 'r') as f:
for line in f.readlines():
line = line.replace('that string you dont want', '')
if 'Ban' in line:
print(line)
if 'Unban' in line:
print(line)
... | How to cut specifics parts of a line with Python? | python-3.x|printing|debian|fail2ban | 0 | 47 | 1 | 72,842,687 | 72,842,687 | 0 | true | 2022-07-02T17:19:44.883Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to cut specifics parts of a line with Python?<p>I'm trying to make a script that <strong>display</strong> recent Ban, Found or Unban infos that are in fa... |
72,929,344 | Get Significant Text aggregation on text field with stop words filtering<p>I'm trying to search for the most frequent words in the text field of my index(which is called "text"). I've managed to use the "significant text" aggregation in order to do this, but <strong>some of the buckets returned cont... | <p>I managed to do this by adding an</p>
<pre><code>"exclude": ["list","of","stop","words"]
</code></pre>
<p>to each "significant_text" aggregation.
This is the exact list I used, for anyone who is interested:</p>
<pre><code>"exclude": ["t.co&qu... | Get Significant Text aggregation on text field with stop words filtering | elasticsearch | 1 | 47 | 1 | 72,950,702 | 72,950,702 | 0 | true | 2022-07-10T14:44:18.117Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Get Significant Text aggregation on text field with stop words filtering<p>I'm trying to search for the most frequent words in the text field of my index(whi... |
72,801,799 | In Javascript, upon passing a declared class as an argument to Object.getPrototypeOf, the result refers to the parent class. Why is that?<p>For instance :</p>
<pre><code>class Parent {
foo() {
console.log("foo");
}
}
class Child extends Parent {
bar() {
console.log("bar");
}
}
</c... | <p>The <code>extends</code> keyword does two things:</p>
<ul>
<li><p>It sets the SuperClass.prototype object as the prototype of the SubClass.prototype object. In your case, <code>Child.prototype</code> gets <code>Parent.prototype</code> object as its prototype.</p>
</li>
<li><p>It also sets the super class' constructo... | In Javascript, upon passing a declared class as an argument to Object.getPrototypeOf, the result refers to the parent class. Why is that? | javascript|ecmascript-6 | 2 | 47 | 1 | 72,801,935 | 72,801,935 | 0 | true | 2022-06-29T12:55:49.410Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
In Javascript, upon passing a declared class as an argument to Object.getPrototypeOf, the result refers to the parent class. Why is that?<p>For instance :</p... |
72,778,207 | how to convert this format csv file to a json file?<p>The CSV file looks like this way, I have the id and tags. But some tag may have multiple value, each value take one column, so some tag may have multiple columns.</p>
<pre><code>id,tags
403744,[""]
403745,["phsecurity"]
403750,["unit-testing... | <p>The best way is to change how the input file is generated. But if it isn't possible, this script will try to parse it and saves the Json file:</p>
<pre class="lang-py prettyprint-override"><code>import json
from ast import literal_eval
data = []
with open("input.csv", "r") as f_in:
for line ... | how to convert this format csv file to a json file? | json|csv | 1 | 47 | 1 | 72,778,500 | 72,778,500 | 0 | true | 2022-06-27T20:55:21.973Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
how to convert this format csv file to a json file?<p>The CSV file looks like this way, I have the id and tags. But some tag may have multiple value, each va... |
73,026,957 | How to vertical align the first item?<p>I've been trying : text-align:center, align-items:center..
In this code, I use BootStrap, but I also tried to over-code it via css- nothing helps.
I'd really thank you for help.</p>
<p><div class="snippet" data-lang="js" data-hide="false" data-console="true" data-babel="false">
... | <p>The use of the HTML <code><p></code> and <code><h1></code> tags are throwing off the Bootstrap layout because of their default attributes. Rather than fight with them, use the classes that Bootstrap provides. <code>align-items-center</code> on your flex containers and the responsive <code>h1</code> class... | How to vertical align the first item? | html|css | 1 | 47 | 2 | 73,027,280 | 73,027,280 | 0 | true | 2022-07-18T18:27:00.247Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to vertical align the first item?<p>I've been trying : text-align:center, align-items:center..
In this code, I use BootStrap, but I also tried to over-c... |
72,918,407 | Why is moviepy.editor giving ffmpeg not found error when I import ffmpeg?<pre><code>#from pytube import YouTube as YT #How to get video.mp4
'''
url = 'https://www.youtube.com/watch?v=JC-EGagoM3k'
vid = YT(url)
Streams = vid.streams
filtered = vid.streams.filter(progressive = True, mime_type = 'video/mp4')
filtered.get... | <p>Try :</p>
<pre><code>import os
os.environ["IMAGEIO_FFMPEG_EXE"] = "/usr/bin/ffmpeg"
</code></pre>
<p>before importing moviepy <code>import moviepy</code></p>
<p><strong>NOTE :</strong> this is <a href="https://github.com/Zulko/moviepy/issues/1158" rel="nofollow noreferrer">bug</a> in <code>movi... | Why is moviepy.editor giving ffmpeg not found error when I import ffmpeg? | python | 1 | 47 | 1 | 72,918,485 | 72,918,485 | 0 | true | 2022-07-09T01:55:48.860Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Why is moviepy.editor giving ffmpeg not found error when I import ffmpeg?<pre><code>#from pytube import YouTube as YT #How to get video.mp4
'''
url = 'https:... |
72,837,488 | Memory Use Is Too High Every Time Image Picked using UIImagePickerController<p>I am using this Photo Helper to pick pictures from phone or take a photo but every time I use it, it adds up to the memory use. The image is uploaded to Firebase and it doesn't have to be held in the memory anyway. How can I stop my app to s... | <p>I used a protocol to pass the image from the photo helper to the <code>tabBar</code> class, where I present the view controller. The method looks something like this:</p>
<pre><code> func pushPostDealVC(image: UIImage) {
print("push post deal VC ")
postDealVC.dealImage.image = image
... | Memory Use Is Too High Every Time Image Picked using UIImagePickerController | swift|firebase|uikit|imagepicker | -1 | 47 | 1 | 72,930,255 | 72,930,255 | 0 | true | 2022-07-02T08:04:34.530Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Memory Use Is Too High Every Time Image Picked using UIImagePickerController<p>I am using this Photo Helper to pick pictures from phone or take a photo but e... |
72,957,993 | How to parse a formdata whose part is Json file into a Json object?<p>I want to send a Json file from a Iot plattform to a OPC UA Server node. With the code I get, I can send a Gcode file corectly to the node. When I send the Json file to the Server node, there is always error report on the browser console which indica... | <p>So finally I figured it out where the error is. The problem is, when I read the JSON file to string, it will automatically get "" sign. In my code, it will additionally get "" sign. So this result in the parse error.</p>
<p>My final code looks like this:</p>
<pre><code>sendFileToServer(ns:number,... | How to parse a formdata whose part is Json file into a Json object? | node.js|json|typescript|string|parsing | -1 | 47 | 1 | 73,121,582 | 73,121,582 | 0 | true | 2022-07-12T20:23:42.787Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to parse a formdata whose part is Json file into a Json object?<p>I want to send a Json file from a Iot plattform to a OPC UA Server node. With the code ... |
72,989,612 | Missing Headers row and Leaving space<p>I was working with a combine sheets app script which is working fine at the spot by mereging A bunch of 36 sheetsinto one master<code>enter code here</code>
the only flaw of the script is that it is not showing a common header row in the top and also leaving a space after data en... | <h3>Modification points:</h3>
<ul>
<li>About <code>not showing a common header row in the top</code>, in your script, all values are retrieved from the 2nd row. I thought that this might be the reason for your issue. From <code>a common header row</code>, in this modification, the header row is retrieved from the 1st s... | Missing Headers row and Leaving space | google-apps-script|google-sheets | 1 | 47 | 1 | 72,989,751 | 72,989,751 | 0 | true | 2022-07-15T05:58:30.197Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Missing Headers row and Leaving space<p>I was working with a combine sheets app script which is working fine at the spot by mereging A bunch of 36 sheetsinto... |
72,965,008 | Creating a Python function that will calculate an average value or sum values based on n previous values for every row a certain criteria is true<p>I have a dataframe of biometric data. I need to reduce it down to the rows that only contain a value for 'CGM'. While I know how to remove all nulls in a column I want to m... | <p>Ok this may not be the best solution but it gives you what you want:</p>
<p>Starting from this df</p>
<pre><code>df
CGM HR steps distance calories Time
0 NaN 70.0 0.0 0.0 1.17350 2018-05-03 00:00:00
1 NaN 71.0 0.0 0.0 1.17350 2018-05-03 00:01:00
2 NaN 69.... | Creating a Python function that will calculate an average value or sum values based on n previous values for every row a certain criteria is true | python|dataframe|loops|if-statement|iteration | -2 | 47 | 1 | 72,969,531 | 72,969,531 | 0 | true | 2022-07-13T10:46:54.653Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Creating a Python function that will calculate an average value or sum values based on n previous values for every row a certain criteria is true<p>I have a ... |
72,926,656 | Trying to understand the head tag in html<p>I am new to HTML and started with my first lesson.
I am unable to understand the head tag clearly and need help to understand it clearly.</p>
<p>As I read about the head tag, it says "The head of an HTML document is the part that is not displayed in the web browser when ... | <p>Modern HTML is very tolerant. You can now get away with not closing tags, or even no tags at all (remove the <code><h1></code> tags and "hello world!" will still be displayed) You could put the <code><title></code> in the body and it will still be displayed in the browser tag.
Although it still... | Trying to understand the head tag in html | html | -1 | 47 | 2 | 72,927,231 | 72,927,231 | 0 | true | 2022-07-10T06:52:06Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Trying to understand the head tag in html<p>I am new to HTML and started with my first lesson.
I am unable to understand the head tag clearly and need help t... |
72,978,432 | How to access Security panel on google chrome developer tools with python selenium?<p>The following python code can get console log, but how can I access <code>Security</code> tab on Chrome <code>devTools</code>? E.g. I want to log about <code>This page is secure or not (HTTPS) and the TLS certificate status</code>.</p... | <p>Ok, my solution is as follows:</p>
<pre><code>from selenium import webdriver
from selenium.webdriver.common.desired_capabilities import DesiredCapabilities
import time
import json
caps = DesiredCapabilities.CHROME.copy()
caps['goog:loggingPrefs'] = {
'performance': 'ALL',
}
caps['goog:perfLoggingPrefs'] = {
... | How to access Security panel on google chrome developer tools with python selenium? | python|selenium-chromedriver | 0 | 47 | 1 | 73,047,989 | 73,047,989 | 0 | true | 2022-07-14T09:41:14.423Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to access Security panel on google chrome developer tools with python selenium?<p>The following python code can get console log, but how can I access <co... |
72,903,996 | i get some problems with scanf() in C<pre><code>#include <stdio.h>
#include <stdlib.h>
void add(int *arr, int n);
int main() {
int arr[] = {};
add(arr, 4);
return 0;
}
void add(int *arr, int n){
for (int i = 0; i < n; i++){
printf("%d index is : ", i);
scanf("%d\n"... | <p>This declaration in C and in C++</p>
<pre><code>int arr[] = {};
</code></pre>
<p>is invalid. The initializer list shall not be empty.</p>
<p>Instead you could write in C</p>
<pre><code>int arr[4] = { 0 };
</code></pre>
<p>or</p>
<pre><code>int arr[] = { [3] = 0 };
</code></pre>
<p>And within the function instead of<... | i get some problems with scanf() in C | arrays|c|initialization|scanf|declaration | 1 | 47 | 1 | 72,904,086 | 72,904,086 | 0 | true | 2022-07-07T20:42:07.850Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
i get some problems with scanf() in C<pre><code>#include <stdio.h>
#include <stdlib.h>
void add(int *arr, int n);
int main() {
int arr[] = {}... |
72,999,010 | Using mapping in PANDAS to do a automated Vlookup<p>I am trying to use mapping to match column "Asset" from both dataframes (both dataframes are named "names" and "match") and then based on that match add the column "paid" from dataframe "match" to "names". I ... | <pre><code>names = pd.DataFrame({'asset':[101, 250, 312, 632]})
match = pd.DataFrame({'asset':[100, 250, 127, 312], 'paid':[15,26,31,22]})
</code></pre>
<div class="s-table-container">
<table class="s-table">
<thead>
<tr>
<th>index</th>
<th>asset</th>
</tr>
</thead>
<tbody>
<tr>
<td>0</td>
<td>101</td>
</tr>
<tr>
<td>1... | Using mapping in PANDAS to do a automated Vlookup | python|pandas|dataframe | 0 | 47 | 2 | 72,999,255 | 72,999,255 | 0 | true | 2022-07-15T19:52:40.503Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Using mapping in PANDAS to do a automated Vlookup<p>I am trying to use mapping to match column "Asset" from both dataframes (both dataframes are na... |
72,930,612 | Navigation menu is showing on top of the website, even though it's translated it up<p>Here is a <a href="https://gyazo.com/ec047eb14b54086657e59b12200402b4" rel="nofollow noreferrer">video</a> of the issue. And not sure why this problem is occurring when I decrease the height in responsive design mode. Beginner web dev... | <p>This <code>top: -100%</code> you have means "move the navigation to the top of the containing block's height". When you resize, the containing block's height is becoming smaller than your navigation's height, which is causing this overflow you see.</p>
<p>A solution could be doing as below.
Notice I'm anim... | Navigation menu is showing on top of the website, even though it's translated it up | javascript|html|css | 2 | 47 | 1 | 72,930,742 | 72,930,742 | 0 | true | 2022-07-10T17:42:34.740Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Navigation menu is showing on top of the website, even though it's translated it up<p>Here is a <a href="https://gyazo.com/ec047eb14b54086657e59b12200402b4" ... |
72,844,618 | How do I map array of objects to an existing array on MongoDB<p>Please how can I make this work on mongoDB.
For each item in an array, fetch data which contains the item from another collection.</p>
<p>For example:</p>
<blockquote>
<p>"users" : [{
"name": "John doe",
"age": 51
},... | <p>You can do this. Get the array of users.</p>
<pre><code>const users = [{ "name": "John doe", "age": 51 }, { "name": "Jake kim", "age": 50 }, { "name": "Jim son", "age": 51 }]
</code></pre>
<p>Get the array of ages</p>
<pre><cod... | How do I map array of objects to an existing array on MongoDB | javascript|reactjs|mongodb | 0 | 47 | 2 | 72,844,671 | 72,844,671 | 0 | true | 2022-07-03T07:19:33.590Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How do I map array of objects to an existing array on MongoDB<p>Please how can I make this work on mongoDB.
For each item in an array, fetch data which conta... |
72,918,275 | java jpa retrieve List<String[]><p>I have the following code, to get possible list of array strings.</p>
<p>after my query executes, i have problems retrieving the data.
i get class cast exception error <code>java.lang.ClassCastException: [Ljava.lang.Object; cannot be cast to [Ljava.lang.String;</code></p>
<pre><code>... | <p>When you specify the select clause like you did, the return value is a <code>List<Object[]></code>. That's why you have <code>ClassCastException</code>.</p>
<p>Hibernate is not going to check if each columns has the same type so that it can be included in a <code>String[]</code>. And Java doesn't cast the whol... | java jpa retrieve List<String[]> | java|jpa | 0 | 47 | 1 | 72,920,348 | 72,920,348 | 0 | true | 2022-07-09T01:15:01.413Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
java jpa retrieve List<String[]><p>I have the following code, to get possible list of array strings.</p>
<p>after my query executes, i have problems retrievi... |
72,816,012 | How to set onClick function in xml include layout using viewBinding MVVM<p>How to achieve onclick event in include layout in MVVM architecture</p>
<p>we have a layout Y includes in layout X</p>
<blockquote>
<p>sample layout X (activity_main.xml)</p>
</blockquote>
<pre><code><?xml version="1.0" encoding=&qu... | <p>Your click-function is not working, because the <code>viewModel</code> variable in <code>toolbar_layout.xml</code> (Layout Y) is not set when including it into <code>activity_mail.xml</code> (Layout X).</p>
<p>You can set the variable like this:</p>
<pre><code><include
android:id="@+id/toolbar&qu... | How to set onClick function in xml include layout using viewBinding MVVM | android|mvvm|android-databinding|android-mvvm|android-viewbinding | 0 | 47 | 1 | 72,820,456 | 72,820,456 | 0 | true | 2022-06-30T12:39:27.767Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to set onClick function in xml include layout using viewBinding MVVM<p>How to achieve onclick event in include layout in MVVM architecture</p>
<p>we have... |
72,985,838 | Scipy Gumbel Fit does not Fit - What is the correct use?<p>I'm trying to fit various distributions onto my <a href="https://gist.github.com/Mortom123/f35b565d5bed0c6763db3408c574cb79" rel="nofollow noreferrer">data</a> and test (chi-squared?) which fits best. I started out by using the <code>gumbel_r</code> distributio... | <p>Don't give <code>hist</code> to <code>gumbel_r.fit()</code>. It expects the original data. Change the line that calls <code>fit()</code> to</p>
<pre><code>loc, scale = ss.gumbel_r.fit(data['score'].to_numpy())
</code></pre>
<p>Also, to get the Seaborn plot on the same scale as the plot of the PDF, change <code>sta... | Scipy Gumbel Fit does not Fit - What is the correct use? | python|numpy|scipy|statistics | 0 | 47 | 1 | 72,986,581 | 72,986,581 | 0 | true | 2022-07-14T19:38:49.037Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Scipy Gumbel Fit does not Fit - What is the correct use?<p>I'm trying to fit various distributions onto my <a href="https://gist.github.com/Mortom123/f35b565... |
72,912,943 | output only the non empty content of some columns of data in a title in R?<p>i have a title of dynamically outputed plots which change every time we filter the data using predefined combinations of settings .The title is supposed to show some string pasted to the contents of the columns of data coming from loading that... | <p>So far from what I have understood your problem since the <code>filters</code> dataframe has a column with missing value or empty value, suppose <code>model</code> has <code>NA</code> value, and <code>NA</code> appears in the plot title. So to remove it, I have tried to solve it by changing the <code>filters</code> ... | output only the non empty content of some columns of data in a title in R? | r|ggplot2|shiny | 0 | 47 | 2 | 72,914,837 | 72,914,837 | 0 | true | 2022-07-08T14:30:07.847Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
output only the non empty content of some columns of data in a title in R?<p>i have a title of dynamically outputed plots which change every time we filter t... |
72,988,961 | Why is Datatemplate not working properly?<p>I use the code below to display the data, but the result seems to show the ToString() method of the object.</p>
<p>It seems to be failing to recognize that Model is of type model.</p>
<p>I looked at the solution <a href="https://stackoverflow.com/a/15484824/15181473">here</a>... | <p>You must not set the <code>x:Key</code> attribute on the <code><DataTemplate></code>, because that breaks the mechanism that automatically applies the DataTemplate:</p>
<pre><code><DataTemplate DataType="{x:Type local:model}">
</code></pre>
<p>See the <a href="https://docs.microsoft.com/en-us/d... | Why is Datatemplate not working properly? | c#|wpf | 0 | 47 | 1 | 72,989,527 | 72,989,527 | 0 | true | 2022-07-15T04:11:26.013Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Why is Datatemplate not working properly?<p>I use the code below to display the data, but the result seems to show the ToString() method of the object.</p>
<... |
72,991,273 | Removes changes from another branch GIT<p>I have created a branch from mybranch-1 instead of develop and then made a lot of commits on that new branch. Is there a way to remove the commits/changes made on mybranch-1 without removing the commits/changes made on my new branch ?</p> | <p>Assuming that your local branches looks like it:</p>
<pre><code> A---B---C---F---G (dev)
\
D---E (mybranch-1)
\
H---I (newbranch)
And you want to achieve:
A---B---C---F---G (dev)
\
H---I (n... | Removes changes from another branch GIT | git|branch|commit|git-revert | 0 | 47 | 1 | 72,992,181 | 72,992,181 | 0 | true | 2022-07-15T08:36:08.843Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Removes changes from another branch GIT<p>I have created a branch from mybranch-1 instead of develop and then made a lot of commits on that new branch. Is th... |
72,820,165 | Validate excel sheet lines against application lines using loop with Ruby<p>Friends, I'll try to be as detailed as possible. Thomas Walpole It helped me to validate if the information of each row of the worksheet corresponds to each row of the grid of my application. However I would like to use the for to validate this... | <p>Assuming you're using the 'spreadsheet' gem - the guide provides all the info you need to see how to use a loop here - <a href="https://github.com/zdavatz/spreadsheet/blob/master/GUIDE.md" rel="nofollow noreferrer">https://github.com/zdavatz/spreadsheet/blob/master/GUIDE.md</a></p>
<pre><code>sheet.each 1 do |row|
... | Validate excel sheet lines against application lines using loop with Ruby | ruby|capybara | 0 | 47 | 1 | 72,822,923 | 72,822,923 | 0 | true | 2022-06-30T17:59:01.537Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Validate excel sheet lines against application lines using loop with Ruby<p>Friends, I'll try to be as detailed as possible. Thomas Walpole It helped me to v... |
72,924,311 | How to validate that the properties of an object are empty in javascript<p>I would like to validate if my object in its properties are empty or null.</p>
<pre><code> const references = {
reference1 : {
"name" : "",
"phone" : ""
},
referenc... | <p><strong>See <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/values" rel="nofollow noreferrer"><code>Object.values()</code></a> and <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/every" rel="nofollow noreferrer"><code>Ar... | How to validate that the properties of an object are empty in javascript | javascript | -1 | 47 | 1 | 72,924,427 | 72,924,427 | 0 | true | 2022-07-09T20:11:24.130Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to validate that the properties of an object are empty in javascript<p>I would like to validate if my object in its properties are empty or null.</p>
<pr... |
72,927,672 | CMake creating libraries that depend each other<p>my goal is to create libraries like <code>client</code> and <code>generator</code> and use them in <code>src/main.cpp</code>, but sometimes these libraries depend each other.</p>
<p>In this case: <code>client/User.hpp</code> uses <code>generator/IdGenerator.hpp</code></... | <p>I misunderstood what the problem was initially, but now I think this might help.
Try adding to the CMakeLists.txt of your client instead of</p>
<pre><code>include_directories(generator/)
</code></pre>
<p>this command</p>
<pre><code>target_include_directories(libclient PUBLIC <Path to your generator file>)
</co... | CMake creating libraries that depend each other | c++|cmake|dependencies|include | 0 | 47 | 1 | 72,927,734 | 72,927,734 | 0 | true | 2022-07-10T10:04:16.067Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
CMake creating libraries that depend each other<p>my goal is to create libraries like <code>client</code> and <code>generator</code> and use them in <code>sr... |
72,918,771 | Null Pointer Exception when calling variable from another class<p>So I am doing a program that works by having inputing a price and then using that price along with set values to do a calculation across two child classes that inherit from a superclass where a class is called there which is where the price is kept the i... | <p>I pasted your code and ran it locally. When prompted, I entered "100". Here's the entire output:</p>
<pre><code>Input price of car
100
0.0
0.0
Exception in thread "main" java.lang.NullPointerException: Cannot read field "price" because "this.car" is null
at ComprehensivePo... | Null Pointer Exception when calling variable from another class | java|oop | 0 | 47 | 2 | 72,918,973 | 72,918,973 | 0 | true | 2022-07-09T03:40:47.637Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Null Pointer Exception when calling variable from another class<p>So I am doing a program that works by having inputing a price and then using that price alo... |
72,823,747 | How To : Load Embedded Dynamic Resource Data from PackURI<p>How to just load whatever data is the resource, and then decide what type the data is and just load it on the element control?</p>
<pre><code>public static dynamic ReadResource(System.String Parameter1)
{
return new System.Uri(@"pack://application:,,,... | <h1>SOLUTION</h1>
<p> <a href="https://docs.microsoft.com/en-us/dotnet/desktop/wpf/app-development/wpf-application-resource-content-and-data-files" rel="nofollow noreferrer">WPF Application Resource, Content, and Data Files</a> <br>
had researched a solution and reconstructed the code sample;</p>
<pre><code>public stat... | How To : Load Embedded Dynamic Resource Data from PackURI | c#|visual-studio-code|resources | 0 | 47 | 1 | 72,828,303 | 72,828,303 | 0 | true | 2022-07-01T02:15:12.810Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How To : Load Embedded Dynamic Resource Data from PackURI<p>How to just load whatever data is the resource, and then decide what type the data is and just lo... |
72,804,732 | chart js update X-axis value based on user selection from drop-down in Angular<p>token.html</p>
<pre><code> <mat-form-field>
<mat-select formControlName="selectedValue" >
<mat-option (click)="TokenPrice()" *ngFor="let c of value" [value]="c.v... | <p><code>.destroy()</code></p>
<blockquote>
<p>Use this to destroy any chart instances that are created. This will clean up any references stored to the chart object within Chart.js, along with any associated event listeners attached by Chart.js. This must be called before the canvas is reused for a new chart.</p>
</bl... | chart js update X-axis value based on user selection from drop-down in Angular | javascript|angular | 0 | 47 | 1 | 72,805,974 | 72,805,974 | 0 | true | 2022-06-29T16:17:06.650Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
chart js update X-axis value based on user selection from drop-down in Angular<p>token.html</p>
<pre><code> <mat-form-field>
<mat-select... |
73,024,686 | how to solve React.js problem with setInterval?<p>I want to use setInterval in react but at the beginning of the program it counts faster than it should , var i increased by 2 every second , how can i change my code to solve this?</p>
<pre><code>import React from "react";
var i = 0;
function Light() {
set... | <p>You should use useState and useEffect. Indeed these methods are used to keep data and logic between rerenders, which was not the case in your implementation</p>
<p><div class="snippet" data-lang="js" data-hide="false" data-console="true" data-babel="true">
<div class="snippet-code">
<pre class="snippet-code-js lang-... | how to solve React.js problem with setInterval? | javascript|reactjs|setinterval | -2 | 47 | 1 | 73,025,700 | 73,025,700 | 0 | true | 2022-07-18T15:16:36.740Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
how to solve React.js problem with setInterval?<p>I want to use setInterval in react but at the beginning of the program it counts faster than it should , va... |
73,008,075 | JavaScript - Check if value is already included in an array with sub-values<p>I have an array that has sub-values for each value of the array and I am trying to check if a sub-value already exists within the array. Normally I would just use <code>array.includes()</code> but that isn't working in this case. How would I ... | <p>You can use the array.some() method to check it there are the same sub-values.</p>
<pre><code>if(dataArray.some(item => item.classCRN == classesArray[i])){
......
}
</code></pre> | JavaScript - Check if value is already included in an array with sub-values | javascript|arrays|sorting | 0 | 47 | 2 | 73,008,120 | 73,008,120 | 0 | true | 2022-07-16T22:35:45.750Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
JavaScript - Check if value is already included in an array with sub-values<p>I have an array that has sub-values for each value of the array and I am trying... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.