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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
73,001,743 | How to pull changes from Remote Branch A to Remote Branch B in GitHub<p>I am working on a project where we have 2 different branches branched out from Master branch. One is Branch A, where the Backend Team works, and Branch B where Frontend Team(Me) works. Now the Branch A has some new additions that needed to be inclu... | <h3>Pull Request</h3>
<p>As <a href="https://stackoverflow.com/users/19529280/shamim">@Shamim</a> mentioned in the comments, you coukd create a pull request from branch A to B. The pull request would then allow you to fix potential conflicts and then merge it.</p>
<h3>CLI merge</h3>
<p>Another possibility would be to m... | How to pull changes from Remote Branch A to Remote Branch B in GitHub | git|github | 1 | 52 | 2 | 73,001,929 | 73,001,929 | 3 | true | 2022-07-16T05:23:53.880Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to pull changes from Remote Branch A to Remote Branch B in GitHub<p>I am working on a project where we have 2 different branches branched out from Master... |
72,821,526 | SQL SELECT exclude child if parent is present<p>We have a <code>Projects</code> table where projects can be nested by <code>projectA.parent_id = projectB.id</code>.</p>
<p>When selecting all projects that meet a given criteria, how can we select <strong>only</strong> the parent if both meet it (or the parent meets it) ... | <p>You can union two queries, one for the parents, one for the children. For example:</p>
<pre><code>select distinct *
from (
select p.* -- finding parents
from projects p
join projects c on c.parent_id = p.id
where p.is_chosen
union all
select c.* -- finding children
from projects p
join projects c on c... | SQL SELECT exclude child if parent is present | sql|postgresql | 2 | 52 | 3 | 72,821,619 | 72,821,619 | 3 | true | 2022-06-30T20:14:22.137Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
SQL SELECT exclude child if parent is present<p>We have a <code>Projects</code> table where projects can be nested by <code>projectA.parent_id = projectB.id<... |
72,834,781 | How can I merge columns `Year`, `Month`, and `Day` into one column of months?<p>How can I merge columns <code>Year</code>, <code>Month</code>, and <code>Day</code> into one column of months?</p>
<pre class="lang-py prettyprint-override"><code>import pandas as pd
data = {'Subject': ['A', 'B', 'C', 'D'],
'Year':[... | <p>Assuming the Gregorian calendar:</p>
<ul>
<li>365.2425 days/year</li>
<li>30.436875 days/month.</li>
</ul>
<pre><code>day_year = 365.2425
day_month = 30.436875
df['Days'] = df.Year.mul(day_year) + df.Month.mul(day_month) + df.Day
# You could also skip this step and just do:
# df['Months'] = (df.Year.mul(day_year) +... | How can I merge columns `Year`, `Month`, and `Day` into one column of months? | python|pandas | 1 | 52 | 1 | 72,834,975 | 72,834,975 | 3 | true | 2022-07-01T21:29:49.630Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How can I merge columns `Year`, `Month`, and `Day` into one column of months?<p>How can I merge columns <code>Year</code>, <code>Month</code>, and <code>Day<... |
72,812,197 | Improving Time Efficiency on two custom List in KOTLIN<p>There are two lists:</p>
<pre><code>val listA:List<Amodel>
val listB:List<Int>
data class Amodel(val id:Int,var isUsed:Boolean=false)
</code></pre>
<blockquote>
<p>Need to update listA isUsed =true based on the int id of the listB</p>
<p>What I'm d... | <p>This might be slightly faster when the lists are huge:</p>
<pre><code>val lookup = listB.associateWith { true }
listA.forEach { it.isUsed = lookup[it.id] ?: false }
</code></pre>
<p>Possibly this is even faster, I'm not sure. Because it then only sets <code>isUsed</code> in the case it needs to be true:</p>
<pre><co... | Improving Time Efficiency on two custom List in KOTLIN | android|list|performance|kotlin|time-complexity | 0 | 52 | 4 | 72,812,426 | 72,812,426 | 3 | true | 2022-06-30T07:56:52.540Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Improving Time Efficiency on two custom List in KOTLIN<p>There are two lists:</p>
<pre><code>val listA:List<Amodel>
val listB:List<Int>
data c... |
72,843,897 | Error in a Sum Calculation in C# Visual Studio 2022<p>I'm doing a sum of two numbers exercise in Visual Studio 2022, in C# language.</p>
<p>Here is the current code:</p>
<pre><code>class Program
{
static void Main(string[] args)
{
int x, y, sum;
Console.Write("Enter the value of X: ")... | <p><a href="https://docs.microsoft.com/en-us/dotnet/api/system.console.read?view=net-6.0" rel="nofollow noreferrer"><code>Console.Read</code></a> is extracting a single character from the input.
When you exctract a character into an <code>int</code> variable, the <code>int</code> will hold the ascii value of the charac... | Error in a Sum Calculation in C# Visual Studio 2022 | c#|.net | 0 | 52 | 1 | 72,843,952 | 72,843,952 | 3 | true | 2022-07-03T04:22:11.483Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Error in a Sum Calculation in C# Visual Studio 2022<p>I'm doing a sum of two numbers exercise in Visual Studio 2022, in C# language.</p>
<p>Here is the curre... |
72,825,874 | Complete list assigned to each row in python<p>I created a list as a mean of 2 other columns, the length of the list is same as the number of rows in the dataframe. But when I try to add that list as a column to the dataframe, the entire list gets assigned to each row instead of only corresponding values of the list.</... | <p>I think you overcomplicated it. You don't need <code>for</code>-loop but only one line</p>
<pre><code>df['glucose'] = (df['h1_glucose_max'] + df['h1_glucose_min']) / 2
</code></pre>
<hr />
<p><strong>EDIT:</strong></p>
<p>If you want to work with every row separatelly then you can use <code>.apply()</code></p>
<pre>... | Complete list assigned to each row in python | python|pandas|list|dataframe|numpy | 1 | 52 | 3 | 72,825,932 | 72,825,932 | 3 | true | 2022-07-01T07:37:01.623Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Complete list assigned to each row in python<p>I created a list as a mean of 2 other columns, the length of the list is same as the number of rows in the dat... |
72,968,349 | How to detect the multivalued observation for each ID in dataset?<p>I have a dataset contains 3 different vars like this:</p>
<pre><code>id gender phase
a1 m 1
a1 m 2
a1 m 3
b2 m 1
b2 f 2
b2 m 3
c3 f 1
c3 f 2
c3 f 3
...
</code></pre>
<p>... | <p>With <code>dplyr</code>, you could detect which ids have more than one genders with <code>n_distinct()</code>.</p>
<pre class="lang-r prettyprint-override"><code>library(dplyr)
df %>%
group_by(id) %>%
filter(n_distinct(gender) > 1) %>%
ungroup()
# # A tibble: 3 × 3
# id gender phase
# <... | How to detect the multivalued observation for each ID in dataset? | r | 1 | 52 | 3 | 72,968,536 | 72,968,536 | 3 | true | 2022-07-13T14:53:37.763Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to detect the multivalued observation for each ID in dataset?<p>I have a dataset contains 3 different vars like this:</p>
<pre><code>id gender phase
a1... |
72,840,497 | How would I return an html element from an async function<p>So I'm trying to render a function that is called when my UI renders and it gets the necessary information, The issue is that since this function needs to be an async function I'm unable to render html.</p>
<pre><code> async function getImages(path) {
... | <p>You'd actually want to completely seperate the fetch from the render:</p>
<pre><code>function Component() {
const [data, setData] = useState();
//use effect to fetch on mount
useEffect(() => {
//fetch here, then store the result in the state
}, [])
if (data === undefined) return; //y... | How would I return an html element from an async function | javascript|reactjs | 0 | 52 | 1 | 72,840,585 | 72,840,585 | 3 | true | 2022-07-02T16:00:20.697Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How would I return an html element from an async function<p>So I'm trying to render a function that is called when my UI renders and it gets the necessary in... |
72,874,974 | get s3 folder files using boto3<p>is there any way to get s3 specific folder all files keys which have a specific combination like</p>
<p><strong>But</strong> I have a specific combination now in key like</p>
<pre><code> <transaction_id>/<this could be any thing>_input.json
</code></pre>
<p>I know transact... | <p>You can list all objects with a common prefix with list_objects_v2. From there you can filter out to only list items with a given suffix end string, or some other pattern:</p>
<pre class="lang-pythone prettyprint-override"><code>import boto3
bucket = "-example-bucket-"
prefix = "<transaction_id&g... | get s3 folder files using boto3 | python|python-3.x|amazon-web-services|amazon-s3|boto3 | 1 | 52 | 1 | 72,875,724 | 72,875,724 | 4 | true | 2022-07-05T20:05:12.590Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
get s3 folder files using boto3<p>is there any way to get s3 specific folder all files keys which have a specific combination like</p>
<p><strong>But</strong... |
72,888,672 | confusion over single responsibility in clean architecture<p>I have a class receives message from the queue, once i get the message i need to upload it to cloud and then send it to another service. 3 different jobs have to be done in a single class, what I'm doing is :</p>
<pre><code>private async Task ProcessMessageAs... | <p>Your code reveals a <em>process</em> that consists of 3 individual steps. You have already created separate instances to handle these steps (e.g. <code>uploadCsv</code> and <code>sendFile</code>). What you <em>may</em> be missing is a fourth class to describe the <em>process</em> itself. So you <em>could</em> create... | confusion over single responsibility in clean architecture | c#|asp.net-core | 2 | 52 | 1 | 72,888,898 | 72,888,898 | 4 | true | 2022-07-06T19:01:48.383Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
confusion over single responsibility in clean architecture<p>I have a class receives message from the queue, once i get the message i need to upload it to cl... |
72,973,891 | Find file descriptor of directory associated with filename<p>I am trying to write a function that allows users to change file timestamps with nanosecond precision. After some <a href="https://stackoverflow.com/questions/72905567/how-to-change-file-timestamp-including-nanoseconds">research</a>, I found the function <a h... | <p>There are multiple ways to achieve the desired result, and the simplest one doesn't involve opening a directory at all.</p>
<pre><code>static void set_time(const char *file, struct timespec *tvals)
{
if (utimensat(AT_FDCWD, file, tvals, 0) != 0)
err_sysrem("failed to set time on %s: ", file);
}... | Find file descriptor of directory associated with filename | c|file|file-io|file-descriptor | 2 | 52 | 1 | 72,975,435 | 72,975,435 | 4 | true | 2022-07-14T00:06:17.730Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Find file descriptor of directory associated with filename<p>I am trying to write a function that allows users to change file timestamps with nanosecond prec... |
72,833,352 | Between redis bloom and cuckoo filters, which is better in terms of performance?<p>Previous stackoverflow question regarding bloom and cuckoo filter comparison is 13 years old (<a href="https://stackoverflow.com/questions/867099/bloom-filter-or-cuckoo-hashing">Here</a>) and predates redis-modules by a decade. And I gue... | <blockquote>
<p>I guess cuckoo filters must have matured quite a bit over the years in terms of adoption.</p>
</blockquote>
<p>Cuckoo filters are relatively simple, so no 'maturity process' was required.</p>
<p>That being said, since cuckoo filters <a href="https://www.cs.cmu.edu/%7Edga/papers/cuckoo-conext2014.pdf" re... | Between redis bloom and cuckoo filters, which is better in terms of performance? | algorithm|filter|hash|redis|bloom-filter | 2 | 52 | 1 | 72,837,134 | 72,837,134 | 4 | true | 2022-07-01T18:30:42.830Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Between redis bloom and cuckoo filters, which is better in terms of performance?<p>Previous stackoverflow question regarding bloom and cuckoo filter comparis... |
72,884,002 | Remove duplicate JSON blocks from file using JQ<p>I have a JSON file that contains thousands of entries, and i need to remove the duplicate blocks.</p>
<p><strong>Here is an example of the file:</strong></p>
<pre><code>{ "signatures": [
{
"signatureId": 0050,
"mode": 0
},
... | <p>Use <code>unique_by</code> with the field to be checked for duplicates as its argument. It will always take the first of a kind (here, the one with <code>"mode": 0</code>)</p>
<pre class="lang-bash prettyprint-override"><code>jq '.signatures |= unique_by(.signatureId)'
</code></pre>
<pre class="lang-json p... | Remove duplicate JSON blocks from file using JQ | json|bash|shell|jq | 2 | 52 | 1 | 72,884,086 | 72,884,086 | 5 | true | 2022-07-06T12:59:25.347Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Remove duplicate JSON blocks from file using JQ<p>I have a JSON file that contains thousands of entries, and i need to remove the duplicate blocks.</p>
<p><s... |
72,958,295 | How to parse this date/time in Java/Kotlin?<p>I have this NMEA timestamp: <code>120722202122</code> and I want to parse it.</p>
<p>I tried</p>
<pre><code>import java.time.LocalDateTime
import java.time.format.DateTimeFormatter
fun main() {
println(LocalDateTime.parse("120722202122", DateTimeFormatter.ofPa... | <p>I assume you've probably meant the <em>day of the month</em> <code>d</code>, not the <em>day of the year</em> <code>D</code>.</p>
<p>In your pattern, you've specified the day of the year <code>DD</code>, and therefore the next part <code>MM</code> representing the <em>month</em> happens to be redundant. And exceptio... | How to parse this date/time in Java/Kotlin? | java|kotlin|datetime|localdatetime | 0 | 52 | 2 | 72,958,495 | 72,958,495 | 5 | true | 2022-07-12T20:57:11.337Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to parse this date/time in Java/Kotlin?<p>I have this NMEA timestamp: <code>120722202122</code> and I want to parse it.</p>
<p>I tried</p>
<pre><code>imp... |
72,779,418 | C++ function resolution matches different function when I adjust their sequence<p>I've got a test program to see how compiler(g++) match template function:</p>
<pre><code>#include<stdio.h>
template<class T>void f(T){printf("T\n");}
template<class T>void f(T*){printf("T*\n");}
templ... | <p>You have two (overloaded) template functions here, and a third function <code>f(int*)</code> that is specializing one of the template functions.</p>
<p>The specialization happens after after the overload resolution. So in both cases you will select <code>f(T*)</code> over <code>f(T)</code>. However, in the first c... | C++ function resolution matches different function when I adjust their sequence | c++|templates|overloading|overload-resolution | 5 | 52 | 1 | 72,779,509 | 72,779,509 | 6 | true | 2022-06-27T23:59:54.977Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
C++ function resolution matches different function when I adjust their sequence<p>I've got a test program to see how compiler(g++) match template function:</... |
72,817,790 | Perl Moose, How to initialize a instance attribute that is Hash<p>What I am tring to do is the following:</p>
<p>I am writing a perl Moose Class and I want ot have a class attribute that is an Hash and is initialized to default values upon building.</p>
<p>My attempt:</p>
<pre><code>has sweep_prop_configuration => (... | <p><a href="https://perldoc.pl/Moose" rel="noreferrer">Moose</a> doesn't define <code>Hash</code> as a type (see <a href="https://perldoc.pl/Moose::Manual::Types" rel="noreferrer">Moose::Manual::Types</a>).</p>
<p>It defines <code>HashRef</code>, though. In order to use it, change the builder's last line to</p>
<pre><c... | Perl Moose, How to initialize a instance attribute that is Hash | perl|moose | 4 | 52 | 1 | 72,817,932 | 72,817,932 | 6 | true | 2022-06-30T14:45:01.877Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Perl Moose, How to initialize a instance attribute that is Hash<p>What I am tring to do is the following:</p>
<p>I am writing a perl Moose Class and I want o... |
72,861,838 | Assignment of version-like value (numbers with two or more dots) in Powershell<p>Recently I discovered some nasty behavior about assigning some version-like value to variable in Powershell (at least in 7.2.5).</p>
<p>At first I tried:</p>
<pre><code>> $version = 1.2.3
> echo $version
</code></pre>
<p>I quickly f... | <blockquote>
<p><em>why</em> it works this way?</p>
</blockquote>
<p>In effect, <code>1.2.3</code> is parsed as <code>(1.2).3</code>, i.e. as <em>number literal</em> <code>1.2</code> whose <code>.3</code> <em>property</em> is retrieved.</p>
<p>Number literal <code>1.2</code> is an instance of a <code>[double]</code> (<... | Assignment of version-like value (numbers with two or more dots) in Powershell | powershell|type-conversion|powershell-core | 4 | 52 | 1 | 72,861,900 | 72,861,900 | 6 | true | 2022-07-04T20:40:25.543Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Assignment of version-like value (numbers with two or more dots) in Powershell<p>Recently I discovered some nasty behavior about assigning some version-like ... |
72,877,583 | Different left division between Matlab and R<p>I have a matrix <code>A</code> and a column vector <code>b</code> as follows:</p>
<ul>
<li>A</li>
</ul>
<pre><code>0.4585 0.9135 1.1685 1.4235 1.6785 1.9335 2.1885 2.4435 2.6985 2.9535 3.2085 3.4635 3.7185 3.9735 4.2285 4.4835 4.7385 4.9935
0.9135 1.0685... | <p><strong>tldr;</strong> Ax = b has infinitely many solutions.</p>
<hr />
<p>This is more of a linear algebra question than a coding question. Since rank(A) and rank(A|b) (A|b being the augmented matrix with b appended as a column vector) are equal and less than the number of columns/rows of A (i.e. A is not full rank... | Different left division between Matlab and R | r|matlab | 1 | 52 | 1 | 72,877,752 | 72,877,752 | 7 | true | 2022-07-06T03:15:18.590Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Different left division between Matlab and R<p>I have a matrix <code>A</code> and a column vector <code>b</code> as follows:</p>
<ul>
<li>A</li>
</ul>
<pre><... |
72,945,290 | How to set ComputeCpp_DIR properly?<p>I recently installed ComputeCpp to <code>D:/Programs/Codeplay/ComputeCpp</code>. Then I set <code>ComputeCpp_DIR="D:/Programs/Codeplay/ComputeCpp"</code> in the <code>CMakeLists.txt</code> file for compiling OpenCV. I use <code>cmake-gui.exe</code> to configure build opti... | <p>Add an empty <code>ComputeCppConfig.cmake</code> file into the <code>D:/Programs/Codeplay/ComputeCpp</code> directory. After that <code>cmake-gui.exe</code> will stop overwriting your setting.</p> | How to set ComputeCpp_DIR properly? | opencv|cmake|visual-studio-2019|cmake-gui | 1 | 52 | 1 | 72,945,542 | 72,945,542 | -1 | true | 2022-07-11T22:30:32.937Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to set ComputeCpp_DIR properly?<p>I recently installed ComputeCpp to <code>D:/Programs/Codeplay/ComputeCpp</code>. Then I set <code>ComputeCpp_DIR="... |
72,844,430 | Sort date a list of <a> tags that contain a date along with other non-date text?<p>This is the HTML containing a list of <code><a></code> tags containing the date within the <code>.caption2</code> class. By default the list of these episodes are NOT sorted by date. How can I sort them by date with oldest being on... | <p>Let's use the below functions:</p>
<p><a href="https://developer.mozilla.org/en-US/docs/Web/API/Document/querySelectorAll" rel="nofollow noreferrer">Document.querySelectorAll</a>,
<a href="https://developer.mozilla.org/en-US/docs/Web/API/Element/querySelector" rel="nofollow noreferrer">Element.querySelector</a>,
<a ... | Sort date a list of <a> tags that contain a date along with other non-date text? | javascript|string|date|sorting | 0 | 52 | 3 | 72,844,538 | 72,844,538 | -1 | true | 2022-07-03T06:42:49.467Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Sort date a list of <a> tags that contain a date along with other non-date text?<p>This is the HTML containing a list of <code><a></code> tags containi... |
72,952,488 | Pandas Scipy mannwhitneyu in this type of data table<p>I have a data table similar to this one (but huge), many types and more "Spot" cells for each "Color":</p>
<pre><code>Type Color Spots
A Blue 792
A Blue 56
A Blue 2726
A Blue 780
A Blue 591
A Blue 2867
A Blue... | <p>Your questions might be leaving a lot that is obvious to you implied for people who are not as familiar with the sort of statistical analysis you are interested in. That might be making it difficult to help you along, but by trying to cover all my bases, I think I might be able to help you regardless.</p>
<p>The fir... | Pandas Scipy mannwhitneyu in this type of data table | python|pandas|scipy|statistics | 0 | 52 | 1 | 72,953,604 | 72,953,604 | -1 | true | 2022-07-12T12:40:06.053Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Pandas Scipy mannwhitneyu in this type of data table<p>I have a data table similar to this one (but huge), many types and more "Spot" cells for eac... |
72,774,760 | Progressbar not being displayed on one line<p>I'm trying to create a progress bar and I've tried this code</p>
<pre><code>from progressbar import *
widgets = ['Test: ', Percentage(), ' ', Bar(marker='0',left='[',right=']'),
' ', ETA(), ' ', FileTransferSpeed()] #see docs for other options
pbar = ProgressB... | <p>Try something like this:</p>
<pre><code>import sys
import time
import threading
def barra():
global stop
global kill
print ('Waiting reboot NV.... '),
sys.stdout.flush()
i = 0
while stop != True:
if (i%4) == 0:
sys.stdout.write('.')
elif (i%4) == 1:
s... | Progressbar not being displayed on one line | python|progress-bar | 0 | 52 | 1 | 72,782,402 | 72,782,402 | -1 | true | 2022-06-27T15:36:42.737Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Progressbar not being displayed on one line<p>I'm trying to create a progress bar and I've tried this code</p>
<pre><code>from progressbar import *
widgets... |
72,773,194 | SwiftUI ForEach force UI update when updating the contents of a core data relationship<p>My app is meant to have a bunch of workouts in core data, each with a relationship to many exercises. A view should display the data in each workout (name, description etc.) and then iterate and display each exercise belonging to ... | <p>I’m not sure if this is the ONLY solution as @malhal gave quite an extensive and seemingly useful response.</p>
<p>But I came across a much easier and immediate fix, within my original solution. The inverse relationships must be specified. Doing this resolved all issues.</p> | SwiftUI ForEach force UI update when updating the contents of a core data relationship | core-data|swiftui | 0 | 53 | 2 | 72,775,227 | 72,775,227 | 0 | true | 2022-06-27T13:47:50.387Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
SwiftUI ForEach force UI update when updating the contents of a core data relationship<p>My app is meant to have a bunch of workouts in core data, each with ... |
72,777,899 | justify-content making a gap on the left side<p>At the bottom, button Git and link "10 min read" and the image are in the same (first two are in the one, the third is for itself).</p>
<p>When i try to justify-content, the gap creates on the left side of button and link. I don't know how all this looks when p... | <p>Running the code, you can see a hidden anchor tag inside the "themebot" div.
You could simply set the display to none or the position to absolute. But you should find out, why the anchor tag is appearing, if it is unintended.</p>
<pre><code>.top-ten-git-gui-clients {
display: none;
}
</code></pre> | justify-content making a gap on the left side | html|css|flexbox | 0 | 53 | 1 | 72,778,104 | 72,778,104 | 0 | true | 2022-06-27T20:22:35.970Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
justify-content making a gap on the left side<p>At the bottom, button Git and link "10 min read" and the image are in the same (first two are in t... |
72,790,620 | PHP - array_diff does not work as it supposed to<p>Just found a strange behavior of PHP with the <code>array_diff</code> function.</p>
<p>I have the following arrays:</p>
<pre><code> $d1 = [
'HomePhoneNumber' => '555-222-2222',
'MobilePhoneNumber' => NULL,
'ContactID' => NULL,
... | <p><code>array_diff</code> only checks for values, no checks for keys</p>
<p>you need to use <a href="https://www.php.net/manual/en/function.array-diff-assoc.php" rel="nofollow noreferrer">array_diff_assoc</a> to check along with keys</p> | PHP - array_diff does not work as it supposed to | php|arrays|diff | 0 | 53 | 1 | 72,790,803 | 72,790,803 | 0 | true | 2022-06-28T17:08:54.980Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
PHP - array_diff does not work as it supposed to<p>Just found a strange behavior of PHP with the <code>array_diff</code> function.</p>
<p>I have the followin... |
72,790,519 | How to make this simulation of which year a Solarflare hits the Earth faster?<p>I wrote this code and try to learn a bit more how to code more efficiently and increase performance.</p>
<pre><code>import random
def CalcAverageSolarFlareEvent(EventList):
return sum(EventList) / len(EventList)
percentage_solar_flare... | <p>Python is not great for such a code, especially the standard CPython implementation. Consider using PyPy or Pyston or an embedded JIT (just-in-time compiler) like Numba, or alternatively a compiled language.</p>
<p>Moreover, you do not need to add items to a list so to count them or sum them: you can compute a parti... | How to make this simulation of which year a Solarflare hits the Earth faster? | python|list|performance|simulation|calculation | 0 | 53 | 1 | 72,792,870 | 72,792,870 | 0 | true | 2022-06-28T16:59:16.303Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to make this simulation of which year a Solarflare hits the Earth faster?<p>I wrote this code and try to learn a bit more how to code more efficiently an... |
72,794,828 | is there a way to get the value from the first cell in html table row using javascript only?<p>I'm trying to figure out how to get the value from the first column of selected row inside the HTML table
i'm selecting the row using button created using this js code :</p>
<pre><code>let tr = document.querySelectorAll("... | <p>You can use <a href="https://developer.mozilla.org/en-US/docs/Web/API/Document/querySelector" rel="nofollow noreferrer"><code>querySelector</code></a> to get the first element. If it has more than one of similar elements, it always gets the first one.</p>
<p>Your cell does not have value either. You should use <code... | is there a way to get the value from the first cell in html table row using javascript only? | javascript|c# | 0 | 53 | 2 | 72,794,879 | 72,794,879 | 0 | true | 2022-06-29T01:33:07.363Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
is there a way to get the value from the first cell in html table row using javascript only?<p>I'm trying to figure out how to get the value from the first c... |
72,796,932 | Angular Mat-Table Error: Could not find column with id "..."<p>I am trying to add an Angular Material Table to my page. I get the data from Flask with an http request in my component.ts file:</p>
<pre><code> onLoading: boolean = true;
dataSource: any;
displayedColumns: string[] = ['inchiKey', 'schemblID', 'smiles'... | <p>There is a typo in you html it should be <code>matColumnDef="inchiKey"</code> instead of <code>matColumnDef="inchikey"</code>.So the coulmn def would be</p>
<pre><code> <!-- inchiKey Column -->
<ng-container matColumnDef="inchiKey">
<th mat-header-cell *matHe... | Angular Mat-Table Error: Could not find column with id "..." | angular|angular-material | 0 | 53 | 1 | 72,797,045 | 72,797,045 | 0 | true | 2022-06-29T06:50:05.937Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Angular Mat-Table Error: Could not find column with id "..."<p>I am trying to add an Angular Material Table to my page. I get the data from Flask with an htt... |
72,797,858 | I am not able to access id from itemView<p>I am learning to create RecyclerView using Kotlin from this video.</p>
<p><a href="https://youtu.be/HtwDXRWjMcU?t=1040" rel="nofollow noreferrer">RECYCLERVIEW - Android Fundamentals</a></p>
<p>According to this video I can access <code>tvTitle</code> and <code>cbDone</code> fr... | <p>Try to add,</p>
<p>plugins {
id 'kotlin-android-extensions'
}</p>
<p>to build.gradle(:app).</p> | I am not able to access id from itemView | android|kotlin|android-recyclerview | 0 | 53 | 1 | 72,798,437 | 72,798,437 | 0 | true | 2022-06-29T08:05:17.947Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
I am not able to access id from itemView<p>I am learning to create RecyclerView using Kotlin from this video.</p>
<p><a href="https://youtu.be/HtwDXRWjMcU?t=... |
72,797,526 | How to create a UINavigationControll in UIViewController programmatically Swift<p>I´m creating a multiScene app for iOS in Swift Storyboard.
I want to add a UINavigationController programmatically in UIViewController or if there is possible with storyboard, I have made a lot a research for this and I haven´t find anyth... | <p>Maybe have a look at "Showing and Hiding View Controllers" where some navigation concepts are explained: <a href="https://developer.apple.com/documentation/uikit/view_controllers/showing_and_hiding_view_controllers" rel="nofollow noreferrer">https://developer.apple.com/documentation/uikit/view_controllers/... | How to create a UINavigationControll in UIViewController programmatically Swift | ios|swift|uiviewcontroller|uinavigationcontroller | 1 | 53 | 2 | 72,799,556 | 72,799,556 | 0 | true | 2022-06-29T07:38:53.543Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to create a UINavigationControll in UIViewController programmatically Swift<p>I´m creating a multiScene app for iOS in Swift Storyboard.
I want to add a ... |
72,793,619 | Exchanging encrypted messages between python and swift<p>I need to have a python code and a swift code exchange encrypted message.</p>
<p>Here's what I tried:</p>
<ol>
<li>Fernet</li>
</ol>
<p>After a review of the options, I thought that a symetric key algorithm could work well.</p>
<p>In python (as usual), it is <a h... | <p>To start, we first need a way to create secure random values to generate the IV and keys. You can also generate the keys using CryptoKit's <code>SymmetricKey</code> and extract the data from them, but for now, I'll use this function.</p>
<pre class="lang-swift prettyprint-override"><code>extension Data {
static ... | Exchanging encrypted messages between python and swift | python|swift|encryption | 2 | 53 | 1 | 72,799,583 | 72,799,583 | 0 | true | 2022-06-28T22:04:42.850Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Exchanging encrypted messages between python and swift<p>I need to have a python code and a swift code exchange encrypted message.</p>
<p>Here's what I tried... |
72,802,282 | How can I pass field name of a class as parameter to include it in a String?<p>I'm wondering How can I pass field name of a class as parameter to include it in a String?</p>
<p>For example, let's say I have a class A with this members :</p>
<pre><code>public class A {
String name;
String reference;
....
}
</code></pr... | <p>This can be done by use of reflection in Java.
<a href="https://www.oracle.com/technical-resources/articles/java/javareflection.html#:%7E:text=Reflection%20is%20a%20feature%20in,its%20members%20and%20display%20them" rel="nofollow noreferrer">https://www.oracle.com/technical-resources/articles/java/javareflection.htm... | How can I pass field name of a class as parameter to include it in a String? | java|string|class|field | 0 | 53 | 1 | 72,802,556 | 72,802,556 | 0 | true | 2022-06-29T13:30:34.910Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How can I pass field name of a class as parameter to include it in a String?<p>I'm wondering How can I pass field name of a class as parameter to include it ... |
72,806,115 | Vue.js Buefy carousel, adding local images<p>I am unable to figure out how to add local images to buefy carousel. Is there something I am doing wrong? I have tried to modify template section to include b-image but no use. Thanks</p>
<p>Code:</p>
<pre><code><template>
<b-carousel>
<b-carousel-... | <p>b-image tag takes src as prop which you can use to render your image. Try modifying the b-image part to the below code</p>
<pre><code><b-image :src="carousel.image" />
</code></pre> | Vue.js Buefy carousel, adding local images | javascript|vue.js|carousel|buefy | 0 | 53 | 1 | 72,806,278 | 72,806,278 | 0 | true | 2022-06-29T18:18:38.083Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Vue.js Buefy carousel, adding local images<p>I am unable to figure out how to add local images to buefy carousel. Is there something I am doing wrong? I have... |
72,789,629 | Get last edited table if 2 table have the same columns parameters - mySQL<p>I have the following database :</p>
<div class="s-table-container">
<table class="s-table">
<thead>
<tr>
<th>Filename</th>
<th>Edited</th>
<th>PARAMETER1</th>
<th>PARAMETER2</th>
</tr>
</thead>
<tbody>
<tr>
<td>file1.csv</td>
<td>2022-06-08 17:... | <p>Try this...</p>
<pre><code>SELECT
filename,
edited,
parameter1,
parameter2
FROM (
SELECT
filename,
edited,
parameter1,
parameter2,
RANK() OVER (PARTITION BY parameter1, parameter2 ORDER BY edited DESC) file_rank
FROM
my_table as t2
) as t1 where file_rank = 1
</code></... | Get last edited table if 2 table have the same columns parameters - mySQL | mysql | 0 | 53 | 1 | 72,806,412 | 72,806,412 | 0 | true | 2022-06-28T15:52:19.633Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Get last edited table if 2 table have the same columns parameters - mySQL<p>I have the following database :</p>
<div class="s-table-container">
<table class=... |
72,807,407 | Powershell Script wont add $PSDefaultParameterValues to $profile<p>I'm writing a quick Powershell script to import modules and update some default parameters on various machines. I'm running into an issue where in my script when I add <code>$PSDefaultParameterValues</code> to the $profile it changes to <code>System.Ma... | <p>To add to <a href="https://stackoverflow.com/a/72807515/45375">tonypags' helpful answer</a>:</p>
<ul>
<li><p><em>Double</em>-quoted PowerShell strings (<code>"..."</code>) are <a href="https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_Quoting_Rules#double-quoted-strin... | Powershell Script wont add $PSDefaultParameterValues to $profile | powershell|profile|string-literals|string-interpolation|default-parameters | 1 | 53 | 2 | 72,808,304 | 72,808,304 | 0 | true | 2022-06-29T20:23:20.007Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Powershell Script wont add $PSDefaultParameterValues to $profile<p>I'm writing a quick Powershell script to import modules and update some default parameters... |
72,785,824 | Terraform Azure setup self hosted gateway hostname<p>How is it possible to provision Hostnames for self hosted gateways in Azure API Management? Terraform shows how to add a new gateway but not how to configure the hostname:</p>
<p><a href="https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources... | <p><a href="https://docs.microsoft.com/en-us/azure/api-management/api-management-howto-configure-custom-domain-gateway" rel="nofollow noreferrer">Custom domain name for a self-hosted API Management Gateway</a> is not yet supported in Terraform azurerm provider</p>
<p>Here is <a href="https://github.com/hashicorp/terraf... | Terraform Azure setup self hosted gateway hostname | azure|terraform|gateway|azure-rm|apim | 0 | 53 | 1 | 72,818,122 | 72,818,122 | 0 | true | 2022-06-28T11:45:37.117Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Terraform Azure setup self hosted gateway hostname<p>How is it possible to provision Hostnames for self hosted gateways in Azure API Management? Terraform sh... |
72,818,883 | how to make flexible div with css or typeciprt with angular?<p><div class="snippet" data-lang="js" data-hide="false" data-console="true" data-babel="false">
<div class="snippet-code">
<pre class="snippet-code-css lang-css prettyprint-override"><code>.resizable_div {
border:1px solid red;
white-space:nowrap;
widt... | <p>Thank you for your attention guys, this is how I found the solution</p>
<pre><code> resize: both;
overflow: auto;
direction: rtl;
float: right;
</code></pre> | how to make flexible div with css or typeciprt with angular? | html|css|angular|typescript | 0 | 53 | 2 | 72,821,192 | 72,821,192 | 0 | true | 2022-06-30T16:05:36.963Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
how to make flexible div with css or typeciprt with angular?<p><div class="snippet" data-lang="js" data-hide="false" data-console="true" data-babel="false">
... |
72,821,634 | Permanently change cloud function region<p>I know you can change the region of a function using the below method. Just wondering if there is a way to permanently set this to all functions so I dont have to do this to each function.</p>
<pre><code>exports.myStorageFunction = functions
.region('europe-west1')
.st... | <p>Because of the chaining builder pattern, you can do this:</p>
<pre><code>const euFunctions = functions.region('europe-west1');
exports.myFunction = euFunctions.storage.object().onFinalize(...);
</code></pre>
<p>and it will do what you expect!</p> | Permanently change cloud function region | firebase|google-cloud-functions | 0 | 53 | 2 | 72,822,210 | 72,822,210 | 0 | true | 2022-06-30T20:26:44.647Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Permanently change cloud function region<p>I know you can change the region of a function using the below method. Just wondering if there is a way to permane... |
72,816,251 | Android SeekBar - how to set increment step<p>I want to use <code>SeekBar</code> to pick time. I have startDate and endDate. Difference in time is set as <code>seekbar.max</code> (could be for example 850 minutes(int 850)). And I want to increment this progress by 15 minutes.</p>
<p>How can I setup that? I tried to set... | <p>As long as your max time is divisable by your increment without remainder, you could just set seekBar.max to the maximum number of increments.</p>
<pre class="lang-kt prettyprint-override"><code>interval = 15
seekBar.max = maxDurationInMins/interval
</code></pre>
<p>Whenever you now react on a progress change, multi... | Android SeekBar - how to set increment step | android|android-seekbar | 2 | 53 | 2 | 72,827,218 | 72,827,218 | 0 | true | 2022-06-30T12:57:37.913Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Android SeekBar - how to set increment step<p>I want to use <code>SeekBar</code> to pick time. I have startDate and endDate. Difference in time is set as <co... |
72,807,903 | Dimension mismatch in subset expression in JAGS<p>I am very new to in bayesian analysis and I was trying to practice with an example from tidytuesday (<a href="https://raw.githubusercontent.com/rfordatascience/tidytuesday/master/data/2022/2022-03-29/sports.csv" rel="nofollow noreferrer">https://raw.githubusercontent.co... | <p>The problem was that in your original code, you're subsetting a tibble using the <code>[</code> and unlike in a regular data frame, where it would turn that single column into a vector, the tibble remains a tibble with one variable. The error really states that instead of being a vector as you intend in the model... | Dimension mismatch in subset expression in JAGS | r|bayesian|jags | 1 | 53 | 1 | 72,830,943 | 72,830,943 | 0 | true | 2022-06-29T21:09:05.280Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Dimension mismatch in subset expression in JAGS<p>I am very new to in bayesian analysis and I was trying to practice with an example from tidytuesday (<a hre... |
72,835,744 | Is there any way to execute 2 infinite loops at the same time in python<p>im use speechrecognition, and tkinter, i have speech recognition in a inifinte loop, because i want them to recognize my voice all the time together with a GUI of tkinter, i need I need them to run in the same program since I want the gui to chan... | <p>you can use multithreading, you can visit this link to find out how to do that.</p>
<p><a href="https://www.geeksforgeeks.org/multithreading-python-set-1/" rel="nofollow noreferrer">https://www.geeksforgeeks.org/multithreading-python-set-1/</a></p> | Is there any way to execute 2 infinite loops at the same time in python | python|tkinter|tk | 0 | 53 | 2 | 72,835,801 | 72,835,801 | 0 | true | 2022-07-02T00:52:05.340Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Is there any way to execute 2 infinite loops at the same time in python<p>im use speechrecognition, and tkinter, i have speech recognition in a inifinte loop... |
72,840,838 | Does a Cassandra node get assigned a new token every time it restarts?<p>From my limited knowledge, Cassandra assigns a random token for every new node in the ring. The ring position is important because data is replicated in the SimpleStrategy according to the position. So what happens when the node restarts and wants... | <p>Cassandra nodes only get assigned a token when they join a cluster for the very first time.</p>
<p>When a node has bootstrapped successfully, it's allocated token is stored in the <code>system.local</code> table so it knows which token range(s) it owns when it is restarted. All the nodes also keep track of each othe... | Does a Cassandra node get assigned a new token every time it restarts? | cassandra|consistent-hashing | 1 | 53 | 1 | 72,843,509 | 72,843,509 | 0 | true | 2022-07-02T16:51:10.643Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Does a Cassandra node get assigned a new token every time it restarts?<p>From my limited knowledge, Cassandra assigns a random token for every new node in th... |
72,844,197 | I am confused with python versions<p>Hi I'm pretty new to coding world and I had a question about python versions.
I'm watching online lectures and Youtube videos and learned that python 3 is the newest version.
But codes that I am learning is what leetcode problems display as "python", not "python 3&quo... | <p>The first version in the Python3 lineage was released in 2008, so it is not entirely new any longer. Python3 was not compatible with the previous version of Python (i.e. Python2) and hence it became important to identify clearly whether you were considering the old version 2.x of Python or the new version 3.x. Nowad... | I am confused with python versions | python | 0 | 53 | 2 | 72,844,342 | 72,844,342 | 0 | true | 2022-07-03T05:52:00.533Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
I am confused with python versions<p>Hi I'm pretty new to coding world and I had a question about python versions.
I'm watching online lectures and Youtube v... |
72,844,723 | ModuleNotFoundError: No module named 'discord' or 'Python' error (in Atom)<p>Yes, I'm writing a discord bot. I'm beginner and at the very beginning, but I get to the point.
I have my code here and there, and I really doubt the problem is with the code. (please note if it is) But when I try to run this code, I'm doing 2... | <p>First of all, if you are new to python programming language, I strongly recommend you to use some kind of virtual environment to separate installed packages of different projects on your system. you could use venv, pipenv, or other virtual enviroments.
<a href="https://realpython.com/python-virtual-environments-a-pr... | ModuleNotFoundError: No module named 'discord' or 'Python' error (in Atom) | python|python-3.x|discord|bots | 0 | 53 | 2 | 72,845,520 | 72,845,520 | 0 | true | 2022-07-03T07:40:17.940Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
ModuleNotFoundError: No module named 'discord' or 'Python' error (in Atom)<p>Yes, I'm writing a discord bot. I'm beginner and at the very beginning, but I ge... |
72,845,410 | Why the ouput display the first line of the data in .txt?<p>Why the data only print for the second line only? Supposedly it will print all the data by columns right? Which line I made a mistake on this java programming?</p>
<p><strong>What I've done and won't work:</strong></p>
<ul>
<li>Put for(int i=0; i < cols.len... | <p>In Java, there are many ways to read a file, format its contents and write the formatted contents to another file but you seem to be mixing them all together.</p>
<p>The below code shows one way, which uses class <code>java.util.Scanner</code>.<br />
(Notes after the code.)</p>
<pre class="lang-java prettyprint-over... | Why the ouput display the first line of the data in .txt? | java|arrays|loops|oop | 0 | 53 | 1 | 72,845,799 | 72,845,799 | 0 | true | 2022-07-03T09:33:41.363Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Why the ouput display the first line of the data in .txt?<p>Why the data only print for the second line only? Supposedly it will print all the data by column... |
72,853,418 | Sending data to other page with bloc cubit<p>My problem is this. I created cubit for 2 different pages. When I am on the first page, I can fill the list inside the 2nd page and I can read it from the log. However, when I go to the second page, the list I filled in from the previous page is still empty.</p>
<blockquote>... | <p>Okey, now with your added information about your <code>FavoriteView</code> it is clear what the problem is.</p>
<p>In your <code>FavoriteView</code> you create a new cubit, which is not the same as you created in the <code>MultiBlocProvider</code>. That is why it is always empty on your <code>FavoriteView</code></p>... | Sending data to other page with bloc cubit | android|flutter|dart|bloc|cubit | 0 | 53 | 1 | 72,854,192 | 72,854,192 | 0 | true | 2022-07-04T07:56:19.770Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Sending data to other page with bloc cubit<p>My problem is this. I created cubit for 2 different pages. When I am on the first page, I can fill the list insi... |
72,828,748 | How to differentiate between files that need to be pulled in Git, and files that are committed locally and ready to be pushed<p>How do I determine which files in my local repository are committed and ready to be pushed, and which files have been pushed by someone else in the meantime and need to be pulled, once you've... | <p>I've finally figured out what I need to do.</p>
<p>After a 'git fetch', the following command shows both local and remote changes:</p>
<pre><code>$ git diff --stat --cached origin/Release_Candidate
AP4Configuration/ChangeLog.txt | 3 ++-
AP4Configuration/appsettings.json | 3 ++-
Local5.txt ... | How to differentiate between files that need to be pulled in Git, and files that are committed locally and ready to be pushed | git|push|diff|pull | -1 | 53 | 2 | 72,855,320 | 72,855,320 | 0 | true | 2022-07-01T11:42:52.700Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to differentiate between files that need to be pulled in Git, and files that are committed locally and ready to be pushed<p>How do I determine which file... |
72,861,746 | Combining Subjects without waiting for each to emit<p>I Have 4 Subjects that emit values on user Input</p>
<pre><code>this.combine$ = zip(
this.filterInputStore.selectedCurrenciesHandler,
this.filterInputStore.searchInputHandler,
this.filterInputStore.selectedTypesHandler,
this.filterInputStore.selectedPrivacyO... | <p>I believe both <code>merge</code> or <code>race</code> would work. I prefer <code>race</code> because the method indicate that you're waiting for the first observable to emit (and win the race!). Also, <code>race</code> will trigger only ONCE, so your <code>doSomething</code> won't get executed multiple times.</p> | Combining Subjects without waiting for each to emit | angular|typescript|rxjs | 1 | 53 | 1 | 72,863,444 | 72,863,444 | 0 | true | 2022-07-04T20:28:24.763Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Combining Subjects without waiting for each to emit<p>I Have 4 Subjects that emit values on user Input</p>
<pre><code>this.combine$ = zip(
this.filterInput... |
72,818,138 | Airflow webserver fails with NoneType error<p>I'm having trouble running Airflow on a local k8s (Minikube), using the official Helm chart.</p>
<p>This is my custom Dockerfile:</p>
<pre><code>FROM apache/airflow:2.3.1-python3.10
WORKDIR ${AIRFLOW_HOME}
USER airflow
COPY ./requirements.txt .
RUN pip install --upgrade p... | <p>Upgrading to Airflow 2.3.2 solved the issue.</p>
<p>Also, when doing tests with k8s, it's important to make sure that the docker tag that is set in the values.yaml is identical to the tag that was used when building the local docker image.</p>
<p>Note 2: don't mix <code>defaultAirflowTag</code> with <code>airflowVer... | Airflow webserver fails with NoneType error | airflow|kubernetes-helm | 0 | 53 | 1 | 72,864,859 | 72,864,859 | 0 | true | 2022-06-30T15:08:41.740Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Airflow webserver fails with NoneType error<p>I'm having trouble running Airflow on a local k8s (Minikube), using the official Helm chart.</p>
<p>This is my ... |
72,865,198 | Why Keyof makes object undefined and impossible to make a proper check<p>I have TS2532: Object is possibly 'undefined' when I try to find an object's value by dynamically selecting the key. For some reason, typescript doesn't allow me to check the values of the field and I'm not sure what the reason is. Check the code ... | <p>Your main problem comes from <code>age?</code>. It could be undefined and as such any access to a <code>EmployeeModel</code> via a key string could be undefined.</p>
<p>You have a few options here:</p>
<ol>
<li>define <code>age</code> as <code>number</code>: <code>age: number</code>, but I don't know how <code>calcu... | Why Keyof makes object undefined and impossible to make a proper check | javascript|reactjs|typescript | 1 | 53 | 1 | 72,865,345 | 72,865,345 | 0 | true | 2022-07-05T07:03:14.853Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Why Keyof makes object undefined and impossible to make a proper check<p>I have TS2532: Object is possibly 'undefined' when I try to find an object's value b... |
72,877,677 | Discord bot - how to update a JSON file live without restarting program?<p>I have made a discord bot that acts as a translator i.e. the user can type '!translate word', and the bot will respond with a translation of that word, based on the values in a JSON file. This works fine.</p>
<p>However, I have some issues with ... | <p>You should probably reread the file every time a new change has been made.</p>
<p>I don't use discord.py specifically, so please spare me if I miss some rule with async python programming.</p>
<pre class="lang-py prettyprint-override"><code>import json
def reloadJSON():
with open("your_data.json", &quo... | Discord bot - how to update a JSON file live without restarting program? | python|json|discord|discord.py|bots | -1 | 53 | 2 | 72,877,821 | 72,877,821 | 0 | true | 2022-07-06T03:34:41.733Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Discord bot - how to update a JSON file live without restarting program?<p>I have made a discord bot that acts as a translator i.e. the user can type '!trans... |
72,876,804 | How to make xsl using info from two xml files, when attribute values match?<p>I have two xml files, named 1.xml and 2.xml.
'1.xml' consists of two elements, aa and bb.
'bb' has three attributes: date, num and class.</p>
<p>'2.xml' has five elements, cc, dd> ee, ff and gg. Two of them got one attribute each: 'dd' (id... | <p>It looks like you want to</p>
<ul>
<li>convert every <code>bb</code> from <code>doc1.xml</code> into a <code>tr</code>,</li>
<li>put its <code>date</code> attribute into a <code>td</code>,</li>
<li>take the <code>bb</code> element's <code>num</code> attribute and look in <code>doc2.xml</code> for a <code>dd</code> w... | How to make xsl using info from two xml files, when attribute values match? | xml|xslt | 0 | 53 | 2 | 72,877,917 | 72,877,917 | 0 | true | 2022-07-06T00:32:09.913Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to make xsl using info from two xml files, when attribute values match?<p>I have two xml files, named 1.xml and 2.xml.
'1.xml' consists of two elements, ... |
72,878,110 | Adding subclass inheritance outside a class when instantiating<p>I want to add the inheritance of one or more classes to another class depending on specific requirements; rather than creating multiple subclasses by hand, I want to be able to custom build them on the fly.</p>
<p>For example, the primary class, that woul... | <p>I've managed to get the results I was after, although I appreciate that I did not explain the problem very well, and suspect this might be something of a hack.</p>
<p>At any rate, I hope this helps illustrate what it was I was trying to achieve, and I would be interested in hearing alternate approaches to this solut... | Adding subclass inheritance outside a class when instantiating | python|python-2.7|class|inheritance|subclass | 0 | 53 | 2 | 72,880,616 | 72,880,616 | 0 | true | 2022-07-06T04:55:17.103Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Adding subclass inheritance outside a class when instantiating<p>I want to add the inheritance of one or more classes to another class depending on specific ... |
72,831,690 | Why does my activity calls onCreate if opened from notification<p>I am building an Android app which should just open the app once its notifications are clicked.</p>
<pre><code> private void createNotificationChannel() {
// Create the NotificationChannel, but only on API 26+ because
// the Notificati... | <p>I changed my showNotification to this</p>
<pre><code>public void showNotification(String Title, String info){
int mNotificationId = 1;
final Intent notificationIntent = new Intent(MainActivity.this, MainActivity.class);
notificationIntent.setAction(Intent.ACTION_MAIN);
notificationIntent.addCategory... | Why does my activity calls onCreate if opened from notification | java|android | 1 | 53 | 2 | 72,886,408 | 72,886,408 | 0 | true | 2022-07-01T15:43:51.103Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Why does my activity calls onCreate if opened from notification<p>I am building an Android app which should just open the app once its notifications are clic... |
72,882,359 | Angular Jasmine - expect().toHaveBeenCalled() not working<p>if anyone can help me debug my unit test code I would appreciate it. Basically I'm attempting to test whether a couple of methods are invoked upon a button's click() event. They run fine on the actual app, but apparently not while testing:</p>
<pre><code>fit('... | <p>Two ideas for debugging:</p>
<ul>
<li>To see if sth is wrong about your spy setup: check if the method you expect to be called is actually called when you execute the test. E.g. put a console.log in that method, or put a breakpoint and run the test in debug mode.</li>
<li>Check if the element that you query via '.ca... | Angular Jasmine - expect().toHaveBeenCalled() not working | angular|unit-testing|jasmine|karma-jasmine | 1 | 53 | 1 | 72,886,507 | 72,886,507 | 0 | true | 2022-07-06T10:57:13.193Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Angular Jasmine - expect().toHaveBeenCalled() not working<p>if anyone can help me debug my unit test code I would appreciate it. Basically I'm attempting to ... |
72,885,617 | step function input issue<p>Hi my step function cdk code is something like this</p>
<pre><code>tasks.LambdaInvoke(self, "my_step_function",
lambda_function=my_lambda,
output_path="$.Payload",
... | <p>The <code>$$.</code> prefix refers to the execution's <a href="https://docs.aws.amazon.com/step-functions/latest/dg/input-output-contextobject.html" rel="nofollow noreferrer">Context Object</a>. It has no <code>Job</code> key. Perhaps you mean <code>$$.Execution.Id</code>? If <code>Job.Id</code> is part of your o... | step function input issue | python|amazon-web-services|boto3|aws-cdk | 0 | 53 | 1 | 72,888,586 | 72,888,586 | 0 | true | 2022-07-06T14:47:42.480Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
step function input issue<p>Hi my step function cdk code is something like this</p>
<pre><code>tasks.LambdaInvoke(self, "my_step_function",
... |
72,889,071 | Can't style my login form to be at the center with a beautiful card<p>I'm trying to make a login form like <a href="https://www.positronx.io/wp-content/uploads/2019/09/react-login-ui-6748-01.png" rel="nofollow noreferrer">This one</a> using <code>Bootstrap5</code>, but i can't, is anybody who can help me to make a logi... | <p>A few additional classes from their library and it looks like so. There is a class referenced called <code>font-weight-bold</code> that wasn't working, so I added that as CSS. I guess it depends on which version bootstrap you are using.</p>
<p><div class="snippet" data-lang="js" data-hide="false" data-console="true"... | Can't style my login form to be at the center with a beautiful card | html|css|bootstrap-5|bootstrap-cards | 0 | 53 | 2 | 72,889,394 | 72,889,394 | 0 | true | 2022-07-06T19:43:23.340Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Can't style my login form to be at the center with a beautiful card<p>I'm trying to make a login form like <a href="https://www.positronx.io/wp-content/uploa... |
72,883,651 | Element implicitly has an 'any' type because expression of type '"name"' can't be used to index type 'Object'<p>Element implicitly has an 'any' type because expression of type '"name"' can't be used to index type 'Object'.
<code>this.resto.getCurrentResto(this.router.snapshot.params['id']).subscribe((result)=... | <p>Keyword is <strong>implicitly</strong>. Typescript wants you to be <strong>explicit</strong> about using <code>any</code>.</p>
<pre class="lang-js prettyprint-override"><code>this.resto.getCurrentResto(this.router.snapshot.params['id']).subscribe((result: any)=> { ... }
</code></pre>
<p>You will have to do the sa... | Element implicitly has an 'any' type because expression of type '"name"' can't be used to index type 'Object' | angular | -1 | 53 | 1 | 72,891,804 | 72,891,804 | 0 | true | 2022-07-06T12:34:07.130Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Element implicitly has an 'any' type because expression of type '"name"' can't be used to index type 'Object'<p>Element implicitly has an 'any' type because ... |
72,895,725 | Blank Video Player<p>i have a code that im trying to set up but no matter wat its a Blank white page any idea what i may have wrong in the set up causing it not to show up? and any help fixing it owuld be amazing</p>
<pre class="lang-html prettyprint-override"><code> <script type="text/javascript" s... | <p>your html is a mess, you not actually loading a video, you are missing setting the playlist to an actual video URL, to help you out here is a very basic example of what your after:</p>
<p><div class="snippet" data-lang="js" data-hide="false" data-console="true" data-babel="false">
<div class="snippet-code">
<pre cla... | Blank Video Player | javascript|html|jquery|jwplayer | 0 | 53 | 1 | 72,897,596 | 72,897,596 | 0 | true | 2022-07-07T09:50:07.317Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Blank Video Player<p>i have a code that im trying to set up but no matter wat its a Blank white page any idea what i may have wrong in the set up causing it ... |
72,368,796 | How can I login to a website with username and password using curl?<p>I want to update the IP Address from my DynDNS via curl. For that i need to ping a website with my username and my password. <a href="https://i.stack.imgur.com/OWRG0.png" rel="nofollow noreferrer">Here a screenshot from the login screen</a>. How can ... | <p>I found it...</p>
<pre class="lang-bash prettyprint-override"><code>curl -s --user USER:PASSWORD URL
</code></pre> | How can I login to a website with username and password using curl? | curl | 0 | 53 | 1 | 72,905,296 | 72,905,296 | 0 | true | 2022-05-24T19:56:54.900Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How can I login to a website with username and password using curl?<p>I want to update the IP Address from my DynDNS via curl. For that i need to ping a webs... |
72,907,459 | Converting a Spark Dataframe to a Scala Map collection list<p>I'm trying to transform a Spark dataframe into a Scalar map and additionally a list of values.</p>
<p>It is best illustrated as follows:</p>
<pre><code>val df = sqlContext.read.json("examples/src/main/resources/people.json")
df.show()
+----+-------... | <p>The data structure you want is actually useless. Let me explain what I mean by asking 2 questions:</p>
<ul>
<li>
<ol>
<li>What is the purpose of the integers of the outside map? are those indices? What is the logic of those indices? If those are indices, why not just use <code>Array</code>?</li>
</ol>
</li>
<li>
<ol... | Converting a Spark Dataframe to a Scala Map collection list | dataframe|scala|apache-spark | 0 | 53 | 1 | 72,909,821 | 72,909,821 | 0 | true | 2022-07-08T06:27:45.023Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Converting a Spark Dataframe to a Scala Map collection list<p>I'm trying to transform a Spark dataframe into a Scalar map and additionally a list of values.<... |
72,914,661 | Using audioplayers to play a single note from a button<p>I am doing an outdated tutorial on the audioplayers package and just trying to play a single note from when the button is pressed. I am not able to get it to work, can someone please help</p>
<pre><code>import 'package:flutter/material.dart';
import 'package:aud... | <p>Finally found the fix, the problem all had to do with the new version of audioplayers having all the functions in one class without having to import seperatly audiocache</p>
<pre><code>onPressed: () {
final player = AudioPlayer();
player.play(AssetSource("note1.wav"));
}
</code></pre> | Using audioplayers to play a single note from a button | flutter|dart | 0 | 53 | 2 | 72,917,549 | 72,917,549 | 0 | true | 2022-07-08T16:56:55.537Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Using audioplayers to play a single note from a button<p>I am doing an outdated tutorial on the audioplayers package and just trying to play a single note fr... |
72,914,310 | Syntax error during jsonendecode() in Terraform<p>here's my first bootle to the sea.</p>
<p>I want to create one single secret manager that contains a map of 3 passwords with Terraform IAC.
To do that, I have tried to create a aws_secretmanager_version with</p>
<pre><code>resource "aws_secretsmanager_secret" ... | <p>This error is saying that your string in <code>data.aws_secretsmanager_secret_version.secrets.secret_string</code> does not have valid JSON syntax.</p>
<p>I have to assume that <code>data.aws_secretsmanager_secret_version.secrets.secret_string</code> is the same as <code>aws_secretsmanager_secret_version.sversion.se... | Syntax error during jsonendecode() in Terraform | json|amazon-web-services|dictionary|terraform|aws-secrets-manager | 0 | 53 | 1 | 72,918,025 | 72,918,025 | 0 | true | 2022-07-08T16:23:08.060Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Syntax error during jsonendecode() in Terraform<p>here's my first bootle to the sea.</p>
<p>I want to create one single secret manager that contains a map of... |
72,913,285 | Can I use Yaml based files in frontend (browser)<p>I'm trying to use yaml-based files as resources for i18next in my react project,
is there is any way to do that without using packages such as js-yaml...?</p> | <p>Only i18next-fs-backend has this in-built: <a href="https://github.com/i18next/i18next-fs-backend" rel="nofollow noreferrer">https://github.com/i18next/i18next-fs-backend</a></p> | Can I use Yaml based files in frontend (browser) | reactjs|react-native|browser|yaml | 0 | 53 | 1 | 72,920,172 | 72,920,172 | 0 | true | 2022-07-08T14:55:42.467Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Can I use Yaml based files in frontend (browser)<p>I'm trying to use yaml-based files as resources for i18next in my react project,
is there is any way to do... |
72,920,391 | How to find the photon view id?<p>I'm developing my first multiplayer game using photon and I should find the user's photon view id via script how can I do this. Thanks.</p> | <p>You should at least check the documentation or else you will be popping questions here every 3 min. Here you go:</p>
<p><a href="https://doc-api.photonengine.com/en/pun/v2/class_photon_1_1_pun_1_1_photon_view.html" rel="nofollow noreferrer">https://doc-api.photonengine.com/en/pun/v2/class_photon_1_1_pun_1_1_photon_v... | How to find the photon view id? | c#|unity3d|multiplayer|photon | -2 | 53 | 1 | 72,920,678 | 72,920,678 | 0 | true | 2022-07-09T09:48:31.557Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to find the photon view id?<p>I'm developing my first multiplayer game using photon and I should find the user's photon view id via script how can I do t... |
72,864,227 | Prometheus Query to aggregate metrics by certain label values<p>I have my metrics exposed by Prometheus as:</p>
<pre><code>custom_metric{label1="abc", label2="xyz"} num1
custom_metric{label1="def", label2="uvw"} num2
custom_metric{label1="ghi", label2="rst"} n... | <p>Try the following query:</p>
<pre><code>sum(custom_metric{label1=~"abc|def|jkl"})
</code></pre>
<p>It works in the following way:</p>
<ol>
<li>It selects time series matching label selector <code>custom_metric{label1=~"abc|def|jkl"}</code> - see <a href="https://prometheus.io/docs/prometheus/late... | Prometheus Query to aggregate metrics by certain label values | prometheus | 0 | 53 | 1 | 72,927,144 | 72,927,144 | 0 | true | 2022-07-05T05:04:29.437Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Prometheus Query to aggregate metrics by certain label values<p>I have my metrics exposed by Prometheus as:</p>
<pre><code>custom_metric{label1="abc&quo... |
72,938,284 | Blazor Custom Control Validation<p>I have created some custom input controls that do not use a input tag to gather user input. For example, a directory locator for Blazor desktop. I understand how Blazor does normal form validation via the edit form. But this approach is dependent on you having some type of input tag f... | <p>Here's a starting point. I've removed the Browser stuff and just toggle the string between empty and a value as a demo.</p>
<p>This inherits from <code>InputBase<T></code> which is a template that doesn't actually have an <code>input</code>.</p>
<p>All you do is:</p>
<ol>
<li>Wire up setting <code>CurrentValu... | Blazor Custom Control Validation | c#|blazor | 0 | 53 | 1 | 72,939,951 | 72,939,951 | 0 | true | 2022-07-11T12:03:06.570Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Blazor Custom Control Validation<p>I have created some custom input controls that do not use a input tag to gather user input. For example, a directory locat... |
72,942,236 | AWS SNS , two lambda subscription problem<ol>
<li><p>How to use same sns for two lambda from code point of view. Should I check for the filter in the event body and ask the particular lambda to act if it matches?</p>
</li>
<li><p>How does the subscription work? whn two subscribers are there how does the sns know what i... | <p>You should create two subscriptions, one for each Lambda, and add a subscription filter so the corresponding Lambda is triggered for the adequate message.</p>
<p>Check the docs about Subscription filter policy: <a href="https://docs.aws.amazon.com/sns/latest/dg/sns-message-filtering.html#message-filtering-example-po... | AWS SNS , two lambda subscription problem | python|amazon-web-services|aws-lambda|boto3|amazon-sns | 0 | 53 | 1 | 72,942,320 | 72,942,320 | 0 | true | 2022-07-11T17:10:37.273Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
AWS SNS , two lambda subscription problem<ol>
<li><p>How to use same sns for two lambda from code point of view. Should I check for the filter in the event b... |
72,916,992 | Swift: How do I prevent users from navigating back to the root viewController when they are not authenticated?<p>I have a root viewController that is the main viewController that users can navigate to when they have been authenticated. Right now, when the app loads the root viewController, it checks if the user is logg... | <p>For anyone struggling with navigation flow for authentication in iOS this is what worked for me.</p>
<p>With iOS 13 and later, authentication code should go in SceneDelegate instead of AppDelegate like this:</p>
<pre><code>func scene(_ scene: UIScene, willConnectTo session: UISceneSession, options connectionOptions:... | Swift: How do I prevent users from navigating back to the root viewController when they are not authenticated? | ios|swift|authentication|navigation|storyboard | 0 | 53 | 1 | 72,942,688 | 72,942,688 | 0 | true | 2022-07-08T21:07:02.823Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Swift: How do I prevent users from navigating back to the root viewController when they are not authenticated?<p>I have a root viewController that is the mai... |
72,914,569 | updating matrix value when meets conditions in a dataframe in R<p>I've never posted on here before, but I figured I would give it a shot..</p>
<p>I've spent some time googling, and can't find exactly what I am looking for... I have a data frame like this:</p>
<pre><code>df <- structure(list(response = c("Topic1... | <p>Here's an approach using <code>expand.grid</code> to find all combinations. I've initialized the matrix with <code>0</code>'s rather than <code>NA</code>'s, as <code>NA + 1 = NA</code>.</p>
<pre class="lang-r prettyprint-override"><code>mymatrix <- matrix(0, nrow = 50, ncol = 50)
numbers <- as.numeric(gsub(&q... | updating matrix value when meets conditions in a dataframe in R | r | 0 | 53 | 2 | 72,944,912 | 72,944,912 | 0 | true | 2022-07-08T16:48:10.867Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
updating matrix value when meets conditions in a dataframe in R<p>I've never posted on here before, but I figured I would give it a shot..</p>
<p>I've spent ... |
72,945,537 | Why does this work? Shouldn't it return the smallest value?<p>I have this loop that I wrote to find the smallest number in an arbutrary list:</p>
<pre><code>arbitrary=[44,999,20,55,13,21]
smallest=None
for i in arbitrary:
if smallest is None:
smallest=i
elif smallest>i:
smallest=i
print(smallest)
</code></pr... | <p>In plain english what your elif statement is saying is that IF the smallest number in that iteration of the loop is BIGGER than the i-value then it is no longer the smallest number. This gets replaced by the i value. using a print statement in the loop can help you troubleshoot to understand what's happening.</p>
<p... | Why does this work? Shouldn't it return the smallest value? | python|loops | -1 | 53 | 3 | 72,945,606 | 72,945,606 | 0 | true | 2022-07-11T23:15:31.440Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Why does this work? Shouldn't it return the smallest value?<p>I have this loop that I wrote to find the smallest number in an arbutrary list:</p>
<pre><code>... |
72,946,160 | Issue: DiscordJS App crashes when a command is run multiple times in a row<p>I have been playing around with the Slash Commands options that DiscordJS added in V13. I have created my command and event handlers, and everything boots up just fine.</p>
<p>The current behavior is:</p>
<p>1.) Boots up with no problem. All c... | <p>Ok after a few tests, I find where's the problem.
You just listen to the event again for every <code>interactionCreate</code> fired.</p>
<p>So first it won't respond. And listen for a new <code>interactionCreate</code> event.</p>
<h1>Before</h1>
<pre><code>module.exports = {
name: 'interactionCreate',
execut... | Issue: DiscordJS App crashes when a command is run multiple times in a row | javascript|discord|discord.js | 0 | 53 | 1 | 72,946,318 | 72,946,318 | 0 | true | 2022-07-12T01:32:14.687Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Issue: DiscordJS App crashes when a command is run multiple times in a row<p>I have been playing around with the Slash Commands options that DiscordJS added ... |
72,945,964 | How to create a plotly bar and line chart combined?<p>I am using</p>
<pre><code>fig = px.line(df, x='date', y='var1')
fig.show()
</code></pre>
<p>But I want to add</p>
<pre><code>fig = px.bar(df, x='date', y='var2')
fig.show()
</code></pre>
<p><a href="https://i.stack.imgur.com/7vAeB.png" rel="nofollow noreferrer"><img... | <p>I think you should use <code>fig.add_trace</code> in this case.Please refer below code:</p>
<pre><code>import pandas as pd
import plotly.graph_objects as go
df = pd.DataFrame({
'date': ['2022-01-07','2022-02-07','2022-03-07','2022-04-07','2022-05-07','2022-06-07','2022-07-07','2022-08-07'],
'var1': [5,7,2,4... | How to create a plotly bar and line chart combined? | python|plotly | 0 | 53 | 1 | 72,946,360 | 72,946,360 | 0 | true | 2022-07-12T00:45:27.383Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to create a plotly bar and line chart combined?<p>I am using</p>
<pre><code>fig = px.line(df, x='date', y='var1')
fig.show()
</code></pre>
<p>But I want ... |
72,940,288 | Finding the exact match in the values in the categorical variables<p>I wanted to find an exact match in the values between all three columns (rg1,rg2,rg3).Below is my dataframe.</p>
<p><a href="https://i.stack.imgur.com/I88wF.png" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/I88wF.png" alt="enter image... | <p>You can sort across the columns, then look for duplicates.</p>
<pre class="lang-r prettyprint-override"><code>set.seed(1234)
df <- tibble(Userids = 1:20,
rg_1 = sample(1:20, 20, TRUE),
rg_2 = sample(1:20, 20, TRUE),
rg_3 = sample(1:20, 20, TRUE))
df[4, -1] <- rev(df[15... | Finding the exact match in the values in the categorical variables | r|cluster-analysis|categorical-data|exact-match | 1 | 53 | 3 | 72,953,636 | 72,953,636 | 0 | true | 2022-07-11T14:37:30.983Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Finding the exact match in the values in the categorical variables<p>I wanted to find an exact match in the values between all three columns (rg1,rg2,rg3).Be... |
72,962,727 | How do i make my div square responsive to clicks<p><div class="snippet" data-lang="js" data-hide="false" data-console="true" data-babel="false">
<div class="snippet-code">
<pre class="snippet-code-js lang-js prettyprint-override"><code>let container =
document.getElementById('container');
function getGrid(gridNumber... | <p><a href="https://dmitripavlutin.com/javascript-event-delegation/" rel="nofollow noreferrer">Event delegation</a> is the best solution for this. Instead of adding listeners to all the grid squares add <em>one</em> to the parent element and have that watch for events from its child elements as they "bubble up&quo... | How do i make my div square responsive to clicks | javascript|dom|events | 0 | 53 | 4 | 72,963,198 | 72,963,198 | 0 | true | 2022-07-13T07:54:20.690Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How do i make my div square responsive to clicks<p><div class="snippet" data-lang="js" data-hide="false" data-console="true" data-babel="false">
<div class="... |
72,941,831 | Log4j config to filter logs to multiple files<p>I am trying to route specific logs to different files based on a pattern within the log using Log4j 1.2.17 on a JDK1.6 application. I found that the solution mentioned on posts <a href="https://stackoverflow.com/questions/7404435/conditional-logging-with-log4j#:%7E:text=A... | <p>I ended up creating custom filter for console and logs to divert the log stream based on MDC map value, and this solved the filtering problem. This idea came from @KC Baltz from this <a href="https://stackoverflow.com/questions/7404435/conditional-logging-with-log4j?noredirect=1&lq=1#:%7E:text=Matthew%20Farwell%... | Log4j config to filter logs to multiple files | java|log4j | 0 | 53 | 1 | 72,964,052 | 72,964,052 | 0 | true | 2022-07-11T16:36:52.043Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Log4j config to filter logs to multiple files<p>I am trying to route specific logs to different files based on a pattern within the log using Log4j 1.2.17 on... |
72,964,605 | How to yield span value in Cypress, so it can be compared later<p>I want to compare two different variables in Cypress, and expect them to be equal using:
<code>expect(var1).equal(var2)</code>, however I'm not able to properly gather span value from it, as in example of HTML below.</p>
<p><strong>HTML</strong></p>
<pre... | <p>You can do like this. Save the inner text in an alias and then later extract it and compare it with the element 2.</p>
<pre class="lang-js prettyprint-override"><code>cy.get('a.cat-results-url span').invoke('text').as('titleText')
cy.get('@titleText').then((titleText) => {
cy.get('selector').should('have.text'... | How to yield span value in Cypress, so it can be compared later | javascript|testing|cypress | 0 | 53 | 1 | 72,964,749 | 72,964,749 | 0 | true | 2022-07-13T10:17:13.313Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to yield span value in Cypress, so it can be compared later<p>I want to compare two different variables in Cypress, and expect them to be equal using:
<c... |
72,964,555 | How to make Unity gravity and AddForce accelerate<p>I'm making a clone of Hollow Knight, and my character is falling at a constant rate instead of accelerating. I tried changing the gravity scale and using Addforce instead of rigidbody gravity.</p>
<p>This is the code I tried for the gravity</p>
<pre><code>public Rigid... | <p>I've done a lot of testing and it doesn't seem like what you say is true.
In a new project, I simply created a rigidbody2D gameobject and added this script to it.</p>
<pre><code>public void Start()
{
StartCoroutine(PrintDistance());
}
IEnumerator PrintDistance()
{
float p = 0;
for (; ; )
{
p... | How to make Unity gravity and AddForce accelerate | c#|unity3d | -1 | 53 | 1 | 72,966,459 | 72,966,459 | 0 | true | 2022-07-13T10:12:35.913Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to make Unity gravity and AddForce accelerate<p>I'm making a clone of Hollow Knight, and my character is falling at a constant rate instead of accelerati... |
72,960,937 | Can I write to a buffer in separated indices from multiple threads?<p>I have several threads that write data to the same buffer at the same time, but each one of them is writing to another range of indices in this buffer.</p>
<p>For example Thread1 is writing data only to indices 0-1000, Thread2 write only to indices 1... | <p>Yes, writing to a shared array from multiple threads in parallel, where each thread is writing to an exclusive part of the array, is thread-safe. This means that the array will not get corrupted during the write operation, and the written data will be preserved correctly (they will not get <a href="http://joeduffybl... | Can I write to a buffer in separated indices from multiple threads? | c#|multithreading|thread-safety|buffer|indices | 1 | 53 | 1 | 72,966,994 | 72,966,994 | 0 | true | 2022-07-13T04:24:35.157Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Can I write to a buffer in separated indices from multiple threads?<p>I have several threads that write data to the same buffer at the same time, but each on... |
72,965,095 | Screen scroll not starting from beginning - Flutter<p>I am helping contribute a code and am stuck on a scrolling bug in flutter.
The screen when opened is started from the Google Maps widget
<a href="https://i.stack.imgur.com/R1vpX.jpg" rel="nofollow noreferrer"> like this</a></p>
<p>But when I hold the screen and scro... | <p>I haven't executed your code because it depends on lot of your other files but from reading your code I think the problem is occurring because of <a href="https://api.flutter.dev/flutter/material/Scaffold/extendBodyBehindAppBar.html" rel="nofollow noreferrer"><code>extendBodyBehindAppBar</code></a> of <code>Scaffold... | Screen scroll not starting from beginning - Flutter | flutter|user-interface|scroll|scrollbar|singlechildscrollview | 0 | 53 | 1 | 72,972,068 | 72,972,068 | 0 | true | 2022-07-13T10:53:44.740Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Screen scroll not starting from beginning - Flutter<p>I am helping contribute a code and am stuck on a scrolling bug in flutter.
The screen when opened is st... |
72,972,819 | How to include an MS Access DB on the startup path of the setup file of ClickOnce and call it with the app.exe<p>I built an app in VB.NET integrated with an Access DB.
Before deploying the app, I had the standard structure of a Windows Forms project with the bin/Debug folders and the EXE file with the DB file.</p>
<p>N... | <p>Your connection string is wrong. DO NOT do this:</p>
<pre class="lang-vb prettyprint-override"><code>"Provider=Microsoft.ACE.OLEDB.12.0; Data source=" & Application.StartupPath & "/database.accdb"
</code></pre>
<p>Do this:</p>
<pre class="lang-vb prettyprint-override"><code>"Provider... | How to include an MS Access DB on the startup path of the setup file of ClickOnce and call it with the app.exe | vb.net|clickonce|visual-studio-2022|dbaccess | 0 | 53 | 1 | 72,975,068 | 72,975,068 | 0 | true | 2022-07-13T21:26:49.123Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to include an MS Access DB on the startup path of the setup file of ClickOnce and call it with the app.exe<p>I built an app in VB.NET integrated with an ... |
72,831,252 | Tensorflow - Dense and Convolutional layers connection<p>I'm new to Deep Learning and I can't find anywhere how to do the bottleneck in my AE with convolutional and dense layers. The code below is the specific part where I'm struggling:</p>
<pre><code>...
encoded = Conv2D(8, (3, 3), activation='relu', padding='same')(e... | <p><code>Convolution2D</code> takes the input of a <code>4+ Dimension tensor</code>, hence you need to reshape the input before passing it to Convolution2D layer. You can use a model like below.</p>
<pre><code>input_img = Input(shape=(784,))
input_img1 = Reshape(target_shape=(28,28,1))(input_img)
encoded = Convolution2... | Tensorflow - Dense and Convolutional layers connection | python|tensorflow|conv-neural-network | 0 | 53 | 1 | 72,976,664 | 72,976,664 | 0 | true | 2022-07-01T15:07:37.013Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Tensorflow - Dense and Convolutional layers connection<p>I'm new to Deep Learning and I can't find anywhere how to do the bottleneck in my AE with convolutio... |
72,980,816 | How to find the next row that have a value in column in a dataframe pandas?<p>I have a dataframe such as:</p>
<pre><code>id info date group label
1 aa 02/05 1 7
2 ba 02/05 1 8
3 cp 09/05 2 7
4 dd 09/05 2 8
5 ... | <p>Welcome to SO. Its good if you include what you have tried so far so keep that in mind. Anyhow for this question, breakdown your thought process into pandas syntax. Like first step would be to check what <code>group</code> do not have which <code>label</code> from <code>[8,9]</code>:</p>
<pre><code>dfs = df.groupby(... | How to find the next row that have a value in column in a dataframe pandas? | python|pandas|dataframe|loops | 0 | 53 | 1 | 72,981,650 | 72,981,650 | 0 | true | 2022-07-14T12:50:26.213Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to find the next row that have a value in column in a dataframe pandas?<p>I have a dataframe such as:</p>
<pre><code>id info date group lab... |
72,994,525 | Class conflict with same table name annotation in entity framework<p>I'm developing an ASP NET application, but I'm having a problem with the Entity Framework.</p>
<p>In my application I use 2 different databases at the same time, the problem comes when both databases have the same table name.</p>
<p>Example:
<a href="... | <p>You've added them to the same Context this will cause EF to think that they are actually the same type, which they are not.</p>
<p>You should create a separate Context class per database and only add the DbSet in the Context class in which it belongs.</p>
<p>Like this (if left out everything else for readability's s... | Class conflict with same table name annotation in entity framework | asp.net|.net|api|entity-framework-core | 0 | 53 | 1 | 72,994,694 | 72,994,694 | 0 | true | 2022-07-15T13:09:53.567Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Class conflict with same table name annotation in entity framework<p>I'm developing an ASP NET application, but I'm having a problem with the Entity Framewor... |
72,990,107 | RabbitMQ - Sender wait for the receiver ack<p>I have a simple question but I can't find an answer for that:</p>
<p>In a RabbitMQ queue, with multiple consumers and a single publisher, is it possible for the publisher to stop sending messages to the other consumers until the first one process the message and send the ac... | <blockquote>
<p>is it possible for the publisher to stop sending messages to the other consumers until the first one process the message and send the ack to the publisher?</p>
</blockquote>
<p>Yes. Here is one way:</p>
<ul>
<li>Declare three queues: q1, q1-reply, q2</li>
<li>Consumer C1 consumes from q1, other consumer... | RabbitMQ - Sender wait for the receiver ack | c#|.net|rabbitmq | 0 | 53 | 1 | 72,996,804 | 72,996,804 | 0 | true | 2022-07-15T06:56:05Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
RabbitMQ - Sender wait for the receiver ack<p>I have a simple question but I can't find an answer for that:</p>
<p>In a RabbitMQ queue, with multiple consume... |
72,998,692 | How do I convert date format to integer in python?<p>I'm trying to convert these dates to the number type, but I'm not able to do it.<br />
Input:</p>
<pre><code>import pandas as pd
import datetime as dt
new_df = { 'date': [ '20/08/2008', '21/08/2008','22/08/2008' ], 'valor': ['a','b','c'] }
pd.DataFrame(new_df)
</co... | <p>Assuming (wild guess), that you want the number of days since 1899-12-30, you could use:</p>
<pre><code>df['diff'] = (pd.to_datetime(df['date'], dayfirst=True)
-pd.Timestamp('1899-12-30')).dt.days
</code></pre>
<p>Output:</p>
<pre><code> date valor diff
0 20/08/2008 a 39680
1 21/08/2008... | How do I convert date format to integer in python? | python|pandas | 1 | 53 | 1 | 72,998,947 | 72,998,947 | 0 | true | 2022-07-15T19:15:34.983Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How do I convert date format to integer in python?<p>I'm trying to convert these dates to the number type, but I'm not able to do it.<br />
Input:</p>
<pre><... |
73,002,557 | Unity 3d error CS1526: A new expression requires an argument list or (), [], or {} after type<pre><code>List<ParticleCollisionEvent> colEvents = new List<ParticleCollisionEvent>;
</code></pre>
<p>Does anybody know what I'm doing wrong please tell me.</p> | <pre><code>List<ParticleCollisionEvent> colEvents = new List<ParticleCollisionEvent>();
</code></pre>
<p>this is a correct☻</p> | Unity 3d error CS1526: A new expression requires an argument list or (), [], or {} after type | c#|unity3d|compiler-errors | -2 | 53 | 1 | 73,003,973 | 73,003,973 | 0 | true | 2022-07-16T08:00:18.710Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Unity 3d error CS1526: A new expression requires an argument list or (), [], or {} after type<pre><code>List<ParticleCollisionEvent> colEvents = new Li... |
73,000,105 | @RefreshScope Annotation return an empty data<p>I Was following this tutorial on <a href="https://youtu.be/Fq85GschdLw?t=1536" rel="nofollow noreferrer">YouTube</a> I have been able to successfully run the config server where I host two properties files here <a href="https://github.com/waploaj/Microservice-cloud-config... | <p>The tutorial in youtube uses the default naming convetion but you probably have changed it and now spring cloud config server does not know which property file expects your service to have.</p>
<p>In cloud config server the file is saved as <code>product.properties</code>.</p>
<p>For this reason if your client servi... | @RefreshScope Annotation return an empty data | java|spring|spring-boot|microservices | 0 | 53 | 1 | 73,005,349 | 73,005,349 | 0 | true | 2022-07-15T22:20:42.967Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
@RefreshScope Annotation return an empty data<p>I Was following this tutorial on <a href="https://youtu.be/Fq85GschdLw?t=1536" rel="nofollow noreferrer">YouT... |
72,999,280 | How to display values of "parameters" and "localparaters" in gtkwave iverilog simulation?<p>Gtkwave is displaying all the registers and signal values in the simulation using iverilog, but I can not find a way to display the parameters and localparameter values. Any advice?</p> | <p>iverilog VCD(<strong>V</strong>alue <strong>C</strong>hange <strong>D</strong>ump) currently only supports signals that change change values. This is being worked on as enhancement to masquerade parameters as signals at time 0. <a href="https://github.com/steveicarus/iverilog/pull/714" rel="nofollow noreferrer">htt... | How to display values of "parameters" and "localparaters" in gtkwave iverilog simulation? | verilog|iverilog|gtkwave | 0 | 53 | 1 | 73,005,815 | 73,005,815 | 0 | true | 2022-07-15T20:26:29.583Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to display values of "parameters" and "localparaters" in gtkwave iverilog simulation?<p>Gtkwave is displaying all the registers and signal values in the ... |
73,016,251 | React - All of the states of OnFocus work at the same time<p>I'm having a problem while constructing signup page.</p>
<p>Specifically, i intended to make the form validation check function when i clicked the each input only.</p>
<p>However, it works all of the inputs together.</p>
<p>Could anyone let me know where to c... | <p>I believe the most comprehensive solution to this problem is as follows:</p>
<p>Have a isValid state for each form input.</p>
<p>Have the validation check function sets the isValid state for all inputs.</p>
<p>I have an example of a form component that you can use as a reference although it is implemented in typescr... | React - All of the states of OnFocus work at the same time | javascript|node.js|reactjs|react-hooks | 0 | 53 | 1 | 73,016,463 | 73,016,463 | 0 | true | 2022-07-18T00:22:09.013Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
React - All of the states of OnFocus work at the same time<p>I'm having a problem while constructing signup page.</p>
<p>Specifically, i intended to make the... |
73,002,542 | Filter Azure function logs using NLog<p>I'm trying to set up NLog to work with my Azure durable function (v4).</p>
<p>The NLog does configuration progromatically (not using config file) and writes to an Azure DB target via a sp.</p>
<p>It is working well in general. But there are lots of undesired logs both of debug an... | <p>NLog evaluates the <a href="https://github.com/NLog/NLog/wiki/Configuration-file#rules" rel="nofollow noreferrer">LoggingRules</a> from top to bottom. This means global filters should be added first, and having the actual targets at the very end.</p>
<pre class="lang-cs prettyprint-override"><code>var myTarget = new... | Filter Azure function logs using NLog | azure|azure-functions|nlog | 1 | 53 | 1 | 73,025,789 | 73,025,789 | 0 | true | 2022-07-16T07:57:47.050Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Filter Azure function logs using NLog<p>I'm trying to set up NLog to work with my Azure durable function (v4).</p>
<p>The NLog does configuration progromatic... |
73,030,793 | Css width transition with click event<p>I want when I click the menu button, it would expand the <code>width</code> to 300px with smooth transition in 0.5 second but it doesn't work.</p>
<p><div class="snippet" data-lang="js" data-hide="false" data-console="true" data-babel="false">
<div class="snippet-code">
<pre clas... | <p>If you want to use <code>width transition</code> you have to add a width in your class 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-js lang-js prettyprint-override"><code>var menu = document.querySe... | Css width transition with click event | javascript|html|css|transition | 0 | 53 | 1 | 73,031,041 | 73,031,041 | 0 | true | 2022-07-19T03:33:22.917Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Css width transition with click event<p>I want when I click the menu button, it would expand the <code>width</code> to 300px with smooth transition in 0.5 se... |
72,990,846 | ACI not receiving UDP communication<p>I wanted to have a container hosted in Azure Container Instance listening to incoming logs on UDP port. I have developed docker image which works locally and in my company's internal network. Wanted to test it in Azure, but I'm not receiving any packets... But when I checked UDP co... | <p>After couple days I checked the communication again and the container receives messages. Everything seems to work fine. Looks like it was some Azure unavailability...
My configuration was correct. Problem solved.</p> | ACI not receiving UDP communication | .net|azure|udp|azure-container-instances | 0 | 53 | 1 | 73,036,553 | 73,036,553 | 0 | true | 2022-07-15T08:01:51.997Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
ACI not receiving UDP communication<p>I wanted to have a container hosted in Azure Container Instance listening to incoming logs on UDP port. I have develope... |
72,811,591 | Install Packages in Custom Feed Using a .txt File<p>I want to be able to install packages that exist in an Azure Artifacts feed.</p>
<p>I know this can be done using a command similar to this,</p>
<pre><code>pip install <package-name> --extra-index-url https://<feed-name>:<DEVOPS_TOKEN>@pkgs.dev.azure... | <p>The only way I got this to work is by including the <code>--extra-index-url</code> argument at the top of my <code>requirements.txt</code> file.</p>
<p>If I am to borrow from the answer @sachin has posted, it needed to be like this,</p>
<pre><code>--extra-index-url https://:@pkgs.dev.azure.com///_packaging//pypi/sim... | Install Packages in Custom Feed Using a .txt File | python|azure-devops|azure-artifacts | 0 | 53 | 2 | 73,042,227 | 73,042,227 | 0 | true | 2022-06-30T07:07:15.990Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Install Packages in Custom Feed Using a .txt File<p>I want to be able to install packages that exist in an Azure Artifacts feed.</p>
<p>I know this can be do... |
73,011,747 | styling leaflet markers according to property in geojson file<p>I´m completly stuck with this part. I have tryed a lot of solutions I have found here and on other places but I simply can´t figure out the situation.
I´m trying to place markers on a map according to some properties on the geojson file, but for some reaso... | <p>So, after a long error and trial rampage I manage to come up with a solution.</p>
<p>I have created a function to set the colors according to a feature.property</p>
<pre><code>function getColor(stype) {
switch (stype) {
case 'Sem JA':
return 'blue';
case 'Ok':
return 'green';
case 'Sem JR'... | styling leaflet markers according to property in geojson file | filter|leaflet|geojson|markers | 0 | 53 | 1 | 73,044,033 | 73,044,033 | 0 | true | 2022-07-17T12:24:47.377Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
styling leaflet markers according to property in geojson file<p>I´m completly stuck with this part. I have tryed a lot of solutions I have found here and on ... |
73,016,719 | Get the shared text from other apps in React Native<p>I want to get the shared text from other apps, I refer to <a href="https://medium.com/swlh/sharing-image-to-android-app-using-intent-filter-to-react-native-d112308328d5" rel="nofollow noreferrer">this article</a>, use intent-filter but it is not so smooth, I found t... | <p>Update my solution.</p>
<ol>
<li>I send the event to JavaScript when I got the shared text, but be aware of the life cycle of NativeModules.</li>
<li>It is my first time using share extension and it working fine.</li>
<li>I didn't specifically look for other alternatives.</li>
</ol>
<p>I hope this information can he... | Get the shared text from other apps in React Native | android|ios|react-native|intentfilter|share-extension | 1 | 53 | 1 | 73,217,754 | 73,217,754 | 0 | true | 2022-07-18T02:19:43.950Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Get the shared text from other apps in React Native<p>I want to get the shared text from other apps, I refer to <a href="https://medium.com/swlh/sharing-imag... |
72,890,086 | Keras plot_model: How do I write a new block and give it a name<p>Is there a possibility to create my own block using keras</p>
<p><a href="https://i.stack.imgur.com/mJtpc.png" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/mJtpc.png" alt="New_Block" /></a></p> | <p>Maybe something like this:</p>
<pre><code>import tensorflow as tf
class NewLayer(tf.keras.layers.Layer):
def __init__(self):
super(NewLayer, self).__init__()
self.dense1 = tf.keras.layers.Dense(64, activation='relu')
self.dense2 = tf.keras.layers.Dense(16, activation='relu')
self.dense3 ... | Keras plot_model: How do I write a new block and give it a name | python|tensorflow|keras|deep-learning | 1 | 53 | 1 | 72,892,838 | 72,892,838 | 0 | true | 2022-07-06T21:31:58.347Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Keras plot_model: How do I write a new block and give it a name<p>Is there a possibility to create my own block using keras</p>
<p><a href="https://i.stack.i... |
72,809,457 | Python2.7 use subprocess.Popen to kubectl exec into the bash of a pod not working<p>previously I was using a python statement like
os.system("kubectl exec --it bash xxx") to exec into a kubernetes pod, it ends up redirect me to the bash of the pod and I could type commands directly. Someone recommended using ... | <p>That's the primitive, and you're calling it correctly.
You get back a subprocess <code>proc</code>, which you can
further interact with:</p>
<pre><code>proc = Popen( ... )
</code></pre>
<p>or better:</p>
<pre><code>with Popen( ... ) as proc:
</code></pre>
<p>There are some convenience functions
layered on top of the... | Python2.7 use subprocess.Popen to kubectl exec into the bash of a pod not working | bash|python-2.7|kubernetes|kubernetes-pod | 2 | 53 | 1 | 72,809,482 | 72,809,482 | 0 | true | 2022-06-30T01:38:55.560Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Python2.7 use subprocess.Popen to kubectl exec into the bash of a pod not working<p>previously I was using a python statement like
os.system("kubectl ex... |
73,002,307 | Acces userinput from kivyMD costum user input<p>I was looking through the documentation kivyMD docs and saw this neat example <a href="https://kivymd.readthedocs.io/en/latest/components/dialog/index.htm" rel="nofollow noreferrer">Example</a>. However, where is the user input stored? Suppose we wanted to get the city na... | <p>You can easily get the contents of a <code>TextField</code>, by giving it an <code>id</code>.</p>
<pre><code><Content>
orientation: "vertical"
spacing: "12dp"
size_hint_y: None
height: "120dp"
MDTextField:
hint_text: "City"
id: city
... | Acces userinput from kivyMD costum user input | python|android|kivy|kivymd | 0 | 53 | 1 | 73,003,880 | 73,003,880 | 0 | true | 2022-07-16T07:18:17.640Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Acces userinput from kivyMD costum user input<p>I was looking through the documentation kivyMD docs and saw this neat example <a href="https://kivymd.readthe... |
72,962,291 | Clear input field reset back to defaultValue (0)<p>If I clear the input (by manually deleting the value) it leaves an empty field - how do I have this reset back to 0 when I manually delete the value? So as soon as the field contains no value set default to 0.</p>
<pre class="lang-js prettyprint-override"><code><Tex... | <p>I am assuming you are using Material UI's TextField component. As stated in the documentation, default value is only displayed when your component is uncontrolled. Here you have a controlled component.</p>
<p><a href="https://mui.com/material-ui/api/text-field/" rel="nofollow noreferrer">https://mui.com/material-ui/... | Clear input field reset back to defaultValue (0) | reactjs | -2 | 53 | 1 | 72,962,408 | 72,962,408 | 0 | true | 2022-07-13T07:15:43.137Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Clear input field reset back to defaultValue (0)<p>If I clear the input (by manually deleting the value) it leaves an empty field - how do I have this reset ... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.