question_id int64 37.6M 73.2M | input_text stringlengths 88 52.4k | output_text stringlengths 37 35.6k | title stringlengths 15 150 | tags stringlengths 1 107 | q_score int64 -19 397 | view_count int64 3 879k | answer_count int64 1 21 | accepted_answer_id int64 37.6M 73.8M | answer_id int64 37.6M 73.8M | a_score int64 -5 1.29k | is_accepted bool 1
class | creation_date stringlengths 20 24 | input_text_instruct stringlengths 251 52.6k |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
72,890,774 | Ubuntu 22.04: pyautogui.locateOnScreen is returning None. How to solve this?<p>My OS is <code>Ubuntu 22.04</code>, <code>Python 3.10.4</code>.
I am trying to create a code to automate Whatsapp send message.</p>
<p>Have installed latest version of <code>pyautogui</code>.</p>
<p>Following is the code I am running:</p>
<p... | <p>Finding image on screen for only one time may be <code>None</code> you need to check <strong>repeatedly</strong> for it. And if it is found you can end the loop you are using to find it. You should use python's <code>multithreading</code> for it. here is an updated version of your code</p>
<pre><code>import pyautogu... | Ubuntu 22.04: pyautogui.locateOnScreen is returning None. How to solve this? | python-3.x|whatsapp|pyautogui|ubuntu-22.04 | 0 | 80 | 1 | 72,921,956 | 72,921,956 | 1 | true | 2022-07-06T23:17:18.617Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Ubuntu 22.04: pyautogui.locateOnScreen is returning None. How to solve this?<p>My OS is <code>Ubuntu 22.04</code>, <code>Python 3.10.4</code>.
I am trying to... |
72,923,973 | Return True when subsequent array values match<p>I need to identify specific array values with subsequent matching values. In this example, I'd like to know when <code>B</code> is followed by two additional <code>B</code> values.</p>
<pre class="lang-py prettyprint-override"><code>arr = ['a', 'a', 'B', 'B', 'B', 'a']
... | <p>Why not just a list comprehension?</p>
<pre><code>[i < len(arr) - 2 and x == 'B' and arr[i+1:i+3] == ['B', 'B'] for i, x in enumerate(arr)]
</code></pre>
<p>Result:</p>
<pre><code>[False, False, True, False, False, False]
</code></pre>
<p>We first test to ensure there <em>can be</em> two following values, then wh... | Return True when subsequent array values match | python | -1 | 80 | 7 | 72,924,149 | 72,924,149 | 1 | true | 2022-07-09T19:09:05.060Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Return True when subsequent array values match<p>I need to identify specific array values with subsequent matching values. In this example, I'd like to know ... |
72,923,963 | Firebase Storage Metadata Not Showing Up<p>I am trying to set metadata for my image but Firebase isn't taking in my custom metadata. After uploading the image I should see my metadata under 'Other Metadata'.</p>
<p>Below is how it's showing up for me now:
<a href="https://i.stack.imgur.com/3v1Fq.png" rel="nofollow nore... | <p>The problem is here:</p>
<pre><code>const storageRef = ref(storage, 'property_images/' + houseId + '/' + file.name, metadata);
</code></pre>
<p>You're passing the metadata to the <a href="https://firebase.google.com/docs/reference/js/storage.md#ref" rel="nofollow noreferrer"><code>ref</code> function</a>, which is n... | Firebase Storage Metadata Not Showing Up | javascript|reactjs|firebase|next.js|firebase-storage | 1 | 80 | 1 | 72,924,859 | 72,924,859 | 1 | true | 2022-07-09T19:06:49.263Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Firebase Storage Metadata Not Showing Up<p>I am trying to set metadata for my image but Firebase isn't taking in my custom metadata. After uploading the imag... |
72,924,875 | Optimization: Finding the best Simple Moving Average takes too much time<p>I've created a simple Spring-Application with a MySQL-DB.</p>
<p>In the DB there are 20 years of stock data (5694 lines):
<a href="https://i.stack.imgur.com/WslJZ.png" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/WslJZ.png" alt=... | <p>This problem is equivalent with finding the best moving N <strong>sum</strong>. Simply then divide by N. Having such a slice, then the next slice subtracts the first value and adds a new value to the end. This could lead to an algorithm for finding local growths with <code>a[i + N] - a[i] >= 0</code>.</p>
<p>Howe... | Optimization: Finding the best Simple Moving Average takes too much time | java|spring|performance|algorithmic-trading | 0 | 80 | 1 | 72,925,056 | 72,925,056 | 1 | true | 2022-07-09T21:58:51.433Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Optimization: Finding the best Simple Moving Average takes too much time<p>I've created a simple Spring-Application with a MySQL-DB.</p>
<p>In the DB there a... |
72,927,006 | Postgres jsonb_insert Insert Only When Object Doesn't Already Exist<p>I am trying to add items to a JSON array using <code>jsonb_insert</code> as:</p>
<p><code>jsob_insert(document, '{path,to,array,0}','{"key":"value"}')</code></p>
<p>This inserts <code>{"key":"value"}</code> to ... | <p>Wrap that call in a <code>case</code> that checks whether the object already exists in the array:</p>
<pre><code>with invars as (
select '{
"path": {
"to": {
"array": [
{
"key": "value"
}
]
}
}
}... | Postgres jsonb_insert Insert Only When Object Doesn't Already Exist | postgresql|jdbc | 1 | 80 | 1 | 72,928,686 | 72,928,686 | 1 | true | 2022-07-10T08:03:32.063Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Postgres jsonb_insert Insert Only When Object Doesn't Already Exist<p>I am trying to add items to a JSON array using <code>jsonb_insert</code> as:</p>
<p><co... |
72,926,672 | What is the equivalent in dplyr to an Excel formula referencing the cell immediately above itself?<p>In the reproducible <code>R</code> code shown at the bottom, I'm trying to create a column called <code>LowClassSplit</code>, using R package <code>dplyr</code>, whose value depends on its own value calculated immediat... | <p>Maybe the following is what the question is asking for.</p>
<pre class="lang-r prettyprint-override"><code>library(dplyr)
data <-
data.frame(
Element = c("C","B","D","A","A","A","C","B","B","B"),
SplitC... | What is the equivalent in dplyr to an Excel formula referencing the cell immediately above itself? | r|excel|dplyr | 0 | 80 | 1 | 72,928,977 | 72,928,977 | 1 | true | 2022-07-10T06:54:03.480Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
What is the equivalent in dplyr to an Excel formula referencing the cell immediately above itself?<p>In the reproducible <code>R</code> code shown at the bot... |
72,936,590 | Flutter Scroll multiple ListViews together without the separators between them<p>I am trying to build a vertical ListView of with horizontal ListViews.
My problem is, that I want to scroll all the Rows together without scrolling the separators between the Rows. That is why I can't just use a SingleChildScrollView aroun... | <p>If you're okay with adding an extra package to solve your problem, there's an excellent solution from <strong>google.dev</strong> team that does just what you need: <a href="https://pub.dev/packages/linked_scroll_controller" rel="nofollow noreferrer">linked_scroll_controller</a></p>
<p>An implementation based on you... | Flutter Scroll multiple ListViews together without the separators between them | flutter|dart|flutter-layout|flutter-listview | 2 | 80 | 1 | 72,940,942 | 72,940,942 | 1 | true | 2022-07-11T09:47:24.900Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Flutter Scroll multiple ListViews together without the separators between them<p>I am trying to build a vertical ListView of with horizontal ListViews.
My pr... |
72,920,606 | Coil unit testing - how to do this?<p>Is it possible to mock coil network level when unit testing? With <code>MockWebServer</code>? Or test it somehow else? I can't find information on the Internet about it.</p> | <p>I've found the answer. We can use OkHttp’s mock web server. Also check out: <a href="https://coil-kt.github.io/coil/image_loaders/#testing" rel="nofollow noreferrer">https://coil-kt.github.io/coil/image_loaders/#testing</a></p> | Coil unit testing - how to do this? | android|unit-testing|coil | 4 | 80 | 1 | 72,951,081 | 72,951,081 | 1 | true | 2022-07-09T10:26:26.047Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Coil unit testing - how to do this?<p>Is it possible to mock coil network level when unit testing? With <code>MockWebServer</code>? Or test it somehow else? ... |
72,953,590 | compare 2 csv files uing the merge and compare row by row<p>so I have 2 CSV files in file1 I have list of research groups names. in file2 I have list of the Research full name with location as wall. I want to join these 2 csv file if the have the words matches in them.</p>
<p>in file1.cvs</p>
<div class="s-table-contai... | <p>You can try:</p>
<pre class="lang-py prettyprint-override"><code>def fn(row):
for _, n in df2.iterrows():
if (
n["research_groups_names"] == row["research_groups_names"]
or row["research_groups_names"] in n["research_groups_names"]
)... | compare 2 csv files uing the merge and compare row by row | python|dataframe|csv|merge | 1 | 80 | 1 | 72,953,907 | 72,953,907 | 1 | true | 2022-07-12T13:59:23.527Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
compare 2 csv files uing the merge and compare row by row<p>so I have 2 CSV files in file1 I have list of research groups names. in file2 I have list of the ... |
72,903,714 | GEOS C error always when creating valid geometry or polygon<p>I am trying to create a Polygon with <code>django.contrib.gis.geos.Polygon</code>. I know that the points are valid but I get the error:</p>
<pre><code>django.contrib.gis.geos.error.GEOSException: Error encountered checking Geometry returned from GEOS C func... | <p>Turns out the solution here would be to upgrade to Django 4.0.1 or higher after they fixed the bug: <a href="https://github.com/django/django/blob/4f284115a9181990f713d5167b25628fa171a5e4/docs/releases/4.0.1.txt#L67-L70" rel="nofollow noreferrer">https://github.com/django/django/blob/4f284115a9181990f713d5167b25628f... | GEOS C error always when creating valid geometry or polygon | polygon|gdal|geodjango|geos | 1 | 80 | 1 | 72,956,738 | 72,956,738 | 1 | true | 2022-07-07T20:13:53.103Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
GEOS C error always when creating valid geometry or polygon<p>I am trying to create a Polygon with <code>django.contrib.gis.geos.Polygon</code>. I know that ... |
72,957,715 | I want to create google sheet from python using Pycharm but its not working<p>I was try to create google sheet using python in Pycharm but I try very had didn't out bugs.
here I submit my full code and show my error result.</p>
<pre><code> # [START sheets_create]
from __future__ import print_function
import google.... | <p>The <strong>credential</strong> parameter of <code>build()</code> method can only accept the following objects:</p>
<blockquote>
<p>credentials: oauth2client.Credentials or
google.auth.credentials.Credentials, credentials to be used for
authentication.</p>
</blockquote>
<p>An easy way to create a credential object i... | I want to create google sheet from python using Pycharm but its not working | python|google-sheets|google-api|pycharm|google-drive-api | 0 | 80 | 2 | 72,959,897 | 72,959,897 | 1 | true | 2022-07-12T19:55:42.630Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
I want to create google sheet from python using Pycharm but its not working<p>I was try to create google sheet using python in Pycharm but I try very had did... |
72,960,066 | Firebase Authentication via Server Side to access routes<p>I am using sessionStorage and also firebase authentication for email and password.</p>
<p>In my server.js I am wondering how can I make it so that if a user is not logged in they cannot access a route, or rather be redirected to the login route instead.
The fir... | <p>You can use the <code>firebase-admin</code> package to verify the token on the server. If the verification passes, you can continue with route logic. To make things simple, you could wire up a middleware in Express that verifies the token, rather than repeating the calls for authenticated routes.</p>
<p>Relevant doc... | Firebase Authentication via Server Side to access routes | javascript|firebase-authentication | 0 | 80 | 1 | 72,960,905 | 72,960,905 | 1 | true | 2022-07-13T01:50:33.457Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Firebase Authentication via Server Side to access routes<p>I am using sessionStorage and also firebase authentication for email and password.</p>
<p>In my se... |
72,960,241 | C# Process.StandardInput.Write deadlocks/hangs when not using StreamWriter.Close<p>I have a C# program that wants to interact with an external process written in C++. I believe this C++ process is using correct standard input. I just can't seem to get my C# code to not hang when trying to write to Process.StandardInput... | <p>The problem you're observing is due to the synchronous nature of <code>Process.StandardOutput.ReadToEnd()</code>. Instead, you should listen for your output asynchronously by setting <code>Process.BeginOutputReadLine()</code> and utilizing the <code>Process.OutputDataReceived</code> event.</p>
<p>Here is a quick exa... | C# Process.StandardInput.Write deadlocks/hangs when not using StreamWriter.Close | c#|process|stdin|streamwriter | 1 | 80 | 1 | 72,961,440 | 72,961,440 | 1 | true | 2022-07-13T02:25:42.283Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
C# Process.StandardInput.Write deadlocks/hangs when not using StreamWriter.Close<p>I have a C# program that wants to interact with an external process writte... |
72,835,590 | Can't install PyWin32 on Google Colab<p>I'm trying to run a project on google colab and I need to use PyWin32 (<a href="https://pypi.org/project/pywin32/" rel="nofollow noreferrer">https://pypi.org/project/pywin32/</a>), but I get the following error:</p>
<pre><code>!pip install pywin32
ERROR: Could not find a version... | <p>I think this application this Windows-only as I see in the part of 'Classifier' at <a href="https://pypi.org/project/pywin32/" rel="nofollow noreferrer">https://pypi.org/project/pywin32/</a> only has Windows enviroment. And Colab's OS is Ubuntu. In addition, the list of packages for installation of pywin32 at <a hre... | Can't install PyWin32 on Google Colab | python|google-colaboratory|pywin32 | 1 | 80 | 1 | 72,963,332 | 72,963,332 | 1 | true | 2022-07-02T00:12:09.967Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Can't install PyWin32 on Google Colab<p>I'm trying to run a project on google colab and I need to use PyWin32 (<a href="https://pypi.org/project/pywin32/" re... |
72,961,665 | Is storing ARNs the correct way to register and send to AWS SNS?<p>I'm trying to implement push notifications via AWS SNS using FCM/APNS. I've successfully done it manually via the SNS console and now I'm trying to implement the whole process via Java.</p>
<p>The tutorials are short-stopped at demoing the manual method... | <p>The recommendation is indeed that you store the ARN in your database for retrieval when you want to send a notification to that user. Most applications have an internal mapping, e.g. from user ID -> device ARN that SNS does not know about. This makes it difficult to target specific users unless you have this stor... | Is storing ARNs the correct way to register and send to AWS SNS? | java|firebase-cloud-messaging|apple-push-notifications|aws-sdk|amazon-sns | 0 | 80 | 1 | 72,970,001 | 72,970,001 | 1 | true | 2022-07-13T06:12:34.447Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Is storing ARNs the correct way to register and send to AWS SNS?<p>I'm trying to implement push notifications via AWS SNS using FCM/APNS. I've successfully d... |
72,947,931 | Synchronizing multiple topic subscriptions in ROS when using pyqt5<p>I found a method from this discussion <a href="https://stackoverflow.com/questions/71729615/how-to-subscribe-to-two-image-topics-in-ros-using-python">How to subscribe to two image topics in ROS using Python</a> and I did more research on that method u... | <p>I'll throw it out there, your first code looks pretty close to right, and if your second is receiving data, then it might be in the tuning / frequencies.
For example, if they're not close enough in occurrence, then the approximate time won't pick them up. Here's a few ways you can check what your timings are.</p>
<o... | Synchronizing multiple topic subscriptions in ROS when using pyqt5 | python|pyqt5|ros|qthread | 0 | 80 | 1 | 72,973,588 | 72,973,588 | 1 | true | 2022-07-12T06:31:43.737Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Synchronizing multiple topic subscriptions in ROS when using pyqt5<p>I found a method from this discussion <a href="https://stackoverflow.com/questions/71729... |
72,980,101 | How to pass in multiple action creators to single listenerMiddleware in Redux Toolkit?<p>I want to save <code>state</code> into my database whenever any of its properties changes. I currently have two middlewares that would <code>dispatch</code> my saveTrip function.</p>
<p>The two middlewares are identical but listen ... | <p>You can use <a href="https://redux-toolkit.js.org/api/matching-utilities" rel="nofollow noreferrer">matchers</a></p>
<pre class="lang-js prettyprint-override"><code>listenerMiddleWare.startListening({
matcher: isAnyOf(setOrigin, setDestination),
effect: async(action, listenerAPI) => {
listenerAPI.... | How to pass in multiple action creators to single listenerMiddleware in Redux Toolkit? | javascript|reactjs|redux|react-redux|redux-toolkit | 0 | 80 | 1 | 72,981,430 | 72,981,430 | 1 | true | 2022-07-14T11:57:48.453Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to pass in multiple action creators to single listenerMiddleware in Redux Toolkit?<p>I want to save <code>state</code> into my database whenever any of i... |
72,983,197 | Github: Automerge immediately after a push and only for selected branches<p>I'd like to enable auto merge ONLY for <code>dev</code>-><code>staging</code> (i.e. merged from <code>dev</code> to <code>staging</code> branch) and immediately after someone pushes anything to <code>dev</code>. Because merges come from PR, ... | <blockquote>
<p>The solution should not require additional CI/CD software (e.g. Teamcity), but I'm OK to write some scripts, and should be integrated into Github.</p>
</blockquote>
<p>That kind of integration is called <a href="https://github.com/features/actions" rel="nofollow noreferrer">GitHub Actions</a> and will u... | Github: Automerge immediately after a push and only for selected branches | git|github|github-actions | 1 | 80 | 1 | 72,983,279 | 72,983,279 | 1 | true | 2022-07-14T15:39:20.667Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Github: Automerge immediately after a push and only for selected branches<p>I'd like to enable auto merge ONLY for <code>dev</code>-><code>staging</code> ... |
72,983,090 | Processing sed matching group through another sed command<p>I'd like to process the output of a compile done in linux, and convert all error references to use dos file paths which can be parsed by a windows IDE. So, for example if I had the following line in the unix file:</p>
<pre><code>linuxroot/a/b/c/file.c:200:1: ... | <p>I've come up with this:</p>
<pre class="lang-none prettyprint-override"><code>$ cat file
linuxroot/aaaaa/file.c:200:1: error: evil use of / character
linuxroot/a/bbb/file.c:200:1: error: evil use of / character
linuxroot/a/b/c/file.c:200:1: error: evil use of / character
$ cat file.sed
\!^linuxroot/[A-Za-z0-9_/.-]*:... | Processing sed matching group through another sed command | bash|sed | 5 | 80 | 6 | 72,983,941 | 72,983,941 | 1 | true | 2022-07-14T15:30:58.407Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Processing sed matching group through another sed command<p>I'd like to process the output of a compile done in linux, and convert all error references to us... |
72,974,031 | flutter_local_notifications onNotificationReceived method - Flutter<h2>Too long to read: The problem</h2>
<p>Basically, I am looking for an <code>onMessageReceived()</code> callback but that works with flutter_local_notifications so I can handle and show the data to the user. This plugin only supports handling the <cod... | <p>Yes, as far as I know we don't have the same stream option to listen to the notifications in the system tray for <code>flutter_local_notifications</code> as we have for FCM.</p>
<p>You can check <a href="https://stackoverflow.com/a/60714000/9842392">this answer</a>, It might help you.</p>
<p>I guess in the end you'... | flutter_local_notifications onNotificationReceived method - Flutter | flutter|dart|notifications|firebase-cloud-messaging|flutter-local-notification | 0 | 80 | 1 | 72,987,207 | 72,987,207 | 1 | true | 2022-07-14T00:35:31.743Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
flutter_local_notifications onNotificationReceived method - Flutter<h2>Too long to read: The problem</h2>
<p>Basically, I am looking for an <code>onMessageRe... |
72,992,349 | JAVA: Problems with Calculating the Simple Moving Average<p>I put together some code to calculate the moving average out of some sample data.</p>
<p>input is [12, 13, 15, 7, 6, 9, 13]
output should be [12.5, 14, 11, 6.5, 7.5, 11]</p>
<pre><code> int n = 2;
double[] data = { 12, 13, 15, 7, 6, 9, 13 };
... | <p>You are correct that the following is the size of the array:</p>
<p><code>double output[] = new double[data.length + 1 - n];</code></p>
<p>You could simplify this piece of code to something like:</p>
<pre><code> public double[] movingAverage(double[] data, int n) {
double[] output = new double[data.length... | JAVA: Problems with Calculating the Simple Moving Average | java|algorithm | -1 | 80 | 3 | 72,992,555 | 72,992,555 | 1 | true | 2022-07-15T10:06:09.030Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
JAVA: Problems with Calculating the Simple Moving Average<p>I put together some code to calculate the moving average out of some sample data.</p>
<p>input is... |
72,998,544 | What is the difference between alignof(i) and alignof(decltype(i))?<pre><code>#include <iostream>
alignas(16) int i;
int main()
{
std::cout << alignof(i) << std::endl; // output: 16 and warning
std::cout << alignof(decltype(i)) << std::endl; // output: 4
}
</code></pre>
<p>What ... | <p><code>alignof(i)</code> is the alignment of the <code>i</code> variable, which is explicitly being set to 16, regardless of its type.</p>
<p><code>alignof(decltype(i))</code>, aka <code>alignof(int)</code>, is the natural alignment (<code>sizeof(int)</code>, ie 4 in this case) for all <code>int</code> variables that... | What is the difference between alignof(i) and alignof(decltype(i))? | c++ | 0 | 80 | 1 | 72,998,609 | 72,998,609 | 1 | true | 2022-07-15T18:57:29.730Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
What is the difference between alignof(i) and alignof(decltype(i))?<pre><code>#include <iostream>
alignas(16) int i;
int main()
{
std::cout <... |
73,020,809 | Compare two dates in cypress<p>How can I compare two dates in Cypress without them beeing modified?</p>
<p><div class="snippet" data-lang="js" data-hide="false" data-console="true" data-babel="false">
<div class="snippet-code">
<pre class="snippet-code-html lang-html prettyprint-override"><code> let today =... | <p>They aren't modified as much as translated from your time zone (Central European Summer Time, is it?) to GMT. Your midnight is 10pm in Greenwich.</p>
<p>Considering that it happened to both dates, it doesn't change the result of the comparison.</p>
<p>If it nevertheless bothers you, there's Cypress' <code>clock</cod... | Compare two dates in cypress | javascript|date|cypress|cypress-testing-library | 0 | 80 | 2 | 73,020,960 | 73,020,960 | 1 | true | 2022-07-18T10:25:07.310Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Compare two dates in cypress<p>How can I compare two dates in Cypress without them beeing modified?</p>
<p><div class="snippet" data-lang="js" data-hide="fal... |
73,022,123 | Sticky buttons are moving down other content<p>My problem is that I have three sticky buttons, that should scroll with the content.
From a functionality standpoint, everything works but for some reason, the three buttons seem to move the content down (see the big space above of "Prozess").</p>
<p><a href="htt... | <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>.container.only_this {
padding-left: 154px;
}
.mt-4, .my-4 {
margin-top: 0rem!important;
}
div#app form {
display: flex;
}
.sticky... | Sticky buttons are moving down other content | html|css | 0 | 80 | 2 | 73,022,808 | 73,022,808 | 1 | true | 2022-07-18T12:10:35.113Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Sticky buttons are moving down other content<p>My problem is that I have three sticky buttons, that should scroll with the content.
From a functionality stan... |
73,012,961 | Pine Script select security if it's available<p>I wanted to code an indicator on trading view that uses data from different exchanges. It works for some tickers. But if an exchange doesn't have the ticker available, the code doesn't work anymore.</p>
<p>My code looks like this for multiple exchanges:</p>
<pre><code>var... | <p>The <a href="https://www.tradingview.com/pine-script-reference/v5/#fun_request%7Bdot%7Dsecurity" rel="nofollow noreferrer">request.security</a> has <code>ignore_invalid_symbol</code> parameter. You can set it to <code>true</code>. If symbol doesn't exist your script continue work.</p> | Pine Script select security if it's available | pine-script | 0 | 80 | 1 | 73,023,876 | 73,023,876 | 1 | true | 2022-07-17T15:17:15.270Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Pine Script select security if it's available<p>I wanted to code an indicator on trading view that uses data from different exchanges. It works for some tick... |
73,020,616 | OOP Fortran : How to create a factory with a variable number of arguments in the initialisation routine?<p>A suggested in the answer of Federico Perini(<a href="https://stackoverflow.com/a/72998466/7462275">https://stackoverflow.com/a/72998466/7462275</a>), I tried to write a factory <em>to hide away all of the complex... | <p>In your example, shape sizes (width, length, depth) are a property of the instantiated object. You're not initializing a generic box or a generic line (that is what a derived type represents) but THAT box, with that width, length, depth (assume they can never change, for now).</p>
<p>So you want to have them set onc... | OOP Fortran : How to create a factory with a variable number of arguments in the initialisation routine? | oop|module|fortran | 0 | 80 | 1 | 73,024,080 | 73,024,080 | 1 | true | 2022-07-18T10:11:39.900Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
OOP Fortran : How to create a factory with a variable number of arguments in the initialisation routine?<p>A suggested in the answer of Federico Perini(<a hr... |
73,024,195 | mapping payload with json object in dataweave<p>What I'm trying to do is map the CodeOT to each object in my payload such as :</p>
<p>null/0 get the value 1
1 to 5 get the value 2
and 6 to 9 get the value 3</p>
<p>I am lost in how to do it as I'm new to dataweave</p>
<p>example of payload :</p>
<pre><code> {
&qu... | <p>Assuming that the input and table are arrays and that entries in the table are unique per <code>CodeSap</code> the following script works, though the output is a bit different than expected because of the incomplete table provided:</p>
<pre class="lang-js prettyprint-override"><code>%dw 2.0
output application/json
v... | mapping payload with json object in dataweave | mule|dataweave|mulesoft|anypoint-studio | -1 | 80 | 1 | 73,024,377 | 73,024,377 | 1 | true | 2022-07-18T14:43:24.373Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
mapping payload with json object in dataweave<p>What I'm trying to do is map the CodeOT to each object in my payload such as :</p>
<p>null/0 get the value 1
... |
73,024,760 | Problem mapping classes with different attributes with MapStruct<p>I'm trying to make a mapping using MapStruct but I don't know how to deal with the fields from one to the other.
I have the classes below:</p>
<pre><code>class DataDomain {
private List<Domain> data;
}
class Domain {
private String codD... | <p>I would suggest the following solution</p>
<pre><code>@Mapper(unmappedTargetPolicy = ReportingPolicy.ERROR,
componentModel = "spring",
collectionMappingStrategy = CollectionMappingStrategy.ADDER_PREFERRED,
builder = @Builder(disableBuilder = true))
public interface ParOutMapper {
@Mapping(tar... | Problem mapping classes with different attributes with MapStruct | java|spring|spring-boot|quarkus|mapstruct | 0 | 80 | 1 | 73,027,496 | 73,027,496 | 1 | true | 2022-07-18T15:21:56.263Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Problem mapping classes with different attributes with MapStruct<p>I'm trying to make a mapping using MapStruct but I don't know how to deal with the fields ... |
72,984,138 | How to get Firestore "has sync to the cloud" status for a specific collection?<p>I'm trying to get the <strong>sync status</strong> for a document with multiple child collections in Firestore.</p>
<p>The app supports both online and offline. Before the user closes a screen I want to check whether all data in the docume... | <h3>Solution 1: Use collectionGroup</h3>
<p><a href="https://firebase.google.com/docs/firestore/query-data/get-data#get_multiple_documents_from_a_collection_group" rel="nofollow noreferrer">collectionGroup</a> is a special function to permit you to access collections from their names irrespective of where they are.</p>... | How to get Firestore "has sync to the cloud" status for a specific collection? | javascript|firebase|google-cloud-firestore | 4 | 80 | 1 | 73,044,633 | 73,044,633 | 1 | true | 2022-07-14T16:56:22.887Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to get Firestore "has sync to the cloud" status for a specific collection?<p>I'm trying to get the <strong>sync status</strong> for a document with multi... |
73,025,998 | How to access protected members<p>I have a <code>MockAlgoController</code> class which has protected inheritance of <code>ControllerMockParams</code>. How to access these protected fields outside, i.e. when asserting in tests?</p>
<pre><code>struct ControllerMockParams
{
int numCtx{0};
MockAlgo firstAlgo{Interf... | <p>To access protected fields outside you must not use <code>protected</code> in the first place. So your code should be like:</p>
<pre class="lang-cpp prettyprint-override"><code>class MockAlgoController : public ControllerMockParams, public AlgoController
{
public:
MockAlgoController()
: AlgoController(
... | How to access protected members | c++|googlemock | 0 | 80 | 1 | 73,248,280 | 73,248,280 | 1 | true | 2022-07-18T17:00:19.570Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to access protected members<p>I have a <code>MockAlgoController</code> class which has protected inheritance of <code>ControllerMockParams</code>. How to... |
72,936,208 | Can you Split Full names to First name and Last name with Openpyxl?<p>I have an excel file that I have been trying to split the column(Full name) into 2 separate column of First name and Last name using openpyxl.
For example: I have</p>
<pre class="lang-py prettyprint-override"><code>from openpyxl import Workbook, load... | <p>This is how I'd do it. Load the spreadsheet, get the <code>Full name</code> column, iterate over the cells in that column, split the cell's value, and write the values to 2 new cells on the same row but in different columns.</p>
<pre class="lang-py prettyprint-override"><code>from openpyxl import load_workbook
impor... | Can you Split Full names to First name and Last name with Openpyxl? | python|excel|split|openpyxl|columnsorting | 0 | 80 | 2 | 72,936,879 | 72,936,879 | 1 | true | 2022-07-11T09:17:37.460Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Can you Split Full names to First name and Last name with Openpyxl?<p>I have an excel file that I have been trying to split the column(Full name) into 2 sepa... |
72,796,586 | How to find and combine/group array buddy value together into several array?<p>I have an big array named with <strong>whoHasMe</strong> as below:</p>
<pre><code>whoHasMe: [[0], [1], [0, 2, 3], [1, 2, 3, 4, 5], [4], [5], [6, 7, 8], [7], [6, 8]]
</code></pre>
<p>As we can notice, these</p>
<blockquote>
<p>whoHasMe[0] ha... | <p>The method I can think of is to use <a href="https://en.wikipedia.org/wiki/Disjoint-set_data_structure" rel="nofollow noreferrer">disjoint set</a>. Here is a simple implementation:</p>
<pre><code>class DisjointSet:
def __init__(self, n):
self.root = list(range(n))
def __getitem__(self, k): # fin... | How to find and combine/group array buddy value together into several array? | python|arrays|relationship | 0 | 80 | 2 | 72,797,127 | 72,797,127 | 1 | true | 2022-06-29T06:16:42.897Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to find and combine/group array buddy value together into several array?<p>I have an big array named with <strong>whoHasMe</strong> as below:</p>
<pre><c... |
73,002,174 | T-SQL Execution Plan showing undefined expression?<p>I want to start building a tool that more or less shows you the data-lineage of a query using parsing of the execution plan - so that you get information of the form:</p>
<p>Column A of Table XY was computed by taking Column B of Table XZ and adding Column C of Table... | <p>This is probably for nested loops prefetch.</p>
<p>See <a href="https://www.sql.kiwi/2013/08/sql-server-internals-nested-loops-prefetching.html" rel="nofollow noreferrer">this article</a> for more details</p>
<blockquote>
<p>The output also shows that the mystery node uses an expression
labelled [Expr1004] with a ty... | T-SQL Execution Plan showing undefined expression? | sql-server|tsql|expression|sql-execution-plan | 1 | 80 | 1 | 73,002,424 | 73,002,424 | 1 | true | 2022-07-16T06:56:23.053Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
T-SQL Execution Plan showing undefined expression?<p>I want to start building a tool that more or less shows you the data-lineage of a query using parsing of... |
72,872,083 | How do we export list of constants and functions from a javascript module<p>I have to export 2 type of constants and few functions like getUser.</p>
<p>mymodule.js</p>
<pre><code>const type1 = require('./constants1.js');
const type2 = require('./constants2.js');
module.exports = Object.freeze(Object.assign(Object.creat... | <p><strong>constant1.js</strong></p>
<pre class="lang-js prettyprint-override"><code>module.exports = Object.freeze({
DOUBLE: 1,
FLOAT: 2
});
</code></pre>
<br/>
<p><strong>constant2.js</strong></p>
<pre class="lang-js prettyprint-override"><code>module.exports = Object.freeze({
TRIPLE: 3,
});
</code></pre>... | How do we export list of constants and functions from a javascript module | node.js|module.exports | 1 | 80 | 2 | 72,876,827 | 72,876,827 | 1 | true | 2022-07-05T15:35:45.013Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How do we export list of constants and functions from a javascript module<p>I have to export 2 type of constants and few functions like getUser.</p>
<p>mymod... |
72,873,720 | CSS animation for a short time while scrolling down to go from one section to another<p>I am a beginner learning HTML, CSS, and JavaScript. I have two codes: the former is HTML, which gives (after compiling) two inter-linked sections, and the latter is CSS infinite animation.</p>
<p><strong>What I am trying:</strong> W... | <p>As a beginner things can be overwhelming, don't give up though.</p>
<p>A web-page has 3 components</p>
<ol>
<li>HTML: this is the main data of a document. a browser will render this</li>
<li>CSS: this is styling, it's used to define how things will look</li>
<li>Javascript (aka ECMAscript): this your programming to... | CSS animation for a short time while scrolling down to go from one section to another | html|css|animation|scroll|css-transitions | 0 | 80 | 1 | 72,874,407 | 72,874,407 | 1 | true | 2022-07-05T18:01:25.317Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
CSS animation for a short time while scrolling down to go from one section to another<p>I am a beginner learning HTML, CSS, and JavaScript. I have two codes:... |
72,867,336 | Neo.ClientError.Statement.SyntaxError: Invalid input '('<p>I'm trying to use this cypher query</p>
<pre><code>MATCH (n:PRODUCT_LOT_1)<-[:SHIPS|CONTAINS*..]-(s:SHIPMENT_1)
WHERE n.lot_id IN ['17'] AND
EXISTS { MATCH (n)<-[:STORES|:HAS|:CONTAINS*..]-(loc:STORAGE_AREA_1)
WHERE loc.uuid IN ['d3177e9c-dd... | <p>Your query is syntactically wrong, in this statement you used
<code>MATCH (n)<-[:STORES|:HAS|:CONTAINS*..]-(loc:STORAGE_AREA_1)</code>, colon before each relationship type, which is not required try this instead:</p>
<pre><code>MATCH (n:PRODUCT_LOT_1)<-[:SHIPS|CONTAINS*..]-(s:SHIPMENT_1)
WHERE n.lot_id IN [... | Neo.ClientError.Statement.SyntaxError: Invalid input '(' | neo4j | 0 | 80 | 1 | 72,869,938 | 72,869,938 | 1 | true | 2022-07-05T09:49:13.803Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Neo.ClientError.Statement.SyntaxError: Invalid input '('<p>I'm trying to use this cypher query</p>
<pre><code>MATCH (n:PRODUCT_LOT_1)<-[:SHIPS|CONTAINS*..... |
72,992,235 | Google Apps Script close HTML window without button, on demand<p>for some time I've been struggling how to properly run and close "Loader 360". First I will write some basic informations</p>
<p>My assumptions</p>
<ul>
<li>I would like to have only 1 HTML file with loader</li>
<li>I would like to use it in dif... | <p>Might I suggest a modified procedure. I don't know where <code>runLoader()</code> is executed but that is really all you need. Then there is only 1 HTML. When the page loads it runs the spinner and <code>google.script.run</code> to run <code>someFunction()</code>. When <code>someFunction</code> completes it runs ... | Google Apps Script close HTML window without button, on demand | html|google-apps-script | 1 | 80 | 1 | 72,994,626 | 72,994,626 | 1 | true | 2022-07-15T09:56:16.407Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Google Apps Script close HTML window without button, on demand<p>for some time I've been struggling how to properly run and close "Loader 360". Fir... |
72,856,237 | Why does it say that there's a casting error<p>I am pretty new to C# and I'm stuck with a problem in the code. Apparently, there is a casting error, can you tell me what is it?</p>
<p>Here's the code</p>
<pre class="lang-cs prettyprint-override"><code>public static void Main(string[] args)
{
// side a and b
Con... | <p>You cannot put a double into an int. Variables hypo csqr must be double.</p>
<pre><code>public static void Main(string[] args)
{
//side a and b
Console.WriteLine("Side A of 90° triangle");
double a = Convert.ToDouble(Console.ReadLine());
Console.WriteLine("Side B"... | Why does it say that there's a casting error | c# | 1 | 80 | 2 | 72,856,437 | 72,856,437 | 1 | true | 2022-07-04T11:50:27.790Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Why does it say that there's a casting error<p>I am pretty new to C# and I'm stuck with a problem in the code. Apparently, there is a casting error, can you ... |
72,893,397 | TYPO3 extend tt_content with FAL image and display in frontend<p>i want to extend the tt_content table with an image. It should be possible to set this image in every content element. This is what i got so far</p>
<p>ext_tables.sql</p>
<pre><code>CREATE TABLE tt_content (
tx_layout_background_image int(11) unsigned ... | <p>The <code>1</code> you have found in the field is the number of references to this field.
The real relation is stored in another record.</p>
<p>Since inventing FAL (File Abstraction Layer) references to files are no longer stored as path and name of the file but are represented by a record (<code>sys_file</code>), w... | TYPO3 extend tt_content with FAL image and display in frontend | image|typo3|fal | 0 | 80 | 1 | 72,893,718 | 72,893,718 | 1 | true | 2022-07-07T06:49:01.207Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
TYPO3 extend tt_content with FAL image and display in frontend<p>i want to extend the tt_content table with an image. It should be possible to set this image... |
73,006,772 | How to automatically grow SwiftUI MacOS TableColumn to fix the text<p>I have a table as follows:</p>
<pre><code>var body: some View {
Table(logs, selection: $selectedLine, sortOrder: $sortOrder) {
TableColumn("timestamp", value: \.timestamp) {
Text("\($0.timestamp.formatted(date: ... | <p>Use <code>.width()</code> on the Table columns:</p>
<pre><code> Table(logs) {
TableColumn("timestamp") { log in
Text(log.timestamp.formatted(date: .omitted , time: .standard))
}
.width(100)
TableColumn("device", value: \.level... | How to automatically grow SwiftUI MacOS TableColumn to fix the text | macos|swiftui | 1 | 80 | 1 | 73,007,676 | 73,007,676 | 1 | true | 2022-07-16T18:35:36.480Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to automatically grow SwiftUI MacOS TableColumn to fix the text<p>I have a table as follows:</p>
<pre><code>var body: some View {
Table(logs, selecti... |
72,776,030 | Designing custom layout in compose<p>I'm trying to create the layout below using compose. I've been looking for similar designs, but I'm not sure if some things has become deprecated or something; since some things do not function. Anyone has any idea how to create something similar as in the image or why my code is no... | <p>You need to use Material Design Components <code>androidx.compose.material</code>
<a href="https://material.io/components/text-fields/android" rel="nofollow noreferrer">See material.io</a>, here they have two links to the docs of the text field for compose <a href="https://developer.android.com/reference/kotlin/andr... | Designing custom layout in compose | android|kotlin|android-jetpack-compose | 0 | 80 | 1 | 72,776,510 | 72,776,510 | 1 | true | 2022-06-27T17:17:18.683Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Designing custom layout in compose<p>I'm trying to create the layout below using compose. I've been looking for similar designs, but I'm not sure if some thi... |
73,026,631 | openssl_decrypt() can't decrypt text encrypted on the commandline<p>For testing purposes, I wrote <code>encrypt.bash</code> and <code>decrypt.bash</code>, to prove that the encrypted data saved to <code>encrypted.txt</code> can successfully be decrypted.</p>
<p>Here are the bash files:</p>
<p><strong>encrypt.bash</stro... | <p>The -k option does not specify a key, but a password. From this password, together with a randomly generated 8 bytes salt, the key is derived using the derivation function <code>EVP_BytesToKey()</code>. The encrypted data is returned in OpenSSL format, which consists of the ASCII encoding of <code>Salted__</code>, f... | openssl_decrypt() can't decrypt text encrypted on the commandline | php|encryption|openssl|php-openssl | 1 | 80 | 1 | 73,027,155 | 73,027,155 | 1 | true | 2022-07-18T17:57:37.107Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
openssl_decrypt() can't decrypt text encrypted on the commandline<p>For testing purposes, I wrote <code>encrypt.bash</code> and <code>decrypt.bash</code>, to... |
72,769,987 | Generate a random order number but prevent regeneration in WooCommerce<p>I am trying to add a random string when the order number is created as the default sequential number can be very easily guessed.</p>
<p>I tried this snippet:</p>
<pre class="lang-php prettyprint-override"><code>function generate_random_string( $le... | <p>To prevent this you can save the result as meta data, once this exists return the meta data instead of the result of the function</p>
<p>So you get:</p>
<pre class="lang-php prettyprint-override"><code>function generate_random_string( $length = 16 ) {
return substr( str_shuffle( str_repeat( $x = '0123456789ABCDE... | Generate a random order number but prevent regeneration in WooCommerce | wordpress|random|woocommerce|orders | 1 | 80 | 1 | 72,770,272 | 72,770,272 | 1 | true | 2022-06-27T09:41:42.043Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Generate a random order number but prevent regeneration in WooCommerce<p>I am trying to add a random string when the order number is created as the default s... |
72,778,765 | Rails Strong Params how to Permit a nested Array<p>I have the following params:</p>
<pre><code>params={"data"=>
{"type"=>"book",
"id"=>14,
"attributes"=>
{"id"=>14,
"created_at"=>"2022-0... | <p>As <a href="https://api.rubyonrails.org/classes/ActionController/Parameters.html#method-i-permit" rel="nofollow noreferrer">Ruby on Rails API</a> states, when using <code>ActionController::Parameters</code> you want to declare that a parameter should be an array (list) by mapping it to a empty array. Like you did wi... | Rails Strong Params how to Permit a nested Array | ruby-on-rails|parameter-passing|strong-parameters | 0 | 80 | 1 | 72,779,072 | 72,779,072 | 1 | true | 2022-06-27T22:06:56.070Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Rails Strong Params how to Permit a nested Array<p>I have the following params:</p>
<pre><code>params={"data"=>
{"type"=>"b... |
72,809,503 | Jupyter Lab Render button disable<p><a href="https://i.stack.imgur.com/oXNyu.png" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/oXNyu.png" alt="enter image description here" /></a></p>
<p>There is a green button call 'Render with panel ' in my 'Jupyer lab' and I'm trying to get rid of it, not sure where... | <p>That icon comes from <a href="https://panel.holoviz.org/index.html" rel="nofollow noreferrer">the Panel Extension</a>, 'Panel: A high-level app and dashboarding solution for Python'. It's part of their visual branding as you should see a larger version in the upper left corner <a href="https://panel.holoviz.org/inde... | Jupyter Lab Render button disable | python|jupyter-notebook|plotly|jupyter-lab|plotly-python | 0 | 80 | 1 | 72,820,804 | 72,820,804 | 1 | true | 2022-06-30T01:48:41.587Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Jupyter Lab Render button disable<p><a href="https://i.stack.imgur.com/oXNyu.png" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/oXNyu.png" al... |
73,020,792 | SQL / XPATH - How to select all possible elements that have the same name into separate rows/columns<p>I need to select all the elements under a specific node, all the elements have the same name.</p>
<h1>Tables</h1>
<br/>
Lets say I have 2 tables in my database;<br/>
<ol>
<li><p>[Access_Groups], This table contains al... | <p>This is possible, you need to use <a href="https://docs.microsoft.com/en-us/sql/t-sql/xml/nodes-method-xml-data-type?view=sql-server-ver16" rel="nofollow noreferrer"><code>nodes()</code></a> to expand your XML into rows, e.g.</p>
<pre><code>DECLARE @User_Accounts TABLE ([XML] XML);
INSERT @User_Accounts ([XML]) VALU... | SQL / XPATH - How to select all possible elements that have the same name into separate rows/columns | sql|xml|tsql|xpath|xquery | 1 | 80 | 1 | 73,021,192 | 73,021,192 | 1 | true | 2022-07-18T10:24:07.230Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
SQL / XPATH - How to select all possible elements that have the same name into separate rows/columns<p>I need to select all the elements under a specific nod... |
72,833,436 | R Shiny DT auto generate a value in a newly added row<p>I have a <code>Shiny</code> app that allows the user to enter their <code>project details</code> to the database. This is achieved by the <code>Add Project Details Button</code> that adds an empty row to the table. Now the next step is:</p>
<ul>
<li>When the add b... | <p><code>myData</code> should be a <code>reactiveVal</code>:</p>
<pre><code>library(shiny)
library(shinythemes)
library(shinyWidgets)
library(shinyanimate)
library(DT)
library(tidyverse)
# Define UI for application that draws a histogram
ui = navbarPage(tags$style("table, .table {color: unset;} .dataTable th, .... | R Shiny DT auto generate a value in a newly added row | r|shiny|dt | 0 | 80 | 1 | 72,906,020 | 72,906,020 | 1 | true | 2022-07-01T18:40:22.507Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
R Shiny DT auto generate a value in a newly added row<p>I have a <code>Shiny</code> app that allows the user to enter their <code>project details</code> to t... |
72,798,968 | Increase the rabbitmq consumption of a message using Thread Pool in Spring Application<p><strong>AIM</strong>: Increase the consumption of a message at the Consumer End using Thread Pool in Spring Application (or even any other recommended way if possible) with Rabbitmq as message broker</p>
<p><strong>Scenario</strong... | <p>We can increase the Consumption Rate at Consumer end by using and increasing Thread Pool Size. Let us understand few terms first,</p>
<p><strong>1) Min Concurrent Consumer</strong> is minimum concurrent consumer per listener.</p>
<p><strong>2) Max Concurrent Consumer</strong> is max concurrent consumer per listener.... | Increase the rabbitmq consumption of a message using Thread Pool in Spring Application | java|spring|multithreading|rabbitmq|spring-rabbit | 0 | 80 | 1 | 72,869,716 | 72,869,716 | 1 | true | 2022-06-29T09:24:29.193Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Increase the rabbitmq consumption of a message using Thread Pool in Spring Application<p><strong>AIM</strong>: Increase the consumption of a message at the C... |
72,828,937 | How to speed up (parallelize) a grouped row-wise rolling mean calculation?<p>I am calculating a grouped row-wise moving average on a large data set. However, the process takes a too long time on a single thread. How can I efficiently speed up the process?</p>
<p>Please find a reproducible example below:</p>
<pre><code>... | <p>You could (1) melt your data frame using <code>pd.melt</code>, (2) create your grouping variable, (3) sort and group it aggregated by <code>rolling.mean(2)</code>. Then you can use <code>df.pivot</code> to display the required data. In this approach, there is an apply method that can be parallelized using <code>swi... | How to speed up (parallelize) a grouped row-wise rolling mean calculation? | python|pandas|dask|swifter|pandarallel | 0 | 80 | 1 | 72,829,341 | 72,829,341 | 1 | true | 2022-07-01T11:58:13.730Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to speed up (parallelize) a grouped row-wise rolling mean calculation?<p>I am calculating a grouped row-wise moving average on a large data set. However,... |
72,865,908 | Execute 50k insert queries in postgresql dbeaver<p>Is there any possibility to insert 50k datasets into a postgresql database using dbeaver?
Locally, it worked fine for me, it took me 1 minute, because I also changed the memory settings of postgresql and dbeaver. But for our development environment, 50k queries did not... | <p>If you intend to execute a giant script sql via interface: don't even try.</p>
<p>If you have a csv file, DBeaver gives you a tool:</p>
<p><a href="https://i.stack.imgur.com/mtgWh.png" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/mtgWh.png" alt="DBeaver import tool" /></a></p>
<p>Even better, as des... | Execute 50k insert queries in postgresql dbeaver | sql|postgresql | 0 | 80 | 1 | 72,866,077 | 72,866,077 | 1 | true | 2022-07-05T07:58:23.743Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Execute 50k insert queries in postgresql dbeaver<p>Is there any possibility to insert 50k datasets into a postgresql database using dbeaver?
Locally, it work... |
72,878,302 | How to print each elements string with its frequency based on index in map - Golang<p>Let say I have input and output string where the output will be the frequency of each elements in the string and the char itself</p>
<pre><code>input := "programming"
output := "p2ro2ga2min"
</code></pre>
<p>How ca... | <p>You're counting <code>rune</code>s, so use a map of <code>map[rune]int</code>, so you can omit the conversions back to <code>string</code>.</p>
<p><a href="https://stackoverflow.com/questions/28930416/how-to-iterate-maps-in-insertion-order/28931555#28931555">Maps are unordered</a>, so if you want the output in the s... | How to print each elements string with its frequency based on index in map - Golang | string|dictionary|go | 1 | 80 | 2 | 72,878,687 | 72,878,687 | 1 | true | 2022-07-06T05:24:59.897Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to print each elements string with its frequency based on index in map - Golang<p>Let say I have input and output string where the output will be the fre... |
73,009,590 | List Slicing in Power Query M Code running into runtime errors with functions being assigned to lists?<p>I am trying to use the following M code in my custom function to slice a list by a list of split offsets.</p>
<p>I am not sure why this line brings up an error. I have localized it using query designer to the last e... | <p>I was using () function syntax where I should have been using {} syntax to access a list element by index.</p>
<p>It works now!</p>
<pre><code>= (BodyText as text, splitfunc as function) => let
SplitLines = Text.Split(BodyText, "#(lf)"),
CleanedLines = List.Transform(SplitLines, each Text.Remove(_... | List Slicing in Power Query M Code running into runtime errors with functions being assigned to lists? | excel|powerbi|powerquery | 0 | 80 | 1 | 73,012,424 | 73,012,424 | 1 | true | 2022-07-17T06:10:15.937Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
List Slicing in Power Query M Code running into runtime errors with functions being assigned to lists?<p>I am trying to use the following M code in my custom... |
72,792,881 | Swift Combine MergeMany Publishers<p>I have a function that that builds several Publishers and returns them all in a single Publisher with MergeMany. The problem is that some users might have a LOT of endpoints in this publisher, and hitting all these endpoints at once frequently results in server timeouts. Is there a ... | <p>There's no out of the box solution offered by Combine for this but we can build it on top of existing <code>Publishers.MergeMany</code> and <code>Publishers.Concatenate</code>.</p>
<p>The idea is:</p>
<ul>
<li>Divide the input array in chunks of max concurrent requests. Eg. using simple <code>Int</code> array <code>... | Swift Combine MergeMany Publishers | swift|networking|combine | 0 | 80 | 1 | 72,803,557 | 72,803,557 | 1 | true | 2022-06-28T20:36:22.267Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Swift Combine MergeMany Publishers<p>I have a function that that builds several Publishers and returns them all in a single Publisher with MergeMany. The pro... |
72,887,483 | adding indicators into a string according to different case<p>I will receive an array of string-like below.<br />
In each string, there may be three signs: <code>$</code>,<code>%</code>,<code>*</code> in the string</p>
<p>For example,<br />
“I would $rather %be $happy, %if working in a chocolate factory”<br />
“It is o... | <p>I focussed only on the <em>"get the smallest index"</em> part of your question... Since you will be able to do what you want with it after.</p>
<p>You can have the <code>indexOf()</code> in an array, filter it to remove the <code>-1</code> and then use <a href="https://developer.mozilla.org/en-US/docs/Web/... | adding indicators into a string according to different case | javascript | 0 | 80 | 3 | 72,887,727 | 72,887,727 | 1 | true | 2022-07-06T17:10:14.713Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
adding indicators into a string according to different case<p>I will receive an array of string-like below.<br />
In each string, there may be three signs: <... |
72,887,670 | I cannot view and print the contents of a combobox when I select it. The name of the combobox set is printed, but not its content<p><a href="https://i.stack.imgur.com/ChM6W.png" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/ChM6W.png" alt="enter image description here" /></a></p>
<p><strong>WHAT IS THIS... | <p>To get the value from a combobox you need to attach a variable to it.
First initialize the variable <code>teamname = Tk.StringVar(value='')</code>, here I initialized it with an empty string.</p>
<p>Then attach this variable to the combobox, <code>team.configure(textvariable=teamname)</code>.</p>
<p>Now when the com... | I cannot view and print the contents of a combobox when I select it. The name of the combobox set is printed, but not its content | python|python-3.x|string|dictionary|tkinter | 0 | 80 | 1 | 72,887,936 | 72,887,936 | 1 | true | 2022-07-06T17:27:06.700Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
I cannot view and print the contents of a combobox when I select it. The name of the combobox set is printed, but not its content<p><a href="https://i.stack.... |
72,840,725 | Odoo search domain condition1 and (condition2 or condition3)<p>I am trying to construct an Odoo domain query with a logic of
(Condition 1) AND (Condition 2 OR Condition3)</p>
<p>This is the code I've written:</p>
<pre><code>moves = self.env['account.move'].search(
[(
"&",
('sftp_upload... | <p>You have one extra pair of parentheses.</p>
<pre class="lang-py prettyprint-override"><code>moves = self.env['account.move'].search(
[
"&",
('sftp_uploaded', '=', False),
"|",
('move_type', 'in', ['entry']),
('move_type', 'in', ['out_receipt']),... | Odoo search domain condition1 and (condition2 or condition3) | odoo | 1 | 80 | 1 | 72,841,105 | 72,841,105 | 1 | true | 2022-07-02T16:34:31.613Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Odoo search domain condition1 and (condition2 or condition3)<p>I am trying to construct an Odoo domain query with a logic of
(Condition 1) AND (Condition 2 O... |
72,961,588 | How to improve the Java Stream method?<p>I would like to improve the following Java Stream method and to understand better how does anyMatch in Stream work.</p>
<p>In my example the <code>get(blogContext.getBlogContextEnum().getTagName(), new String[0])</code> can have one or many tags. Will the <code>anymatch</code> i... | <p>Will this be considered as improvement?</p>
<pre><code>private boolean containsSelectedTag(Resource resource) {
Stream<String> tagStream = Arrays.stream(resource.getValueMap().get(blogContext.getBlogContextEnum().getTagName(), new String[0]));
boolean containsSelectedTag =
tagStream.anyMatch(t... | How to improve the Java Stream method? | java|java-stream | -3 | 80 | 1 | 72,962,356 | 72,962,356 | 1 | true | 2022-07-13T06:02:12.677Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to improve the Java Stream method?<p>I would like to improve the following Java Stream method and to understand better how does anyMatch in Stream work.<... |
72,933,563 | How to sum elements of N lists in python?<p>I have a list of tuples of lists... :</p>
<pre><code>lst = [(['a', 1], ['b', 2]), (['c', 3], ['d', 4], ['e', 5])]
</code></pre>
<p>And I want to get the sum of index[1] of every lists in each tuples (first tuple = 3, second tuple = 12)
result can look like this:</p>
<pre><cod... | <p>Simply this:</p>
<pre><code>L = [(['a', 1], ['b', 2]), (['c', 3], ['d', 4], ['e', 5])]
for t in L:
s = ''.join(x[0] for x in t)
S = sum(x[1] for x in t)
print([s, S])
</code></pre>
<p>and refrain to define variable names using python keywords...</p> | How to sum elements of N lists in python? | python|numbers | 1 | 80 | 7 | 72,933,610 | 72,933,610 | 1 | true | 2022-07-11T03:59:38.670Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to sum elements of N lists in python?<p>I have a list of tuples of lists... :</p>
<pre><code>lst = [(['a', 1], ['b', 2]), (['c', 3], ['d', 4], ['e', 5])]... |
72,287,579 | Autocad 2016 API: Is it possible to write multiple commands that require addicional inputs?<p>I´m new to this api and I´m trying to give a set of commands that saves the pdf file of the drawing to black and white.. Since the drawing is made of Blocks not made by me and some of them don't change colors just by selecting... | <p>I found a solution to this problem to anyone that might have it.
The way I did it was by creating this method:</p>
<pre><code>private static void PressEnterKey(Object o)
{
SendKeys.SendWait("{ENTER}");
}
</code></pre>
<p>and then when I send the commands to AutoCad:</p>
<pre><code> ... | Autocad 2016 API: Is it possible to write multiple commands that require addicional inputs? | c#|autocad | 1 | 80 | 2 | 72,519,151 | 72,519,151 | 1 | true | 2022-05-18T10:36:19.627Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Autocad 2016 API: Is it possible to write multiple commands that require addicional inputs?<p>I´m new to this api and I´m trying to give a set of commands th... |
72,375,103 | Loop in bash for reading repositories(folders)<p>I have made this script which:</p>
<ol>
<li>Clones all repositories from Bitbucket to folder "temporary projects" . To clone the repos, script is using my "repolinks.csv" which is generally what the name says, links to repos saved as text file :)</li>... | <p>If you want to use <code>$repo.csv</code> instead of the same file for all repos, change the output file in the appending redirection:</p>
<pre><code># old
>> /users/krzysztofpaszta/TTF-Projects-INFO.csv
# new
>> /users/krzysztofpaszta/"$repo".csv
</code></pre>
<p>The name of the directory is n... | Loop in bash for reading repositories(folders) | bash|git|loops|csv | 0 | 80 | 1 | 72,375,249 | 72,375,249 | 1 | true | 2022-05-25T09:30:42.923Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Loop in bash for reading repositories(folders)<p>I have made this script which:</p>
<ol>
<li>Clones all repositories from Bitbucket to folder "temporary... |
72,296,541 | Angular - Unable to send data with POST request to ASP.NET<p>I'm trying to make an authentication system inside my website. I'm sending a simple POST request with the email and password inside, to my ASP.NET server and for some reason the data (email and password) inside the server is empty. I don't know what I'm doing... | <p>Create a <code>LoginModel</code> class.</p>
<pre class="lang-cs prettyprint-override"><code>public class LoginModel
{
public string EmailAddress { get; set; }
public string Password { get; set; }
}
</code></pre>
<p>Change the <code>Login</code> method signature to read the object value from the request body ... | Angular - Unable to send data with POST request to ASP.NET | c#|asp.net|angular|typescript|post | 0 | 80 | 1 | 72,297,225 | 72,297,225 | 1 | true | 2022-05-18T22:08:31.083Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Angular - Unable to send data with POST request to ASP.NET<p>I'm trying to make an authentication system inside my website. I'm sending a simple POST request... |
72,354,170 | im trying to host my flask api on heroku, but when passing the path to my app, i get an import error<p>the error im getting: ImportError: attempted relative import with no known parent package</p>
<p>My folder structure:</p>
<p>-Backend</p>
<blockquote>
</blockquote>
<ul>
<li><code>__init__</code>.py</li>
<li>run.py</l... | <p>Update based on new information I think we can get you home.</p>
<p>1.) Move <code>run.py</code> next to the procfile (same dir). That "run file" should be in that top level dit at <code>/app/run.py</code> in Heroku.</p>
<p>A good basic pattern for file organization is to "module" everything (a d... | im trying to host my flask api on heroku, but when passing the path to my app, i get an import error | python|flask|heroku|flask-restful | -1 | 80 | 1 | 72,354,380 | 72,354,380 | 1 | true | 2022-05-23T19:56:16.723Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
im trying to host my flask api on heroku, but when passing the path to my app, i get an import error<p>the error im getting: ImportError: attempted relative ... |
72,288,648 | If condition between two date by hour<p>I'm makeing an app that want some text color Change when current time between 2 date.</p>
<p>like I have schedule with tasks, and from 1:00PM to 5:00PM there is a task I have to do.</p>
<p>Want to make a condition if current time between two date change the color of this text.</p... | <p>looks like your <code>item.startDate</code> and <code>item.endDate</code> are <code>Date</code> instances. so you need also a <code>Date</code> with current time, which you can get with</p>
<pre><code>val currDate = Calendar.getInstance().getTime()
</code></pre>
<p>or even by creating new <code>Date</code> instance ... | If condition between two date by hour | android|android-studio|date|datetime|if-statement | 0 | 80 | 1 | 72,289,218 | 72,289,218 | 1 | true | 2022-05-18T11:49:10.617Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
If condition between two date by hour<p>I'm makeing an app that want some text color Change when current time between 2 date.</p>
<p>like I have schedule wit... |
72,327,054 | Creating a file streaming abstraction<p>This is probably a super basic aspect of Rust, but I'm struggling with seeing through the levels of reference checks to make this make sense.</p>
<p>Imagine my current program sums all of the binary-encoded integers in a file:</p>
<pre><code>pub fn read_int(file: &mut File) -... | <p>Here is one approach for how you could do this. The trick here is to just ignore the lifetime entirely by leaving the type up to the generic. We don't really need to know what we are reading the numbers from since all we need is <code>std::io::Read</code> to be implemented for the type for this to work. With this ap... | Creating a file streaming abstraction | rust|borrow-checker | 2 | 80 | 1 | 72,327,353 | 72,327,353 | 1 | true | 2022-05-21T05:59:01.413Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Creating a file streaming abstraction<p>This is probably a super basic aspect of Rust, but I'm struggling with seeing through the levels of reference checks ... |
72,338,921 | CTest: How to set WORKING_DIRECTORY globally?<p>Recently, I have been building a simple test-suite with CTest. In its most simple form it looked something like this:</p>
<pre><code>cmake_minimum_required(VERSION 3.7)
project(testsuite)
enable_testing()
add_test(NAME test_0
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DI... | <blockquote>
<p>Is there a way to set WORKING_DIRECTORY globally</p>
</blockquote>
<p>No. The default WORKING_DIRECTORY for add_test is specified in documentation.</p>
<blockquote>
<p>This works fine</p>
</blockquote>
<p>Do it. I would do:</p>
<pre><code>macro(add_my_test)
add_test(
WORKING_DIRECTORY "${CMAK... | CTest: How to set WORKING_DIRECTORY globally? | cmake|directory|local-variables|ctest | 1 | 80 | 1 | 72,338,972 | 72,338,972 | 1 | true | 2022-05-22T15:27:27.197Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
CTest: How to set WORKING_DIRECTORY globally?<p>Recently, I have been building a simple test-suite with CTest. In its most simple form it looked something li... |
72,279,739 | lapply a function to a data frame list and then cbind to corresponding data frame<p>Problem: Two data frames each containing three columns but different number of rows</p>
<pre><code>>view(archae_pro)
motif obs pred
AAB 1189 760.1757
CDD 1058 249.7147
DDE 771 415.1314
FBB 544 226.3529
>view(archae_end)
motif obs... | <p>Simply, add a first argument to <code>cbind</code> with named argument for new column, <code>prop</code>, on second argument while assigning result back to <code>df.list</code> since you are adding a new column to each data frame.</p>
<p>Then, in next call add an object qualifier, <code>x$</code>, to <code>prop</cod... | lapply a function to a data frame list and then cbind to corresponding data frame | r|lapply|chi-squared|goodness-of-fit | 0 | 80 | 1 | 72,279,936 | 72,279,936 | 1 | true | 2022-05-17T19:33:52.880Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
lapply a function to a data frame list and then cbind to corresponding data frame<p>Problem: Two data frames each containing three columns but different numb... |
72,242,857 | Is leader election used for active/partial standby use cases for microservice replicas?<p>For microservice HA, I know there's the "Active/Active" configuration as well as the "Active/Standby" configuration.</p>
<p>I'm wondering if you might use Leader Election for something in the middle. For exampl... | <h3>Leaderless</h3>
<p>In distributed systems where multiple nodes are running identically then we are calling this environment as leaderless. As the name suggests there no leader to follow. Each node can perform the same set of operations.</p>
<h3>Leader-Follower</h3>
<p>If there is/are special operation(s) which need... | Is leader election used for active/partial standby use cases for microservice replicas? | architecture|high-availability|leader-election | 1 | 80 | 1 | 72,255,417 | 72,255,417 | 1 | true | 2022-05-14T18:17:53.523Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Is leader election used for active/partial standby use cases for microservice replicas?<p>For microservice HA, I know there's the "Active/Active" c... |
72,260,580 | Python List to Dictionary from a file<p>I have a file of notes that im trying to convert to a dictionary. I got the script working but failed to output the data im looking for when there are repeated values.</p>
<p>In short took the file commands or comments which are separated by # as per below. I take that list and s... | <p>If you may have repeated elements then you should always use lists to keep even single value</p>
<pre><code>if firstcolumn not in flashcard_dict:
flashcard_dict[firstcolumn] = []
firstcolumn[firstcolumn].append(secondcolumn)
</code></pre>
<p>instead of</p>
<pre><code>flashcard_dict[firstcolumn] = secondcolumn
... | Python List to Dictionary from a file | python|dictionary | -1 | 80 | 1 | 72,265,999 | 72,265,999 | 1 | true | 2022-05-16T14:11:21.663Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Python List to Dictionary from a file<p>I have a file of notes that im trying to convert to a dictionary. I got the script working but failed to output the d... |
72,282,680 | plot contours in ggplot<p>How do I plot contours ?</p>
<p>I have x, y, z. I wish to plot contour lines using V values.</p>
<pre><code># data
tbl <- tibble(x = runif(n = 1000, min = 0, max = 1),
y = runif(n = 1000, min = 0, max = 1),
V = x^2.5 + y^2)
# plots
ggplot(data = tbl,
aes... | <p>Here is a way, solving the problem with a shameless copy&paste of the <code>franke</code> example in the documentation of <a href="https://ggplot2.tidyverse.org/reference/geom_contour.html" rel="nofollow noreferrer"><code>geom_contour_filled</code></a>.</p>
<p>The trick is to use package <code>interp</code> to p... | plot contours in ggplot | r|ggplot2 | 1 | 80 | 2 | 72,282,893 | 72,282,893 | 1 | true | 2022-05-18T02:46:41.797Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
plot contours in ggplot<p>How do I plot contours ?</p>
<p>I have x, y, z. I wish to plot contour lines using V values.</p>
<pre><code># data
tbl <- tibble... |
72,326,873 | how to store "networkx info" output in a data frame<p>I want to store output of following NetworkX output into a Pandas data frame:</p>
<pre class="lang-py prettyprint-override"><code>for i in (node_id):
G.remove_nodes_from([i])
(nx.info(G))
</code></pre>
<p>Current output looks like follows:</p>
<pre><code>Nam... | <p><code>nx.info</code> outputs a string, you can feed it to <code>pandas.read_csv</code>:</p>
<pre><code>import networkx as nx
import io
import pandas as pd
# dummy graph
G = nx.star_graph(5)
df = pd.read_csv(io.StringIO(nx.info(G)), sep=':\s*', engine='python', names=['attribute', 'value'])
print(df)
</code></pre>
... | how to store "networkx info" output in a data frame | python|pandas|networkx | 0 | 80 | 1 | 72,327,182 | 72,327,182 | 1 | true | 2022-05-21T05:19:05.050Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
how to store "networkx info" output in a data frame<p>I want to store output of following NetworkX output into a Pandas data frame:</p>
<pre class="lang-py p... |
72,359,451 | AssertionError: Class UserSerializer missing "Meta" attribute while performing User Accounts Management on Django<p>my views.py file:</p>
<pre><code>from rest_framework.views import APIView
from rest_framework.response import Response
from .serializers import UserSerializer
class TestView(APIView):
def get(self, ... | <p>I think you missed the indentation in the definition of the <code>UserSerializer</code>.</p>
<pre><code>class UserSerializer(serializers.ModelSerializer):
...
# here you need to indent so Meta belongs to the serializer.
class Meta:
model = User
fields = (
'token'
... | AssertionError: Class UserSerializer missing "Meta" attribute while performing User Accounts Management on Django | django|react-native|django-rest-framework|backend | 0 | 80 | 1 | 72,359,546 | 72,359,546 | 1 | true | 2022-05-24T08:16:42.700Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
AssertionError: Class UserSerializer missing "Meta" attribute while performing User Accounts Management on Django<p>my views.py file:</p>
<pre><code>from res... |
72,335,744 | AWS glue run mode<p>I have been learning about glue lately, and one question striked me out of nowhere. In which mode the glue job run, meaning we run spark jobs in standalone, cluster or local mode. What is the mode when it comes to glue jobs, considering it is also a pyspark job</p> | <p>From various docs and my experience on EMR vs. Glue:</p>
<ul>
<li><p>AWS Glue runs your ETL jobs in an Apache Spark Serverless environment. AWS Glue runs these jobs on virtual resources that it provisions and manages in its own service account. DPU's are the go. It's their own engineering, just like AWS EMR and with... | AWS glue run mode | amazon-web-services|pyspark | 0 | 80 | 1 | 72,335,938 | 72,335,938 | 1 | true | 2022-05-22T07:52:17.357Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
AWS glue run mode<p>I have been learning about glue lately, and one question striked me out of nowhere. In which mode the glue job run, meaning we run spark ... |
72,371,092 | What is the best practice for creating random strings when testing spring junit?<p>What is the best practice for creating random strings when testing spring junit?</p>
<p>When writing a test with junit, I use the code below when creating a random string.</p>
<p><code>UUID.randomUUID().toString().substring(0, 20)</code>... | <p>Using Java 8 you can generate a random string of a-z characters using <code>Random().ints(97, 123)</code> this works because the character <code>a</code> is represented as <code>97</code> and <code>z</code> is represented as <code>122</code>.</p>
<p>Then we can use <code>.collect(...)</code> to convert the character... | What is the best practice for creating random strings when testing spring junit? | java|spring-boot|random|junit | 0 | 80 | 1 | 72,371,308 | 72,371,308 | 1 | true | 2022-05-25T01:31:22.993Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
What is the best practice for creating random strings when testing spring junit?<p>What is the best practice for creating random strings when testing spring ... |
72,304,605 | Modify filter horizontal search field django<p>I'm using filter_horizontal in django admin.</p>
<p><a href="https://i.stack.imgur.com/1ka9Y.png" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/1ka9Y.png" alt="enter image description here" /></a></p>
<p>There is a vineyard called Château Monlot. When I try... | <p>This filter is implemented as a custom javascript widget that is included with django.contrib.admin.</p>
<p><a href="https://github.com/django/django/blob/e89f9571352f42c7752b351ba1e651485e5e7c51/django/contrib/admin/static/admin/js/SelectBox.js" rel="nofollow noreferrer">https://github.com/django/django/blob/e89f95... | Modify filter horizontal search field django | python|django | 2 | 80 | 1 | 72,306,138 | 72,306,138 | 1 | true | 2022-05-19T12:31:54.217Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Modify filter horizontal search field django<p>I'm using filter_horizontal in django admin.</p>
<p><a href="https://i.stack.imgur.com/1ka9Y.png" rel="nofollo... |
72,244,428 | Using Regular Expression to narrow down dictionary based on Wordle rules<p>I am trying to do Wordle Solver as my resume project. I want to develop some word suggestions by narrowing down dictionary of words using RegEx.</p>
<p>Is it possible to write RegEx such that it searches for words in the dictionary that satisfy ... | <p>The below assumes you use flags to enable case insensitivity and multiline mode (so <code>^</code> matches the beginning of a line and <code>$</code> the end) - <code>re.I</code> and <code>re.M</code>.</p>
<blockquote>
<p>Word that starts with the letter 'C'</p>
</blockquote>
<p>This is just <code>^C.*$</code></p>
<... | Using Regular Expression to narrow down dictionary based on Wordle rules | python|python-3.x|regex | 0 | 80 | 2 | 72,244,801 | 72,244,801 | 2 | true | 2022-05-14T23:03:01.627Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Using Regular Expression to narrow down dictionary based on Wordle rules<p>I am trying to do Wordle Solver as my resume project. I want to develop some word ... |
72,240,508 | Creating Cognitive Search index in Databricks: connection.HTTPSConnection Failed to establish a new connection: [Errno -2] Name or service not known<p>I am attempting to create a Cognitive Search Index in Databricks. I'm using the following as a guide:</p>
<p><a href="https://docs.microsoft.com/en-us/azure/search/searc... | <p>the problem is here:</p>
<pre class="lang-py prettyprint-override"><code>service_name = "https://myazuredemo.search.windows.net"
endpoint = "https://{}.search.windows.net/".format(service_name)
</code></pre>
<p>it will give you following URL:</p>
<pre><code>https://https://myazuredemo.search.wind... | Creating Cognitive Search index in Databricks: connection.HTTPSConnection Failed to establish a new connection: [Errno -2] Name or service not known | databricks|azure-databricks|azure-cognitive-search | 0 | 80 | 1 | 72,247,888 | 72,247,888 | 2 | true | 2022-05-14T13:08:41.077Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Creating Cognitive Search index in Databricks: connection.HTTPSConnection Failed to establish a new connection: [Errno -2] Name or service not known<p>I am a... |
72,248,100 | How to use setTimeout synchronously in javascript?<p>Is it possible to get mentioned below output using <code>setTimout</code>. If yes, then please share your thought:-</p>
<pre><code>console.log("1st");
setTimeout(()=>{
console.log("2nd");
},0);
console.log("3rd");
</code></pre>
<p>... | <p>Majed Badawi's answer shows a way to kind of achieve what you want, but it is just a construct that would be similar to simply put your 3rd log inside the setTimeout callback after the 2nd.</p>
<p>There are important conceptual reasons for this.</p>
<p>JavaScript is an event driven language, where you have something... | How to use setTimeout synchronously in javascript? | javascript|json|asynchronous|ecmascript-6|settimeout | 2 | 80 | 3 | 72,248,204 | 72,248,204 | 2 | true | 2022-05-15T12:06:19.307Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to use setTimeout synchronously in javascript?<p>Is it possible to get mentioned below output using <code>setTimout</code>. If yes, then please share you... |
72,249,488 | javax.persistence.EntityNotFoundException: Unable to find kg.library.spring.library_spring.entity.Author with id 10000001<p>I'm new to Spring and I'm probably making the dumbest mistake, but I can't solve this problem for more than 2 hours. According to the video tutorial, I did Pagination, I did it exactly like his, b... | <p>It seems that you have a Book record that refers to an Author with id 10000001 that does not exit in Author table.</p> | javax.persistence.EntityNotFoundException: Unable to find kg.library.spring.library_spring.entity.Author with id 10000001 | java|spring|spring-boot|hibernate|jpa | 0 | 80 | 2 | 72,249,794 | 72,249,794 | 2 | true | 2022-05-15T15:04:27.233Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
javax.persistence.EntityNotFoundException: Unable to find kg.library.spring.library_spring.entity.Author with id 10000001<p>I'm new to Spring and I'm probabl... |
72,274,306 | Oracle PL/SQL - procedure with array parameter<p>I need to write an oracle procedure which will have an array of ID's as parameter.
Then I will return a cursor which contains result of select(1).</p>
<p>(1) - select * from table where id in(ID's)</p>
<pre><code>As an option we can pass a string param and then convert s... | <p>You can create a user-defined collection type:</p>
<pre class="lang-sql prettyprint-override"><code>CREATE TYPE int8_list IS TABLE OF NUMBER(8,0);
</code></pre>
<p>Then your package:</p>
<pre class="lang-sql prettyprint-override"><code>CREATE PACKAGE pkg_name AS
PROCEDURE proc_name (
i_ids IN int8_list,
... | Oracle PL/SQL - procedure with array parameter | oracle|plsql|procedure | 0 | 80 | 1 | 72,274,606 | 72,274,606 | 2 | true | 2022-05-17T12:45:25.900Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Oracle PL/SQL - procedure with array parameter<p>I need to write an oracle procedure which will have an array of ID's as parameter.
Then I will return a curs... |
72,282,435 | TypeScript: How to use generated Union Type correctly in a loop?<p>I have the following type:</p>
<pre><code>type Updater<T> = {
[K in keyof T]: {
key: K;
update: (value: string) => T[K];
};
}[keyof T]
</code></pre>
<p>Here my intention is to have some generic updaters for any type that takes an in... | <p>You've run into an issue I call "correlated union types", as discussed in <a href="https://github.com/microsoft/TypeScript/issues/30581" rel="nofollow noreferrer">microsoft/TypeScript#30581</a>. Many cases of this have been addressed by <a href="https://devblogs.microsoft.com/typescript/announcing-typescr... | TypeScript: How to use generated Union Type correctly in a loop? | typescript|typescript-generics|typescript-types | 1 | 80 | 1 | 72,294,288 | 72,294,288 | 2 | true | 2022-05-18T01:56:41.580Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
TypeScript: How to use generated Union Type correctly in a loop?<p>I have the following type:</p>
<pre><code>type Updater<T> = {
[K in keyof T]: {
... |
72,315,325 | How to render component via FlatList?<p>Using react native with typescript and redux toolkit</p>
<p>Hi I'm bothering with render a list of messages via FlatList. By ScrollView everything rendering good but I need to implement infiniti scroll. So I'm doing something like this</p>
<pre><code>const MessagesScreen = () =&g... | <p>there is problem with your call back function:
<strong>you are not returning Messages component</strong></p>
<p><strong>1:Remove curly braces</strong></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 pr... | How to render component via FlatList? | javascript|reactjs|typescript|react-native|redux | 1 | 80 | 2 | 72,315,423 | 72,315,423 | 2 | true | 2022-05-20T07:48:33.333Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to render component via FlatList?<p>Using react native with typescript and redux toolkit</p>
<p>Hi I'm bothering with render a list of messages via FlatL... |
72,343,703 | How to target DOM and change style in react with mapped elements<p>I have a multi page form that renders a list of buttons for each possible answer.</p>
<p>I am currently using getElementByID to change the button style when a button is clicked. I think this is not considered good practice in react.</p>
<p>can I use the... | <p>You can do this by adding a new state and toggle <code>active</code> class by that state.
Code something like this.</p>
<pre><code>const [activeindex, setActiveIndex] = useState("");
return(
<>
{answers.map((answer, count = 0) => {
return (
<Button
key={count}
... | How to target DOM and change style in react with mapped elements | javascript|reactjs|use-ref | 1 | 80 | 1 | 72,343,787 | 72,343,787 | 2 | true | 2022-05-23T05:42:28.317Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to target DOM and change style in react with mapped elements<p>I have a multi page form that renders a list of buttons for each possible answer.</p>
<p>I... |
72,299,819 | How to highlight accesskeys in a WCAG valid way?<p>With HTML 'accesskeys' there is an effective way to increase the user's operating speed. In desktop applications, a user is shown the available shortcuts by underlining a letter of the operation to be performed. Transferring this concept to web applications leads to co... | <p>Tenon.io actually provides this explanation for the snippet:</p>
<blockquote>
<p>The text in this passage has been styled to display underlined but it is not a link.</p>
</blockquote>
<p>So this, actually, applies more to <a href="https://www.w3.org/WAI/WCAG21/quickref/?versions=2.0&showtechniques=131%2C324#cons... | How to highlight accesskeys in a WCAG valid way? | html|css|accessibility|wcag | 4 | 80 | 1 | 72,351,843 | 72,351,843 | 2 | true | 2022-05-19T06:46:46.887Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to highlight accesskeys in a WCAG valid way?<p>With HTML 'accesskeys' there is an effective way to increase the user's operating speed. In desktop applic... |
72,390,914 | How would I go about building a widget like this?<p><a href="https://i.stack.imgur.com/xmL8k.jpg" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/xmL8k.jpg" alt="I want a front and back picture of the body, where I can programatically color specific muscles (active or inactive during exercise for example)... | <p>Use Flutter Shape Maker <a href="https://fluttershapemaker.com/" rel="nofollow noreferrer">https://fluttershapemaker.com/</a>
Here you can design however you wish and you can get code according to your design like below code</p>
<pre><code>child: CustomPaint(
size: Size(WIDTH,(WIDTH*0.625).toDouble()), //You can ... | How would I go about building a widget like this? | flutter|flutter-layout|flutter-dependencies | -1 | 80 | 1 | 72,391,117 | 72,391,117 | 2 | true | 2022-05-26T11:13:25.687Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How would I go about building a widget like this?<p><a href="https://i.stack.imgur.com/xmL8k.jpg" rel="nofollow noreferrer"><img src="https://i.stack.imgur.c... |
72,397,164 | Paste string with superscript in ggplot<p>I am trying to pass a variable <code>toPaste</code> which is a string that I want part of it to be superscripeted. The string: <code>"this^2/that^+"</code> where <code>2</code> and <code>+</code> are desired to be superscripted.</p>
<p>I browsed around, and it seems, ... | <p>You can use the following:</p>
<pre><code>toPaste <- "this^2/that^'+'"
ggplot() + ylab(parse(text = toPaste))
</code></pre>
<p>Note that the "+" sign needs to be surrounded by single quotes.</p> | Paste string with superscript in ggplot | r|ggplot2|superscript | 0 | 80 | 4 | 72,397,661 | 72,397,661 | 2 | true | 2022-05-26T19:38:24.257Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Paste string with superscript in ggplot<p>I am trying to pass a variable <code>toPaste</code> which is a string that I want part of it to be superscripeted. ... |
72,323,620 | Do iterators define semantics for what `next()` should return after an error?<p>The basic question is: if an implementation of the <code>Iterator</code> trait returns a Result<T, E>, what should the iterator do after an error is returned from <code>next()</code> that makes it impossible to continue iterating?</p>... | <p>Let's look at what <a href="https://doc.rust-lang.org/stable/std/iter/trait.Iterator.html#tymethod.next" rel="nofollow noreferrer">the docs</a> say:</p>
<blockquote>
<p>Returns <code>None</code> when iteration is finished. Individual iterator implementations may choose to resume iteration, and so calling <code>next(... | Do iterators define semantics for what `next()` should return after an error? | rust|error-handling|iterator | 1 | 80 | 1 | 72,323,915 | 72,323,915 | 2 | true | 2022-05-20T18:52:30.340Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Do iterators define semantics for what `next()` should return after an error?<p>The basic question is: if an implementation of the <code>Iterator</code> trai... |
72,308,779 | Wait for an external JS function before continuing the same method<p>I have a simple JS function defined like this :</p>
<pre><code>function firstFunction() {
$.ajax({
url: "/path/to/my/endpoint",
type: "GET"
}).done(function (data) {
localStorage.setItem("myItem... | <p>Make <code>firstFunction()</code> return a promise.</p>
<pre class="lang-js prettyprint-override"><code>function firstFunction() {
return new Promise((res, err) => {
$.ajax({
url: "/path/to/my/endpoint",
type: "GET"
}).done(function (data) {
... | Wait for an external JS function before continuing the same method | javascript|jquery|asynchronous|promise|wait | 0 | 80 | 2 | 72,309,170 | 72,309,170 | 2 | true | 2022-05-19T17:27:48.097Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Wait for an external JS function before continuing the same method<p>I have a simple JS function defined like this :</p>
<pre><code>function firstFunction() ... |
72,394,501 | Sass mix() function is giving error with valid color values<p><strong>_theme-var.scss</strong></p>
<pre><code>//color palette
$colors:(
"primary":#ff0000,
"secondary":#898989,
"dark":#360000,
"light":#ffaeae,
"white":#fff
);
</code></pre>
<p><strong>... | <p>You need to remove the interpolation on <code>#{$val}</code>. The variable is already a color and the interpolation seems to convert it to something else, that's why you get this error.</p>
<pre><code>@for $i from 1 through 9 {
.text-#{$key}-color-light-#{$i}{
color: mix(#ffff, $val, $i*10);
}
}
</co... | Sass mix() function is giving error with valid color values | sass | 1 | 80 | 1 | 72,394,716 | 72,394,716 | 2 | true | 2022-05-26T15:44:10.747Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Sass mix() function is giving error with valid color values<p><strong>_theme-var.scss</strong></p>
<pre><code>//color palette
$colors:(
"primary&quo... |
72,299,636 | How to declare a function with an unknown parameter datatype in a header file?<p>I am pretty new to C and have the following issue with a framework specific datatype that is used within an extern declared function for a parameter inside a header file.</p>
<pre><code>//FILE: example.h
extern void my_function(void *);
<... | <p>Declaring an otherwise unknown datatype is about the only good reason why you should include a header in a header. However there is also the so-called 'forward declaration', which you can use when you need to pass a pointer to a struct. (Or class in C++)</p>
<p>A forward declaration simply looks like this:</p>
<pre>... | How to declare a function with an unknown parameter datatype in a header file? | c|function|header-files|extern | 0 | 80 | 3 | 72,299,760 | 72,299,760 | 2 | true | 2022-05-19T06:30:21.350Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to declare a function with an unknown parameter datatype in a header file?<p>I am pretty new to C and have the following issue with a framework specific ... |
72,371,949 | How to download specific files from a website using Python + Selenium<p>I want to download some specific files from <a href="https://www.gov.br/ans/pt-br/assuntos/consumidor/o-que-o-seu-plano-de-saude-deve-cobrir-1/o-que-e-o-rol-de-procedimentos-e-evento-em-saude" rel="nofollow noreferrer">this page</a>.</p>
<p>This ex... | <p>Selenium is not lightweight, it is the last resort. It mimics the browser, so things like event handling (clicking some element, captcha submission, etc.). Also, if you're trying to scrape a page that uses JavaScript ( dynamically generated data that can not be found when you check the source code of the webpage), S... | How to download specific files from a website using Python + Selenium | python|selenium|web-scraping | 2 | 80 | 1 | 72,373,287 | 72,373,287 | 2 | true | 2022-05-25T04:25:58.660Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to download specific files from a website using Python + Selenium<p>I want to download some specific files from <a href="https://www.gov.br/ans/pt-br/ass... |
72,326,481 | Performance implications of nginx traffic mirroring?<p>Planning to use Nginx <a href="http://nginx.org/en/docs/http/ngx_http_mirror_module.html" rel="nofollow noreferrer">Mirror</a> module to copy the traffic to other server. Wanted to see if there are any performance implication of doing this ?</p>
<p>Like what if the... | <p>There could be chances of performance impact on prod server if you are running both together. For suppose running socket connection and both are online which might leads to latency or another issue for prod server also.</p>
<p>Forum has few unanswered ticket : <a href="https://forum.nginx.org/read.php?2,281042,28104... | Performance implications of nginx traffic mirroring? | nginx|kubernetes|proxy|load-balancing | 1 | 80 | 1 | 72,326,773 | 72,326,773 | 2 | true | 2022-05-21T03:40:15.277Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Performance implications of nginx traffic mirroring?<p>Planning to use Nginx <a href="http://nginx.org/en/docs/http/ngx_http_mirror_module.html" rel="nofollo... |
72,373,262 | Amount calculation in textfield cypress<p>I have a scenario where after selecting a particular product the amount is reflected in a textfield and when we click on a checkbox the amount doubles automatically.
This is my code:</p>
<pre><code>cy.getBySel('textfield').click().then(($title) => {
const op1 = $tit... | <p>All values taken from the page are text.</p>
<p>To do math on it, convert to a number first.</p>
<pre class="lang-js prettyprint-override"><code>const op1 = $title.val().replace('$', " ").trim()
const totalProduct = +(op1.replace(',', '.')) * 2
cy.get('#product-checkbox').click()
cy.getBySel('textfield'... | Amount calculation in textfield cypress | cypress | 3 | 80 | 1 | 72,373,319 | 72,373,319 | 2 | true | 2022-05-25T07:08:04.010Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Amount calculation in textfield cypress<p>I have a scenario where after selecting a particular product the amount is reflected in a textfield and when we cli... |
72,384,779 | How to write the equivalent of this Java encryption function in the Node JS<p>This is the function used to encrypt in java</p>
<pre><code> public static String encryptionFunction(String fieldValue, String pemFileLocation) {
try {
// Read key from file
String strKeyPEM = "";
Buffer... | <p>Node-RSA applies OAEP (<a href="https://www.npmjs.com/package/node-rsa#options" rel="nofollow noreferrer">here</a>) as padding by default, so the PKCS#1 v1.5 padding used in the Java code must be explicitly specified. This has to be added after key import and before encryption:</p>
<pre class="lang-js prettyprint-ov... | How to write the equivalent of this Java encryption function in the Node JS | javascript|java|node.js|typescript|rsa | 2 | 80 | 1 | 72,388,593 | 72,388,593 | 2 | true | 2022-05-25T22:29:06.853Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to write the equivalent of this Java encryption function in the Node JS<p>This is the function used to encrypt in java</p>
<pre><code> public static Stri... |
72,331,795 | Godot SQLite Foreign Key<p>Could someone please show me how to create a foreign key relationship between two tables in Godot. I can not figure based on the current documentation.</p>
<pre><code>extends Node2D
const SQLite = preload("res://addons/godot-sqlite/bin/gdsqlite.gdns")
var save_path = "user://... | <p>First of all, you need to enable them before opening the database:</p>
<pre><code>db.foreign_keys = true
# …
db.open_db()
</code></pre>
<p>Then you need a field that references the other table, and add an entry of the form <code>"foreign_key": "TABLE_NAME.FIELD_NAME"</code> (the <code>data_type</... | Godot SQLite Foreign Key | sqlite|godot | 1 | 80 | 2 | 72,332,710 | 72,332,710 | 2 | true | 2022-05-21T17:25:00.887Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Godot SQLite Foreign Key<p>Could someone please show me how to create a foreign key relationship between two tables in Godot. I can not figure based on the c... |
72,309,690 | Moving the legend in plotly f#<p>I've been trying to move the legend in a plotly plot to the top or the bottom of the plot to maintain uniform sizes of plots with different legnds but I have been unable to do so. Even the plotly documentation has not been very helpful. Does anyone know how to do this?</p>
<p>I tried mo... | <p><a href="https://github.com/plotly/Plotly.NET/issues/63#issuecomment-779330700" rel="nofollow noreferrer">This GitHub comment</a> gives some relevant info for Plotly.NET 2.0. In short, you can move the legend to the top of the plot like this:</p>
<pre class="lang-ml prettyprint-override"><code>open Plotly.NET.Layout... | Moving the legend in plotly f# | f#|plotly | 1 | 80 | 2 | 72,310,414 | 72,310,414 | 2 | true | 2022-05-19T18:49:02.563Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Moving the legend in plotly f#<p>I've been trying to move the legend in a plotly plot to the top or the bottom of the plot to maintain uniform sizes of plots... |
72,275,969 | How can I navigate between views/screens by dragging sideways (swipe gesture)?<p>So I want the user to change the displayed window by dragging it sideways. It shouldn't matter where exactly on the screen is his cursor (so only the dragging action matter) I draw a little representation of what I have in mind. I want the... | <p>You need to apply a translate transform to your content.</p>
<p>The following example shows how to drag the content (or the image of the content). For simplicity, the example only shows how to swipe from right to left. It also doesn't show how to implement a history to navigate back. You would need a <code>Queue</co... | How can I navigate between views/screens by dragging sideways (swipe gesture)? | c#|wpf | -2 | 80 | 1 | 72,281,297 | 72,281,297 | 2 | true | 2022-05-17T14:37:06.897Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How can I navigate between views/screens by dragging sideways (swipe gesture)?<p>So I want the user to change the displayed window by dragging it sideways. I... |
72,391,699 | Why can I change immutable variables in Clojure?<p>I come from the Javascript world where const is used to declare immutable variables.</p>
<p>The definition of a immutable variable is explained in the same way in Clojure.</p>
<p>However, this is allowed:</p>
<pre><code>(def cheese "I like cheese")
...
...
... | <p>To be precise, Clojure has <em><strong>immutible values</strong></em>, not <em><strong>immutible variables</strong></em>. After all, the name <code>Var</code> is shorthand for "variable".</p>
<p>Imagine the number <code>5</code>. You never need to worry about who "owns" it, or that someone might... | Why can I change immutable variables in Clojure? | clojure | 2 | 80 | 2 | 72,393,065 | 72,393,065 | 2 | true | 2022-05-26T12:17:56.353Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Why can I change immutable variables in Clojure?<p>I come from the Javascript world where const is used to declare immutable variables.</p>
<p>The definition... |
72,272,833 | What iterates through stdin when getchar() is in a loop?<p>This first K&R example of character io has kind of stumped me.</p>
<pre><code>#include <stdio.h>
/* copy input to output; 2nd version */
main()
{
int c;
while ((c = getchar()) != EOF)
putchar(c);
}
</code></pre>
<p>For example entering <code>a... | <p><code>getchar</code> reads from a <a href="https://en.wikipedia.org/wiki/Stream_(computing)" rel="nofollow noreferrer"><em>stream</em></a>. That's what <code>stdin</code> is. A stream is a data structure which represents a sequence of data being read from or written to somewhere. A stream is not like a single var... | What iterates through stdin when getchar() is in a loop? | c | 0 | 80 | 2 | 72,273,824 | 72,273,824 | 2 | true | 2022-05-17T10:58:23.377Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
What iterates through stdin when getchar() is in a loop?<p>This first K&R example of character io has kind of stumped me.</p>
<pre><code>#include <std... |
72,268,406 | Retrieving day and time (in minutes) from character timestamp<p>I have a timestamp in character in the following format with a suffixed <code>Z</code>:</p>
<pre><code>"2022-03-01T00:00:00Z"
</code></pre>
<p>I wanted to retrieve the day in numbers and the time in minutes (should return 0 from the above example... | <ol>
<li><p>As noted in comments, use <code>tz="UTC"</code>, otherwise the "Z" == UTC (zulu) information gets lost, also see <a href="https://stackoverflow.com/a/28207493/6574038">this answer</a>.</p>
</li>
<li><p>If time is exactly midnight, the output is omitted.</p>
</li>
</ol>
<p></p>
<pre><code... | Retrieving day and time (in minutes) from character timestamp | r|date|datetime|time | 1 | 80 | 1 | 72,268,785 | 72,268,785 | 2 | true | 2022-05-17T04:59:09.940Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Retrieving day and time (in minutes) from character timestamp<p>I have a timestamp in character in the following format with a suffixed <code>Z</code>:</p>
<... |
72,291,551 | How to initialized an observable for async pipe in the template trying to mimic an assignation in the subscription?<p>The current code is trying to use the async pipe approach instead of using an assignation in the subscription. But if the delay is happeing in the service, the initial value is not rendering in the temp... | <p>I think you want to use <a href="https://www.learnrxjs.io/learn-rxjs/operators/combination/startwith" rel="nofollow noreferrer">startWith</a> that do an initialvalue of an observable.
Try to change the code to this, and it works.</p>
<pre><code> this.title$ = this.sampleService
.loadTitle()
.pipe(startW... | How to initialized an observable for async pipe in the template trying to mimic an assignation in the subscription? | javascript|angular|rxjs|observable|async-pipe | 0 | 80 | 3 | 72,291,805 | 72,291,805 | 3 | true | 2022-05-18T14:59:52.533Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to initialized an observable for async pipe in the template trying to mimic an assignation in the subscription?<p>The current code is trying to use the a... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.