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,400,712 | How to Encrypt PNG Files with Alpha/Transparent in Python?<p>So, I have the following sample Python code. The code will accept the PNG plaintext input and encrypt it into PNG ciphertext (Scrambled pixels) as the output.</p>
<p>But when I try to use PNG with transparency (alpha channel), it doesn't work. How to read 4 c... | <p>If you want to read RGBA images and 16-bit PNG images with <strong>OpenCV</strong>, you need to use:</p>
<pre><code>im = cv2.imread('image.png', cv2.IMREAD_UNCHANGED)
</code></pre>
<p>Try that, and then check that <code>im.shape</code> is <code>(h,w,4)</code></p> | How to Encrypt PNG Files with Alpha/Transparent in Python? | python|arrays|image|numpy|encryption | 1 | 70 | 1 | 72,401,706 | 72,401,706 | 0 | true | 2022-05-27T05:10:52.967Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to Encrypt PNG Files with Alpha/Transparent in Python?<p>So, I have the following sample Python code. The code will accept the PNG plaintext input and en... |
72,395,940 | Vanilla JS carousel next/prev button killing mouseover event pause<p>I've built a small, responsive, lazy loading carousel that pauses on mouseover. The problem I'm having is occurring after either the 'prev' or 'next' buttons are pressed. Once pressed the mouseover pause event stops working.</p>
<p>Is this an order ... | <p>Figured it out, looks like I was calling the setInterval() and clearInterval() functions at the wrong times which was causing all kinds of timing problems, especially when combined with the 'click' events connected to the tabs.</p>
<p>I also cleaned up the image transitions a little while I was at it. Here is a loo... | Vanilla JS carousel next/prev button killing mouseover event pause | javascript|carousel|setinterval|event-listener|clearinterval | 0 | 70 | 1 | 72,410,126 | 72,410,126 | 0 | true | 2022-05-26T17:41:43.900Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Vanilla JS carousel next/prev button killing mouseover event pause<p>I've built a small, responsive, lazy loading carousel that pauses on mouseover. The pro... |
72,372,775 | Get values from array based on textarea word position<p>I've a JSON file which has arrays and inside it I have values which has the offset(position) too.
I have the textarea on which I want to get index position of each letter and when user right then check the index position and match it with array offset(position) an... | <p>I've developed the whole context-menu and getting specific word suggestions on context-menu. Highlighting the wrong words. Its working now they I wanted it too.</p> | Get values from array based on textarea word position | php|arrays|foreach | 1 | 70 | 1 | 72,462,991 | 72,462,991 | 0 | true | 2022-05-25T06:21:05.753Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Get values from array based on textarea word position<p>I've a JSON file which has arrays and inside it I have values which has the offset(position) too.
I h... |
72,331,715 | Calculate nearest neighbors using a nxn matrix<p>Supposed I have nxn T random matrix, how can I find nearest neighbors element of the matrix?</p>
<p><img src="https://i.stack.imgur.com/0GEy9.jpg" alt="enter image description here" /></p> | <p>According to your image description, my usual way is to generate an index matrix, calculate the Euclidean distance between each element and a given position, and then judge whether the distance is 1:</p>
<pre><code>>>> m = np.random.rand(5, 5)
>>> m
array([[0.15993681, 0.34212 , 0.27103587, 0.478... | Calculate nearest neighbors using a nxn matrix | python|numpy|nearest-neighbor | -4 | 70 | 1 | 72,331,785 | 72,331,785 | 0 | true | 2022-05-21T17:12:00.980Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Calculate nearest neighbors using a nxn matrix<p>Supposed I have nxn T random matrix, how can I find nearest neighbors element of the matrix?</p>
<p><img sr... |
72,341,689 | Output image depending on selection vue.js<p>I am relatively new to vue.js and I am having a bit of difficulty. I want to show the images of NBA players depending on the selection using vue.js. For example: If the Dunk contest champion is selected: the image of only Kobe and Jordan should show up. To know if it should ... | <pre><code><!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Website</title>
<style>
a.incognito {
... | Output image depending on selection vue.js | javascript|html|css|vue.js | 0 | 70 | 1 | 72,373,039 | 72,373,039 | 0 | true | 2022-05-22T22:23:36.753Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Output image depending on selection vue.js<p>I am relatively new to vue.js and I am having a bit of difficulty. I want to show the images of NBA players depe... |
72,267,574 | Utilize a function-based index while selecting additional columns<p>I have an Oracle 18c function-based index that works as expected:</p>
<p>1.Create a custom function that takes a <a href="https://desktop.arcgis.com/en/arcmap/latest/manage-data/gdbs-in-oracle/stgeometry-oracle.htm" rel="nofollow noreferrer">user-defin... | <p>The solution is to add the additional column (OBJECTID) to the index — as a composite index:</p>
<pre><code>create index atn_endpoint_list_idx on
my_owner.active_transportation(my_owner.endpoint_list(shape),OBJECTID);
--
</code></pre>
<p>Now, the ... | Utilize a function-based index while selecting additional columns | sql|oracle|indexing|query-optimization|oracle18c | 0 | 70 | 1 | 72,269,515 | 72,269,515 | 0 | true | 2022-05-17T02:36:09.110Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Utilize a function-based index while selecting additional columns<p>I have an Oracle 18c function-based index that works as expected:</p>
<p>1.Create a custo... |
72,375,895 | Checkbox and label in same line<p>I would like to make filters using a modal window. But I have a problem, in that the checkbox and the label appear on different lines.</p>
<p>But I would like to see the checkbox and the label on the same line with a little space between. Tell me how this can be done. My code is below.... | <p>By default, the div - parent of the checkboxes is a block level element. It should work, if you change it to be flex.</p>
<pre><code><div style={{display: "flex"}}>
<Checkbox inputId="method1" name="method" value="Connect" onChange={onMethodChange} checked={methods.... | Checkbox and label in same line | css|reactjs | 0 | 70 | 2 | 72,376,232 | 72,376,232 | 0 | true | 2022-05-25T10:25:41.173Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Checkbox and label in same line<p>I would like to make filters using a modal window. But I have a problem, in that the checkbox and the label appear on diffe... |
72,381,998 | How to scan only some directories or exclude directories while using os.walk()<p>I would need to exclude a few directories or only scan some of them while using os.walk(). I am trying to get the most recent files. I learned how to do this from <a href="https://stackoverflow.com/questions/2731014/finding-most-recently-e... | <p>After reading @tripleee is comment I have made this piece of code that gets most recently modified files.</p>
<pre><code>import os
os.chdir('Folder')
projloc = os.getcwd() #getting the folder to scan
list_of_dirs_to_exclude = []
def get_recent_files():
max_mtime = 0
for root, dirs, files in os.walk(p... | How to scan only some directories or exclude directories while using os.walk() | python|python-os | -1 | 70 | 1 | 72,386,344 | 72,386,344 | 0 | true | 2022-05-25T17:32:19.390Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to scan only some directories or exclude directories while using os.walk()<p>I would need to exclude a few directories or only scan some of them while us... |
72,347,187 | Formatting a table pasted from Excel to Word<p>Hi all from a rookie and sporadic vba user. I have successfully copied a set of tables from Excel into Word and, with the first routine below, formatted each one. In order to accommodate a larger font, I then need to change the row height of the first row and also to chang... | <p>Using appWD.Selection is poor practice. You have an open document you want to work on, so reference that directly. For example:</p>
<pre><code>With wdDoc
For t = 1 To 6
With .Tables(t)
.TopPadding = 0
.BottomPadding = 0
.LeftPadding = 0.11
.RightPadding = 0
.Spacing = 0
.All... | Formatting a table pasted from Excel to Word | excel|vba|ms-word|office-automation | 0 | 70 | 1 | 72,364,908 | 72,364,908 | 0 | true | 2022-05-23T10:41:16.913Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Formatting a table pasted from Excel to Word<p>Hi all from a rookie and sporadic vba user. I have successfully copied a set of tables from Excel into Word an... |
72,310,737 | Nginx reverse proxy prevent changing host for other locations<p>I’m trying to get this done for a couple of days and I can’t. I’m having two web apps, one production and one testing, let’s say <code>https://production.app</code> and <code>https://testing.app</code>. I need to make a reverse proxy under <code>https://pr... | <p>Your question title isn't well written. It has nothing to do about "changing headers", and nginx location, while being essentially tied to the request processing, isn't the right term there too. It should be something like "how to serve the assets requested by proxied page in a different way than the ... | Nginx reverse proxy prevent changing host for other locations | nginx|nginx-reverse-proxy|nginx-location | -1 | 70 | 1 | 72,328,020 | 72,328,020 | 0 | true | 2022-05-19T20:28:57.757Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Nginx reverse proxy prevent changing host for other locations<p>I’m trying to get this done for a couple of days and I can’t. I’m having two web apps, one pr... |
72,338,686 | how to handle request method from go. I don't use libraries<p>before that I worked with node js and it was easy to understand how to handle methods</p>
<p>example on node js:</p>
<pre><code> switch (request.method) {
case 'OPTIONS': return OptionsResponse(response);
case 'GET': return GetSwitch(request, res... | <p>Maybe this can help you:</p>
<pre><code>type MyHandler struct{}
func (self MyHandler) ServeHTTP(w http.ResponseWriter, req *http.Request) {
}
http.ListenAndServe(":3000", &MyHandler{})
</code></pre> | how to handle request method from go. I don't use libraries | http|go|methods | -2 | 70 | 3 | 72,346,541 | 72,346,541 | 0 | true | 2022-05-22T14:56:17.287Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
how to handle request method from go. I don't use libraries<p>before that I worked with node js and it was easy to understand how to handle methods</p>
<p>ex... |
72,338,127 | match two dataframe columns, return different column value<p>This should be simple, but can't seem to find it.</p>
<p>dfA # list of names of students(500 students in my list) - shortened to just first name</p>
<div class="s-table-container">
<table class="s-table">
<thead>
<tr>
<th>ID</th>
<th>Cola</th>
</tr>
</thead>
... | <h2>EDIT</h2>
<p><em>Based on the exchanges in comments</em></p>
<p>I updated the provided code (you inverted dfA and dfB compared to your example above, the NID 28 was missing in dfA and I set the correct columns as indexes) and it works just fine for me now.</p>
<pre class="lang-py prettyprint-override"><code>import ... | match two dataframe columns, return different column value | python|dataframe | 0 | 70 | 1 | 72,340,025 | 72,340,025 | 0 | true | 2022-05-22T13:45:03.963Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
match two dataframe columns, return different column value<p>This should be simple, but can't seem to find it.</p>
<p>dfA # list of names of students(500 stu... |
72,303,184 | How to map multiple subdomains into one app service in azure?<p>I have existing app service with subdomain app.example.com.
I want to have another subdomain called client.example.com which is also pointing to app.example.com</p>
<p>Is this possible in Azure DNS?</p> | <p>Yes you can create the above requirement as shown below image,</p>
<ul>
<li><em>if you have already bought your domains configure <em><strong>DNS A and TXT records</strong></em> of both domains to point to your Azure web app</em>.</li>
</ul>
<p><strong>NOTE:-</strong> <em><strong>Please ensure that the SSL certific... | How to map multiple subdomains into one app service in azure? | azure|azure-web-app-service|azure-dns | 0 | 70 | 1 | 72,303,603 | 72,303,603 | 0 | true | 2022-05-19T10:48:02.687Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to map multiple subdomains into one app service in azure?<p>I have existing app service with subdomain app.example.com.
I want to have another subdomain ... |
72,392,325 | Navbar links in ASP.NET master page<p>So I am writing a master page for an ASP.NET web application, and I am having an issue with the links it contains to content within the site.
The master page sits in a folder named "admin", and as you can see from the code below, there are sub-folders beneath it for vario... | <p>From your description, you are saying that those folders reside within the admin folder. But a <code>../</code> at the beginning of the path would indicate a relative link to the parent folder. Sounds like that is not your current folder structure and that instead your admin folder is at the root and those other fol... | Navbar links in ASP.NET master page | asp.net|hyperlink|master-pages | 0 | 70 | 1 | 72,392,698 | 72,392,698 | 0 | true | 2022-05-26T13:07:01.003Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Navbar links in ASP.NET master page<p>So I am writing a master page for an ASP.NET web application, and I am having an issue with the links it contains to co... |
72,358,766 | SQL Oracle closest match variable<p>I have below two tables</p>
<p><a href="https://i.stack.imgur.com/2KKK6.png" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/2KKK6.png" alt="enter image description here" /></a></p>
<p><a href="https://i.stack.imgur.com/CYyhG.png" rel="nofollow noreferrer"><img src="htt... | <p>Here is one option:</p>
<pre><code>select product_nr,customer,quantity,price from (
select
t1.product_nr,t1.customer,t1.quantity,t2.quantity
a,t2.price,min(t2.quantity)over(partition by t1.product_nr,t1.customer) b
from table1 t1 join table2 t2 on t1.product_nr=t2.product_nr and
t2.quantity>=t1.quantity)
where... | SQL Oracle closest match variable | sql|oracle|oracle-sqldeveloper | 0 | 70 | 1 | 72,359,677 | 72,359,677 | 0 | true | 2022-05-24T07:24:16.993Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
SQL Oracle closest match variable<p>I have below two tables</p>
<p><a href="https://i.stack.imgur.com/2KKK6.png" rel="nofollow noreferrer"><img src="https://... |
72,350,572 | join list elements between two elements in a list<p>I have a list and I have the two list elements <code>start:</code>and <code>end:</code>. Between these two there is an undefined number of elements that I would like to join to the <code>start</code> element.
Also, <code>end:</code> can have different names but it alw... | <p>Get the indexes of <code>start:</code> and <code>end:</code>. Then you can join them and use slice assignment to replace that part of the list with the result.</p>
<pre><code>start = sth_list.index('start:')
end = min(i for i, s in enumerate(sth_list) if s.startswith('end:'))
sth_list[start:end] = [' '.join(sth_list... | join list elements between two elements in a list | python|string|list|list-comprehension | 0 | 70 | 2 | 72,350,689 | 72,350,689 | 0 | true | 2022-05-23T14:51:16.433Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
join list elements between two elements in a list<p>I have a list and I have the two list elements <code>start:</code>and <code>end:</code>. Between these tw... |
72,318,657 | Output of Build.Repository.Name from a powershell script running in data external of Terraform<p>I need to fetch the Azure DevOps Repository Name (output of Build.Repository.Name) from a powershell script that is running in Terraform external data source in Terraform script. But I am getting blank output. Below is the ... | <p>I fixed the code. I was using wrong way of referring Azure DevOps System variable in PowerShell. It must be all CAPS and dot must be replaced with "_". Also use <code>$env</code>.</p>
<p>Corrected PowerShell Script</p>
<pre><code>$outputJson = @{RepoName = $($env:BUILD_REPOSITORY_NAME);} | ConvertTo-Json
... | Output of Build.Repository.Name from a powershell script running in data external of Terraform | powershell|azure-devops|terraform | 0 | 70 | 1 | 72,318,809 | 72,318,809 | 0 | true | 2022-05-20T12:06:31.943Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Output of Build.Repository.Name from a powershell script running in data external of Terraform<p>I need to fetch the Azure DevOps Repository Name (output of ... |
72,238,645 | Rounding columns in a dataframe with file.dtypes.iteritems()<p>I'm making a function on rounding decimals, I wrote the following already:</p>
<pre><code>for colname, coltype in file.dtypes.iteritems():
if coltype in lst:
file[colname] = file[colname].round(desired_decimals)
</code></pre>
<p>However, it does... | <p>Two files are created, the values are written in the first in their own format, in the second in a string format.</p>
<pre><code>import pandas as pd
df = pd.DataFrame({'A':[5.291752, 8.920429, 10.0]})
pd.options.display.float_format = '{:,.6f}'.format
df.to_csv('string_no.csv', index=False, header=['A'])
with op... | Rounding columns in a dataframe with file.dtypes.iteritems() | python|decimal|rounding | 0 | 70 | 1 | 72,240,089 | 72,240,089 | 0 | true | 2022-05-14T08:45:47.247Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Rounding columns in a dataframe with file.dtypes.iteritems()<p>I'm making a function on rounding decimals, I wrote the following already:</p>
<pre><code>for ... |
72,379,719 | Forming new 2d array by abstract some data in the other array<p>In a scenario where I have a 2d array like this:</p>
<pre><code>[
[0,1,4,2,2,5,5,0],
[1,1,4,4,2,2,5,3],
[1,6,6,6,7,7,3,3],
]
</code></pre>
<p>And I wish to abstract the same number into a single new 2d array like the one below: {either one}</p>
<pre>... | <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>// Initial Data
const arr = [
[0, 1, 4, 2, 2, 5, 5, 0],
[1, 1, 4, 4, 2, 2, 5, 3],
[1, 6, 6, 6, 7, 7, 3, 3],
];
// Numbers you... | Forming new 2d array by abstract some data in the other array | javascript|arrays|typescript|multidimensional-array|logic | 0 | 70 | 1 | 72,380,247 | 72,380,247 | 0 | true | 2022-05-25T14:42:10.530Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Forming new 2d array by abstract some data in the other array<p>In a scenario where I have a 2d array like this:</p>
<pre><code>[
[0,1,4,2,2,5,5,0],
[1,1... |
72,252,937 | NLP using XLM dataset<p>I am trying to do NLP on the dataset consisting of the following row</p>
<pre><code>00001 B 74457
00002 C 12804123 16026213 14627885
00004 A 15329425 9058342 11279767
</code></pre>
<p>where 1st element in the row is the identifier 2nd on is a label recommends, it can have only three labels $A, ... | <p>Here is one way to do it:</p>
<pre class="lang-py prettyprint-override"><code>import pandas as pd
try:
medlinecitation = pd.read_xml("74457.xml", xpath=".//medlinecitation").dropna(
axis=1
)
except ValueError:
medlinecitation = pd.DataFrame()
try:
pubmedpubdate = pd.read... | NLP using XLM dataset | python|pandas|xml|jupyter-notebook|nlp | 1 | 70 | 1 | 72,336,520 | 72,336,520 | 0 | true | 2022-05-15T23:40:51.433Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
NLP using XLM dataset<p>I am trying to do NLP on the dataset consisting of the following row</p>
<pre><code>00001 B 74457
00002 C 12804123 16026213 14627885
... |
72,269,852 | .NET Core WebAPI - AWS ElasticBeanstalk Nginx Configuration<p>I've moved my .NET Core WebAPI to an AWS EB Instance. This works fine, however my file upload has now broken due to the Nginx 'client_max_body_size' configuration.</p>
<p>I've looked up how to override this, however I cannot get this to work. Here is my curr... | <p>The error msg</p>
<pre><code>"client_max_body_size"
</code></pre>
<p>indicates that you have some non-ASCII characters (<code></code>) in your <code>myConf.conf</code>. Please open the file in a regular text editor and verify that it has only ASCII characters.</p> | .NET Core WebAPI - AWS ElasticBeanstalk Nginx Configuration | nginx|amazon-elastic-beanstalk|nginx-config | 1 | 70 | 1 | 72,270,001 | 72,270,001 | 1 | true | 2022-05-17T07:32:07.500Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
.NET Core WebAPI - AWS ElasticBeanstalk Nginx Configuration<p>I've moved my .NET Core WebAPI to an AWS EB Instance. This works fine, however my file upload h... |
72,247,970 | what is multisample per pixel in directx11 DXGI_SAMPLE_DECS<p>I was reading documentation about <code>DXGI_SWAP_CHAIN_DESC</code> and i came across with <a href="https://docs.microsoft.com/en-us/windows/win32/api/dxgicommon/ns-dxgicommon-dxgi_sample_desc" rel="nofollow noreferrer"><code>DXGI_SAMPLE_DESC</code></a></p>
... | <p><code>DXGI_SAMPLE_DESC</code> as you surmised is for specifying Multi-Sample Anti-Aliasing (<a href="https://en.wikipedia.org/wiki/Multisample_anti-aliasing" rel="nofollow noreferrer">MSAA</a>).</p>
<p>That said, you should be aware that the SwapChain support for MSAA is not something you should use anymore. As such... | what is multisample per pixel in directx11 DXGI_SAMPLE_DECS | c++|directx|dxgi | -1 | 70 | 2 | 72,279,500 | 72,279,500 | 1 | true | 2022-05-15T11:48:16.110Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
what is multisample per pixel in directx11 DXGI_SAMPLE_DECS<p>I was reading documentation about <code>DXGI_SWAP_CHAIN_DESC</code> and i came across with <a h... |
72,279,161 | How to create a constraint on custom datatype in SQL Server<p>I want to create a custom datatype in SQL Server with some sort of constraint that checks and validates the <code>type</code> by running through a custom function and returns an error if it fails.</p>
<p><strong>For example</strong></p>
<p>I have some sort o... | <p>You cannot have constraints on alias types, and they are therefore mostly useless.</p>
<p><a href="https://docs.microsoft.com/en-us/sql/t-sql/statements/create-type-transact-sql?view=sql-server-ver15" rel="nofollow noreferrer">The grammar for <code>CREATE TYPE</code></a> specifies column and table <code>CHECK</code>... | How to create a constraint on custom datatype in SQL Server | sql|sql-server|azure-data-studio | 0 | 70 | 1 | 72,282,494 | 72,282,494 | 1 | true | 2022-05-17T18:41:26.647Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to create a constraint on custom datatype in SQL Server<p>I want to create a custom datatype in SQL Server with some sort of constraint that checks and v... |
72,282,562 | How to fetch data from multiple API's at the same time - that require a different seaarch prase<p>I'm making an app that fetches data from 2 different APIs at the same time based on the user's search.</p>
<p>The app is supposed to fetch current crypto prices and historical data. But the APIs use 2 different formats for... | <p>Use <code>Promise.all</code> if you want fetch data from 2 different API's at the sane time:</p>
<pre><code>const fetchData = async (yahoo_API_URL, coingecko_API_URL) => {
const fetchYahoo = fetch(yahoo_API_URL, /* config */)
const fetchCoingecko = fetch(coingecko_API_URL, /* config */)
const [fetchYa... | How to fetch data from multiple API's at the same time - that require a different seaarch prase | javascript|reactjs | 0 | 70 | 1 | 72,283,081 | 72,283,081 | 1 | true | 2022-05-18T02:24:02.940Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to fetch data from multiple API's at the same time - that require a different seaarch prase<p>I'm making an app that fetches data from 2 different APIs a... |
72,289,154 | Pandas look for string values of one col in multiple columns, write value if in other col in new column<p>I have the following df with string col (small example, origin has more col & rows):</p>
<pre><code>p = pd.DataFrame([
{'ID': 1,'col_1': 'pluto', 'col_2':'saturn,neptune,uranus,saturn,eris,ha... | <p>You can convert the values to <code>set</code></p>
<pre class="lang-py prettyprint-override"><code>df = pd.DataFrame({'col1': p['col_1'].str.split(', ?').apply(set),
'col2': p.filter(regex='col_[2-5]').agg(','.join, axis=1).str.split(',').apply(set)})
</code></pre>
<pre><code>print(df)
... | Pandas look for string values of one col in multiple columns, write value if in other col in new column | python|pandas|dataframe | 0 | 70 | 1 | 72,291,099 | 72,291,099 | 1 | true | 2022-05-18T12:26:11.297Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Pandas look for string values of one col in multiple columns, write value if in other col in new column<p>I have the following df with string col (small exam... |
72,293,911 | i make bool condition when i try to use in listveiw i got this error<p>i make bool condition when i try to use in listveiw i got this error(1 positional argument(s) expected, but 0 found. Try adding the missing arguments.) and when is pass isBool value it gives me this error (Undefined name 'isBool'.
Try correcting the... | <p>'isBool' instance belongs to 'SingleItem' class.
And inside your 'ReviewCart' class, you are trying to pass 'isBool'(itself), which is not available in this class, while creating the instance of 'SingleItem' class.</p>
<p>Try passing an actual bool value(true/false) instead of 'isBool'.</p> | i make bool condition when i try to use in listveiw i got this error | flutter|dart|error-handling|dart-null-safety | 0 | 70 | 3 | 72,298,526 | 72,298,526 | 1 | true | 2022-05-18T17:58:10.530Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
i make bool condition when i try to use in listveiw i got this error<p>i make bool condition when i try to use in listveiw i got this error(1 positional argu... |
72,308,110 | Flutter - make api call inside Listview<p>I am calling an api, which will return a list of items (workouts), and items will be shown in a ListView. but I also need to call another api for each item of the ListView to fetch the score of that workout (if there is already a score) and show the score to each workout accord... | <p>As I understand, it can be done from a loop. You have to create a model class for results that include the workout id. Then you can loop through it and find the relevant workout from the workout list and then assign the results for it.</p>
<p>there is an example hope it will help.</p>
<p>*dummy model classes</p>
<pr... | Flutter - make api call inside Listview | flutter|api|listview|bloc | 0 | 70 | 1 | 72,309,181 | 72,309,181 | 1 | true | 2022-05-19T16:32:41.720Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Flutter - make api call inside Listview<p>I am calling an api, which will return a list of items (workouts), and items will be shown in a ListView. but I als... |
72,314,037 | How can I use an alias with HAVING clause?<p>I'm trying to JPQL equivalent to the following SQL.</p>
<pre class="lang-sql prettyprint-override"><code>SELECT last_name, COUNT(1) AS c
FROM actor
GROUP BY last_name
HAVING c > 1
ORDER BY c DESC
</code></pre>
<p>I tried with the following JPQL.</p>
<pre class="lang-sql p... | <p>JPQL does not support using the alias in the <code>HAVING</code> clause, mainly because not all SQL engines support this behavior. For example, both Oracle and Postgres would not support your first version of the query.</p>
<p>If you want to use pure JPQL, then just repeat the entire count expression in the <code>H... | How can I use an alias with HAVING clause? | mysql|hibernate|jpa|aggregate-functions|having | 0 | 70 | 1 | 72,314,072 | 72,314,072 | 1 | true | 2022-05-20T05:39:53.543Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How can I use an alias with HAVING clause?<p>I'm trying to JPQL equivalent to the following SQL.</p>
<pre class="lang-sql prettyprint-override"><code>SELECT ... |
72,306,462 | OctoberCMS: Access parent model in relation form<p>I am creating an interface in the backend where the parent model has a belongsToMany relationship which is handled via a relation manager widget.</p>
<p>When creating the related model I need to be able to access the model (and relationships) of the model in the parent... | <p>Managed to find out a way to pass the needed data to the form in the relation manager by extending the relation manager widget in the controller and passing the parrent model in the config of the widget making it accessible within the child form.</p>
<p>Here is the code:</p>
<pre><code>public function relationExtend... | OctoberCMS: Access parent model in relation form | octobercms|octobercms-backend|october-form-controller | 0 | 70 | 2 | 72,315,356 | 72,315,356 | 1 | true | 2022-05-19T14:33:07.083Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
OctoberCMS: Access parent model in relation form<p>I am creating an interface in the backend where the parent model has a belongsToMany relationship which is... |
72,321,469 | Function to Conduct a Kruskal Wallis Tests for Multiple Comparison of Variables using R<p><strong>Issue:</strong></p>
<p>I have a dataset that doesn't meet the assumptions to conduct an ANOVA, so I need to conduct a non-parametric alternative such as the <strong>Kruskal Wallis test</strong>. Overall, I have seven param... | <p>Instead of the <code>summary</code>, we may use <code>tidy</code></p>
<pre><code>library(purrr)
Outcomes <- setdiff(Outcomes, "Center.Freq") # Centre.Freq column not present
map_dfr(setNames(Outcomes, Outcomes), function(my) {
f <- as.formula(paste(my, "~Species", sep=&... | Function to Conduct a Kruskal Wallis Tests for Multiple Comparison of Variables using R | r|statistics|difference|statistical-test|kruskal-wallis | 1 | 70 | 1 | 72,321,515 | 72,321,515 | 1 | true | 2022-05-20T15:33:54.450Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Function to Conduct a Kruskal Wallis Tests for Multiple Comparison of Variables using R<p><strong>Issue:</strong></p>
<p>I have a dataset that doesn't meet t... |
72,334,725 | Bad file descriptor fgets<p>I'm trying to create a file to send information to another process. But when I reach the send_file function, I get -->Error in fgets():: Bad file descriptor. Can someone help me address this matter, please? I'm stuck.</p>
<pre><code>#include <stdlib.h>
#include <stdio.h>
voi... | <pre><code>FILE *fp = fopen(filenames, "w");
</code></pre>
<p>Opens a file in write-only mode.</p>
<p>Use a read-write mode, such as <code>"r+"</code>, <code>"w+"</code>, or <code>"a+"</code>, and <a href="https://en.cppreference.com/w/c/io/fseek" rel="nofollow noreferrer"><code>... | Bad file descriptor fgets | c|fgets | 0 | 70 | 1 | 72,334,816 | 72,334,816 | 1 | true | 2022-05-22T04:05:13.873Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Bad file descriptor fgets<p>I'm trying to create a file to send information to another process. But when I reach the send_file function, I get -->Error in... |
72,246,695 | how to modify flutter_tree package for select all children?<p>i using <a href="https://pub.dev/packages/flutter_tree" rel="nofollow noreferrer">flutter_tree</a> for create tree of chackbox in flutter.</p>
<p>I want all children to be checked when I check a parent item, and all children to be unchecked if I uncheck a p... | <p>You can try the <a href="https://pub.dev/packages/list_treeview" rel="nofollow noreferrer"><code>list_treeview</code> package</a>, if you don't want to deal with it yourself. It has a <code>selectAllChild()</code> method.</p> | how to modify flutter_tree package for select all children? | flutter|flutter-layout|flutter-dependencies | 0 | 70 | 1 | 72,336,420 | 72,336,420 | 1 | true | 2022-05-15T08:31:59.367Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
how to modify flutter_tree package for select all children?<p>i using <a href="https://pub.dev/packages/flutter_tree" rel="nofollow noreferrer">flutter_tree... |
72,336,739 | Setting the minimum value of a pandas column using clip<p>I want to set the <code>minimum</code> value of a column of <code>pandas</code> dataframe using <code>clip</code> method. Below is my code</p>
<pre><code>import pandas as pd
data = pd.DataFrame({'date' : pd.to_datetime(['2010-12-31', '2012-12-31', '2012-12-31'])... | <p>You can try <code>Series.clip</code> or set the <code>date</code> column as index then <code>DataFrame.clip</code>.</p>
<pre class="lang-py prettyprint-override"><code>data['val'] = data['val'].clip(4)
# or
data = (data.set_index('date')
.clip(4)
.reset_index())
</code></pre>
<pre><code>print(data)... | Setting the minimum value of a pandas column using clip | python-3.x|pandas | 0 | 70 | 1 | 72,336,913 | 72,336,913 | 1 | true | 2022-05-22T10:31:21.107Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Setting the minimum value of a pandas column using clip<p>I want to set the <code>minimum</code> value of a column of <code>pandas</code> dataframe using <co... |
72,302,207 | XCB window geometry/surface dimensions appear to be stale despite reconfigure<p>I was working with Vulkan on an XCB-provided window surface under my own windowing abstraction but encountered a rather strange behaviour when recreating the swapchain on recieving a window reconfigure event (<code>XCB_CONFIGURE_NOTIFY</cod... | <p>Found it. You are indeed making your window non-resizable by selecting <code>XCB_EVENT_MASK_RESIZE_REDIRECT</code> on the window here: <a href="https://github.com/Th3T3chn0G1t/Genstone/blob/c8759b6687bb83045b8fe58b03c2575276940ca7/genstone/genfx/genuwin.c#L741-L743" rel="nofollow noreferrer">https://github.com/Th3T3... | XCB window geometry/surface dimensions appear to be stale despite reconfigure | c|vulkan|xcb | 0 | 70 | 1 | 72,337,358 | 72,337,358 | 1 | true | 2022-05-19T09:40:46.433Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
XCB window geometry/surface dimensions appear to be stale despite reconfigure<p>I was working with Vulkan on an XCB-provided window surface under my own wind... |
72,355,114 | Fatal Error U1073: Don't know how to make 'f2c.h0'<p>I am trying to follow <a href="https://medium.com/@chintanp/using-f2c-on-windows-to-convert-f77-files-to-c-33da825d5de0" rel="nofollow noreferrer">this tutorial</a> and I am stuck on step 2 of building the library.</p>
<p>I have visual studio 2022 community edition i... | <p>The build works correctly if the <code>make/nmake</code> command is run from the command line in the <em>same</em> directory that the files from the <code>.zip</code> were extracted to [on linux, at least, with <code>make -f makefile.u</code>].</p>
<p>When run under visual studio, does it start the build in the corr... | Fatal Error U1073: Don't know how to make 'f2c.h0' | c|visual-studio|nmake | 0 | 70 | 1 | 72,364,781 | 72,364,781 | 1 | true | 2022-05-23T21:45:38.383Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Fatal Error U1073: Don't know how to make 'f2c.h0'<p>I am trying to follow <a href="https://medium.com/@chintanp/using-f2c-on-windows-to-convert-f77-files-to... |
72,387,580 | Indexed fixed completion count job, more than one pod with the same index<p>A bit unclear sentence <a href="https://kubernetes.io/docs/concepts/workloads/controllers/job/#completion-mode" rel="nofollow noreferrer">in the doco</a>:</p>
<blockquote>
<p>Note that, although rare, more than one Pod could be started for the ... | <p>The first sentence is important:</p>
<blockquote>
<p>The Job is considered complete when there is one successfully completed Pod <strong>for each index</strong>.</p>
</blockquote>
<p>There can be duplicated index but for each index, only <strong>one</strong> (the one that reached Completed first) will be counted for... | Indexed fixed completion count job, more than one pod with the same index | kubernetes|kubernetes-jobs | 0 | 70 | 1 | 72,387,794 | 72,387,794 | 1 | true | 2022-05-26T06:23:55.960Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Indexed fixed completion count job, more than one pod with the same index<p>A bit unclear sentence <a href="https://kubernetes.io/docs/concepts/workloads/con... |
72,791,245 | Matching multiple columns based on groupID from another table's data<p>I have 2 tables, one where I have sets of information that is organized by group ID's. This group ID means all parts must be in that group for that machine to be an option:</p>
<div class="s-table-container">
<table class="s-table">
<thead>
<tr>
<t... | <p>You may follow these steps:</p>
<ul>
<li>aggregate all parts for each "<em>Product</em>" into a single string</li>
<li>extract all machines whose both part groups are found within the product parts</li>
<li>exclude all machines which have at least one part groups not found within the product parts, for eac... | Matching multiple columns based on groupID from another table's data | sql|sql-server | 0 | 70 | 2 | 72,793,263 | 72,793,263 | 1 | true | 2022-06-28T18:06:32.097Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Matching multiple columns based on groupID from another table's data<p>I have 2 tables, one where I have sets of information that is organized by group ID's.... |
72,796,512 | check if a torch tensor is an integer tensor<p>What is the easiest way to check that a torch tensor’s dtype is an integer type?</p>
<p>I ultimately don’t care if it is <code>torch.uint8</code> or <code>torch.int32</code> for example, I just want to know if it contains integers.</p>
<p>I also don’t care on which device ... | <p>Are <code>torch.is_floating_point(...)</code> and <code>torch.is_complex(...)</code> enough?</p>
<pre><code># True
torch.is_floating_point(torch.tensor([1.2]))
# False
torch.is_floating_point(torch.tensor([1]))
</code></pre> | check if a torch tensor is an integer tensor | python|torch | 1 | 70 | 1 | 72,796,741 | 72,796,741 | 1 | true | 2022-06-29T06:06:47.017Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
check if a torch tensor is an integer tensor<p>What is the easiest way to check that a torch tensor’s dtype is an integer type?</p>
<p>I ultimately don’t car... |
72,796,316 | Error getting access token for service account: 401 Unauthorized\nPOST https://oauth2.googleapis.com/token; Google Calendar API<p>I have integrated Google Calendar with business email of my company. Everything works fine if we use email with our own domain. However, if a certain user uses with a simple <strong>gmail.co... | <p>You are using a service account. Service accounts get their authorization though the domain wide delegation set up in Google workspace.</p>
<p>Domain wide delegation will only work on accounts within the domain. A standard gmail user account is not on your domain there for your service account can not access it.</... | Error getting access token for service account: 401 Unauthorized\nPOST https://oauth2.googleapis.com/token; Google Calendar API | java|spring-boot|google-calendar-api|service-accounts|google-api-java-client | 1 | 70 | 1 | 72,797,800 | 72,797,800 | 1 | true | 2022-06-29T05:45:09.620Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Error getting access token for service account: 401 Unauthorized\nPOST https://oauth2.googleapis.com/token; Google Calendar API<p>I have integrated Google Ca... |
72,797,392 | How to dynamically add Elements to div and make sure they are all visible<p>I am adding <code><div></code>s on click dynamically to a container. However, when I have added three divs horizontally, the container is only scrollable to the right. To the left, the divs are cut off. Here is a video where you can see i... | <p>The problem was the following CSS-line for <code>.shift-selection-container</code>:</p>
<pre class="lang-css prettyprint-override"><code>justify-content: space-evenly;
</code></pre>
<p>You could change it as follows, and it works:</p>
<pre class="lang-css prettyprint-override"><code>justify-content: flex-start;
</co... | How to dynamically add Elements to div and make sure they are all visible | javascript|html|css | 1 | 70 | 1 | 72,798,496 | 72,798,496 | 1 | true | 2022-06-29T07:27:35.730Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to dynamically add Elements to div and make sure they are all visible<p>I am adding <code><div></code>s on click dynamically to a container. Howeve... |
72,800,748 | Is it possible to scope `serializeQueryArgs` alongside injected endpoints?<p>I <a href="https://redux-toolkit.js.org/rtk-query/api/created-api/code-splitting#injectendpoints" rel="nofollow noreferrer">inject endpoints</a> like this:</p>
<pre class="lang-js prettyprint-override"><code>export const commentsApi = generalA... | <p>Not at the moment. If you find a way to add this with minimal overhead, a PR is very welcome.</p> | Is it possible to scope `serializeQueryArgs` alongside injected endpoints? | rtk-query | 0 | 70 | 1 | 72,802,392 | 72,802,392 | 1 | true | 2022-06-29T11:35:54.330Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Is it possible to scope `serializeQueryArgs` alongside injected endpoints?<p>I <a href="https://redux-toolkit.js.org/rtk-query/api/created-api/code-splitting... |
72,803,203 | expo React native navigation, screen stuck at default logo<pre><code>import React, {Component} from 'react'
import Registrar from './pantallas/Registrar'; //register screen
import Principal from './pantallas/Principal'; // main screen after login
import { NavigationContainer } from '@react-navigation/native';
i... | <p>If you haven't already, make sure you install <code>react-native-gesture-handler</code> and import it. Please see the stack-navigator docs for more info: <a href="https://reactnavigation.org/docs/stack-navigator" rel="nofollow noreferrer">stack-navigator</a></p>
<p>From the docs: "To finalize installation of <c... | expo React native navigation, screen stuck at default logo | react-native|expo|react-native-navigation | 0 | 70 | 1 | 72,804,182 | 72,804,182 | 1 | true | 2022-06-29T14:33:52.983Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
expo React native navigation, screen stuck at default logo<pre><code>import React, {Component} from 'react'
import Registrar from './pantallas/Registrar'... |
72,812,425 | VBA: Count times a pair of values appears<p>To generate from this:</p>
<p><a href="https://i.stack.imgur.com/s7GXb.png" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/s7GXb.png" alt="enter image description here" /></a></p>
<p>that:</p>
<p><a href="https://i.stack.imgur.com/AFI18.png" rel="nofollow noref... | <p>As you mention in your comment, you seem not to know how to record a macro: you go to the "Developer" ribbon (you might need to enable it first) and in the first part, you click "Record macro" and you just start doing what you want to record (in this case, insert a pivot table).</p>
<p>I've just ... | VBA: Count times a pair of values appears | excel|vba|if-statement|count | 1 | 70 | 3 | 72,814,765 | 72,814,765 | 1 | true | 2022-06-30T08:16:20.487Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
VBA: Count times a pair of values appears<p>To generate from this:</p>
<p><a href="https://i.stack.imgur.com/s7GXb.png" rel="nofollow noreferrer"><img src="h... |
72,812,501 | How can I handle an error locally and skip an Angular HTTP interceptor?<p>I have an Angular <code>HttpInterceptor</code> to catch errors and display appropriate, yet generic, error messages depending on the status code.</p>
<p>I have a specific case where I actually <em>expect</em> and error message (the UI tries to re... | <p>We can pass <a href="https://angular.io/guide/http#passing-metadata-to-interceptors" rel="nofollow noreferrer">some metadata context</a> to <code>HttpClient</code> and then retrieve it inside the <code>HttpInterceptor</code>.</p>
<p>Of course, it implies to add some logic inside <code>HttpInterceptor</code>, but tha... | How can I handle an error locally and skip an Angular HTTP interceptor? | angular | 2 | 70 | 1 | 72,816,957 | 72,816,957 | 1 | true | 2022-06-30T08:22:06.717Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How can I handle an error locally and skip an Angular HTTP interceptor?<p>I have an Angular <code>HttpInterceptor</code> to catch errors and display appropri... |
72,771,673 | Enable to reach endpoint 404 error code - Deployed application<p>I'm deploying my application in the cloud, inside a cluster on 03 pods:</p>
<ol>
<li>one pod: backend - Quarkus</li>
<li>one pod: frontend - Angular</li>
<li>one pod: DB - Postgres</li>
</ol>
<p><strong>The backend has 03 endpoints:</strong></p>
<ol>
<li>... | <p>I thinks that I managed to make another Diagnotic method wiht the help for Ryan Dawson.
I did PortForaward the backend pod and request from the locally, then I found that there is a 500 error code --> meaning that the request was not matching the api requirements: in the frontend I was sendign the wrong context t... | Enable to reach endpoint 404 error code - Deployed application | angular|kubernetes|kubernetes-ingress|quarkus|quarkus-rest-client | 1 | 70 | 2 | 72,817,088 | 72,817,088 | 1 | true | 2022-06-27T11:55:35.103Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Enable to reach endpoint 404 error code - Deployed application<p>I'm deploying my application in the cloud, inside a cluster on 03 pods:</p>
<ol>
<li>one pod... |
72,817,416 | Fitting sklearn model inside pandas UDF is taking too long -PYSPARK-<p>I have a <code>spark.DataFrame</code>, with multiples time series. I want to apply a <code>sklearn</code> model for each time serie on a groupby apply. For each time series, the model takes app 0.05s, but when I try to solve this inside a <code>pand... | <ol>
<li>If you want it to run faster, try translate to <a href="https://spark.apache.org/docs/latest/api/python/user_guide/pandas_on_spark/transform_apply.html" rel="nofollow noreferrer">spark pandas</a> instead of pandas. (Admittedly it's not clear you could be using spark pandas.)</li>
<li>UDF's generally don't perf... | Fitting sklearn model inside pandas UDF is taking too long -PYSPARK- | python|apache-spark|pyspark | 0 | 70 | 1 | 72,818,155 | 72,818,155 | 1 | true | 2022-06-30T14:17:37.593Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Fitting sklearn model inside pandas UDF is taking too long -PYSPARK-<p>I have a <code>spark.DataFrame</code>, with multiples time series. I want to apply a <... |
72,819,699 | ModuleNotFoundError when starting celery in Django project<p>I have a Django project structure like this (not showing all the files/folders):</p>
<pre><code>myproj/
├── __init__.py
├── config/
│ ├── __init__.py <-- imports `celery_app` as per docs
│ ├── settings/
│ │ ├── __init__.py
│ │ └── base.py
│ ... | <p>You need to make sure that your project files are in the working directory when calling <code>celery</code>. In the case of your Dockerfile, this usually means setting your <code>WORKDIR</code> to the same location where you copy your project files. For example:</p>
<pre><code>#...
WORKDIR /app
COPY . /app
# ...
CMD... | ModuleNotFoundError when starting celery in Django project | django|celery | 0 | 70 | 1 | 72,820,007 | 72,820,007 | 1 | true | 2022-06-30T17:15:47.987Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
ModuleNotFoundError when starting celery in Django project<p>I have a Django project structure like this (not showing all the files/folders):</p>
<pre><code>... |
72,392,870 | How to get the printer device font list in WPF<p>Is there a way to get the printer device fonts list and not the ones installed on Windows using WPF?</p> | <p>Using PInovke you can access printer device context and enumerate its specific font, as explained in <a href="https://www.pinvoke.net/default.aspx/gdi32/EnumFontFamilies.html" rel="nofollow noreferrer">this</a>.</p>
<pre><code>using System.Collections.Generic;
using System.Drawing;
using System.Runtime.InteropServic... | How to get the printer device font list in WPF | c#|wpf|fonts|driver|printers | 1 | 70 | 1 | 72,830,709 | 72,830,709 | 1 | true | 2022-05-26T13:45:24.910Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to get the printer device font list in WPF<p>Is there a way to get the printer device fonts list and not the ones installed on Windows using WPF?</p> |
72,787,324 | Loading svndumpfilter-ed SVN Dump - "svnadmin: E200003: Delta source ended unexpectedly"<p>I'm migrating a legacy SVN repository to GitHub, and to remain within the GitHub file size limits I've created a replica of the SVN repository with larger files (that shouldn't really have been in source control anyway) filtered ... | <ol>
<li>Make sure that you use up-to-date version of SVN command-line tools.</li>
<li>Instead of <code>svndumpfilter</code>, try using <code>svnadmin dump</code> with the <code>--exclude</code> option. It's available beginning with <a href="https://subversion.apache.org/docs/release-notes/1.10.html#dump-include-exclud... | Loading svndumpfilter-ed SVN Dump - "svnadmin: E200003: Delta source ended unexpectedly" | svn|svnadmin|svndump|svndumpfilter|svn-administraton | 0 | 70 | 1 | 72,831,752 | 72,831,752 | 1 | true | 2022-06-28T13:28:58.497Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Loading svndumpfilter-ed SVN Dump - "svnadmin: E200003: Delta source ended unexpectedly"<p>I'm migrating a legacy SVN repository to GitHub, and to remain wit... |
72,834,687 | How to keep instance of WebDriver across multiple Step Definitions with Cucumber<p>My first test is as follows:</p>
<pre><code>public class Deals {
public static WebDriver driver;
static DriverConfig driverConfig = new DriverConfig();
static HomePage home = new HomePage(driver);
static DealsPa... | <p>I am not sure but this should work.</p>
<pre><code>//Class that will be inherited by all others test class you use
public abstract class AbstractTest {
//declare driver
public static WebDriver driver;
//create driver
@BeforeSuite
public void webdriverSetU... | How to keep instance of WebDriver across multiple Step Definitions with Cucumber | java|selenium|selenium-webdriver|automation|cucumber | 1 | 70 | 1 | 72,835,055 | 72,835,055 | 1 | true | 2022-07-01T21:16:33.103Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to keep instance of WebDriver across multiple Step Definitions with Cucumber<p>My first test is as follows:</p>
<pre><code>public class Deals {
... |
72,831,535 | How to process HTML entities in XSLT<p>I am trying to transform XHTML that contains the <code>&nbsp;</code> entity. Saxon complains that the entity is not defined. How can I define it?</p>
<p>Is it possible to add the entity definition at the beginning of the stylesheet? As suggested
here:
<a href="http://s-n-ushak... | <p>One possibility is to pass the URL of the XHTML to the XSLT as a parameter, which would read the XHTML <em>as text</em> using the <code>unparsed-text()</code> function, expand the entity reference using the <code>replace()</code> function, and parse the result using the <code>parse-xml()</code> function. e.g.</p>
<p... | How to process HTML entities in XSLT | xslt|xhtml|saxon | 1 | 70 | 3 | 72,836,506 | 72,836,506 | 1 | true | 2022-07-01T15:30:42.063Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to process HTML entities in XSLT<p>I am trying to transform XHTML that contains the <code>&nbsp;</code> entity. Saxon complains that the entity is no... |
72,836,307 | Executing a function periodically on accurate and precise intervals<p>I want to implement an accurate and precise countdown timer for my application. I started with the most simple implementation, which was not accurate at all.</p>
<pre class="lang-rust prettyprint-override"><code>loop {
// Code which can take upto... | <p>For precise timing, you basically have to busy wait: <code>while time.elapsed() < interval {}</code>. This is also called "spinning" (you might have heard of "spin lock"). Of course, this is far more CPU intensive than using the OS-provided sleep functionality (which often transitions the CPU ... | Executing a function periodically on accurate and precise intervals | rust | 0 | 70 | 1 | 72,837,005 | 72,837,005 | 1 | true | 2022-07-02T03:45:42.217Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Executing a function periodically on accurate and precise intervals<p>I want to implement an accurate and precise countdown timer for my application. I start... |
72,842,586 | Sorted Observable based on another Observable - Angular<p>I have an Observable anmed "History" in which there is an array of elements. It is represented by this json file : (As you can see there are 3 types of entries just the id changes...)</p>
<p>I would like to create another Observable in which I store ea... | <p>Assuming two entries are the same based on the <code>SNS</code>.</p>
<p>First you need to count all the entries, then you can place them in sorted order.</p>
<p>Here is an implementation where <code>original$</code> is the original observable.</p>
<pre class="lang-js prettyprint-override"><code> new$ = original$.pi... | Sorted Observable based on another Observable - Angular | angular|sorting|observable | 0 | 70 | 2 | 72,843,138 | 72,843,138 | 1 | true | 2022-07-02T21:39:19.310Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Sorted Observable based on another Observable - Angular<p>I have an Observable anmed "History" in which there is an array of elements. It is repres... |
72,789,774 | Blazor WASM Debugging in IDE when using url in host file pointing to localhost not working<p>I am running my blazor app on localhost, I can browse to it via a url in my hosts file which is set to redirect to localhost.</p>
<p>When browsing to the app directly through the localhost url I can successfully debug from my I... | <p>I found <a href="https://github.com/dotnet/aspnetcore/issues/35035" rel="nofollow noreferrer">this GitHub issue</a>, which sounds very familiar to what you're encountering. Therefore I'd say you're doing nothing wrong, and it's probably a bug.</p> | Blazor WASM Debugging in IDE when using url in host file pointing to localhost not working | debugging|blazor-webassembly|rider | 0 | 70 | 1 | 72,853,868 | 72,853,868 | 1 | true | 2022-06-28T16:02:43.117Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Blazor WASM Debugging in IDE when using url in host file pointing to localhost not working<p>I am running my blazor app on localhost, I can browse to it via ... |
72,815,200 | Does HuggingFace's Trainer automatically ignore features not required by the model?<p>I am a new user of Transformers and I have successfully fine-tuned a BERT model following the tutorial.</p>
<p>However, I have one question about the features I send to the Trainer and those accepted by the BERT model.</p>
<p>Specific... | <p>As you guessed, these columns are ignored by the Trainer (see also the comments on this <a href="https://stackoverflow.com/questions/70263251/valueerror-when-pre-training-bert-model-using-trainer-api">answer</a>).</p>
<p>However, when a column is ignored during training, you should get the following warning message:... | Does HuggingFace's Trainer automatically ignore features not required by the model? | deep-learning|huggingface-transformers|bert-language-model|transformer-model | 0 | 70 | 1 | 72,855,272 | 72,855,272 | 1 | true | 2022-06-30T11:44:40.847Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Does HuggingFace's Trainer automatically ignore features not required by the model?<p>I am a new user of Transformers and I have successfully fine-tuned a BE... |
72,859,336 | serialize self-referential foreign key<p>Lets say I want to create an article that links via slug to one or multiple other articles (for now one).
A post request comes in giving me some article-info and the related slug.
I want to</p>
<ol>
<li>validate the data and the related slug</li>
<li>create an article in the db<... | <p>You can serialize the slug by working with the <code>article_previous_id</code> field:</p>
<pre><code>class ArticleSerializer(serializers.ModelSerializer):
article_previous = serializers.CharField(<strong>source='article_previous_id'</strong>)
class Meta:
model = Article
fields = ('heading',... | serialize self-referential foreign key | python|django|django-models|django-rest-framework|django-serializer | 1 | 70 | 2 | 72,859,417 | 72,859,417 | 1 | true | 2022-07-04T15:52:43.240Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
serialize self-referential foreign key<p>Lets say I want to create an article that links via slug to one or multiple other articles (for now one).
A post req... |
72,869,067 | How can an image within a grid in xamarin.forms be centered<p>I'm developing a Xamarin. Form mobile apps and trying to center and image above 2 buttons, how can I center and image in a grid XAML tag, see XAML code below in which I'm using, and having difficulty place it in the center of the mobile app screen.</p>
<pre>... | <p>your grid has 2 cols, so your <code>StackLayout</code> needs to span them in order to be centered across the entire grid</p>
<pre><code><StackLayout Grid.Row="0" Grid.Column="0" Grid.ColumnSpan="2" Padding="10" HorizontalOptions="Center" VerticalOptions="Cent... | How can an image within a grid in xamarin.forms be centered | xaml|xamarin|xamarin.forms|xamarin.android|xamarin.ios | 0 | 70 | 1 | 72,870,889 | 72,870,889 | 1 | true | 2022-07-05T11:59:14Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How can an image within a grid in xamarin.forms be centered<p>I'm developing a Xamarin. Form mobile apps and trying to center and image above 2 buttons, how ... |
72,872,885 | Azure Data Factory Python SDK - Convert PipelineResource to JSON<p>I am creating Azure Data Factory pipeline using Python SDK (<code>azure.mgmt.datafactory.models.PipelineResource</code>). I need to convert <code>PipelineResource</code> object to JSON file. Is it possible anyhow?</p>
<p>I tried <code>json.loads(pipelin... | <blockquote>
<p>I need to convert PipelineResource object to JSON file. Is it possible anyhow?</p>
</blockquote>
<p>You can try the following code snippet as suggested by <a href="https://github.com/Azure/azure-sdk-for-python/issues/25081" rel="nofollow noreferrer">mccoyp</a>:</p>
<p>You can add a default argument to <... | Azure Data Factory Python SDK - Convert PipelineResource to JSON | python|azure|azure-data-factory|azure-python-sdk | 0 | 70 | 2 | 72,879,259 | 72,879,259 | 1 | true | 2022-07-05T16:40:54.540Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Azure Data Factory Python SDK - Convert PipelineResource to JSON<p>I am creating Azure Data Factory pipeline using Python SDK (<code>azure.mgmt.datafactory.m... |
72,846,320 | Polynomial regression using sklearn, returning incorrect result<p>I am trying to do a polynomial regression using python sklearn library, but the result I get is very different from the one I get from excel.</p>
<p>code:</p>
<pre><code>def polynomial_regression(x_param, y_param):
print(x_param)
print(y_param)
... | <p>@Adam Demo_Fighter: Let me maybe post a solution to clarify the remark by @Andrey Lukyanenko.</p>
<p>The issue is <code>plt.plot(x_param, y_predicted, c="red")</code>. This plot command will connect the subsequent points from x_param and y_predicted by line segments. If the values in x_param are not monoto... | Polynomial regression using sklearn, returning incorrect result | python|scikit-learn|sklearn-pandas|polynomials | 0 | 70 | 1 | 72,889,654 | 72,889,654 | 1 | true | 2022-07-03T12:00:08.323Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Polynomial regression using sklearn, returning incorrect result<p>I am trying to do a polynomial regression using python sklearn library, but the result I ge... |
72,896,724 | Angular call child component method from parent component<p>I have a parent component having three instances of child component inside it.</p>
<p><strong>child-product-detail.component.html</strong></p>
<pre><code><form id="frmProduct" #frmProduct="ngForm" (ngSubmit)="onSave(frmProduct)"... | <p>You can use the <code>ViewChildren</code> decorator.</p>
<pre><code>@ViewChildren(ChildProductDetailComponent)
childComponents: QueryList<ChildProductDetailComponent>;
saveProduct(productId) {
this.childComponents.get(productIndex).onSave();
}
</code></pre> | Angular call child component method from parent component | angular|typescript | 1 | 70 | 3 | 72,897,303 | 72,897,303 | 1 | true | 2022-07-07T11:06:42.030Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Angular call child component method from parent component<p>I have a parent component having three instances of child component inside it.</p>
<p><strong>chi... |
72,896,171 | Save normalized tensor to png in a loop using pytorch<p>I am working on a GAN and cannot make it work to save images that I transformed into tensors back to “normal” pngs within a loop. The same goes for the tensors that are generated by the Generator.</p>
<p>I applied the following transformation for the original imag... | <p>You apply normalization with mean 0.5 and std 0.5, so your images are transformed from range (0., 1.) to (-1., 1.). You should denormalize them and bring back to the original range before saving them.</p>
<p>In your case, simply doing</p>
<pre><code>real_samples = real_samples * 0.5 + 0.5
</code></pre>
<p>before sav... | Save normalized tensor to png in a loop using pytorch | python|image-processing|pytorch|png|tensor | 0 | 70 | 1 | 72,897,552 | 72,897,552 | 1 | true | 2022-07-07T10:24:03.650Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Save normalized tensor to png in a loop using pytorch<p>I am working on a GAN and cannot make it work to save images that I transformed into tensors back to ... |
72,900,753 | Calling FASTAPI to upload file from phone React Native<p>I have a FASTAPI which accepts file as input in Heroku. I wanted to call the API from React Native app which user can select image from phone and pass it as a body. However, I have met an issue <strong>{"detail": [{"loc": [Array], "msg&qu... | <p>If you look into the automatic generated FastAPI swagger (127.0.0.1:8000/docs), you'll see that you have to use multipart-form to upload this.</p>
<p><a href="https://i.stack.imgur.com/2EMtf.png" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/2EMtf.png" alt="FastAPI Swagger" /></a></p>
<p>To upload th... | Calling FASTAPI to upload file from phone React Native | react-native|fastapi | 0 | 70 | 1 | 72,908,038 | 72,908,038 | 1 | true | 2022-07-07T15:43:51.413Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Calling FASTAPI to upload file from phone React Native<p>I have a FASTAPI which accepts file as input in Heroku. I wanted to call the API from React Native a... |
72,911,447 | How to fix Type 'ContentView' does not conform to protocol 'View' etc. XCODE - SwiftUI<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>import SwiftUI
import CodeScanner
struct Cont... | <p>It's because you didn't put closing brackets for <code>scannerSheet</code>, and had extra closing brackets after the body variable.</p>
<p>This should work.</p>
<pre class="lang-swift prettyprint-override"><code>import SwiftUI
import CodeScanner
struct ContentView: View {
@State var isPresentingScanner = false
... | How to fix Type 'ContentView' does not conform to protocol 'View' etc. XCODE - SwiftUI | xcode|swiftui | 1 | 70 | 1 | 72,912,076 | 72,912,076 | 1 | true | 2022-07-08T12:29:45.043Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to fix Type 'ContentView' does not conform to protocol 'View' etc. XCODE - SwiftUI<p><div class="snippet" data-lang="js" data-hide="false" data-console="... |
72,913,279 | Restrict generic typescript type to single string literal value, disallowing unions<p>I have a generic entity type, with the generic used to define a field type based on a set of string literals:</p>
<pre><code>type EntityTypes = 'foo' | 'bar' | 'baz';
type EntityMappings = {
foo: string;
bar: number;
baz: Array... | <p>There is currently no direct way to restrict a <a href="https://www.typescriptlang.org/docs/handbook/2/generics.html" rel="nofollow noreferrer">generic</a> type parameter to a single member of a <a href="https://www.typescriptlang.org/docs/handbook/2/everyday-types.html#union-types" rel="nofollow noreferrer">union</... | Restrict generic typescript type to single string literal value, disallowing unions | typescript|typescript-generics | 2 | 70 | 1 | 72,914,038 | 72,914,038 | 1 | true | 2022-07-08T14:55:01.280Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Restrict generic typescript type to single string literal value, disallowing unions<p>I have a generic entity type, with the generic used to define a field t... |
72,913,773 | Pytest pluggy._manager.PluginValidationError due to the pytest-json-report plugin<p>I use <code>pytest</code> together with the <code>pytest-json-report</code> plugin. I have the <code>pytest_json_modifyreport</code> hook in the <code>conftest.py</code> file.</p>
<p>When I run the command <code>pytest --json-report</co... | <p>According to the <a href="https://github.com/numirias/pytest-json-report#a-note-on-hooks" rel="nofollow noreferrer">official documentation</a>:</p>
<p><strong>A note on hooks</strong></p>
<p>If you're using a pytest_json_* hook although the plugin is not installed or
not active (not using --json-report), pytest does... | Pytest pluggy._manager.PluginValidationError due to the pytest-json-report plugin | pytest | 0 | 70 | 1 | 72,915,781 | 72,915,781 | 1 | true | 2022-07-08T15:33:33.987Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Pytest pluggy._manager.PluginValidationError due to the pytest-json-report plugin<p>I use <code>pytest</code> together with the <code>pytest-json-report</cod... |
72,919,685 | Type 'true' is not assignable to type 'null'<p>Typescript throw error about my code:</p>
<blockquote>
<p>Type 'true' is not assignable to type 'null'.(2322)</p>
</blockquote>
<pre><code>const model = {
foo: true,
bar: false,
baz: null,
};
if (true) {
model.baz = true; // Type 'true' is not assignable to type '... | <p>This can be done without repeating yourself or creating an interface by using <code>as</code> to assert that the <code>baz</code> property, despite having <code>null</code> assigned to it, can be <code>null | boolean</code>.</p>
<pre><code>const model = {
foo: true,
bar: false,
baz: null as null | boolean,
};
... | Type 'true' is not assignable to type 'null' | javascript|typescript | -2 | 70 | 2 | 72,927,376 | 72,927,376 | 1 | true | 2022-07-09T07:26:59.577Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Type 'true' is not assignable to type 'null'<p>Typescript throw error about my code:</p>
<blockquote>
<p>Type 'true' is not assignable to type 'null'.(2322)<... |
72,928,619 | confusions about a simple smart pointer implementaion<p>The following code is abstracted from the book << Hands-On Design Patterns with C++ >> by Fedor G. Pikus published by Packt.</p>
<p>Some confusions have been bugging me for weeks.</p>
<p>(1) How the char array <code>mem_</code> is initialized?</p>
<p>(... | <blockquote>
<p>How the char array mem_ is initialized?</p>
</blockquote>
<p><code>mem_</code> is not initialized as in filled with values until the use of the custom <code>new</code> operator in <code>new(&a_sh_obj) int(42)</code>. This only initializes a small portion of the memory though. Space is allocated on t... | confusions about a simple smart pointer implementaion | c++|templates|memory|initialization | 0 | 70 | 2 | 72,928,763 | 72,928,763 | 1 | true | 2022-07-10T12:54:23.553Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
confusions about a simple smart pointer implementaion<p>The following code is abstracted from the book << Hands-On Design Patterns with C++ >> by... |
72,942,142 | Nopermissionsinaccess token error when trying to get calendar from graph API<p>there are other questions about this, but I've not seen my exact situation and I'm not sure what I am doing wrong.</p>
<p>My app has a client secret set up and here are the api permissions</p>
<p><a href="https://i.stack.imgur.com/2rvBd.jpg"... | <p><em><strong>I tried to reproduce the same via Postman by granting same permissions and got the error as below:</strong></em></p>
<p><img src="https://i.imgur.com/Lp599al.png" alt="enter image description here" /></p>
<p><strong>To resolve the error, make sure to grant <code>Application</code> permissions and grant a... | Nopermissionsinaccess token error when trying to get calendar from graph API | c#|azure|microsoft-graph-api|azure-ad-graph-api | 0 | 70 | 1 | 72,942,756 | 72,942,756 | 1 | true | 2022-07-11T17:01:46.010Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Nopermissionsinaccess token error when trying to get calendar from graph API<p>there are other questions about this, but I've not seen my exact situation and... |
72,942,561 | Having trouble understanding a seemingly complex function call<p>I've been reading through the Riot Vanguard (kernel level anti-cheat driver) source code and have some difficulties understanding what I think is a function call.</p>
<pre><code>((void(*)())(RtlFindExportedRoutineByName(VgkDriverObject->DriverStart, &q... | <blockquote>
<p><code>RtlFindExportedRoutineByName</code> is a function which returns a <code>PVOID</code>, and what I currently have thought up is: take this function which returns a <code>PVOID</code>, cast it to a pointer to a function which returns nothing and call it.</p>
</blockquote>
<p>That is correct.</p>
<blo... | Having trouble understanding a seemingly complex function call | c|function-call | 0 | 70 | 1 | 72,942,891 | 72,942,891 | 1 | true | 2022-07-11T17:37:11.500Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Having trouble understanding a seemingly complex function call<p>I've been reading through the Riot Vanguard (kernel level anti-cheat driver) source code and... |
72,793,409 | Stopping a python program when an arbitrary key was pressed while the program is running<p>I recently got to know about the python module signal. With that, we can capture a SIGINT and do what we want after capturing it. I used it as below. In that case I am just using SIGINT to print that program is going to be stoppe... | <p>After carefully understanding about the threads and pynput module, I managed to stop a for loop (or any program which runs as a separate thread) using a key press callback.</p>
<pre><code>from pynput import keyboard
import os
import threading
import time
loop_running = False
def on_press(key):
print(dir(key))
... | Stopping a python program when an arbitrary key was pressed while the program is running | python|signals | 3 | 70 | 2 | 72,947,714 | 72,947,714 | 1 | true | 2022-06-28T21:38:05.893Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Stopping a python program when an arbitrary key was pressed while the program is running<p>I recently got to know about the python module signal. With that, ... |
72,954,804 | Retrieving roles from token in an Azure function app using AAD as identity provider<p>I have a working setup in Azure where a Function App is protected by OAuth using an app registration in AAD.</p>
<p>In this app registration, I have defined two roles; <em>Administrator</em> and <em>Developer</em>. I have assigned bot... | <p>This is a known limitation of Azure function. You can read about discussion at <a href="https://github.com/Azure/azure-functions-host/issues/3898" rel="nofollow noreferrer">this</a> github issue. So your current approach is way to go. However,</p>
<p>I would suggest to write an extension method (may be I like as it ... | Retrieving roles from token in an Azure function app using AAD as identity provider | c#|azure|azure-functions|azure-identity | 0 | 70 | 1 | 72,955,874 | 72,955,874 | 1 | true | 2022-07-12T15:27:29.067Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Retrieving roles from token in an Azure function app using AAD as identity provider<p>I have a working setup in Azure where a Function App is protected by OA... |
72,959,329 | Grid-column-end with items that have a fixed width not aligning<p>I have an item that needs to have a fixed width, but when I try and right-align it to a certain column, it overflows. Removing the width fixes the problem, but that's unfortunately not a solution I can use.</p>
<p>Using <code>grid-column</code> to set th... | <p>add <code>justify-self: end;</code> to that item but you can get overflow on the left side</p>
<p><div class="snippet" data-lang="js" data-hide="false" data-console="true" data-babel="false">
<div class="snippet-code">
<pre class="snippet-code-css lang-css prettyprint-override"><code>* {
margin: 0;
box-sizing: b... | Grid-column-end with items that have a fixed width not aligning | html|css|css-grid | 1 | 70 | 1 | 72,959,463 | 72,959,463 | 1 | true | 2022-07-12T23:24:33.613Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Grid-column-end with items that have a fixed width not aligning<p>I have an item that needs to have a fixed width, but when I try and right-align it to a cer... |
72,960,418 | ERROR 1366 (22007): Incorrect string value: '\x92t'<pre><code>Server version: 10.8.3-MariaDB
Server charset: UTF-8 Unicode (utf8mb4)
InnoDB
</code></pre>
<p>I'm getting an error trying to import into a blank db (db is already created, just trying to import now):</p>
<blockquote>
<p>ERROR 1366 (22007) at line 19669: Inc... | <p><code>didn’t</code> -- Note that the apostrophe is not the ascii char, but hex 92 if encoded in latin1 (and several character sets) or E28099 if encoded in utf8 or utf8mb4.</p>
<p>On the other hand, you have stated "Server charset: UTF-8 Unicode (utf8mb4)", but x92 is not valid in UTF-8</p>
<p>You are tryi... | ERROR 1366 (22007): Incorrect string value: '\x92t' | mysql|mariadb | 0 | 70 | 2 | 72,960,738 | 72,960,738 | 1 | true | 2022-07-13T02:56:10.080Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
ERROR 1366 (22007): Incorrect string value: '\x92t'<pre><code>Server version: 10.8.3-MariaDB
Server charset: UTF-8 Unicode (utf8mb4)
InnoDB
</code></pre>
<p>... |
72,960,646 | How to make custom widget which contains slider in flutter<p>I have a screen where three sliders for red green and blue as demo example..</p>
<p>I want to change scaffold background colour based on these 3 values of slider</p>
<p>I have done already but now I want to make a widget of slider so that duplicate code shoul... | <p>I guess you are looking for something like this.</p>
<p>Main Page:</p>
<pre><code>class MyHomePage extends StatefulWidget {
const MyHomePage({Key? key, required this.title}) : super(key: key);
final String title;
@override
State<MyHomePage> createState() => _MyHomePageState();
}
class _MyHomePageS... | How to make custom widget which contains slider in flutter | flutter|dart|colors|flutter-layout | 0 | 70 | 2 | 72,966,108 | 72,966,108 | 1 | true | 2022-07-13T03:38:51.957Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to make custom widget which contains slider in flutter<p>I have a screen where three sliders for red green and blue as demo example..</p>
<p>I want to ch... |
72,972,095 | Average over value for distinct ids with many to many relationship<p>I have these two tables:</p>
<p>Events</p>
<div class="s-table-container">
<table class="s-table">
<thead>
<tr>
<th>ID</th>
<th>Value1</th>
<th>Value2</th>
</tr>
</thead>
<tbody>
<tr>
<td>0</td>
<td>0</td>
<td>1</td>
</tr>
<tr>
<td>1</td>
<td>1</td>
<... | <p>First get the distinct combinations of <code>ID</code> and <code>value1</code> from the join and then aggregate:</p>
<pre><code>SELECT AVG(value1)
FROM (
SELECT DISTINCT e.ID, e.value1
FROM events e JOIN MtoM m
ON e.ID = m.EventID
WHERE e.value2 IN (1,3) AND m.value3 IN (0,2,3,4,7,8)
) t
</code></pre>
<p>See... | Average over value for distinct ids with many to many relationship | mysql|sql|join|many-to-many | 0 | 70 | 3 | 72,972,258 | 72,972,258 | 1 | true | 2022-07-13T20:11:42.280Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Average over value for distinct ids with many to many relationship<p>I have these two tables:</p>
<p>Events</p>
<div class="s-table-container">
<table class=... |
72,972,702 | Generate Pre-signed URL in PHP for Contabo<p>I'm trying to generate a presigned url since I don't want to make my bucket completely public.
I'm using contabo with your Object Storage system.
<a href="https://docs.contabo.com/docs/products/Object-Storage/HowTo/presigned-url" rel="nofollow noreferrer">https://docs.contab... | <p>I was able to fix it using this guide.
<a href="https://docs.medianova.com/using-pre-signed-url-php-with-stook/" rel="nofollow noreferrer">https://docs.medianova.com/using-pre-signed-url-php-with-stook/</a></p>
<p>in the following way</p>
<pre><code>$s3Client = new S3Client([
'endpoint' => 'https://usc1.conta... | Generate Pre-signed URL in PHP for Contabo | php | 0 | 70 | 1 | 72,972,956 | 72,972,956 | 1 | true | 2022-07-13T21:13:27.913Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Generate Pre-signed URL in PHP for Contabo<p>I'm trying to generate a presigned url since I don't want to make my bucket completely public.
I'm using contabo... |
72,890,099 | VerneMQ not kicking client with revoked certificate<p>I have setup VerneMQ to pull CRL (Certificate Revocation List) from Vault. Followingis my setup manifest.</p>
<pre><code>
kind: ConfigMap
apiVersion: v1
metadata:
name: vernemq-refresh-crl
namespace: backend
labels:
app: vernemq
data:
pull_crl.sh: |
... | <p>Check the administrative <code>disconnect</code> command with <code>sudo vmq-admin session disconnect --help</code>.</p>
<p>In general, it is a wrong assumption that adding a cert to the CRL will disrupt an existing connection. You have to couple that step with an administrative disconnect of the client.</p> | VerneMQ not kicking client with revoked certificate | mqtt|mqtt-vernemq | 0 | 70 | 1 | 72,977,451 | 72,977,451 | 1 | true | 2022-07-06T21:32:57.903Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
VerneMQ not kicking client with revoked certificate<p>I have setup VerneMQ to pull CRL (Certificate Revocation List) from Vault. Followingis my setup manifes... |
72,963,135 | Is there a solution to run signalR in angular 5 project or is there an alternative to signalR to bild real time notification ??<p>I have an angular 5 and .Net project, I needed to integrate real time notifications, the solution was to work with signalR.
I tested a sipmle signalR example with .Net5 and <strong>angular 1... | <p>the solution was to use an earlier version of signalR which is compatible with angular5</p> | Is there a solution to run signalR in angular 5 project or is there an alternative to signalR to bild real time notification ?? | angular|signalr|angular5 | -1 | 70 | 1 | 72,980,047 | 72,980,047 | 1 | true | 2022-07-13T08:29:16.110Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Is there a solution to run signalR in angular 5 project or is there an alternative to signalR to bild real time notification ??<p>I have an angular 5 and .Ne... |
72,979,843 | Remove edge animation in HorizontalPager<p>I am using <a href="https://google.github.io/accompanist/pager/#horizontalpager" rel="nofollow noreferrer">HorizontalPager</a> from the Accompanist package and I would like to disable/remove the edge animation. Is it possible?</p>
<p>I am building an infinite scroller with jus... | <p>You can wrap the HorizontalPager like this to remove the animation:</p>
<pre><code>CompositionLocalProvider(
LocalOverScrollConfiguration provides null
) {
HorizontalPager(count = 10) { page ->
// Our page content
... | Remove edge animation in HorizontalPager | android-jetpack-compose|jetpack-compose-accompanist | 0 | 70 | 1 | 72,981,000 | 72,981,000 | 1 | true | 2022-07-14T11:34:24.970Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Remove edge animation in HorizontalPager<p>I am using <a href="https://google.github.io/accompanist/pager/#horizontalpager" rel="nofollow noreferrer">Horizon... |
72,887,333 | Detect that a struct contains a flexible array member<p>Say that I have a struct like this</p>
<pre><code>struct foo
{
int n;
int values[];
};
</code></pre>
<p>Is it possible to detect the flexible array member using SFINAE? At least, I can construct a class template that cannot be instantiated with such struct... | <p>There are no FAMs in C++. Any support given by the compilers to this non-standard feature is likely to be inconsistent and not integrate well with the rest of C++.</p>
<p>Having said that, we can pretend that a FAM is normal C++ code and try to detect it using SFINAE.</p>
<p>Unfortunately it doesn't work, because on... | Detect that a struct contains a flexible array member | c++|g++|sfinae|flexible-array-member | 1 | 70 | 1 | 72,987,279 | 72,987,279 | 1 | true | 2022-07-06T16:57:43.140Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Detect that a struct contains a flexible array member<p>Say that I have a struct like this</p>
<pre><code>struct foo
{
int n;
int values[];
};
</code... |
72,974,488 | Encoding QR data as PNG using C and stb_image_write<p>im trying to render QR to image (png, svg) using <a href="https://github.com/nayuki/QR-Code-generator/" rel="nofollow noreferrer">QR-Code-generator-1.8.0</a> and <a href="https://github.com/nothings/stb" rel="nofollow noreferrer">stb_image_write</a>, i follow the ex... | <p>It seems you could resize the bitmap generated by <code>qr_make_image_data</code> to a greater size using <a href="https://github.com/nothings/stb/blob/master/stb_image_resize.h" rel="nofollow noreferrer">stb_image_resize.h</a> with a box filter, ie: using the default simple API.</p>
<p>If your goal is to insert the... | Encoding QR data as PNG using C and stb_image_write | c|image|png|qr-code|stb-image | 1 | 70 | 1 | 72,987,358 | 72,987,358 | 1 | true | 2022-07-14T02:18:44.900Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Encoding QR data as PNG using C and stb_image_write<p>im trying to render QR to image (png, svg) using <a href="https://github.com/nayuki/QR-Code-generator/"... |
72,988,817 | How can i extract numbers colored green in image using Python<p>There will be a picture, in the picture there are 3 numbers of indefinite length. The correct one is colored green. I want to print the green colored number.</p>
<p>example image<br />
<img src="https://i.stack.imgur.com/tYTZ8.png" alt="example image" /></... | <p>When you import the image with <code>cv2.COLOR_BGR2GRAY</code>, you are telling it to delete all color information, and convert to grayscale.</p>
<p>This code gets the image you posted, and converts to RGB with <code>cv2.COLOR_BGR2RGB</code></p>
<p>The image is an array with format <code>image[row, column, [red,gree... | How can i extract numbers colored green in image using Python | python|opencv|image-processing|ocr|tesseract | 0 | 70 | 1 | 72,989,021 | 72,989,021 | 1 | true | 2022-07-15T03:39:52.720Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How can i extract numbers colored green in image using Python<p>There will be a picture, in the picture there are 3 numbers of indefinite length. The correct... |
72,776,055 | python3 ModuleNotFoundError for mysql<p>I am on MacOS 11.6 and having trouble installing the <code>mysql</code> package for python3. Other python packages are working fine.</p>
<p><code>which python3</code> returns <code>/Library/Frameworks/Python.framework/Versions/3.10/bin/python3</code> and <code>python3 --version<... | <p>Install official mysql connector package.</p>
<p><code>$ pip install mysql-connector-python</code></p>
<p>For details:</p>
<p><a href="https://dev.mysql.com/doc/connector-python/en/" rel="nofollow noreferrer"> MySQL Connector/Python Developer Guide</a></p>
<p><a href="https://downloads.mysql.com/archives/c-python/" ... | python3 ModuleNotFoundError for mysql | python|mysql|python-3.x | 0 | 70 | 2 | 72,993,738 | 72,993,738 | 1 | true | 2022-06-27T17:19:01.857Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
python3 ModuleNotFoundError for mysql<p>I am on MacOS 11.6 and having trouble installing the <code>mysql</code> package for python3. Other python packages a... |
72,994,072 | Can only write to first element of char** buffer<p>I'm quite new to C and am trying to write a function, which will split a string into an array of strings at a specific delimiter. But strangely I can only write at the first index of my <code>char**</code> array of strings, which will be my result. For example if I wan... | <p>There are multiple problems in your code:</p>
<ul>
<li><p>you compute string lengths repeatedly, which may be very inefficient. Instead of testing <code>i < strlen(src)</code> you should write <code>src[i] != '\0'</code>.</p>
</li>
<li><p>your test for check a matching delimiter is too complicated. You should use... | Can only write to first element of char** buffer | c|pointers|split | 1 | 70 | 2 | 72,995,360 | 72,995,360 | 1 | true | 2022-07-15T12:33:46.370Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Can only write to first element of char** buffer<p>I'm quite new to C and am trying to write a function, which will split a string into an array of strings a... |
72,996,301 | Is there a way to access yields inside the same function in Python?<p>I am currently trying to replace the manual counting of yields by a built-in attribute:</p>
<pre><code>def random_select(iterations):
count = 0
for index in range(iterations):
if random.randint(0, 9) > 4:
yield index
... | <p>If you do this more often and the objective is less code and you don't mind it getting slower, you could use a decorator that wraps your generator in another that asserts the given check afterwards:</p>
<pre><code>@assert_afterwards(list_check=lambda yielded: len(yielded) > 0)
def random_select(iterations):
f... | Is there a way to access yields inside the same function in Python? | python | 0 | 70 | 4 | 72,997,540 | 72,997,540 | 1 | true | 2022-07-15T15:27:16.717Z | 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 access yields inside the same function in Python?<p>I am currently trying to replace the manual counting of yields by a built-in attribute:... |
73,000,049 | How to use the `match` keyword to match a range?<p>Is it possible to use the new <code>match</code> keyword to match a range of characters?</p>
<p>Basically to do something like this?</p>
<pre class="lang-py prettyprint-override"><code>match "b":
case "a":
print("a")
case r... | <p>You would need to define a class which has an instance that can compare equal to <code>"b"</code>, then find a way to refer to such an object using a dotted name. Something like</p>
<pre><code>class CharRange:
def __init__(self, start, stop):
self.start = start
self.stop = stop
def... | How to use the `match` keyword to match a range? | python|python-3.x|switch-statement|python-3.10 | 0 | 70 | 2 | 73,000,170 | 73,000,170 | 1 | true | 2022-07-15T22:12:38.413Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to use the `match` keyword to match a range?<p>Is it possible to use the new <code>match</code> keyword to match a range of characters?</p>
<p>Basically ... |
73,007,582 | Change scatter marker based on column data<p>I'm trying to create a scatter plot where the size of the marker and the marker itself vary based on column data:</p>
<pre><code>#Get the different type of rated episodes and color
office.loc[office['scaled_ratings'] < 0.25, 'mcolor'] = 'red'
office.loc[(office['scaled_ra... | <p>Markers in scatter plots must be unique to be drawn, so a data frame can be achieved by extracting and drawing marker units. Sample data is created and graphed. See examples in the <a href="https://matplotlib.org/stable/gallery/lines_bars_and_markers/scatter_masked.html#sphx-glr-gallery-lines-bars-and-markers-scatte... | Change scatter marker based on column data | python|matplotlib|scatter-plot | 0 | 70 | 1 | 73,008,950 | 73,008,950 | 1 | true | 2022-07-16T20:50:02.253Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Change scatter marker based on column data<p>I'm trying to create a scatter plot where the size of the marker and the marker itself vary based on column data... |
73,017,575 | 'Array()' has private access in 'java.lang.reflect.Array' when trying to declare array in a class<p>I can't figure out what's wrong I am doing here .</p>
<pre><code>import java.lang.reflect.Array;
import java.util.Arrays;
public class arrays_3 {
public static void main(String[] args) {
Array arr = new Arra... | <p>The better way to do this is :</p>
<pre><code>int intArray[];
or int[] intArray;
</code></pre>
<p>and in your code, you use public access modifier and it needs a class named <code>Arays.java</code>. The problem is that why you are stuck here because your instructor has made another class in the same package named A... | 'Array()' has private access in 'java.lang.reflect.Array' when trying to declare array in a class | java|arrays|class | 0 | 70 | 2 | 73,018,668 | 73,018,668 | 1 | true | 2022-07-18T05:12:38.043Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
'Array()' has private access in 'java.lang.reflect.Array' when trying to declare array in a class<p>I can't figure out what's wrong I am doing here .</p>
<pr... |
73,018,865 | Cannot invoke "com.smart.repository.UserRepository.getUserByUsername(String)" because "this.userRepository" is null<p>I have used spring security depedency.
Getting error - Cannot invoke "com.smart.repository.UserRepository.getUserByUsername(String)" because "this.userRepository" is null
.............. | <p>spring is not creating bean for the UserRepository as you have not annotated the class with <strong>@Repository</strong> annotation. Try annotating the class with this annotation and whenerer this class is required, consume it using <strong>@Autowired</strong>,
ex-</p>
<blockquote>
<p>@Autowired</p>
<p>private UserR... | Cannot invoke "com.smart.repository.UserRepository.getUserByUsername(String)" because "this.userRepository" is null | java|spring|spring-boot | 0 | 70 | 2 | 73,019,245 | 73,019,245 | 1 | true | 2022-07-18T07:47:10.203Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Cannot invoke "com.smart.repository.UserRepository.getUserByUsername(String)" because "this.userRepository" is null<p>I have used spring security depedency.
... |
73,019,925 | How to change the background<p>I am new to streamlit and wanted to know that Is there any way to change the background of the streamlit app ?</p>
<p>i have tried uisng this in my code its not showing any error but it also not working</p>
<p>Let me know how to change the background any idea would be appreciated</p>
<pre... | <p>Now you can use your local image to the background</p>
<pre><code>import cv2
import streamlit as st
import numpy as np
from PIL import Image
import base64
def image_local(image_file):
with open(image_file, "rb") as image_file:
encoded_string = base64.b64encode(image_file.read())
st.markdo... | How to change the background | python|streamlit | 1 | 70 | 1 | 73,021,442 | 73,021,442 | 1 | true | 2022-07-18T09:16:52.573Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to change the background<p>I am new to streamlit and wanted to know that Is there any way to change the background of the streamlit app ?</p>
<p>i have t... |
72,979,405 | Akka cluster slave can't join seeds<p>I'm trying to build a small AKka.NET Cluster Application but I'm having problems since I keep getting the following error:</p>
<pre><code>[WARNING][7/14/2022 10:42:06 AM][Thread 0011][akka.tcp://accountsystem@localhost:57959/system/cluster/core/daemon/joinSeedNodeProcess-1] Couldn'... | <p>Well, I just had to change the hocon configuration to the following:</p>
<pre><code> <![CDATA[
akka {
actor {
provider = cluster
}
remote {
log-remote-lifecycle-events = DEBUG
dot-netty.tcp {
hostn... | Akka cluster slave can't join seeds | akka.net | 0 | 70 | 2 | 73,022,694 | 73,022,694 | 1 | true | 2022-07-14T10:59:08.053Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Akka cluster slave can't join seeds<p>I'm trying to build a small AKka.NET Cluster Application but I'm having problems since I keep getting the following err... |
73,000,218 | How to change where Gradle 'Test' task saves file<p>I'm running into the following error when attempting to run my Appium testing framework. It seems like the "Test" task is trying to save the Allure report to a directory within the <code>build</code> directory and seems it can't write to it. How can I edit w... | <p>The allure report can be customised to save results and report to specific paths, see amendment of your build.gradle below:</p>
<pre><code>allure {
version = '2.4.1'
autoconfigure = true
aspectjweaver = true
allureJavaVersion = "18.0.1"
resultsDir = file('/path/to/test/results')
rep... | How to change where Gradle 'Test' task saves file | gradle|intellij-idea|build.gradle|appium|allure | 0 | 70 | 1 | 73,025,810 | 73,025,810 | 1 | true | 2022-07-15T22:41:11.517Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to change where Gradle 'Test' task saves file<p>I'm running into the following error when attempting to run my Appium testing framework. It seems like th... |
73,027,845 | Leads and Lags in for loop<p>My dataframe crisisdata consists of many vectors: year, country, a, b, c</p>
<p>I want to create lags and leads for a, b and c in a for loop:</p>
<p>My attempt:</p>
<pre><code>crisis_variables <- c("a", "b", "c")
for (var in crisis_variables){
# add la... | <p>The <code>as.name</code> needs <code>eval</code> to return the value of the column (assuming 'crisisdata' is <code>data.table</code>)</p>
<pre><code>library(data.table)
for (var in crisis_variables){
# add lags
crisisdata[, (paste0("l",1:4, "_", var)):=
shift(eval(as.name(var))... | Leads and Lags in for loop | r|dataframe|data.table|dynamic-programming | 3 | 70 | 3 | 73,027,864 | 73,027,864 | 1 | true | 2022-07-18T19:50:25.763Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Leads and Lags in for loop<p>My dataframe crisisdata consists of many vectors: year, country, a, b, c</p>
<p>I want to create lags and leads for a, b and c i... |
73,022,402 | Cypress - Working with div tables - Validating text on each row<p>I want to check if the first column of each row's text starts with "AA", "BB" or "CC". But I couldn't manage it on div table. I can only select and check the first row (code below). But I also tried with selecting the whole ... | <p>To perform the same test on all rows</p>
<ul>
<li>select all the rows (change <code>[row-index="0"]</code> to <code>[row-index]</code>)</li>
<li>use <code>.each()</code> to run test on all rows</li>
<li>sub-select just the column you want, in case some other column also has the prefix and gives you a <stro... | Cypress - Working with div tables - Validating text on each row | javascript|cypress|ag-grid | 1 | 70 | 2 | 73,028,478 | 73,028,478 | 1 | true | 2022-07-18T12:36:10.363Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Cypress - Working with div tables - Validating text on each row<p>I want to check if the first column of each row's text starts with "AA", "BB... |
72,876,228 | Liquibase - liquibaseSchemaName parameter not working with Redshift<p>I created a seperate schema in Redshift for my changelog tables:</p>
<pre><code>CREATE SCHEMA liquibase_non_prd;
ALTER DEFAULT PRIVILEGES IN SCHEMA liquibase_non_prd GRANT ALL ON TABLES TO GROUP readonly;
ALTER DEFAULT PRIVILEGES IN SCHEMA liquibase... | <p>Below queries ran in order fixed the issue:</p>
<pre><code>--run these ddls before first Liquibase run in target database
CREATE SCHEMA IF NOT EXISTS liquibase_non_prd;
GRANT ALL ON SCHEMA liquibase_non_prd TO GROUP readonly;
GRANT ALL ON SCHEMA liquibase_non_prd TO GROUP readwrite;
ALTER DEFAULT PRIVILEGES IN SCH... | Liquibase - liquibaseSchemaName parameter not working with Redshift | amazon-redshift|liquibase|bamboo | 0 | 70 | 1 | 73,028,715 | 73,028,715 | 1 | true | 2022-07-05T22:36:19.273Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Liquibase - liquibaseSchemaName parameter not working with Redshift<p>I created a seperate schema in Redshift for my changelog tables:</p>
<pre><code>CREATE ... |
73,020,621 | Can we use Composite Primary Key Mapping in spring data elastic search<p>I have an entity 'Product' and I want the primary key in ES to be used as a combination of 'id' and 'name' attributes. How can we do that using spring data elastic search.</p>
<pre><code>public class Product {
@Id
private String id;
@... | <p>One way to achieve this would be the following:</p>
<ul>
<li>first rename your <code>id</code> property, I changed it to <code>documentId</code> here. This is necessary, because in Spring Data
Elasticsearch an id-property can be either annotated with <code>@Id</code> or it can be namend <code>id</code>. As there can... | Can we use Composite Primary Key Mapping in spring data elastic search | java|spring|elasticsearch|spring-data-elasticsearch|composite-key | 0 | 70 | 2 | 73,040,516 | 73,040,516 | 1 | true | 2022-07-18T10:11:54.600Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Can we use Composite Primary Key Mapping in spring data elastic search<p>I have an entity 'Product' and I want the primary key in ES to be used as a combinat... |
72,908,843 | Vue 3 async fetched data won't update on locale change<p>I have external .js file created exactly for fetching data from backend based on website locale. Here is the code:</p>
<pre class="lang-js prettyprint-override"><code>import { ref } from "vue";
export function fetchData(section, key) {
// GET request... | <p>I found a problem. Here is code:</p>
<pre><code>export function async fetchData(section, key) { // Added async
// GET request using fetch with error handling and headers
const headers = {
method: "GET",
headers: { "Content-Type": "application/json" },
};
let fetchedData ... | Vue 3 async fetched data won't update on locale change | javascript|vue.js|fetch | 1 | 70 | 1 | 73,108,436 | 73,108,436 | 1 | true | 2022-07-08T08:42:56.830Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Vue 3 async fetched data won't update on locale change<p>I have external .js file created exactly for fetching data from backend based on website locale. Her... |
72,783,898 | How do I apply custom data augmentation as preprocessing layer in tensorflow?<p>I am performing data augmentation on spectrogram images and mask out time and frequencies as part of preprocessing layers in tensorflow. I am encountering the following:</p>
<pre><code>'tensorflow.python.framework.ops.EagerTensor' object do... | <p>Try something like this:</p>
<pre><code>import tensorflow as tf
import pathlib
import matplotlib.pyplot as plt
def random_mask_time(img):
MAX_OCCURENCE = 5
MAX_LENGTH = 10
nums = tf.random.uniform((), minval = 0, maxval = MAX_OCCURENCE, dtype=tf.int32) # number of masks
for n in tf.range(nums):
length =... | How do I apply custom data augmentation as preprocessing layer in tensorflow? | python|tensorflow|keras | 1 | 70 | 1 | 72,785,733 | 72,785,733 | 1 | true | 2022-06-28T09:25:19.837Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How do I apply custom data augmentation as preprocessing layer in tensorflow?<p>I am performing data augmentation on spectrogram images and mask out time and... |
72,924,073 | Getting error during to add some new fields into AspNetUsers<p>I just migrated from ASP.NET MVC to Blazor. I have created a new project that has authorization and authentication. When I want to add a series of new columns to the <code>AspNetUsers</code> table, I frequently encounter various errors.</p>
<blockquote>
<p>... | <p>Referring to this video from <a href="https://www.youtube.com/watch?v=tYT9ykDEnjE" rel="nofollow noreferrer" title="Add columns to aspnetusers table">youtube website</a>! at first you shoud create a class and add you fields into that class:</p>
<pre><code>public class ApplicationUser : IdentityUser
{
[Ma... | Getting error during to add some new fields into AspNetUsers | c#|.net-core|asp.net-core-identity | 1 | 70 | 1 | 72,926,153 | 72,926,153 | 1 | true | 2022-07-09T19:29:46.397Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Getting error during to add some new fields into AspNetUsers<p>I just migrated from ASP.NET MVC to Blazor. I have created a new project that has authorizatio... |
72,821,234 | How to place text in front of an image in bootstrap?<p>So I need to position text next to an image using bootstrap. It should look something like:
<a href="https://i.stack.imgur.com/lQiE4.jpg" rel="nofollow noreferrer">this</a></p>
<p>The code I have:</p>
<pre><code><div id="picture">
<img sr... | <p><div class="snippet" data-lang="js" data-hide="false" data-console="true" data-babel="false">
<div class="snippet-code">
<pre class="snippet-code-html lang-html prettyprint-override"><code><link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet" />
<div cla... | How to place text in front of an image in bootstrap? | html|css|bootstrap-5 | 0 | 70 | 3 | 72,821,295 | 72,821,295 | 1 | true | 2022-06-30T19:43:16.103Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to place text in front of an image in bootstrap?<p>So I need to position text next to an image using bootstrap. It should look something like:
<a href="h... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.