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,844,758
Spock : Verify Interaction Not working -- Too few Invocations<p>I have a very simple class as shown</p> <pre class="lang-java prettyprint-override"><code>class MyClass { public static String getName(String input) { return toUpperCase(input); } public static String toUpperCase(String name) { return n...
<p>You cannot verify interactions on static Java methods. Just make your methods non-static. Besides, in the <code>given:</code> block, you are instantiating the class, so I guess you want to use instance methods anyway.</p> <pre class="lang-java prettyprint-override"><code>class MyClass { public String getName(Strin...
Spock : Verify Interaction Not working -- Too few Invocations
spock
0
50
1
72,848,100
72,848,100
1
true
2022-07-03T07:48:18.017Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: Spock : Verify Interaction Not working -- Too few Invocations<p>I have a very simple class as shown</p> <pre class="lang-java prettyprint-override"><code>cla...
72,849,105
Shorten for-loops into one<p>is it possible to shorten these three for loops into one the code works absolutely fine, I just want to know if there is a possibility to shorten these three for loops into one for exercising reasons and also for code-readability</p> <p><div class="snippet" data-lang="js" data-hide="false" ...
<p>If you mean a single top level loop, you could use a nested loop:</p> <pre class="lang-js prettyprint-override"><code>const SIZE = 166; let boardCoord = []; for (let i = 0; i &lt; 3; i++) { for (let j = 0; j &lt; 3; j++) { boardCoord.push({ x: SIZE * j, y: SIZE * i }); } } </code></pre> <p>I don't th...
Shorten for-loops into one
javascript|performance|for-loop|short|code-readability
0
50
2
72,849,139
72,849,139
1
true
2022-07-03T18:50:08.890Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: Shorten for-loops into one<p>is it possible to shorten these three for loops into one the code works absolutely fine, I just want to know if there is a possi...
72,849,148
how can I invoke a subroutine reference generated from a string in perl?<p>Several times in my code, I do the following.</p> <ol> <li>generate a path from the name of a subroutine</li> <li>invoke the subroutine and return a reference to what the subroutine created</li> <li>store the reference to the path.</li> </ol> <p...
<p>One answer, which requires an additional line of code, works as follows.</p> <ol> <li>Generate the ref to the sub</li> <li>save the ref to a new named variable</li> <li>invoke the sub from the new named variable.</li> </ol> <p>Thus we have</p> <pre><code>#!/usr/bin/env perl use strict; use warnings; use Data::Dumpe...
how can I invoke a subroutine reference generated from a string in perl?
perl|reference|subroutine
1
50
2
72,849,203
72,849,203
1
true
2022-07-03T18:57:03.170Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: how can I invoke a subroutine reference generated from a string in perl?<p>Several times in my code, I do the following.</p> <ol> <li>generate a path from th...
72,849,589
I am trying to solve a challenge from jshero.net<p>I am trying to solve a challenge from jshero.net</p> <blockquote> <p>Write a function add that adds an element to the end of an array. However, the element should only be added if it is not already in the array.</p> </blockquote> <p>Example: <code>add([1, 2], 3)</code>...
<p>Please read the reference for <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/push" rel="nofollow noreferrer">Array.prototype.push</a> method.</p> <p>Method adds element to the end of array and returns length of an array. You need to return array itself - not result of...
I am trying to solve a challenge from jshero.net
javascript|arrays
0
50
3
72,849,619
72,849,619
1
true
2022-07-03T20:11:52.120Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: I am trying to solve a challenge from jshero.net<p>I am trying to solve a challenge from jshero.net</p> <blockquote> <p>Write a function add that adds an ele...
72,849,282
How do cookie consent pop-ups work internally?<p>My project is linked with Google Analytics. Now I would like to create a cookie consent pop-up on my website to comply with EU regulations.</p> <p>Now I see in the EU regulations that the user can select &quot;allow&quot; or &quot;deny&quot;. And then you can anonymize G...
<p>Cookies are files at are stored on your computer that the website can access, 3rd party cookies are cookies that other websites can access too. The most basic way of creating a cookie is by using the browsers local storage. Your allow/deny system can be as simple as a true/false value stored globally, use an if sta...
How do cookie consent pop-ups work internally?
javascript|cookies|google-analytics|session-cookies
1
50
1
72,849,766
72,849,766
1
true
2022-07-03T19:19:16.243Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: How do cookie consent pop-ups work internally?<p>My project is linked with Google Analytics. Now I would like to create a cookie consent pop-up on my website...
72,849,404
RFE from scikit-learn feature_selection with NegativeBinomial from statsmodels as estimator<p>I'm trying to use <a href="https://scikit-learn.org/stable/modules/generated/sklearn.feature_selection.RFE.html" rel="nofollow noreferrer">RFE</a> from scikit-learn with an estimator from statsmodels <a href="https://www.stats...
<p>You can modify your code to require <code>endog</code> and <code>exog</code> variables, instead of using the <code>formula</code> API:</p> <pre><code>import numpy as np import pandas as pd from sklearn.datasets import make_friedman1 from sklearn.feature_selection import RFE from sklearn.base import BaseEstimator imp...
RFE from scikit-learn feature_selection with NegativeBinomial from statsmodels as estimator
python|scikit-learn|statsmodels
1
50
1
72,850,028
72,850,028
1
true
2022-07-03T19:41:25.947Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: RFE from scikit-learn feature_selection with NegativeBinomial from statsmodels as estimator<p>I'm trying to use <a href="https://scikit-learn.org/stable/modu...
72,850,131
Regular Expression misses matches in string<p>I'm trying to write a regular expression that captures desired strings between strings (&quot;f38 &quot;,&quot;f38 &quot;,&quot;f1 &quot;, &quot;..&quot;) and (&quot;\par&quot;,&quot;\hich&quot;,&quot;{&quot;,&quot;}&quot;,&quot;&quot;,&quot;..&quot;) from a decompiled DOC...
<p>The problem is with the part you want to match those single-character samples. <code>\w.+</code> requires <em>at least</em> two characters to match. So, for when you get &quot;e\hich&quot; that first backslash get matched to the dot in regex and lasts until the next backslash (which is one of the &quot;terminators&q...
Regular Expression misses matches in string
regex|powershell|regex-lookarounds
1
50
1
72,850,219
72,850,219
1
true
2022-07-03T21:45:27.817Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: Regular Expression misses matches in string<p>I'm trying to write a regular expression that captures desired strings between strings (&quot;f38 &quot;,&quot;...
72,850,332
Deploy Firebase Functions with different dependencies<p>I group Firebase Cloud Functions into different subject areas. Each function is developed separately in an individual .ts file (I use TypeScript). Some of those functions rely on external libraries and everything is specified in the package.json.</p> <pre><code>Fu...
<p>All dependencies specified in the <code>package.json</code> will be included in each function you create inside the same folder. Firebase only relies on what you deploy on which for example is NodeJS which has <code>npm</code> as its package manager. The only way to minimize inclusion of unused dependencies on other...
Deploy Firebase Functions with different dependencies
firebase|google-cloud-functions
0
50
1
72,851,391
72,851,391
1
true
2022-07-03T22:32:28.730Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: Deploy Firebase Functions with different dependencies<p>I group Firebase Cloud Functions into different subject areas. Each function is developed separately ...
72,852,535
Assembly(Plugin) is not triggering on web roles (custom entity) update in contact entity Dynamics 365 CRM<p>I have a custom entity <strong>Web Role</strong> in dynamics 365 and it's integrated with the <strong>contact</strong> entity to assign web roles to each contact. you can see how web role is used in contact in t...
<p>You have the trigger wrong. As Webrole and Contact has N:N relationship, The Trigger is Associate and dessociate.</p> <p>Take a look at this <a href="https://docs.microsoft.com/en-us/power-apps/developer/data-platform/org-service/entity-operations-associate-disassociate" rel="nofollow noreferrer">MS document</a></p>...
Assembly(Plugin) is not triggering on web roles (custom entity) update in contact entity Dynamics 365 CRM
c#|dynamics-crm|microsoft-dynamics
0
50
1
72,853,923
72,853,923
1
true
2022-07-04T06:28:46.380Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: Assembly(Plugin) is not triggering on web roles (custom entity) update in contact entity Dynamics 365 CRM<p>I have a custom entity <strong>Web Role</strong> ...
72,854,560
React HoC usage with Typescript<p>I have a react HoC where I have define few states and I am passing that to wrapped component. But the wrapped component itself has some props.</p> <p>HoC.tsx</p> <pre><code>const HOC = (Component: React.ComponentType&lt;T&gt;) =&gt; { const [someState, setSomeState] = useState() c...
<p>Here is a small example on how you might type it to make it work</p> <pre><code>type WrappedProps = { b: string; }; // Here you type the child component as generic T combined with // your Wrapped props const Wrapped = &lt;T,&gt;(Comp: ComponentType&lt;T &amp; WrappedProps&gt;) =&gt; { return (props: T) =&gt; { ...
React HoC usage with Typescript
javascript|reactjs|typescript
2
50
1
72,855,098
72,855,098
1
true
2022-07-04T09:30:53.310Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: React HoC usage with Typescript<p>I have a react HoC where I have define few states and I am passing that to wrapped component. But the wrapped component its...
72,834,007
app.js:10567 [Vue warn]: Component is missing template or render function<p>No clue where the error coming from, hours trying to find it. All the components the same. Configure vue router is a nightmare.</p> <p>Error:</p> <blockquote> <p>app.js:10567 [Vue warn]: Component is missing template or render function. at &...
<p>if you read the red error, it says <code>cannot read propertie of undefined (reading 'get')</code></p> <p>That means your trying to access the <code>get</code> propertie of an <code>undefined</code> object</p> <p>looking for <code>get</code>in your code, we find :</p> <pre><code>this.axios .get('/api/products/')...
app.js:10567 [Vue warn]: Component is missing template or render function
laravel|vuejs3|laravel-9
0
50
1
72,859,498
72,859,498
1
true
2022-07-01T19:46:03.107Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: app.js:10567 [Vue warn]: Component is missing template or render function<p>No clue where the error coming from, hours trying to find it. All the components ...
72,796,292
How to apply Gradient to Line/Border of a shape in Powerpoint using C#?<p>In PowerPoint 2016 UI, it is possible to apply a gradient to the Border of a shape. The same however cannot be done using Microsoft.Office.Interop.PowerPoint in C#. I was able to apply a gradient to the shape but not to its border. Kindly advise ...
<p>I agree: there is no way that I can see to set a line gradient via the Interop assemblies. The clue for me was that you can't use the simple controls on the ribbon to do this, you need to use &quot;Format Shape&quot;, and then you can set a bunch of stuff that also isn't available. This led me to think it was in the...
How to apply Gradient to Line/Border of a shape in Powerpoint using C#?
office365|powerpoint|office-interop|office-addins|powerpoint-2016
0
50
2
72,860,529
72,860,529
1
true
2022-06-29T05:41:15.803Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: How to apply Gradient to Line/Border of a shape in Powerpoint using C#?<p>In PowerPoint 2016 UI, it is possible to apply a gradient to the Border of a shape....
72,859,059
Is there any way in Nuxt3 to load a plugin once?<p>I'm trying to integrate <a href="https://sequelize.org/docs/v6/getting-started/" rel="nofollow noreferrer">Sequelize</a> to my <a href="https://v3.nuxtjs.org/" rel="nofollow noreferrer">Nuxt 3</a> project. However, I couldn't figure out how to make it load only once in...
<p>OP solved his issue by removing a composable that was initialized on a component's <code>mounted</code> lifecycle hook.</p> <p>Just a remaining piece of code.</p>
Is there any way in Nuxt3 to load a plugin once?
sequelize.js|nuxt.js|nuxtjs3
1
50
1
72,861,458
72,861,458
1
true
2022-07-04T15:28:20.407Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: Is there any way in Nuxt3 to load a plugin once?<p>I'm trying to integrate <a href="https://sequelize.org/docs/v6/getting-started/" rel="nofollow noreferrer"...
72,856,285
Excel: How to increment time once in every 1000 rows<p>I have a date-time column in DD-MM-YYYY HH:MM:SS format. I need to increment this column value by 10 minutes once in every 1000 rows. Once an increment has been done, the value will remain constant for 1000 rows after which another increment will be made.</p> <p>I ...
<p>Simpler (and more robust than using row() if anybody inserts rows at the top) is:</p> <ul> <li>in A2 put <code>=A1</code>,</li> <li>drag down as far as A1000</li> <li>in A1001 put <code>=A1+10/60/24</code></li> <li>drag down as far as you need</li> </ul>
Excel: How to increment time once in every 1000 rows
excel|csv|excel-formula|spreadsheet
1
50
1
72,862,362
72,862,362
1
true
2022-07-04T11:53:59.580Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: Excel: How to increment time once in every 1000 rows<p>I have a date-time column in DD-MM-YYYY HH:MM:SS format. I need to increment this column value by 10 m...
72,821,931
Insert text into HTML/CSS e-mail with function from a different file<p>I have a html/css e-mail template that I want to use to send users e-mails for things like welcoming after signing up, send secret codes, and general purpose e-mails.</p> <p>I need to &quot;inject&quot; this html template it with custom text instead...
<p>If you instead make the generalContact.html a .js file, or just put it in the current .js file, then you can make the whole HTML slab one variable.</p> <pre><code>let HTML = { get latest() { return `&lt;!DOCTYPE html ... ... ${customInputText}... ...` } } </code></pre> <p>Then update the customIn...
Insert text into HTML/CSS e-mail with function from a different file
javascript|html-email
0
50
1
72,863,247
72,863,247
1
true
2022-06-30T20:56:33.457Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: Insert text into HTML/CSS e-mail with function from a different file<p>I have a html/css e-mail template that I want to use to send users e-mails for things ...
72,865,929
Sum rows with same values and write it in new cell<p>I have the following table:</p> <div class="s-table-container"> <table class="s-table"> <thead> <tr> <th>OrderNumber</th> <th>Value</th> </tr> </thead> <tbody> <tr> <td>123</td> <td>2</td> </tr> <tr> <td>123</td> <td>3</td> </tr> <tr> <td>333</td> <td>5</td> </tr> <t...
<p>You need <code>SUMIF()</code> function.</p> <pre><code>=SUMIF($A$2:$A$7,A2,$B$2:$B$7) </code></pre> <p>If you are a <em><strong>Microsoft 365</strong></em> user then can try <code>BYROW()</code> for one go.</p> <pre><code>=BYROW(A2:A7,LAMBDA(x,SUMIF(A2:A7,x,B2:B7))) </code></pre> <p><a href="https://i.stack.imgur.co...
Sum rows with same values and write it in new cell
excel|excel-formula|sum
0
50
2
72,865,987
72,865,987
1
true
2022-07-05T07:59:58.777Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: Sum rows with same values and write it in new cell<p>I have the following table:</p> <div class="s-table-container"> <table class="s-table"> <thead> <tr> <th...
72,866,372
Populate Object value with FOR LOOP<p>I am using node-red to populate a chart using data from PLC. The data comes in as a object, then i convert it to a 2D array 36 items long (the object has 36 elements):</p> <pre><code>for(var i in pressCurve){ curveArray.push([i, pressCurve [i]]); </code></pre> <p>then to get th...
<p>You can try this :</p> <pre><code>msg.payload =[{ &quot;series&quot;: [&quot;Cruve&quot;], &quot;data&quot;: pressCurve.map((element, i) =&gt; ({ x: i, y: element }) ), &quot;labels&quot;: [&quot;Curbe Label&quot;] }]; </code></pre> <p>Can you share the array of data that you use to fill &quot;series&quo...
Populate Object value with FOR LOOP
javascript|node-red
0
50
2
72,866,818
72,866,818
1
true
2022-07-05T08:36:46.633Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: Populate Object value with FOR LOOP<p>I am using node-red to populate a chart using data from PLC. The data comes in as a object, then i convert it to a 2D a...
72,868,920
Files are copied twice from first and second level folders<p>I have found and remastered the following code to my needs. The code copies all spreadsheets from a source folder to a new folder based on an enumeration of spreadsheet file extensions.</p> <p>However, it copies files twice (bug!), if they are in the source f...
<p>Your input and output folder are the same.</p> <p>So you need to cache the list of files to copy before beginning the actual copying. Simply change the <code>foreach</code> line to do this.</p> <p>It also seems sensible to keep the <code>copy_file_number</code> between loops so you don't have to keep checking the sa...
Files are copied twice from first and second level folders
c#|file|copy|enumeration
0
50
2
72,870,335
72,870,335
1
true
2022-07-05T11:48:29.853Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: Files are copied twice from first and second level folders<p>I have found and remastered the following code to my needs. The code copies all spreadsheets fro...
72,870,293
Cmake reconfiguration with sanitizers added doesn't trigger ninja to recompile<p>Let's assume a minimal top level CMakeLists.txt like this:</p> <pre><code> 1 cmake_minimum_required(VERSION 3.22) 2 set(CMAKE_CXX_STANDARD 20) 3 4 project(stackoverflow LANGUAGES CXX C) 5 6 add_executable(prog src/main.cpp) ...
<p>When you set a variable, it is set inside cache <code>CMakeCache.txt</code>. When you don't reset it when reconfiguring, it preserves its previous value. The <code>option.... OFF</code>, only set's the option to <code>OFF</code> if it is unset. Even <code>set(ENABLE_SANITIZER OFF)</code> will <em>not</em> set the va...
Cmake reconfiguration with sanitizers added doesn't trigger ninja to recompile
c++|cmake|ninja|address-sanitizer
0
50
1
72,871,591
72,871,591
1
true
2022-07-05T13:28:37.453Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: Cmake reconfiguration with sanitizers added doesn't trigger ninja to recompile<p>Let's assume a minimal top level CMakeLists.txt like this:</p> <pre><code> ...
72,872,495
r ICC estimate by group<p>If this is my repeated measure dataset</p> <pre><code>Machine RaterId Date Value Drill 123 01/05/2019 8.91 Drill 123 07/19/2018 9.31 Drill 144 02/10/2015 8.21 Drill 110 04/15/2107 8.56 Drill 134 06/10/2017 7...
<p>You could use the <code>ICCest</code> function from the <code>ICC</code> package like this:</p> <pre class="lang-r prettyprint-override"><code>library(ICC) ICCest(RaterId, Value, data=df[df$Machine==&quot;Drill&quot;,]) #&gt; Warning in ICCest(RaterId, Value, data = df[df$Machine == &quot;Drill&quot;, ]): 'x' has #&...
r ICC estimate by group
r
0
50
1
72,873,526
72,873,526
1
true
2022-07-05T16:05:53.360Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: r ICC estimate by group<p>If this is my repeated measure dataset</p> <pre><code>Machine RaterId Date Value Drill 123 01/05/2019 8....
72,858,234
Should I create a duplicate collection/document for each use-case? (Firebase/Firestore)<p>I'm trying to build an ecommerce app with firebase on the backend. I have a collection of 1000+ products, each of which is stored as a separate document, which have product specific info such as price, title etc.</p> <pre><code>do...
<p><strong>TL;DR</strong> Yes, you should create a new document with the needed data for each specific use case, but it’s not recommended to make it as a document with nested objects like arrays with 1000+ elements.</p> <p>From a technical point of view, Cloud Firestore is optimized for storing large collections of sma...
Should I create a duplicate collection/document for each use-case? (Firebase/Firestore)
firebase|google-cloud-firestore|nosql|schema
0
50
1
72,873,884
72,873,884
1
true
2022-07-04T14:22:26.323Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: Should I create a duplicate collection/document for each use-case? (Firebase/Firestore)<p>I'm trying to build an ecommerce app with firebase on the backend. ...
72,872,949
Handlebars - split string and iterate within {{each}}<p>Basically I am rendering a JSON file into a HTML template with Handlebars and all works fine except for one value where I get returned a string with comma separated values.</p> <p>JSON file:</p> <pre><code>[ { &quot;venue_state&quot;: &quot;Everywhere&quot...
<p>I solved it like this</p> <p>script.js</p> <pre><code> var data = JSON.parse(request.responseText, function(key, x) { if (key === &quot;flavor_profiles&quot;) { x = x.split(','); return x; } return x; }); </code></pre> <p>HTML</p> <pre><code>&lt;ul class=&quot;tags&...
Handlebars - split string and iterate within {{each}}
javascript|html|json|handlebars.js
0
50
2
72,874,604
72,874,604
1
true
2022-07-05T16:45:51.163Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: Handlebars - split string and iterate within {{each}}<p>Basically I am rendering a JSON file into a HTML template with Handlebars and all works fine except f...
72,872,386
How to Override or Hide Django admin model form field value<p>Currently, I'm having a problem when overriding a form field value on my (Django==4.0.3) django admin form. The objective is : I have a specific user table that I'm connecting to AWS Cognito. And when the admin creates a new user in django, the system must c...
<p>You have to assign the value to <code>form.instance</code> instead of directly to the form itself.</p> <pre class="lang-py prettyprint-override"><code>class BuyerUserAddForm(forms.ModelForm): grupo = forms.CharField() # ... def save(self, commit=True): grupo = self.cleaned_data.get('grupo', Non...
How to Override or Hide Django admin model form field value
python|python-3.x|django|django-forms|django-admin
0
50
1
72,875,552
72,875,552
1
true
2022-07-05T15:58:02.423Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: How to Override or Hide Django admin model form field value<p>Currently, I'm having a problem when overriding a form field value on my (Django==4.0.3) django...
72,874,798
autocomplete for room query stopped working?<p>After opening my room dao I noticed that the autocomplete for <code>Query</code> annotation does not work at all. Not only that, but it also does not check any SQL queries I try to enter for errors and spelling mistakes:</p> <p><a href="https://i.stack.imgur.com/2m6K6.png"...
<p>If you compile, then the error will be detected and will be available in the build log.</p> <p>e.g.</p> <pre><code>E:\AndroidStudioApps\SO72784799KotlinRoomJSON11\app\build\tmp\kapt3\stubs\debug\a\a\so72784799kotlinroomjson1_1\AllDao.java:35: error: extraneous input 'FRR' expecting {&lt;EOF&gt;, ';', K_ALTER, K_ANAL...
autocomplete for room query stopped working?
android|kotlin|android-room
1
50
2
72,877,030
72,877,030
1
true
2022-07-05T19:48:39.073Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: autocomplete for room query stopped working?<p>After opening my room dao I noticed that the autocomplete for <code>Query</code> annotation does not work at a...
72,882,492
Does affinity colocation work with Ignite Thin client?<p>In <a href="https://ignite.apache.org/docs/2.11.1/data-modeling/affinity-collocation" rel="nofollow noreferrer">the docs</a> I could find examples of the affinity colocation config only for thick client. Does this feature works with thin client? Any config exampl...
<p>Yes, affinity colocation works in Ignite Thin Client the same way it does in thick client.</p> <p>Thin client also supports <a href="https://ignite.apache.org/docs/2.11.1/thin-clients/getting-started-with-thin-clients#partition-awareness" rel="nofollow noreferrer">Partition Awareness</a> - sends requests directly to...
Does affinity colocation work with Ignite Thin client?
java|ignite
0
50
1
72,882,843
72,882,843
1
true
2022-07-06T11:06:21.973Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: Does affinity colocation work with Ignite Thin client?<p>In <a href="https://ignite.apache.org/docs/2.11.1/data-modeling/affinity-collocation" rel="nofollow ...
72,883,832
Kubernetes Ingress does not match host<p>I'm trying to create an ingress rule for a backend service. The ingress controller is the Microk8s Nginx ingress. If I set the host, the ingress stops matching the backend, resulting in a 404 when I visit <a href="https://my-host.com" rel="nofollow noreferrer">https://my-host.co...
<p>You have created 2 rules, one with only <code>host</code> and a second with <code>http: ...</code>. It should be</p> <pre><code>rules: - host: &quot;my-host.com&quot; http: paths: </code></pre> <p>Yes, YAML is evil.</p>
Kubernetes Ingress does not match host
kubernetes|nginx-ingress|microk8s
0
50
1
72,884,022
72,884,022
1
true
2022-07-06T12:46:51.087Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: Kubernetes Ingress does not match host<p>I'm trying to create an ingress rule for a backend service. The ingress controller is the Microk8s Nginx ingress. If...
72,883,317
plot separate curves for non-linear (nls) model with categorical variable and separate parameter values<p>I have a dataset of age and length, plus some categorical variables including sex and location (2 level factor). I have fit a Gompertz model to this, using <code>nls()</code>:</p> <pre><code>gompertz &lt;- nls(Leng...
<p>How about this:</p> <pre class="lang-r prettyprint-override"><code>library(ggplot2) ages&lt;- runif(100, 0, 22) #ages 0-22 #parameters for model a1&lt;-153 b1&lt;-0.51 c1&lt;-0.53 a2&lt;-147 b2&lt;-0.45 c2&lt;-0.43 #generate length with error normally distributed length1 &lt;- (a1*exp(-b1*exp(-c1*ages))) +rnorm(...
plot separate curves for non-linear (nls) model with categorical variable and separate parameter values
r|ggplot2|non-linear-regression|nls
0
50
2
72,884,094
72,884,094
1
true
2022-07-06T12:08:56.047Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: plot separate curves for non-linear (nls) model with categorical variable and separate parameter values<p>I have a dataset of age and length, plus some categ...
72,855,153
JasperSoft Studio (6.8), custom and dynamic color for a pieChart element<p>I'm using <code>JasperSoft Studio version 6.8</code>. I'm trying to create a pieChart with dynamic colours. I would want each label ('Verificata dal cliente', 'Aperta', 'Situazione invariata', etc...) to always have the same colour. <br> The pro...
<p>I managed to resolve this, if someone is struggling like I was:</p> <pre><code>import net.sf.jasperreports.engine.JRAbstractChartCustomizer; import net.sf.jasperreports.engine.JRChart; import org.jfree.chart.JFreeChart; import org.jfree.chart.plot.PiePlot; import org.jfree.data.general.PieDataset; import com.faster...
JasperSoft Studio (6.8), custom and dynamic color for a pieChart element
java|jasper-reports|pie-chart|jfreechart
1
50
1
72,885,888
72,885,888
1
true
2022-07-04T10:17:23.623Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: JasperSoft Studio (6.8), custom and dynamic color for a pieChart element<p>I'm using <code>JasperSoft Studio version 6.8</code>. I'm trying to create a pieCh...
72,888,984
Scraping a table w/ BeautifulSoup<p>I'm new to scraping, and I've been fighting with this table for hours. I'm trying to get a couple pieces of information from exhibitors at an upcoming conference, and was wondering if someone could please help me.</p> <p>Code:</p> <pre><code>profile = requests.get('https://annual.asa...
<p>xpath might not have been working out because the person who wrote the tables used same <code>id</code> for multiple tables! That's why your script is probably failing. Here's an alternative way to get the data:</p> <pre><code>page_url = &quot;https://annual.asaecenter.org/profile.cfm?profile_name=exhibitor&amp;mast...
Scraping a table w/ BeautifulSoup
python|web-scraping|beautifulsoup
1
50
2
72,889,338
72,889,338
1
true
2022-07-06T19:34:27.337Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: Scraping a table w/ BeautifulSoup<p>I'm new to scraping, and I've been fighting with this table for hours. I'm trying to get a couple pieces of information f...
72,890,547
Typescript - function return type in interface<p>Trying to do this</p> <pre><code>interface SomeInterface { someProperty: string | () =&gt; JSX.Element } </code></pre> <p>The property should be either a <code>string</code> or a <code>Function</code> that returns a <code>JSX.Element</code>. What's the proper syntax,...
<p>Yup this is correct with parenthesis :</p> <pre><code>interface SomeInterface { someProperty: string | (() =&gt; JSX.Element) } declare const s: SomeInterface if (typeof s.someProperty === 'function') { s.someProperty() // JSX.Element } else { s.someProperty // string } </code></pre> <p><a href="https...
Typescript - function return type in interface
typescript
0
50
1
72,890,559
72,890,559
1
true
2022-07-06T22:36:23.877Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: Typescript - function return type in interface<p>Trying to do this</p> <pre><code>interface SomeInterface { someProperty: string | () =&gt; JSX.Element }...
72,892,666
Dose UIView.animate completion block run in main thread?<p>I made a simple popupView and add simple animation like these</p> <pre><code>// Present if popup.superView != currentView { currentView.addSubview(popup) } UIView.animate(withDuration: 0.3, animations: { popup.alpha = 1 }) // Dismiss UIView.animate(withDur...
<p>The answer is yes. But to be sure you can test it by adding a debug print:</p> <pre><code>UIView.animate(withDuration: 0.3, animations: { popup.alpha = 0 }, completion: { print(&quot;---- isMainThread: \(Thread.isMainThread) ----&quot;) animationCount -= 1 if animationCount == 0 { popup.remov...
Dose UIView.animate completion block run in main thread?
ios|swift|asynchronous|animation|callback
0
50
1
72,893,173
72,893,173
1
true
2022-07-07T05:26:06.270Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: Dose UIView.animate completion block run in main thread?<p>I made a simple popupView and add simple animation like these</p> <pre><code>// Present if popup.s...
72,895,422
Meaning of ENUM as a data type<p>I keep reading the statement that 'Enumeration is a datatype'(for example see <a href="https://docs.microsoft.com/en-us/dotnet/visual-basic/programming-guide/language-features/constants-enums/when-to-use-an-enumeration" rel="nofollow noreferrer">here</a> ). I am trying to understand the...
<p>Your <code>2.</code> sort of answers your <code>1.</code><br /> You are not supposed to do <code>c.Red</code>, you are supposed to do <code>colours.Red</code>, and if you do <code>c.Red</code> you get the warning.</p> <p>The qualifying expression that will not be evaluated is <code>c</code>.<br /> That is, the compi...
Meaning of ENUM as a data type
vb.net
0
50
2
72,896,944
72,896,944
1
true
2022-07-07T09:29:05.673Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: Meaning of ENUM as a data type<p>I keep reading the statement that 'Enumeration is a datatype'(for example see <a href="https://docs.microsoft.com/en-us/dotn...
72,899,439
Visualizing Prediction and Test values for comparison<p><a href="https://i.stack.imgur.com/JGo5e.png" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/JGo5e.png" alt="sample graph" /></a></p> <p>I'd like to make comparing this Prediction and Test values easier, so I'm thinking two ways to achieve that:</p>...
<p>There are short ways to achieve everything you've suggested:</p> <ol> <li>Force scaled axes with <a href="https://matplotlib.org/stable/api/_as_gen/matplotlib.axes.Axes.set_aspect.html" rel="nofollow noreferrer"><code>matplotlib.axes.Axes.set_aspect</code></a>.</li> <li>Add an infinite line with slope 1 through he o...
Visualizing Prediction and Test values for comparison
python|matplotlib|seaborn
0
50
2
72,899,974
72,899,974
1
true
2022-07-07T14:16:35.843Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: Visualizing Prediction and Test values for comparison<p><a href="https://i.stack.imgur.com/JGo5e.png" rel="nofollow noreferrer"><img src="https://i.stack.img...
72,885,182
Creating nodes from nested JSON using neo4J query<p>I'm new in neo4j and i have this json file:</p> <pre><code>{ &quot;locations_connections&quot;: { &quot;locations&quot;: [ { &quot;id&quot;: &quot;aws.us-east-1&quot;, &quot;longitude&quot;: 72.8777, &quot;latitude&quot;: 19.0760 ...
<p>You cannot use match inside a FOREACH so when you put MERGE and :CONNECT inside the for loop, it is creating multiple nodes. This is what I did and tell us if it works for you or not.</p> <pre><code>call apoc.load.json(&quot;/file.json&quot;) yield value // read the json file WITH value, value.locations_connections...
Creating nodes from nested JSON using neo4J query
json|neo4j|cypher
1
50
1
72,900,076
72,900,076
1
true
2022-07-06T14:18:24.577Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: Creating nodes from nested JSON using neo4J query<p>I'm new in neo4j and i have this json file:</p> <pre><code>{ &quot;locations_connections&quot;: { &...
72,901,251
Staggered gird view tiles with different accept ratio in flutter web<p>I am trying to achieve the following grid layout in Flutter using staggered grid view <a href="https://i.stack.imgur.com/7UxfR.png" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/7UxfR.png" alt="needed layout" /></a></p> <p>but i am n...
<p>The <code>crossAxisCount:9</code> will dominate the UI. Change <code>sh</code> value based on need</p> <pre class="lang-dart prettyprint-override"><code>const sh = 2; return Scaffold( body: GridView.custom( gridDelegate: SliverQuiltedGridDelegate( crossAxisCount: 9, mainAxisSpacing: 20, cross...
Staggered gird view tiles with different accept ratio in flutter web
flutter|dart|flutter-layout|flutter-web|staggered-gridview
1
50
1
72,902,031
72,902,031
1
true
2022-07-07T16:22:58.707Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: Staggered gird view tiles with different accept ratio in flutter web<p>I am trying to achieve the following grid layout in Flutter using staggered grid view ...
72,906,306
Is there a way to get next row value or prior row value when the string match doesnt occur in pandas dataframe<p>I am trying to query a date column in pandas dataframe and return price column value - however, if the date isn't matched (say holiday or a weekend date) the next available date column and price value need t...
<p>You can use this one-liner:</p> <pre><code>out = (df.loc[df['date'].sub(pd.to_datetime('2022-07-03')) .loc[lambda x: x.dt.days&gt;=0].head(1).index]) print(out) # Output date price 2 2022-07-05 30 </code></pre> <p>Input dataframe:</p> <pre><code>&gt;&gt;&gt; df date pri...
Is there a way to get next row value or prior row value when the string match doesnt occur in pandas dataframe
python|pandas|dataframe|date
-1
50
2
72,906,642
72,906,642
1
true
2022-07-08T03:23:07.923Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: Is there a way to get next row value or prior row value when the string match doesnt occur in pandas dataframe<p>I am trying to query a date column in pandas...
72,907,584
Blazor DBContext Caching Issue<p>I am playing around with Blazor and pulling data from Postgres Sql, I am having issue with DBContext caching data with the tutorial I am following.</p> <p>In <code>Startup.cs</code> I have added the <code>DbContext</code> and a Service I made</p> <pre class="lang-cs prettyprint-override...
<p>You need to be using a DBContext Factory and &quot;Unit of Work&quot; contexts. See this MS-Docs article - <a href="https://docs.microsoft.com/en-us/ef/core/dbcontext-configuration/#using-a-dbcontext-factory-eg-for-blazor" rel="nofollow noreferrer">https://docs.microsoft.com/en-us/ef/core/dbcontext-configuration/#u...
Blazor DBContext Caching Issue
blazor
0
50
1
72,909,068
72,909,068
1
true
2022-07-08T06:41:58.127Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: Blazor DBContext Caching Issue<p>I am playing around with Blazor and pulling data from Postgres Sql, I am having issue with DBContext caching data with the t...
72,880,058
Regex; Why is here a between difference \p{Katakana} and \x{30A0}-\x{30FF}?<p>I found that <code>ー</code>, <code>゠</code> and <code>・</code> are not detected with <code>\p{Katakana}</code> but as range <code>\x{30A0}-\x{30FF}</code>.</p> <p>See <a href="https://regex101.com/r/PZzTLm/1" rel="nofollow noreferrer">https:/...
<p>In <code>\p{Katakana}</code>, <code>\x{30A1}-\x{30FA}\x{30FD}-\x{30FF}</code> is used instead of the <code>\x{30A0}-\x{30FF}</code> range, where <a href="https://r12a.github.io/uniview/?charlist=%E3%82%A0%E3%83%BB%E3%83%BC" rel="nofollow noreferrer"><code>\x{30A0}</code>, <code>\x{30FB}</code> and <code>\x{30FC}</co...
Regex; Why is here a between difference \p{Katakana} and \x{30A0}-\x{30FF}?
regex
2
50
1
72,909,097
72,909,097
1
true
2022-07-06T08:17:57.483Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: Regex; Why is here a between difference \p{Katakana} and \x{30A0}-\x{30FF}?<p>I found that <code>ー</code>, <code>゠</code> and <code>・</code> are not detected...
72,909,778
How do I resolve Cannot read properties of undefined (reading 'Fiscal Year')?<p>I am accessing the data retrieved using an API and I am displaying it like this.</p> <pre><code>&lt;Grid &gt;&lt;Typography variant=&quot;body1&quot;&gt;Fiscal Year &lt;/Typography&gt;&lt;/Grid&gt; &lt;TableContainer style={{width:600,heigh...
<p>I could be wrong but I believe by the time compiler enters <strong>stats['Financial Highlights']['Fiscal Year']</strong>, your API is still busy fetching the response. I would suggest you add a nullable operator like this</p> <p><code>stats?.['Financial Highlights']?.['Fiscal Year']</code></p> <p>It will pass this c...
How do I resolve Cannot read properties of undefined (reading 'Fiscal Year')?
javascript|reactjs|api|post
0
50
1
72,910,381
72,910,381
1
true
2022-07-08T10:03:43.323Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: How do I resolve Cannot read properties of undefined (reading 'Fiscal Year')?<p>I am accessing the data retrieved using an API and I am displaying it like th...
72,910,389
PHP counting nodes in JSON returns to many<pre><code>$ONEANSWER = '{ &quot;name&quot;: &quot;Attendee terms and conditions&quot;, &quot;id&quot;: &quot;1z6wzmd95&quot;, &quot;numberofcolumns&quot;: &quot;1&quot;, &quot;type&quot;: &quot;check-box&quot;, &quot;answers&quot;: { &quot;answer&quot;: { &...
<p>If it's <a href="https://www.w3schools.com/php/php_arrays_associative.asp" rel="nofollow noreferrer">associative array</a> make it sequential array</p> <pre class="lang-php prettyprint-override"><code>function isAssoc($array) { $array = array_keys($array); return ($array !== array_keys($array)); } if (isAss...
PHP counting nodes in JSON returns to many
php|json|count
-3
50
2
72,910,985
72,910,985
1
true
2022-07-08T10:56:27.400Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: PHP counting nodes in JSON returns to many<pre><code>$ONEANSWER = '{ &quot;name&quot;: &quot;Attendee terms and conditions&quot;, &quot;id&quot;: &quot;1...
72,913,736
Why does the back button work even when using WillPopScope in Flutter/Dart?<p>In my code, there is an automatically popup dialog box. I need to prevent my user from being able to click on the back button when this popup appears.</p> <p>Here is the whole code:</p> <pre class="lang-dart prettyprint-override"><code>// New...
<p>This should work :</p> <pre><code>showGeneralDialog( context: context, barrierDismissible: false, pageBuilder: (_, __, ___) { return WillPopScope( onWillPop: () async { return false; }, child: Container( //Your popup's content goes here ...
Why does the back button work even when using WillPopScope in Flutter/Dart?
flutter|dart|flutter-layout
0
50
1
72,913,838
72,913,838
1
true
2022-07-08T15:30:27.903Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: Why does the back button work even when using WillPopScope in Flutter/Dart?<p>In my code, there is an automatically popup dialog box. I need to prevent my us...
72,917,265
Mapping an array of objects that compares each object to an array of ids<p>I have been working all day for this but I can't still solve it. So I'm using tmdb and I have their array of genre objects which is laid out like this:</p> <pre><code> { id: 28, name: &quot;Action&quot;, }, { id: 12, name: &...
<p>You can probably try something like this using array.filter()</p> <pre><code> const genre_ids = [14 , 20]; const genre = [{id: 14, name: &quot;action&quot;}, {id: 20, name: &quot;drama&quot;}, {id: 25,name: &quot;sci-fi&quot;}] // Will store [{id: 14, name: &quot;action&quot;}, {id: 20, name: &quot;drama&quot;}...
Mapping an array of objects that compares each object to an array of ids
reactjs|jsx
0
50
1
72,917,352
72,917,352
1
true
2022-07-08T21:41:51.917Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: Mapping an array of objects that compares each object to an array of ids<p>I have been working all day for this but I can't still solve it. So I'm using tmdb...
72,918,446
Find alphanumeric strings from ArraList using Java 8 Streams<pre><code>List&lt;String&gt; list = Arrays.asList(&quot;ABC&quot;,&quot;123ABC&quot;,&quot;def&quot;,&quot;def45&quot;,&quot;2GHI&quot;,&quot;u3ht&quot;, &quot;zxy&quot;,&quot;t12pp&quot;, &quot;kkk&quot;); </code></pre> <p>Note: print only alph...
<pre class="lang-java prettyprint-override"><code> import java.util.*; import java.util.stream.Collectors; import java.util.regex.*; public class SO72918446 { public static void main(String args[]) { Pattern pattern = Pattern.compile(&quot;^(?=.*\\d)(?=.*[a-zA-Z]).{2,}$&quot;); List&lt;String&gt; l...
Find alphanumeric strings from ArraList using Java 8 Streams
java|regex|stream
-3
50
1
72,918,544
72,918,544
1
true
2022-07-09T02:09:26.940Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: Find alphanumeric strings from ArraList using Java 8 Streams<pre><code>List&lt;String&gt; list = Arrays.asList(&quot;ABC&quot;,&quot;123ABC&quot;,&quot;def&q...
72,919,457
how to get remote updates to my local working copy in git<p>how do i update my local working copy of source code with current latest version of remote code?</p> <p>This is the situation:</p> <p>Suppose 2 people(<code>A,B,C</code>) are working on the project and they follows <code>git flow</code>..</p> <p>There is <code...
<p>Here the commands (we states that <strong>User C</strong> merged into <code>develop</code> and pushed it).</p> <p><strong>User A</strong> and/or <strong>User B</strong> must:</p> <pre class="lang-bash prettyprint-override"><code>git checkout feature/A # Obvious! git fetch origin/develop git merge develop </code></pr...
how to get remote updates to my local working copy in git
git|github|gitlab|git-flow
-1
50
2
72,919,731
72,919,731
1
true
2022-07-09T06:36:53.597Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: how to get remote updates to my local working copy in git<p>how do i update my local working copy of source code with current latest version of remote code?<...
72,922,844
Refer to columns in App Script in Google Sheets<p>I am trying to refer to the information in each row to send multiple calendar invites based on event IDs (already generated).</p> <p>Col A: Name <p> Col B: Email <p> Col C: Event Title <p> Col D: eventID <p></p> <p>In my Script, I want to reference the columns of inform...
<h3>I think is where you wish to start from.</h3> <p>Presumably you can continue from here</p> <pre><code>function addAttendeeToEvent() { const ss = SpreadsheetApp.getActive(); const sh = ss.getActiveSheet(); const [h, ...vs] = sh.getDataRange().getValues();//assume one header row let cal = CalendarApp.getCal...
Refer to columns in App Script in Google Sheets
google-apps-script|google-sheets
0
50
1
72,923,065
72,923,065
1
true
2022-07-09T16:00:52.803Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: Refer to columns in App Script in Google Sheets<p>I am trying to refer to the information in each row to send multiple calendar invites based on event IDs (a...
72,923,058
How to hide div if other divs not exists in Javascript<p>I'm trying to hide the div title if related divs are no present:</p> <p>Main HTML structure:</p> <pre><code>&lt;div class=&quot;row parent&quot;&gt; &lt;div id=&quot;title-1&quot; class='col-12 prov-title'&gt; &lt;h2&gt;$category-&gt;name&lt;/h2&gt; ...
<p>Loop through the titles, and convert the title's ID to the prefix of the corresponding children. Then check if there are any elements with that kind of ID, and hide or show the title depending on it.</p> <p><div class="snippet" data-lang="js" data-hide="false" data-console="true" data-babel="false"> <div class="snip...
How to hide div if other divs not exists in Javascript
javascript|html|css
-2
50
1
72,923,130
72,923,130
1
true
2022-07-09T16:32:58.367Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: How to hide div if other divs not exists in Javascript<p>I'm trying to hide the div title if related divs are no present:</p> <p>Main HTML structure:</p> <pr...
72,923,587
How to remove duplicate values from a list which are the values in the dictionary?<p>I made a dictionary subclass that will store duplicated values in lists under the same key automatically from reference to</p> <p><a href="https://stackoverflow.com/questions/10664856/make-a-dictionary-with-duplicate-keys-in-python">Ma...
<p>You've overriden <code>__setitem__</code>, so the line <code>d[k] = list(set(v))</code> will call the override and append to the list. In order to set the key directly, you need to bypass the override and access the method in <code>dict</code>.</p> <p>One way to do this would be to provide a method in <code>Dictlist...
How to remove duplicate values from a list which are the values in the dictionary?
python|python-3.x|list|dictionary|defaultdict
1
50
1
72,923,680
72,923,680
1
true
2022-07-09T18:00:47.960Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: How to remove duplicate values from a list which are the values in the dictionary?<p>I made a dictionary subclass that will store duplicated values in lists ...
72,922,472
I have a problem with Blazor with authentication,<p>I have a problem with Blazor with authentication, I created a new Blazor WebAssembly project, Authentication + Hosting Core option.</p> <p>I removed the Authenticated attribute in FetchData.razor and WeatherForecastController.cs</p> <p>But I get AccessTokenNotAvailabl...
<p>replace</p> <pre><code>builder.Services.AddHttpClient(&quot;BlazorApp6.ServerAPI&quot;, client =&gt; client.BaseAddress = new Uri(builder.HostEnvironment.BaseAddress)) .AddHttpMessageHandler&lt;BaseAddressAuthorizationMessageHandler&gt;(); </code></pre> <p>with</p> <pre><code>builder.Services.AddScoped(sp =&gt; new ...
I have a problem with Blazor with authentication,
blazor|asp.net-blazor
1
50
1
72,923,738
72,923,738
1
true
2022-07-09T15:06:59Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: I have a problem with Blazor with authentication,<p>I have a problem with Blazor with authentication, I created a new Blazor WebAssembly project, Authenticat...
72,922,939
Mongodb aggregation returns empty array even though data is there<p>Hello guys I have been working on a project where I am building a chat app</p> <p>so I have a model for chatting like this</p> <pre class="lang-js prettyprint-override"><code>const chatSchema = new mongoose.Schema( { participants: [ ...
<p>I'm not sure what is your expected results, but I think it is something close to the results if this simple query:</p> <pre><code>db.orders.aggregate([ {$lookup: { from: &quot;users&quot;, localField: &quot;participants&quot;, foreignField: &quot;_id&quot;, as: &quot;participants&quot;, ...
Mongodb aggregation returns empty array even though data is there
node.js|mongodb|mongoose|aggregate
0
50
1
72,924,721
72,924,721
1
true
2022-07-09T16:14:38.180Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: Mongodb aggregation returns empty array even though data is there<p>Hello guys I have been working on a project where I am building a chat app</p> <p>so I ha...
72,925,073
How to calculate % difference between 2 rows in R?<p>As the question says: what is the best way to calculate the % difference between weeks.</p> <p>I'm putting an image to see what is the expetec result (in form, numbers are different):</p> <p><a href="https://i.stack.imgur.com/wSPlL.png" rel="nofollow noreferrer"><img...
<p>Try this</p> <pre><code>df$week &lt;- as.character(df$week) for(i in 1:(nrow(df)-1)){ df[nrow(df)+1 ,] &lt;-c(paste0(&quot;var % week &quot; ,df$week[i+1] , &quot; vs &quot;, df$week[i]), round((df[-1][i+1 ,] - df[-1][i,])/df[-1][i,]*100)) } </code></pre> <ul> <li>Output</li> </ul> <pre><code># A tibble: 5 ×...
How to calculate % difference between 2 rows in R?
r
1
50
2
72,925,216
72,925,216
1
true
2022-07-09T22:44:48.527Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: How to calculate % difference between 2 rows in R?<p>As the question says: what is the best way to calculate the % difference between weeks.</p> <p>I'm putti...
72,929,103
Django raw queries and Postgres declare variable<p>I have a file with many raw sql queries, that uses text substitution i.e</p> <p><code>select * from table1 where date_col between '%%from_date%%' and '%%to_date%%'</code></p> <p>these %%date_from%% and %%date_to%% are then replaced by values using python string replace...
<p>Try making a top CTE to hold your variables, instead:</p> <pre><code>with invars as ( select (%s)::date as from_date, (%s)::date as to_date ) select * from invars i join table1 t on t.date_col between i.to_date and i.from_date; </code></pre> <p>If the problem is that sometimes <code>from_date</c...
Django raw queries and Postgres declare variable
python|django|postgresql
2
50
1
72,929,211
72,929,211
1
true
2022-07-10T14:06:19.773Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: Django raw queries and Postgres declare variable<p>I have a file with many raw sql queries, that uses text substitution i.e</p> <p><code>select * from table1...
72,936,799
How do you split a pandas multiindex dataframe into train/test sets?<p>I have a multi-index pandas dataframe consisting of a date element and an index representing store locations. I want to split into training and test sets based on the time index. So, everything before a certain time being my training data set and ...
<p>You have 'date' as an index, that's why your query doesn't work. For index, you can use:</p> <pre><code>df_train.loc['2020-12-31':] </code></pre> <p>That will select all rows, where df_train &gt;= '2020-12-31'. So, if you would like to choose only rows where df_train &gt; '2020-12-31', you should use df_train.loc['2...
How do you split a pandas multiindex dataframe into train/test sets?
pandas|slice
0
50
2
72,936,984
72,936,984
1
true
2022-07-11T10:03:57.273Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: How do you split a pandas multiindex dataframe into train/test sets?<p>I have a multi-index pandas dataframe consisting of a date element and an index repres...
72,887,866
How to refresh current page after image successfully uploads and bootstrap model closes using cropperJS, jQuery and PHP?<p>I am using cropperJS, jquery and php to upload cropped images. The problem I am facing is that when the upload completes and the modal closes by itself, the display picture on page doesn't change u...
<p>//why dont u echo a script to reload the page instead ?</p> <pre><code>&lt;?php $query = &quot;UPDATE users SET display_pic = '$image_name' WHERE email = '$email'&quot;; $data = mysqli_query($connec,$query); } // If upload completes refresh the page | Can use PHP Header Location Too if($data) { echo('&lt...
How to refresh current page after image successfully uploads and bootstrap model closes using cropperJS, jQuery and PHP?
javascript|php|jquery|ajax|cropperjs
0
50
1
72,952,778
72,952,778
1
true
2022-07-06T17:45:28.080Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: How to refresh current page after image successfully uploads and bootstrap model closes using cropperJS, jQuery and PHP?<p>I am using cropperJS, jquery and p...
72,952,842
Remove an empty row from a CSV<p>I have a csv made like this:</p> <pre><code>16;SILCOMP1;1;;;;;A;;;;;;;GO_SLAVE_10;niente 32;SILCOMP1;1;;;;A;;;;;;;;GO_SLAVE_10;niente 64;SILCOMP1;1;;A;;;;;;;;;;GO_SLAVE_10;niente 128;SILCOMP1;1;A;;;;;;;;;;;GO_SLAVE_10;niente ;;;;;;;;;;;;;;; 3;SILCOMP1;2;;;;;;;;;;B;A;niente;niente 5;SILC...
<p>With a file <code>data.csv</code> like</p> <pre><code>16;SILCOMP1;1;;;;;A;;;;;;;GO_SLAVE_10;niente 32;SILCOMP1;1;;;;A;;;;;;;;GO_SLAVE_10;niente 64;SILCOMP1;1;;A;;;;;;;;;;GO_SLAVE_10;niente 128;SILCOMP1;1;A;;;;;;;;;;;GO_SLAVE_10;niente ;;;;;;;;;;;;;;; 3;SILCOMP1;2;;;;;;;;;;B;A;niente;niente 5;SILCOMP1;2;;;;;;;;B;;;A;...
Remove an empty row from a CSV
python|arrays|csv
-2
50
1
72,954,382
72,954,382
1
true
2022-07-12T13:07:32.347Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: Remove an empty row from a CSV<p>I have a csv made like this:</p> <pre><code>16;SILCOMP1;1;;;;;A;;;;;;;GO_SLAVE_10;niente 32;SILCOMP1;1;;;;A;;;;;;;;GO_SLAVE_...
72,953,429
When TabBarItem is pressed scroll back to top (for example like on Reddit app)<p>I'm kinda stuck trying to implement a 'Scroll to top' function when I press a TabBarItem. What I made so far is a Frankenstein code I found on multiple stackoverflow posts, it works but only until a certain point.</p> <p>This is what I did...
<p>In your subclassed <code>UITabBarController</code> you can override <code>didSelect item</code>:</p> <pre><code>override func tabBar(_ tabBar: UITabBar, didSelect item: UITabBarItem) { // get the index of the item if let idx = tabBar.items?.firstIndex(of: item) { // if it is equal to selectedIndex, ...
When TabBarItem is pressed scroll back to top (for example like on Reddit app)
ios|swift|uikit|storyboard|uitabbaritem
0
50
1
72,955,821
72,955,821
1
true
2022-07-12T13:48:56.763Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: When TabBarItem is pressed scroll back to top (for example like on Reddit app)<p>I'm kinda stuck trying to implement a 'Scroll to top' function when I press ...
72,959,004
How to prevent from the player to slide down a bit on the terrain?<p>I want at this point that the player will stay and will not slide down because the player get interaction with the box and when he move a bit to the side he lost interaction.</p> <p>I don't want to disable the player movements controls or to make the ...
<p>You could only activate Is kinematic when it is standing still. When it starts moving again you can turn it off. If you don't want to use it, there are other options: change the material when it stops, assigning one to the player with the highest Dynamic and Static Friction settings; activate Freeze Position in the ...
How to prevent from the player to slide down a bit on the terrain?
unity3d
0
50
1
72,959,118
72,959,118
1
true
2022-07-12T22:26:01.883Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: How to prevent from the player to slide down a bit on the terrain?<p>I want at this point that the player will stay and will not slide down because the playe...
72,959,236
Commit from the VS Code command palette<p>After a recent VS Code update (presumably the June 2022 update), committing via the command palette seemed to stop working for me. How can you commit a change to Git using the command palette?</p> <p>Previously, I would use the command palette to start a commit as shown in the ...
<p>To disable:</p> <blockquote> <p>You can disable this new flow, and fallback to the previous experience that uses the quick input control, by toggling the <code>git.useEditorAsCommitInput</code> setting. After the setting is changed, you will have to restart VS Code for the change to take effect.</p> </blockquote> <p...
Commit from the VS Code command palette
visual-studio-code
0
50
1
72,959,618
72,959,618
1
true
2022-07-12T23:06:18.790Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: Commit from the VS Code command palette<p>After a recent VS Code update (presumably the June 2022 update), committing via the command palette seemed to stop ...
72,965,386
Flutter - Confirm closing of Dialog on Back button?<p>I'm currently trying to figure out how to prevent a dialog from closing directly by the back button.</p> <p>For Dialogs, I have a base class, which I give a Widget with content. Now I have a Screen, where the user gets to enter something in a dialog, and when the us...
<p>Try <a href="https://api.flutter.dev/flutter/widgets/WillPopScope-class.html" rel="nofollow noreferrer">WillPopScope</a></p> <p>Using onWillPop value I think you can achieve what you want</p>
Flutter - Confirm closing of Dialog on Back button?
flutter|dialog
0
50
1
72,965,505
72,965,505
1
true
2022-07-13T11:18:28.433Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: Flutter - Confirm closing of Dialog on Back button?<p>I'm currently trying to figure out how to prevent a dialog from closing directly by the back button.</p...
72,952,228
How to run nohup on boot while writing nohup.out to a selected directory<p>Im going to have to run a nohup command that will run for months and generate tons of logs, so I want to write the nohup.out file to a directory that contains the rest of the code. My simple script to execute on every startup is:</p> <pre><code>...
<p>The solution was to run crontab with my starting script running <code>nohup /home/ubuntu/folder/start_server.sh &gt; nohup.out</code> instead of just <code>nohup /home/ubuntu/folder/start_server.sh&amp;</code></p>
How to run nohup on boot while writing nohup.out to a selected directory
ubuntu|amazon-ec2|cron|nohup|cloud-init
1
50
1
72,968,107
72,968,107
1
true
2022-07-12T12:21:34.797Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: How to run nohup on boot while writing nohup.out to a selected directory<p>Im going to have to run a nohup command that will run for months and generate tons...
72,969,969
How to pass single Buttons into custom ConfirmationDialog<p>I'm working on a custom ConfirmationDialog with icons, which works fine. The downside is that in the view modifier I can only access all buttons as one content container, so I can't put a divider between them, and also can't disable the overlay on button actio...
<p>Here is first of many tuples (you should support all of them to be compatible with ViewBuilder)</p> <p>Tested with Xcode 14b3 / iOS 16</p> <pre><code>extension View { func customConfirmDialog&lt;A: View, B: View&gt;(isPresented: Binding&lt;Bool&gt;, @ViewBuilder actions: @escaping () -&gt; TupleView&lt;(A, B)&gt...
How to pass single Buttons into custom ConfirmationDialog
ios|swiftui|modal-dialog
2
50
1
72,970,482
72,970,482
1
true
2022-07-13T16:56:51.580Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: How to pass single Buttons into custom ConfirmationDialog<p>I'm working on a custom ConfirmationDialog with icons, which works fine. The downside is that in ...
72,968,010
Django with Huey - delay a task<p>For a scenario with sales orders, I'm needing to execute a task with a given delay.</p> <p>To accomplish this, I added a task in my tasks.py file like so:</p> <pre><code>from huey import crontab from huey.contrib.djhuey import db_task @db_task(delay=3600) def do_something_delayed(inst...
<p>Thanks to coleifer on the GitHub repo: <a href="https://github.com/coleifer/huey/issues/678#issuecomment-1184540964" rel="nofollow noreferrer">https://github.com/coleifer/huey/issues/678#issuecomment-1184540964</a></p> <p>The task() decorators do not accept a delay parameter, see <a href="https://huey.readthedocs.io...
Django with Huey - delay a task
django|python-huey
0
50
1
72,982,659
72,982,659
1
true
2022-07-13T14:28:49.500Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: Django with Huey - delay a task<p>For a scenario with sales orders, I'm needing to execute a task with a given delay.</p> <p>To accomplish this, I added a ta...
72,982,173
Shell script to print Git activity by date<p>I'm trying to adapt <a href="https://gist.github.com/eyecatchup/3fb7ef0c0cbdb72412fc?permalink_comment_id=2705737#gistcomment-2705737" rel="nofollow noreferrer">this</a> code snippet to go through a Git repo and print out by date the number of insertions, deletions and commi...
<blockquote> <p>I think it's because git log considers the 'since' date to be non-inclusive (i.e. after), meaning I'm trying to get results for after (for example) 10-07-2022 and before the same date of 10-07-22 - which clearly doesn't make sense.</p> </blockquote> <p>Kinda close, this is one of Git's weirdest quirks. ...
Shell script to print Git activity by date
git|shell|commit
0
50
2
72,984,973
72,984,973
1
true
2022-07-14T14:27:51.603Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: Shell script to print Git activity by date<p>I'm trying to adapt <a href="https://gist.github.com/eyecatchup/3fb7ef0c0cbdb72412fc?permalink_comment_id=270573...
72,978,558
Cross-interface type guards<p>Say a <code>schema</code> object validates a <code>data</code> object.</p> <p>Is there any kind of dark magic that would allow us to narrow down the type of a <code>data</code> property after a <code>schema</code>-based type guard?</p> <p>Snippets are worth a thousand words:</p> <pre class...
<p>Unfortunately TypeScript's type system isn't expressive enough to represent an arbitrary correlation between the properties of <code>schema</code> and those of <code>data</code>. It would require something like <em>correlated unions</em> as described in <a href="https://github.com/microsoft/TypeScript/issues/30581"...
Cross-interface type guards
typescript|typescript-typings|typescript-generics
2
50
1
72,985,693
72,985,693
1
true
2022-07-14T09:50:16.030Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: Cross-interface type guards<p>Say a <code>schema</code> object validates a <code>data</code> object.</p> <p>Is there any kind of dark magic that would allow ...
72,985,672
How to use setMatrix in svg<p>I am working with the following element where I am trying to see if I can use <a href="https://developer.mozilla.org/en-US/docs/Web/API/SVGTransform" rel="nofollow noreferrer">setMatrix</a>. But I am not sure why it is not working.</p> <p>I am trying set up transform through <strong><code>...
<p>On UAs that have implemented SVG 2 such as Firefox you can use a dictionary because the interface takes a <a href="https://www.w3.org/TR/geometry-1/#dommatrixinit-dictionary" rel="nofollow noreferrer">DOMMatrix2DInit</a>.</p> <p><div class="snippet" data-lang="js" data-hide="false" data-console="true" data-babel="fa...
How to use setMatrix in svg
javascript|svg
1
50
1
72,986,110
72,986,110
1
true
2022-07-14T19:23:07.553Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: How to use setMatrix in svg<p>I am working with the following element where I am trying to see if I can use <a href="https://developer.mozilla.org/en-US/docs...
72,981,046
How do boxed traits interact with memory when using match in Rust?<p>I have the following function:</p> <pre class="lang-rust prettyprint-override"><code>fn get_person(type: PersonType, age: u8) -&gt; Result&lt;Box&lt;dyn Person&gt;&gt; { Ok(match type { PersonType::Thin =&gt; Box::new(ThinPerson::new(age))...
<blockquote> <p>Does the <code>match</code> somehow looks at all the arms and allocates stack space according to the largest struct it finds?</p> </blockquote> <p>It must; stack space is allocate statically. Theoretically it <em>could</em> allocate dynamically, but this is way too hard and AFAIK proper alignment is sti...
How do boxed traits interact with memory when using match in Rust?
memory|rust|traits
1
50
1
72,986,974
72,986,974
1
true
2022-07-14T13:08:01.487Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: How do boxed traits interact with memory when using match in Rust?<p>I have the following function:</p> <pre class="lang-rust prettyprint-override"><code>fn ...
72,991,098
Terraform error creating a pattern of a aws_cloudwatch_log_metric_filter<p>Im trying to create a metric filter like this:</p> <pre><code>resource &quot;aws_cloudwatch_log_metric_filter&quot; &quot;name_resource&quot; { name = &quot;MetricName&quot; pattern = &quot;{($.errorCode=&quot;*UnauthorizedO...
<p>You have to <a href="https://www.terraform.io/language/expressions/strings#escape-sequences" rel="nofollow noreferrer">escape</a> the quotes:</p> <pre><code>pattern = &quot;{($.errorCode=\&quot;*UnauthorizedOperation\&quot;) || ($.errorCode=\&quot;AccessDenied*\&quot;)}&quot; </code></pre>
Terraform error creating a pattern of a aws_cloudwatch_log_metric_filter
amazon-web-services|terraform|terraform-provider-aws
0
50
1
72,991,158
72,991,158
1
true
2022-07-15T08:23:21.410Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: Terraform error creating a pattern of a aws_cloudwatch_log_metric_filter<p>Im trying to create a metric filter like this:</p> <pre><code>resource &quot;aws_c...
72,964,563
Django ORM query with user defined fields<p>I'm trying to create an Django ORM query to replace a really messy raw SQL query i've written in the past but i'm not sure if Django ORM can let me do it. I have three tables:</p> <p><strong>contacts</strong><br /> <a href="https://i.stack.imgur.com/dsWt6.png" rel="nofollow n...
<p>Solved this one in large part thanks to Ken from the <a href="https://forum.djangoproject.com/t/django-orm-query-with-user-defined-fields/14785/8" rel="nofollow noreferrer">Django forums</a>.</p> <p>The solution he provided looked like this:</p> <pre><code>subquery1 = Subquery(ContactCustomFieldValue.objects.filter(...
Django ORM query with user defined fields
python-3.x|django|django-orm|python-3.8
0
50
1
72,994,991
72,994,991
1
true
2022-07-13T10:13:08.697Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: Django ORM query with user defined fields<p>I'm trying to create an Django ORM query to replace a really messy raw SQL query i've written in the past but i'm...
72,998,923
Use execve with argv (Piping)<p>I got the piping of several commands working. Now Id like to execute this with received arguments (<code>*argv[]</code>) and not hard coded like here.</p> <p>Ived tried using the rest of the execve family but no progress. Ive been thinking to put everything (argv) in an array of pointers...
<p>You did all the multiprocessing part. You only need to do some array shuffling, to convert array of strings to array of arrays of strings.</p> <p>If you don’t mind iterating the array two times, you can do like the following:</p> <pre class="lang-c prettyprint-override"><code>int main(int argc, char *argv[]) { /...
Use execve with argv (Piping)
c|multiprocessing|pipe|exec|dup2
0
50
1
72,999,664
72,999,664
1
true
2022-07-15T19:41:28.410Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: Use execve with argv (Piping)<p>I got the piping of several commands working. Now Id like to execute this with received arguments (<code>*argv[]</code>) and ...
73,003,857
Include more than one value to check in PHP CodeIgniter<pre><code>public function get_tertiarylevel_present() { $checker = array( 'timestamp' =&gt; strtotime(date('Y-m-d')), 'section_id' =&gt; 11, 'status' =&gt; 1 ); $tertiarylevel_present = $this-&gt;db-&gt;get_where('daily_atten...
<p>You need to use <code>where_in</code> ( <a href="https://www.codeigniter.com/userguide3/database/query_builder.html#CI_DB_query_builder::where_in" rel="nofollow noreferrer">https://www.codeigniter.com/userguide3/database/query_builder.html#CI_DB_query_builder::where_in</a> ):</p> <p>This should work (haven't tested ...
Include more than one value to check in PHP CodeIgniter
php|codeigniter
0
50
2
73,004,202
73,004,202
1
true
2022-07-16T11:34:36.767Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: Include more than one value to check in PHP CodeIgniter<pre><code>public function get_tertiarylevel_present() { $checker = array( 'timestamp' =&g...
73,004,132
Laravel: DATE_ADD in where clause<p>I want to subtract days from the db column and then compare it with the current date using <code>DATE_ADD</code> function. Is this possible?</p> <pre><code> $valid_status_query-&gt;whereRaw('DATE_ADD(&quot;d&quot;,-3, &quot;date_to&quot;)', '&lt;=', Carbon::now()-&gt;format('Y-m-d'))...
<p>Use it like this:</p> <pre><code>$valid_status_query-&gt;whereRaw(&quot;DATE_SUB(date_to, INTERVAL 3 DAY) &lt;= ?&quot;, [Carbon::now()-&gt;toDateString()]); </code></pre>
Laravel: DATE_ADD in where clause
php|mysql|laravel
-2
50
1
73,004,209
73,004,209
1
true
2022-07-16T12:17:58.740Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: Laravel: DATE_ADD in where clause<p>I want to subtract days from the db column and then compare it with the current date using <code>DATE_ADD</code> function...
73,003,011
Calculate 3 months unique Emp count for a given month from last 3 months data using pandas<p>I am looking to calculate last 3 months of unique employee ID count using pandas. I am able to calculate unique employee ID count for current month but not sure how to do it for last 3 months.</p> <p><a href="https://i.stack.im...
<p>I don't know if you are looking for 3 consecutive months or something else because your date discontinues at 2022-09 to 2022-10.</p> <p>I also don't know your purpose, so I give a general solution here. In case you only want to count unique for every 3 consecutive months, then it is much easier. The solution here gi...
Calculate 3 months unique Emp count for a given month from last 3 months data using pandas
python|pandas|dataframe|time-series|data-analysis
0
50
1
73,004,625
73,004,625
1
true
2022-07-16T09:21:34.253Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: Calculate 3 months unique Emp count for a given month from last 3 months data using pandas<p>I am looking to calculate last 3 months of unique employee ID co...
73,006,227
A question about MLP-What does this line mean?<p>I am new to NN. I AM TRYING TO TUNE MY MLP REGRESSOR MODEL. I don't understand what does this line mean &quot;'hidden_layer_sizes': [(100,), (50,100,), (50,75,100,)]&quot; does this mean that we're asking the model to check if the model will perform better in case it has...
<p>Yes, you are performing a <a href="https://scikit-learn.org/stable/modules/generated/sklearn.model_selection.GridSearchCV.html" rel="nofollow noreferrer">Grid Search</a> hyper param optimization. You are trying with:</p> <ul> <li>Just one hidden layer of 100 units</li> <li>Two hidden layers of 50, 100</li> <li>3 hid...
A question about MLP-What does this line mean?
python|scikit-learn|deep-learning|neural-network
2
50
1
73,006,256
73,006,256
1
true
2022-07-16T17:12:49.433Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: A question about MLP-What does this line mean?<p>I am new to NN. I AM TRYING TO TUNE MY MLP REGRESSOR MODEL. I don't understand what does this line mean &quo...
72,944,386
Completely Flatten JSON with nested list using Python Pandas<p>Here is the example JSON:</p> <pre><code>{ &quot;ApartmentBuilding&quot;:{ &quot;Address&quot;:{ &quot;HouseNumber&quot;: 5, &quot;Street&quot;: &quot;DataStreet&quot;, &quot;ZipCode&quot;: 5100 }, ...
<p>Here is another way to do it using Pandas <a href="https://pandas.pydata.org/docs/reference/api/pandas.json_normalize.html" rel="nofollow noreferrer">json_normalize</a> and <a href="https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.explode.html" rel="nofollow noreferrer">explode</a>:</p> <pre class="lang...
Completely Flatten JSON with nested list using Python Pandas
python|json|pandas|dataframe
1
50
1
73,006,538
73,006,538
1
true
2022-07-11T20:35:37.963Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: Completely Flatten JSON with nested list using Python Pandas<p>Here is the example JSON:</p> <pre><code>{ &quot;ApartmentBuilding&quot;:{ &quot;A...
73,005,585
Azure Private Link - DNS Zone Setup<p>I have applications running in two separate VNETs (in same subscription) that need to connect to a third party DB service using Private Link. I have created two private end points specific to each VNET however not sure how to setup the Private DNS Zone. Since the DNS Zone is global...
<p>If you have two separate, non-peered/connected VNets, you would create two separate private DNS Zones and <a href="https://docs.microsoft.com/en-us/azure/dns/private-dns-virtual-network-links" rel="nofollow noreferrer">link them</a> with the respective VNet (each with only one VNet). You would not use public (global...
Azure Private Link - DNS Zone Setup
azure|azure-private-link|azure-private-dns-zone
0
50
1
73,006,718
73,006,718
1
true
2022-07-16T15:46:56.257Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: Azure Private Link - DNS Zone Setup<p>I have applications running in two separate VNETs (in same subscription) that need to connect to a third party DB servi...
73,007,186
Threads calling function in another class<p>I am trying to understand the multithreading in c++. I am trying to call a function in another class using two threads as shown below:</p> <p><strong>vmgr.h</strong></p> <pre><code>class VMGR{ public: int helloFunction(int x); }; </code></pre> <p><strong>vmgr.cpp</s...
<p>The constructor of <code>std::thread</code> uses <code>std::invoke</code> passing copies of the constructor parameters.</p> <p><code>std::invoke</code> can, among other alternatives, be called with member function pointers. This requires syntax different to the one used in the question:</p> <pre><code>std::thread t1...
Threads calling function in another class
c++|multithreading
0
50
1
73,007,259
73,007,259
1
true
2022-07-16T19:43:50.903Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: Threads calling function in another class<p>I am trying to understand the multithreading in c++. I am trying to call a function in another class using two th...
73,008,074
Why do we see "function returned in array" syntax?<p>From time to time I see this sort of thing:</p> <pre><code>function functionCreator(p) { const newFunction = () =&gt; { console.log(&quot;Do stuff with p&quot;, p); } return [newFunction]; } // later function useIt(thing) { const [funky] = c...
<p>When the quantity of the values returned is <strong>always</strong> <code>1</code>, the tuple container unnecessarily complicates the calling code and (in most cases) wastefully creates a new array object on every invocation.</p> <hr /> <p>More on API interface design, if you're interested:</p> <p>However, if the qu...
Why do we see "function returned in array" syntax?
javascript
0
50
1
73,008,775
73,008,775
1
true
2022-07-16T22:35:29.557Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: Why do we see "function returned in array" syntax?<p>From time to time I see this sort of thing:</p> <pre><code>function functionCreator(p) { const newFu...
73,010,959
venv dependencies are being added without being downloading<p>I use virtual environments in my django projects. When I create my venv, I do like this from my command line</p> <pre><code>cd Dev python3 -m venv &lt;name of venv&gt; </code></pre> <p>This creates a folder called venv on my mac machine in my Dev folder.</p>...
<p>Don't move your virtual environment after creation. See <a href="https://stackoverflow.com/questions/32407365/can-i-move-a-virtualenv">this question</a> for motivation and explanation. You can install Django on system level and create environment only when project directory already exists to avoid this moving.</p> <...
venv dependencies are being added without being downloading
python|django|python-venv
0
50
1
73,012,575
73,012,575
1
true
2022-07-17T10:19:10.923Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: venv dependencies are being added without being downloading<p>I use virtual environments in my django projects. When I create my venv, I do like this from my...
73,014,133
a function that defines a final list using loops and tuples<p>i want to define a function that returns all the possible pairing of two giving tuples (including backwards). im new to python and having difficlty writing the correct function.</p> <p><strong>its supposed to look like this:</strong></p> <pre><code>&gt;&gt;&...
<p>You're almost there, note that append takes one argument so you need to pass the pair as a tuple:</p> <pre><code>first_tuple = (1, 2) second_tuple = (4, 5) def mult_tuple(tuple1, tuple2): sofit = [] for x in tuple1: for y in tuple2: sofit.append((x, y)) sofit.append((y, x)) ...
a function that defines a final list using loops and tuples
python|loops|tuples
1
50
3
73,014,223
73,014,223
1
true
2022-07-17T17:57:14.960Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: a function that defines a final list using loops and tuples<p>i want to define a function that returns all the possible pairing of two giving tuples (includi...
73,014,174
Javascript) I would like to compare two two-dimensional arrays to delete the duplicate elements<p>As I have already asked, I would like to ask again because I wanted a mutable method, not an immutable method.<br> I want to compare the two arrays below to delete the duplicate elements.<br> After deleting the duplicate e...
<p>So one issue is that when you splice the ground array you are removing the element and then the .forEach method jumps FORWARD to the next element and now you've skipped over an element. If you use a traditional for loop you can shift the for loop back one every time you remove an element so you do not skip any.</p> ...
Javascript) I would like to compare two two-dimensional arrays to delete the duplicate elements
javascript
0
50
2
73,014,300
73,014,300
1
true
2022-07-17T18:02:24.037Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: Javascript) I would like to compare two two-dimensional arrays to delete the duplicate elements<p>As I have already asked, I would like to ask again because ...
73,014,601
Scraping HREF Links contained within a Table<p>I've been bouncing around a ton of similar questions, but nothing that seems to fix the issue... I've set this up (with help) to scrape the HREF tags from a different <code>URL</code>.</p> <p>I'm trying to now take the <code>HREF</code> links in the &quot;Result&quot; colu...
<p>The following code works:</p> <pre><code>import requests from bs4 import BeautifulSoup headers = {'User-Agent': 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.17 (KHTML, like Gecko) Chrome/24.0.1312.60 Safari/537.17'} r = requests.get('https://stats.ncaa.org/player/game_by_game?game_sport_year_ctl_id=15881&a...
Scraping HREF Links contained within a Table
python|web-scraping|beautifulsoup|href
0
50
2
73,014,757
73,014,757
1
true
2022-07-17T19:06:20.080Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: Scraping HREF Links contained within a Table<p>I've been bouncing around a ton of similar questions, but nothing that seems to fix the issue... I've set this...
73,011,312
javascript location.reload doesn't reload the page in a wrong way<p>I'm trying to refresh a page every time a user click the button so the page is set back to source code. but the <code>location.reload()</code> is executed after the code, and not at the beginning.</p> <pre class="lang-js prettyprint-override"><code>btn...
<blockquote> <p>why does not reload the page immediately when the button is clicked but only when the function ended?</p> </blockquote> <p>Because JavaScript blocks navigation.</p> <p>If it didn't, then the page would reload and <strong>the rest of the function wouldn't run at all</strong> (because the page it was runn...
javascript location.reload doesn't reload the page in a wrong way
javascript|html|onclick|onclicklistener|reload
0
50
2
73,014,798
73,014,798
1
true
2022-07-17T11:18:50.587Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: javascript location.reload doesn't reload the page in a wrong way<p>I'm trying to refresh a page every time a user click the button so the page is set back t...
73,015,757
x86_64-elf linker produces a binary of 129MB full of zeroes<p>I'm trying to write a 32 bits kernel in gcc and i'm cross-compiling it with x86_64-elf-gcc by using the <code>-m32</code> flag.</p> <p>It builds and runs ok, but the binary file is 129 MB!!!. I'm very sure the actual code is not that big, and the result bina...
<p>Solved using Tsyvarev solution, wrote a linker script (aka copied) similar to the one used in <a href="https://littleosbook.github.io/#linking-the-kernel" rel="nofollow noreferrer">The little book about OS development</a>.</p>
x86_64-elf linker produces a binary of 129MB full of zeroes
c|gcc|kernel|cross-compiling|bare-metal
2
50
1
73,016,178
73,016,178
1
true
2022-07-17T22:20:55.570Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: x86_64-elf linker produces a binary of 129MB full of zeroes<p>I'm trying to write a 32 bits kernel in gcc and i'm cross-compiling it with x86_64-elf-gcc by u...
73,015,948
Access S3 from EC2 by using instance IP instead of assumerole<p>I'm trying to get an EC2 instance to access a S3 bucket. I'd rather use the IP address of the instance to allow access to S3 rather than assumerole.</p> <p>In the bucket policy, I've tried allowing the instance's public AND private IP but trying to access ...
<blockquote> <p>I see a gateway endpoint associated with the VPC that the EC2 instance is in</p> </blockquote> <p>So that's why it uses private IP. <a href="https://docs.aws.amazon.com/vpc/latest/privatelink/vpc-endpoints-s3.html" rel="nofollow noreferrer">S3 gateway endpoint</a> enable <strong>private</strong> connect...
Access S3 from EC2 by using instance IP instead of assumerole
amazon-web-services|amazon-s3|amazon-ec2
1
50
1
73,016,505
73,016,505
1
true
2022-07-17T23:04:35.137Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: Access S3 from EC2 by using instance IP instead of assumerole<p>I'm trying to get an EC2 instance to access a S3 bucket. I'd rather use the IP address of the...
73,019,539
Python dataframe loop row by row would not change value no matter what<p>I am trying to change value of my panda dataframe but it just so stubborn and would not change the value desired. I have used <code>df.at</code> as suggested in some other post and it is not working as a way to change/modify data in dataframe.</p>...
<p>You cannot do it like this. Once you assign the value of <code>housing.at[index, headers[6]]</code>, you create a new variable which contains this value (<code>row</code>). Then you change the new variable, not the original data.</p> <pre class="lang-py prettyprint-override"><code>for index in housing.index: # i...
Python dataframe loop row by row would not change value no matter what
python|pandas|dataframe
-1
50
3
73,019,638
73,019,638
1
true
2022-07-18T08:43:03.897Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: Python dataframe loop row by row would not change value no matter what<p>I am trying to change value of my panda dataframe but it just so stubborn and would ...
73,018,979
corrupt record while reading xml file using pyspark<p>I am trying to read an xml file in dataframe in pyspark.</p> <p>Code : <code>df_xml=spark.read.format(&quot;com.databricks.spark.xml&quot;).option(&quot;rootTag&quot;,&quot;dataset&quot;).option(&quot;rowTag&quot;,&quot;AUTHOR&quot;).load(FilePath)</code></p> <p>whe...
<p>That XML is not valid:</p> <ul> <li>The AUTHOR_UID must be defined in quotes</li> <li>The dataset tag is not closed</li> </ul> <p>This example below is a valid one:</p> <pre><code>&lt;?xml version='1.0' encoding='UTF-8'?&gt; &lt;dataset&gt; &lt;AUTHOR AUTHOR_UID = '1'&gt; &lt;FIRST_NAME&gt;Fiona&lt;/FIRST_NA...
corrupt record while reading xml file using pyspark
dataframe|apache-spark|pyspark|apache-spark-xml
1
50
1
73,020,958
73,020,958
1
true
2022-07-18T07:55:52.227Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: corrupt record while reading xml file using pyspark<p>I am trying to read an xml file in dataframe in pyspark.</p> <p>Code : <code>df_xml=spark.read.format(&...
73,022,870
How to change class name after X seconds of time using Jquery<p>I want to loop the class name 'move' over all the divs, so if the first div has the class name 'move', i want to remove it and then add it to the next element in every three seconds</p> <p><div class="snippet" data-lang="js" data-hide="false" data-consol...
<p><div class="snippet" data-lang="js" data-hide="false" data-console="true" data-babel="false"> <div class="snippet-code"> <pre class="snippet-code-js lang-js prettyprint-override"><code>const divs=[...document.querySelectorAll(".tagline2")]; divs.i=0; setInterval(function(){ divs[divs.i++].classList.remove("move");...
How to change class name after X seconds of time using Jquery
javascript|html|jquery|css
0
50
3
73,023,349
73,023,349
1
true
2022-07-18T13:11:59.930Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: How to change class name after X seconds of time using Jquery<p>I want to loop the class name 'move' over all the divs, so if the first div has the class nam...
73,024,765
"The original argument must be of type function" ERROR for promisifying client.zrem?<p>I am making a cron job instance that is running using Node to run a job that removes posts from my Redis cache.</p> <p>I want to promisify client.zrem for removing many posts from the cache to insure they are all removed but when run...
<p>Node Redis 4.x introduced several breaking changes. Adding support for Promises was one of those. Renaming the methods to be camel cased was another. Details can be found at in the <a href="https://github.com/redis/node-redis" rel="nofollow noreferrer">README</a> in the GitHub repo for Node Redis.</p> <p>You need to...
"The original argument must be of type function" ERROR for promisifying client.zrem?
npm|redis
0
50
1
73,025,781
73,025,781
1
true
2022-07-18T15:22:28.887Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: "The original argument must be of type function" ERROR for promisifying client.zrem?<p>I am making a cron job instance that is running using Node to run a jo...
73,023,621
Insert value in searchbar, select autocomplete result and get value by bs4<p>I am trying to use Beautiful Soup to read a value from a web page. The following steps are necessary:</p> <ol> <li><p>go to the webpage: url = 'https://www.msci.com/our-solutions/esg-investing/esg-fund-ratings/funds/'</p> </li> <li><p>insert t...
<p>Try:</p> <pre class="lang-py prettyprint-override"><code>import requests from bs4 import BeautifulSoup isin = &quot;IE00B4L5Y983&quot; url = &quot;https://www.msci.com/our-solutions/esg-investing/esg-fund-ratings&quot; headers = { &quot;User-Agent&quot;: &quot;Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:102.0) ...
Insert value in searchbar, select autocomplete result and get value by bs4
python|web-scraping|beautifulsoup|searchbar
1
50
3
73,026,494
73,026,494
1
true
2022-07-18T14:02:24.173Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: Insert value in searchbar, select autocomplete result and get value by bs4<p>I am trying to use Beautiful Soup to read a value from a web page. The following...
73,027,704
The for loop in React showing ESLint error<p>The for loop inside the objToQueryString function showing me the error</p> <blockquote> <p>ESLint: The body of a for-in should be wrapped in an if statement to filter unwanted properties from the prototype.(guard-for-in)</p> </blockquote> <pre><code>const objToQueryString = ...
<p>Wrap your push statement with</p> <pre><code>const objToQueryString = (obj) =&gt; { const keyValuePairs = []; for (const key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { keyValuePairs.push( `${encodeURIComponent(key)}${encodeURIComponent( ': &quot;', )}${enc...
The for loop in React showing ESLint error
javascript|reactjs|eslint
-1
50
1
73,027,745
73,027,745
1
true
2022-07-18T19:34:52.160Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: The for loop in React showing ESLint error<p>The for loop inside the objToQueryString function showing me the error</p> <blockquote> <p>ESLint: The body of a...
73,028,412
Cannot import router from file with ES6 import/export?<p>I am converting my whole node app to use the ES6 syntax <em>import NME from &quot;./file&quot;</em></p> <p>In my app.js file I am trying to import my routers but am getting the error <strong>&quot;Cannot find module '/Users/app/git/app-node-api/src/routers/availa...
<p>module.exports commonjs syntax.</p> <p>try this for ES6</p> <pre class="lang-js prettyprint-override"><code>export default router; </code></pre>
Cannot import router from file with ES6 import/export?
javascript|node.js|ecmascript-6
0
50
1
73,028,452
73,028,452
1
true
2022-07-18T20:43:26.220Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: Cannot import router from file with ES6 import/export?<p>I am converting my whole node app to use the ES6 syntax <em>import NME from &quot;./file&quot;</em><...
73,029,872
Print the key and a subset of fields if a field is not a specific value<p>I am new to jq and can't seem to quite get the syntax right for what I want to do. I am executing a command and piping its JSON output into jq. The structure looks like this:</p> <pre><code>{ &quot;timestamp&quot;: 1658186185, &quot;nodes&q...
<p>One way without touching the keys would be to only <code>select</code> those array items that match the condition, and map the remaining items' value to the comment itself using <code>map_values</code>:</p> <pre class="lang-bash prettyprint-override"><code>jq '.nodes | map_values(select(.state != &quot;free&quot;).c...
Print the key and a subset of fields if a field is not a specific value
jq
0
50
1
73,029,936
73,029,936
1
true
2022-07-19T00:23:31.337Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: Print the key and a subset of fields if a field is not a specific value<p>I am new to jq and can't seem to quite get the syntax right for what I want to do. ...
73,026,862
Indexing into mapped type using generics<p>I'm having a hard time figuring out how to index into a mapped type using a generic argument. Below is a minimum example of what I'm trying to accomplish.</p> <pre class="lang-js prettyprint-override"><code> interface JsonApiObject { attributes: { [key: string]: any }; ...
<p>The problem here seems to be that the compiler <em>defers</em> evaluation of an <a href="https://www.typescriptlang.org/docs/handbook/2/indexed-access-types.html" rel="nofollow noreferrer">indexed access</a> into a <a href="https://www.typescriptlang.org/docs/handbook/2/mapped-types.html#key-remapping-via-as" rel="n...
Indexing into mapped type using generics
typescript|typescript-generics|mapped-types
1
50
1
73,030,606
73,030,606
1
true
2022-07-18T18:17:57.763Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: Indexing into mapped type using generics<p>I'm having a hard time figuring out how to index into a mapped type using a generic argument. Below is a minimum e...
73,003,163
PostgreSQL RDS running out of Free Storage Space while querying<p>We have a read-only PostgreSQL RDS database which is heavily queried. We don't perform any inserts/updates/deletes during normal traffic, but still we can see how we are running out of Free Storage Space and an increase on Write IOPS metric. During this ...
<p>The issue was in the end related to our logs. <code>log_statement</code> was set to all, where every single query to PG would be log. In order to troubleshoot long time queries, we combined <code>log_statement</code> and <code>log_min_duration_statement</code>.</p> <p>Since this is a read only database we want to kn...
PostgreSQL RDS running out of Free Storage Space while querying
database|postgresql|amazon-web-services|amazon-rds
1
50
1
73,046,741
73,046,741
1
true
2022-07-16T09:44:43.387Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: PostgreSQL RDS running out of Free Storage Space while querying<p>We have a read-only PostgreSQL RDS database which is heavily queried. We don't perform any ...
72,975,062
How to add index outside a table in latex<p>How to add index outside a table like this?</p> <p><img src="https://i.stack.imgur.com/l73Gh.png" alt="pic" /></p> <p>Thanks!</p>
<p>Going out on a limb here, I assume you want to create the indeces in the smaller font size...<br /> I extended the table and reduzed the font size for the indeces. Using the array package for the rest.</p> <p>Minimal working the solution:</p> <pre><code>\documentclass{article} \usepackage{array} \begin{document} \...
How to add index outside a table in latex
latex|tabular|pdflatex
-1
50
2
73,080,887
73,080,887
1
true
2022-07-14T04:03:02.823Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: How to add index outside a table in latex<p>How to add index outside a table like this?</p> <p><img src="https://i.stack.imgur.com/l73Gh.png" alt="pic" /></p...
72,967,893
Select to which ItemGroup to add Content entries using .csproj extension in VS Code<p>How could I select to which <code>ItemGroup</code> the <code>Content</code> entries get added. I am using <a href="https://marketplace.visualstudio.com/items?itemName=lucasazzola.vscode-csproj" rel="nofollow noreferrer">the</a> .cspr...
<p>It doesn't matter which ItemGroup you select, neither does the order.</p> <p>Usage of <strong>Item</strong>, <strong>ItemGroup</strong> elemtens</p> <p><a href="https://docs.microsoft.com/en-us/visualstudio/msbuild/item-element-msbuild?view=vs-2022#attributes-and-elements" rel="nofollow noreferrer">https://docs.micr...
Select to which ItemGroup to add Content entries using .csproj extension in VS Code
visual-studio-code|settings|visual-studio-2022|csproj|itemgroup
0
50
1
73,103,098
73,103,098
1
true
2022-07-13T14:20:14.053Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: Select to which ItemGroup to add Content entries using .csproj extension in VS Code<p>How could I select to which <code>ItemGroup</code> the <code>Content</c...
72,900,855
AppleScript error -10000 when writing to dropbox directory<p>I have pasted together an apple script to save email attachments to a directory. Everything works fine, but when I set the output to a dropbox directory, I get an error message:</p> <pre><code>Result: error &quot;Mail got an error: To view or change permissio...
<p>Whilst you get to the bottom of what is preventing you from writing out to folders other than your Downloads folder (which presumably includes subfolders in the Downloads folder), here's a barebones script that should save mail attachments to the folder <em><code>~/Downloads/Mail Attachments/</code></em>.</p> <p>I'v...
AppleScript error -10000 when writing to dropbox directory
applescript
0
50
2
73,109,852
73,109,852
1
true
2022-07-07T15:52:55.763Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: AppleScript error -10000 when writing to dropbox directory<p>I have pasted together an apple script to save email attachments to a directory. Everything work...
72,985,382
Updating theme when resuming to Flutter app<p>I'm new to Flutter and I'm trying to theme my app dynamically so that the user can select his preferred theme either locally or get the system theme.</p> <p>I managed to get it to work except for when pausing and then resuming to the app after changing the system theme. The...
<p>After checking the <code>State</code> <a href="https://api.flutter.dev/flutter/widgets/State-class.html" rel="nofollow noreferrer">documentation</a>, I was able to find the solution.</p> <p>All I had to do is add:</p> <pre><code>@override void didChangeDependencies() { super.didChangeDependencies(); } </code></pre...
Updating theme when resuming to Flutter app
flutter|dart|flutter-theme
1
50
2
72,987,062
72,987,062
1
true
2022-07-14T18:52:19.710Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: Updating theme when resuming to Flutter app<p>I'm new to Flutter and I'm trying to theme my app dynamically so that the user can select his preferred theme e...
72,842,962
How to change title tag with regex using sed?<p>I have my HTML project with following structure:</p> <pre><code>My Site ┣ modules ┃ ┣ 123.html ┃ ┗ 456.html ┣ cart ┃ ┣ index.html ┃ ┗ cart.html </code></pre> <p>There are tens of folders and thousands of HTML files.</p> <p>I want to change <strong>varying</strong> t...
<p>The following command should do what you expect it to do. This first one is for testing to make sure that the output is as expected. The second command is the one that will modify files in place.</p> <pre class="lang-bash prettyprint-override"><code>find * -type f -name '*.html' | xargs -n 1 sed -E 's/&lt;title&gt;....
How to change title tag with regex using sed?
macos|sed|terminal
-1
50
1
72,843,067
72,843,067
1
true
2022-07-02T23:05:30.007Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: How to change title tag with regex using sed?<p>I have my HTML project with following structure:</p> <pre><code>My Site ┣ modules ┃ ┣ 123.html ┃ ┗ 456.htm...
72,839,447
Why aren't constructor and static function tear-offs, with extending type parameters, identical when the base type is omitted or included?<p>Consider the following class:</p> <pre class="lang-dart prettyprint-override"><code>class MyClass&lt;T extends num&gt; { const MyClass(); void instanceFunction() {} static...
<h2>The <code>true</code> cases:</h2> <blockquote> <pre class="lang-dart prettyprint-override"><code>identical(const MyClass(), const MyClass&lt;num&gt;()); </code></pre> </blockquote> <p>You <em>instantiate</em> an <code>MyClass</code> object. Since <code>MyClass</code> is declared with <code>MyClass&lt;T extends num...
Why aren't constructor and static function tear-offs, with extending type parameters, identical when the base type is omitted or included?
dart
0
50
1
72,841,223
72,841,223
1
true
2022-07-02T13:34:06.127Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: Why aren't constructor and static function tear-offs, with extending type parameters, identical when the base type is omitted or included?<p>Consider the fol...
72,822,366
Intent from adapter: Calling startActivity() from outside of an Activity context requires the FLAG_ACTIVITY_NEW_TASK flag<p>Reaching out to ask for your help on the following.</p> <p>I have a RecyclerView and in my adapter I'm trying to start a new activity. But I'm getting the following error:</p> <pre><code>android.u...
<p>If you are using your Adapter in your Activity then simply use:</p> <pre class="lang-java prettyprint-override"><code>RecyclerView.Adapter&lt;EntitiesListAdapter.MyViewHolder&gt; mAdapter = new EntitiesListAdapter(entities, MainActivity.this); </code></pre> <p>If you want to use <code>getApplicationContext()</code>,...
Intent from adapter: Calling startActivity() from outside of an Activity context requires the FLAG_ACTIVITY_NEW_TASK flag
android|android-intent|android-recyclerview
0
50
1
72,824,786
72,824,786
1
true
2022-06-30T21:47:29.717Z
Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions. Stackoverflow question: Intent from adapter: Calling startActivity() from outside of an Activity context requires the FLAG_ACTIVITY_NEW_TASK flag<p>Reaching out to ask for your help...