qid int64 4 19.1M | question stringlengths 18 48.3k | answers list | date stringlengths 10 10 | metadata list |
|---|---|---|---|---|
74,449,660 | <p>I'm trying to write code that makes a union between array a and b (AUB), but when I want to print the combined array. the console prints <code>System.Int32\[\]</code>.</p>
<p>For context, if my</p>
<pre><code>array a = { 1, 3, 5, 6 }
</code></pre>
<p>and my</p>
<pre><code>array b = { 2, 3, 4, 5 }
</code></pre>
<p>... | [
{
"answer_id": 74449714,
"author": "Tim Schmelter",
"author_id": 284240,
"author_profile": "https://Stackoverflow.com/users/284240",
"pm_score": 1,
"selected": false,
"text": "Console.Write(someObject) ToString someObject System.Object.ToString int[] string.Join string spaceSeparatedList... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74449660",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/20114716/"
] |
74,449,669 | <p>I have installed nose2 with the following command:</p>
<pre><code>pip3 install nose2
</code></pre>
<p>And I have installed the coverage in the custom path with the following command:</p>
<pre><code>pip3 install --target=/tmp/coverage_pkg coverage
</code></pre>
<p>I want to execute the test cases and generate the cov... | [
{
"answer_id": 74458666,
"author": "Ned Batchelder",
"author_id": 14343,
"author_profile": "https://Stackoverflow.com/users/14343",
"pm_score": 0,
"selected": false,
"text": "pip install nose2[coverage_plugin]\n"
},
{
"answer_id": 74491372,
"author": "Saif Baig",
"author_... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74449669",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/20471123/"
] |
74,449,698 | <p>im making a <em>guess number game</em> but i have a problem:In general, I would like to say how the process of the program is like this: the user first enters the number and clicks the registration option,The second user should try to guess what the number is in a specific number, but my problem is that if I want to... | [
{
"answer_id": 74449776,
"author": "James_481",
"author_id": 13633328,
"author_profile": "https://Stackoverflow.com/users/13633328",
"pm_score": 2,
"selected": false,
"text": "sum_1 sum_1 int(sum_1['text']) button.text button['text']"
},
{
"answer_id": 74449850,
"author": "Ma... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74449698",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/20310213/"
] |
74,449,717 | <p>what is the best way to write this function without repeting some values and only add the needed value <strong>initialText</strong></p>
<pre><code>createThread = () => {
if (this.props.first) {
publishLow = window.google.createPublish({
readId : this.props.readId
});
} else {
... | [
{
"answer_id": 74449771,
"author": "Emanuele Scarabattoli",
"author_id": 8534482,
"author_profile": "https://Stackoverflow.com/users/8534482",
"pm_score": 2,
"selected": true,
"text": "createThread = () => {\n const { readId, first, initialText } = this.props;\n const payload = { r... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74449717",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/9179833/"
] |
74,449,719 | <p>I have several items in a list view which are same in size but I want to show one text button at the end, I want the splash of the text button, to limit only around the text like a normal button, but in this situation, the splash is becoming same as the height of other children. I have tried many things like wrappin... | [
{
"answer_id": 74449758,
"author": "Yeasin Sheikh",
"author_id": 10157127,
"author_profile": "https://Stackoverflow.com/users/10157127",
"pm_score": 3,
"selected": true,
"text": "Center(child:TextButton return Center(\n child: TextButton(\n onPressed: () {},\n child: Text('View Al... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74449719",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/14299072/"
] |
74,449,733 | <p>For some reason that is unknown to me, my GPA calculator only calculates the last input in the list, I only have 2 days left to complete this and hopefully i can in time.</p>
<p>I tried to make it to where it calculates every input nd not just the last one, but i dont know how.
here is my code:</p>
<pre><code>name =... | [
{
"answer_id": 74449758,
"author": "Yeasin Sheikh",
"author_id": 10157127,
"author_profile": "https://Stackoverflow.com/users/10157127",
"pm_score": 3,
"selected": true,
"text": "Center(child:TextButton return Center(\n child: TextButton(\n onPressed: () {},\n child: Text('View Al... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74449733",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/20512546/"
] |
74,449,764 | <p>I use the following alias to show the git log:</p>
<pre><code>[alias]
ls = log --source --graph --pretty=format:'%C(yellow)%h %Creset[%ad] %s %C(green)[%an]%C(red)%d'
</code></pre>
<p>It's basically a modified version <code>git log --pretty=oneline</code>.</p>
<pre><code>* b928fd3e7aef [2022-11-15] refactor: renam... | [
{
"answer_id": 74449846,
"author": "Noscere",
"author_id": 10728583,
"author_profile": "https://Stackoverflow.com/users/10728583",
"pm_score": -1,
"selected": false,
"text": "git log | grep ^_^"
},
{
"answer_id": 74527144,
"author": "torek",
"author_id": 1256452,
"aut... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74449764",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/11135136/"
] |
74,449,778 | <p>I am trying to make a sorting algorithm using python, but I am encountering a problem and I can't figure it out. I'll paste my code below.</p>
<p>basic function:</p>
<ul>
<li>gets an array of numbers</li>
<li>goes through and checks if a number is bigger than the next one</li>
<li>if it is, swap it and set a variabl... | [
{
"answer_id": 74449856,
"author": "James_481",
"author_id": 13633328,
"author_profile": "https://Stackoverflow.com/users/13633328",
"pm_score": 0,
"selected": false,
"text": "mainArr.len len(mainArr)"
},
{
"answer_id": 74449949,
"author": "Samwise",
"author_id": 3799759,... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74449778",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/20512126/"
] |
74,449,796 | <p>I have a list associated to strings as follows;</p>
<pre><code>A string1^description1`string2^description2`string3^description3
B string4^description4
C string1^description1`string5^description5`string3^description3
D .
E string6^description6`string1^description1
F string7^description7
G string1^descri... | [
{
"answer_id": 74449917,
"author": "Jay",
"author_id": 8677071,
"author_profile": "https://Stackoverflow.com/users/8677071",
"pm_score": 2,
"selected": false,
"text": "from collections import defaultdict\ndata = '''A string1^description1`string2^description2`string3^description3\nB s... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74449796",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/6139282/"
] |
74,449,831 | <p>I am kind of new to Terraform and could you help me with the lists in terraform.</p>
<p>This is my code</p>
<pre><code>variable "ip_bitbucket" {
type = "list"
}
</code></pre>
<pre><code>ip_bitbucket = ["34.199.54.113/32","34.232.25.90/32","34.232.119.183/32","... | [
{
"answer_id": 74449903,
"author": "Marko E",
"author_id": 8343484,
"author_profile": "https://Stackoverflow.com/users/8343484",
"pm_score": 2,
"selected": false,
"text": "toset resource \"aws_security_group_rule \"server_rule\" {\n for_each = toset(var.ip_bitbucket)\n type ... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74449831",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/7298239/"
] |
74,449,835 | <p>On hovering the mouse pointer over a function, whether inbuilt or custom, the definition and docstring of the function shows as expected, however it shows twice. I have had a search for what might be causing this and looked around my settings, but have yet to find a reason for it. If it makes a difference, am usin... | [
{
"answer_id": 74561141,
"author": "Ulf Rompe",
"author_id": 1230589,
"author_profile": "https://Stackoverflow.com/users/1230589",
"pm_score": 2,
"selected": true,
"text": "\"jupyter.pylanceHandlesNotebooks\": false\n"
}
] | 2022/11/15 | [
"https://Stackoverflow.com/questions/74449835",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/9230013/"
] |
74,449,864 | <p>I am creating a website so I finshed register page in login page, every details are correct but that is showing please verify your details I mean the else part also I put in a print statement after username and password same details are printing when I typed but not access login.</p>
<p>views.py</p>
<pre><code>def s... | [
{
"answer_id": 74449997,
"author": "Sunderam Dubey",
"author_id": 17562044,
"author_profile": "https://Stackoverflow.com/users/17562044",
"pm_score": 3,
"selected": true,
"text": "authenticate() request user = authenticate(request,username=username,password=password)\n def register(reque... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74449864",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/17193865/"
] |
74,449,886 | <p>This is my code.</p>
<pre><code>folder_out = []
for a in range(1,80):
folder_letter = "/content/drive/MyDrive/project/Dataset/data/"
folder_out[a] = os.path.join(folder_letter, str(a))
folder_out.append(folder_out[a])
</code></pre>
<p>and this is an error
<a href="https://i.stack.imgur.com/rSb... | [
{
"answer_id": 74449997,
"author": "Sunderam Dubey",
"author_id": 17562044,
"author_profile": "https://Stackoverflow.com/users/17562044",
"pm_score": 3,
"selected": true,
"text": "authenticate() request user = authenticate(request,username=username,password=password)\n def register(reque... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74449886",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/14599281/"
] |
74,449,928 | <p>I have a function <code>void dynamics (A a, std::vector<double> &, std::vector<double> &, std::vector<double> )</code> which I am calling from threads created by openmp. The inputs to the function are private to each thread (created within the parallel block)</p>
<pre><code>#include <ios... | [
{
"answer_id": 74450180,
"author": "PierU",
"author_id": 14778592,
"author_profile": "https://Stackoverflow.com/users/14778592",
"pm_score": 1,
"selected": false,
"text": "dynamics()"
},
{
"answer_id": 74453659,
"author": "shy45",
"author_id": 20313707,
"author_profil... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74449928",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/16016658/"
] |
74,449,951 | <p>why is it that there are two children with the same key
Im using React and Im trying to make ecommerce website
I dont understand the error of double keys</p>
<pre><code>import React, {useEffect} from 'react'
import { Link, useParams, useNavigate, useLocation, useSearchParams } from 'react-router-dom'
import { useDi... | [
{
"answer_id": 74450180,
"author": "PierU",
"author_id": 14778592,
"author_profile": "https://Stackoverflow.com/users/14778592",
"pm_score": 1,
"selected": false,
"text": "dynamics()"
},
{
"answer_id": 74453659,
"author": "shy45",
"author_id": 20313707,
"author_profil... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74449951",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/18943132/"
] |
74,449,956 | <p>I just want to add a <code>@PreAuthorize("hasAuthority('ROLE_ADMIN')")</code> and <code>@PreAuthorize("hasAuthority('ROLE_USER')")</code> in the methods of order controller and I also revise the controller test method after I define a login method in auth service in terms of User and Admin role.<... | [
{
"answer_id": 74452437,
"author": "muhammed ozbilici",
"author_id": 2165146,
"author_profile": "https://Stackoverflow.com/users/2165146",
"pm_score": 0,
"selected": false,
"text": "@EnableGlobalMethodSecurity(prePostEnabled = true)"
},
{
"answer_id": 74453670,
"author": "ch4... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74449956",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/19721745/"
] |
74,449,960 | <p>I have two libraries, <code>mat-text-editor</code> and <code>mat-text-editor-select</code>, the former uses the component of the latter, which works fine. <code>mat-text-editor-select</code> also includes a regular typescript class, <code>mat-text-editor-select-option</code>, which I want to export alongside the <co... | [
{
"answer_id": 74452437,
"author": "muhammed ozbilici",
"author_id": 2165146,
"author_profile": "https://Stackoverflow.com/users/2165146",
"pm_score": 0,
"selected": false,
"text": "@EnableGlobalMethodSecurity(prePostEnabled = true)"
},
{
"answer_id": 74453670,
"author": "ch4... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74449960",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/2139555/"
] |
74,449,983 | <p>I have a value that needs to be parsed into a potential three values:</p>
<div class="s-table-container">
<table class="s-table">
<thead>
<tr>
<th>MasterUnit</th>
<th>Unit1</th>
<th>Unit2</th>
<th>Unit3</th>
</tr>
</thead>
<tbody>
<tr>
<td>10ABC</td>
<td>10A</td>
<td>10B</td>
<td>10C</td>
</tr>
<tr>
<td>10AB</td>
<t... | [
{
"answer_id": 74450336,
"author": "John Cappelletti",
"author_id": 1570000,
"author_profile": "https://Stackoverflow.com/users/1570000",
"pm_score": 2,
"selected": true,
"text": "CROSS APPLY Select A.* \n ,Unit1 = S1+nullif(substring(S2,1,1),'')\n ,Unit2 = S1+nullif(substring(... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74449983",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/20232603/"
] |
74,450,004 | <p>I'm just starting to work with Prolog, so I don't really understand it. I have the facts:</p>
<pre><code>circle(сhess, abbot).
circle(сhess, hannigan).
circle(сhess, abrams).
circle(crystal_voice, blake).
circle(crystal_voice, weller).
circle(crystal_voice, huxley).
circle(local_studies, barnes).
circle(local_studie... | [
{
"answer_id": 74450336,
"author": "John Cappelletti",
"author_id": 1570000,
"author_profile": "https://Stackoverflow.com/users/1570000",
"pm_score": 2,
"selected": true,
"text": "CROSS APPLY Select A.* \n ,Unit1 = S1+nullif(substring(S2,1,1),'')\n ,Unit2 = S1+nullif(substring(... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74450004",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/20512490/"
] |
74,450,005 | <p>I want to update a table value to either 1 of 2 values.
The selected value has 2 possible choices <em>I ride a bike</em> or <em>I fly an airplane.</em>
If the entered value is I ride a bike then the database value should be set as 1 , if it's I fly an airplane then the value should be set at 2.
This way When I disp... | [
{
"answer_id": 74450062,
"author": "Barmar",
"author_id": 1491895,
"author_profile": "https://Stackoverflow.com/users/1491895",
"pm_score": 0,
"selected": false,
"text": "IF UPDATE survey\nSET pid = ?,\n transport = IF(LENGTH(?) = 18, '2', '1')\n WHERE id = ?\n UPDATE survey\nSET p... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74450005",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/1356282/"
] |
74,450,007 | <p>I am a beginner with SAS and trying to create a table with code below. Although the code has been running for 3 hours now. The dataset is quite huge (150000 rows). Although, when I insert a different date it runs in 45 mins. The date I have inserted is valid under date_key. Any suggestions on why this may be/what I ... | [
{
"answer_id": 74450260,
"author": "Stu Sztukowski",
"author_id": 5342700,
"author_profile": "https://Stackoverflow.com/users/5342700",
"pm_score": 2,
"selected": false,
"text": "monotonic() data xyz1;\n set x.facility_xyz;\n where date_key = '20000101';\nrun;\n data xyz2;\n set... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74450007",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/20013104/"
] |
74,450,014 | <p>I have a small script running in a Pod that pokes for the latest App images (<code>dashboard:development</code>) in my registry and then pushes them to the Nodes running (via a daemonset).</p>
<p>This <strong>does work</strong>, as seen below.</p>
<p>Now, I would assume that once an App pod (like <code>sp-pod-xx</co... | [
{
"answer_id": 74458041,
"author": "adamkgray",
"author_id": 8386878,
"author_profile": "https://Stackoverflow.com/users/8386878",
"pm_score": 2,
"selected": true,
"text": "PullIfNotPresent Always"
}
] | 2022/11/15 | [
"https://Stackoverflow.com/questions/74450014",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/11091148/"
] |
74,450,039 | <p>I'm trying to conform a class to <code>Sendable</code>. I have some mutable stored properties which are causing issues. However, what I can't understand is that a MainActor isolated property doesn't allow my class to conform to Sendable. However, if I mark the whole class a <code>@MainActor</code>, then it's fine. H... | [
{
"answer_id": 74450425,
"author": "Sweeper",
"author_id": 5133585,
"author_profile": "https://Stackoverflow.com/users/5133585",
"pm_score": 0,
"selected": false,
"text": "Sendable Sendable Sendable : Sendable @MainActor Sendable final class MyClass : Sendable {\n let state: String\n}... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74450039",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/362840/"
] |
74,450,064 | <p>I am in Vietnam, and I want to get the weekday in Finland today using Javascript.</p>
<blockquote>
<p>timeZone: 'Europe/Helsinki'</p>
</blockquote>
<p>Do you have a good solution?</p>
<p>Thank you so much</p>
| [
{
"answer_id": 74450425,
"author": "Sweeper",
"author_id": 5133585,
"author_profile": "https://Stackoverflow.com/users/5133585",
"pm_score": 0,
"selected": false,
"text": "Sendable Sendable Sendable : Sendable @MainActor Sendable final class MyClass : Sendable {\n let state: String\n}... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74450064",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/10434805/"
] |
74,450,065 | <p>App Service dev, staging and prod deployment slots and SQL DB all have system assigned managed identities.
Contributor roles have been assigned to managed identities at the subscription level.</p>
<p>SQL Server Contained users have been created and roles assigned for the App Service dev, staging and production slots... | [
{
"answer_id": 74454767,
"author": "Alberto Morillo",
"author_id": 8184139,
"author_profile": "https://Stackoverflow.com/users/8184139",
"pm_score": 3,
"selected": true,
"text": " CREATE USER <Azure_AD_principal_name> FROM EXTERNAL PROVIDER;\n CREATE USER [bob@contoso.com] FROM EXTERNA... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74450065",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/9612994/"
] |
74,450,094 | <p>Here's my data:</p>
<pre><code>game_id team opponent steals assists
<int> <chr> <chr> <chr> <chr>
1 401468360 Spurs Warriors 6 18
2 401468360 Warriors Spurs 9 35
3 401468358 Clippers Rockets 6 ... | [
{
"answer_id": 74450267,
"author": "TarJae",
"author_id": 13321647,
"author_profile": "https://Stackoverflow.com/users/13321647",
"pm_score": 2,
"selected": false,
"text": "library(dplyr)\nlibrary(tidyr)\ndf %>%\n group_by(game_id) %>% \n rename(team_steals = steals) %>% \n mutate(opp... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74450094",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/20512737/"
] |
74,450,114 | <p>when I load form inside panel using code</p>
<pre class="lang-vb prettyprint-override"><code>With Form_brand
.TopLevel = False
Panel2.Controls.Add(Form_brand)
.BringToFront()
.Show()
End With
</code></pre>
<p>textbox inside form does not show its default behaviour like
when i click inside textbox cur... | [
{
"answer_id": 74450267,
"author": "TarJae",
"author_id": 13321647,
"author_profile": "https://Stackoverflow.com/users/13321647",
"pm_score": 2,
"selected": false,
"text": "library(dplyr)\nlibrary(tidyr)\ndf %>%\n group_by(game_id) %>% \n rename(team_steals = steals) %>% \n mutate(opp... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74450114",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/20219247/"
] |
74,450,124 | <p>i have a chat website and i want the user to have a list available of users sorted by who they last chatted with(like whatsapp).
how do i do this?
i tried many stack overflow answers but none of them worked for me so far.
when using the code i use now the names of the users repeat for every message that exists.
this... | [
{
"answer_id": 74450267,
"author": "TarJae",
"author_id": 13321647,
"author_profile": "https://Stackoverflow.com/users/13321647",
"pm_score": 2,
"selected": false,
"text": "library(dplyr)\nlibrary(tidyr)\ndf %>%\n group_by(game_id) %>% \n rename(team_steals = steals) %>% \n mutate(opp... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74450124",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/18113393/"
] |
74,450,140 | <p>I am trying to read information from a.txt file where each label is a dictionary key and each associated column of readings is the respective value.</p>
<p>Here's some lines in the file:</p>
<pre><code>increments ideal actual measured
0.0, 1000.0, 1000.0, 1006.4882
1.0, 950.0, 973.2774, 994.5579
2.0, 902.5, 897.6053... | [
{
"answer_id": 74450677,
"author": "sudheesh shivan",
"author_id": 9923289,
"author_profile": "https://Stackoverflow.com/users/9923289",
"pm_score": 0,
"selected": false,
"text": "import pandas as pd\n\ndata_dict = pd.read_csv('a.txt', sep=' ').to_dict(orient=\"index\").values()\n"
},... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74450140",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/20404244/"
] |
74,450,146 | <p>Here I am Taking a string data and converting it into array elements but it is getting an empty array at last of all array elements and I am not be able to remove them easily.Please help.</p>
<p><div class="snippet" data-lang="js" data-hide="false" data-console="true" data-babel="false">
<div class="snippet-code">
... | [
{
"answer_id": 74450214,
"author": "Barmar",
"author_id": 1491895,
"author_profile": "https://Stackoverflow.com/users/1491895",
"pm_score": 0,
"selected": false,
"text": ", slice() data.push(dataAry.split(',').slice(0, -1))\n"
},
{
"answer_id": 74450238,
"author": "chovy",
... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74450146",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/7620551/"
] |
74,450,169 | <p>I have an array with <code>id</code> and <code>parentId</code> and I need to create a tree out of this flat array so that each <code>parentId</code> that matches an <code>id</code> is now a child under <code>comments</code></p>
<p>It's basically a threaded comment list.</p>
<pre><code>{
"comments": [
... | [
{
"answer_id": 74450214,
"author": "Barmar",
"author_id": 1491895,
"author_profile": "https://Stackoverflow.com/users/1491895",
"pm_score": 0,
"selected": false,
"text": ", slice() data.push(dataAry.split(',').slice(0, -1))\n"
},
{
"answer_id": 74450238,
"author": "chovy",
... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74450169",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/33522/"
] |
74,450,174 | <p>I have a Java class with a nested protected class in it. In a method of another class (and in another package) I have to make a list of such nested protected type.</p>
<p>Is there a way to do this in Java?</p>
<pre><code>// SomeClass.java
package stuff;
public class SomeClass {
protected class Nested {
int x;... | [
{
"answer_id": 74450252,
"author": "Allan J.",
"author_id": 9680087,
"author_profile": "https://Stackoverflow.com/users/9680087",
"pm_score": 1,
"selected": false,
"text": "Nested SomeClass Nested SomeClass MyClass MyClass SomeClass"
},
{
"answer_id": 74450293,
"author": "Cod... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74450174",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/4322265/"
] |
74,450,186 | <p>Thanks to this <a href="https://stackoverflow.com/a/59697842/16297405">answer</a> i can see QuickLook preview of a pdf embedded in my swiftui view.</p>
<p>But it's only to preview the pdf that's stored in the app bundle resource. How do i use NSOpenPanel to choose a file and display it in the QLPreviewView?</p>
<pre... | [
{
"answer_id": 74450252,
"author": "Allan J.",
"author_id": 9680087,
"author_profile": "https://Stackoverflow.com/users/9680087",
"pm_score": 1,
"selected": false,
"text": "Nested SomeClass Nested SomeClass MyClass MyClass SomeClass"
},
{
"answer_id": 74450293,
"author": "Cod... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74450186",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/16297405/"
] |
74,450,189 | <p>I am using Ubuntu 22.04 with windows WSL, and have installed JDK 19.01 and Maven inside this, and have imported a file from the WSL into IntelliJ Idea to work on, however once I run a class, IntelliJ "builds" <strong>for upwards of half an hour</strong>, hanging on the messages of "Executing pre-compi... | [
{
"answer_id": 74450252,
"author": "Allan J.",
"author_id": 9680087,
"author_profile": "https://Stackoverflow.com/users/9680087",
"pm_score": 1,
"selected": false,
"text": "Nested SomeClass Nested SomeClass MyClass MyClass SomeClass"
},
{
"answer_id": 74450293,
"author": "Cod... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74450189",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/20512760/"
] |
74,450,190 | <p>Im learning about <code>SwiftUI</code> for macOS development, and Im wondering what would be the right approach when creating Managers, services etc. These are objects not related to the UI - strictly business logic things, not even <code>ViewModels</code>. Should I not use things like <code>ObservableObject</code>,... | [
{
"answer_id": 74450974,
"author": "Krzysztof P",
"author_id": 13780695,
"author_profile": "https://Stackoverflow.com/users/13780695",
"pm_score": 0,
"selected": false,
"text": "ObservableObject ObservableObject @Published"
},
{
"answer_id": 74461604,
"author": "Dávid Pásztor... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74450190",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/4528716/"
] |
74,450,198 | <p>I would like to know, what is the concept of information flow in GUI based apps, or any other app with same problem. When you have two seperate classes and their objects, how is the messeging process done between them. For example you have a GUI and AppLogic.</p>
<p>Scenario 1: Button is pressed -> GUI is process... | [
{
"answer_id": 74450974,
"author": "Krzysztof P",
"author_id": 13780695,
"author_profile": "https://Stackoverflow.com/users/13780695",
"pm_score": 0,
"selected": false,
"text": "ObservableObject ObservableObject @Published"
},
{
"answer_id": 74461604,
"author": "Dávid Pásztor... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74450198",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/12420879/"
] |
74,450,224 | <p>Configured Spring Boot according to a guide, still it cannot find my jsp views. So after launching I get this message "This application has no explicit mapping for /error, so you are seeing this as a fallback."</p>
<p>Any suggestions?</p>
<p>pom:</p>
<pre><code><?xml version="1.0" encoding=&q... | [
{
"answer_id": 74450974,
"author": "Krzysztof P",
"author_id": 13780695,
"author_profile": "https://Stackoverflow.com/users/13780695",
"pm_score": 0,
"selected": false,
"text": "ObservableObject ObservableObject @Published"
},
{
"answer_id": 74461604,
"author": "Dávid Pásztor... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74450224",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/20388189/"
] |
74,450,274 | <p>I created a little program as part of my learning experience using python crash course and the code worked pretty well yesterday. But now that I woke up and tried to launch the thing it refuses to do anything and says that "self" is not defined. I honestly have no idea why it happens and would very much li... | [
{
"answer_id": 74450974,
"author": "Krzysztof P",
"author_id": 13780695,
"author_profile": "https://Stackoverflow.com/users/13780695",
"pm_score": 0,
"selected": false,
"text": "ObservableObject ObservableObject @Published"
},
{
"answer_id": 74461604,
"author": "Dávid Pásztor... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74450274",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/20512835/"
] |
74,450,279 | <pre><code>var temp = [
{
text:'some text and then % sign and then, again % sign',
link: 'another text with %',
},
];
</code></pre>
<p>I want to replace all <code>%</code> signs with <code>\%</code> in the <code>temp</code> array of objects. How can I do it?</p>
<p><strong>Desired Output:</strong></p>
<pre... | [
{
"answer_id": 74450413,
"author": "Konrad",
"author_id": 5089567,
"author_profile": "https://Stackoverflow.com/users/5089567",
"pm_score": 0,
"selected": false,
"text": "const temp = [{\n text: 'some text and then % sign and then, again % sign',\n link: 'another text with %',\n}, ];\n... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74450279",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/12045119/"
] |
74,450,294 | <p>These are my db tables:</p>
<p>Users</p>
<pre><code>| id | nme |
|----|------|
| 1 | Adam |
| 2 | Bob |
| 3 | Jan |
| 4 | Nico |
</code></pre>
<p>Products</p>
<pre><code>| id | price |
|----|-------|
| 1 | 500 |
| 2 | 700 |
| 3 | 900 |
</code></pre>
<p>Orders</p>
<pre><code>| id | user_id | product_i... | [
{
"answer_id": 74450413,
"author": "Konrad",
"author_id": 5089567,
"author_profile": "https://Stackoverflow.com/users/5089567",
"pm_score": 0,
"selected": false,
"text": "const temp = [{\n text: 'some text and then % sign and then, again % sign',\n link: 'another text with %',\n}, ];\n... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74450294",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/9901683/"
] |
74,450,300 | <p>I am trying to do some work in Google Sheets. I have to generate a report that shows when 80% of users are reached for certain metrics. I am trying to set up a table with all the data and add conditional formatting to each column so that once the running sum of the column values reach 80% or more the cell where this... | [
{
"answer_id": 74450841,
"author": "player0",
"author_id": 5632629,
"author_profile": "https://Stackoverflow.com/users/5632629",
"pm_score": 2,
"selected": false,
"text": "=(SUM(C$2:C2)>0.8)*(C2<>\"\")\n"
},
{
"answer_id": 74463668,
"author": "d0rf47",
"author_id": 122120... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74450300",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/12212051/"
] |
74,450,307 | <p>I wonder whether the below code is valid C++ code or if not using <code>co_return</code> results in undefined behavior.</p>
<pre class="lang-cpp prettyprint-override"><code>IAsyncAction MyClass::MyCoroutine()
{
co_await someOtherClassInstance.SomeCoroutine();
}
</code></pre>
<p>I.e. is it necessary to adjust the c... | [
{
"answer_id": 74450570,
"author": "rturrado",
"author_id": 260313,
"author_profile": "https://Stackoverflow.com/users/260313",
"pm_score": 1,
"selected": false,
"text": "Promise::return_void() co_return promise.return_void() co_return; co_return expr expr Promise::return_void() p.return... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74450307",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/5548098/"
] |
74,450,332 | <p>I have these two methods:</p>
<pre><code>public void method(final String param1, final Object... param2);
public void method(final String param1, final String param2, final Object... param3);
</code></pre>
<p>If I call the first method this way:</p>
<pre><code>method(new String(), new String(), new String());
</cod... | [
{
"answer_id": 74450388,
"author": "Bohemian",
"author_id": 256196,
"author_profile": "https://Stackoverflow.com/users/256196",
"pm_score": 0,
"selected": false,
"text": "Object[] method(\"A\", \"B\", new Object[]{\"C\"});\n"
},
{
"answer_id": 74450451,
"author": "Joachim Sau... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74450332",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/4487251/"
] |
74,450,360 | <p>How can i define my variable method in my function so that my integrate function can calculate the same integral via a chosen method ? Maybe i have to define an alias for the different functions?</p>
<pre><code>import argparse
def dummy_function(x_value):
return 4/(1+x_value**2)
def integrate(method,function... | [
{
"answer_id": 74450388,
"author": "Bohemian",
"author_id": 256196,
"author_profile": "https://Stackoverflow.com/users/256196",
"pm_score": 0,
"selected": false,
"text": "Object[] method(\"A\", \"B\", new Object[]{\"C\"});\n"
},
{
"answer_id": 74450451,
"author": "Joachim Sau... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74450360",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/20511749/"
] |
74,450,378 | <p>I'm using the new Cypress component test option for my frontend tests, and I absolutely love it. I'm using it as an integration test solution, mounting the root component of my react app and using Cypress to test extensive user interactivity with it. In nearly every way, it's working perfectly, despite its beta stat... | [
{
"answer_id": 74450519,
"author": "onewaveadrian",
"author_id": 7905854,
"author_profile": "https://Stackoverflow.com/users/7905854",
"pm_score": 0,
"selected": false,
"text": "on CONREFUSED"
},
{
"answer_id": 74451685,
"author": "TesterDick",
"author_id": 18366749,
... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74450378",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/2223059/"
] |
74,450,386 | <p>I need to compare two datasets:</p>
<p>DF1</p>
<pre><code> Subj 1 2 3
0 Biotech Cell culture Bioinfo Immunology
1 Zoology Cell culture Immunology NaN
2 Math Trigonometry Algebra NaN
3 Microbio Biotech NaN NaN
4 P... | [
{
"answer_id": 74450519,
"author": "onewaveadrian",
"author_id": 7905854,
"author_profile": "https://Stackoverflow.com/users/7905854",
"pm_score": 0,
"selected": false,
"text": "on CONREFUSED"
},
{
"answer_id": 74451685,
"author": "TesterDick",
"author_id": 18366749,
... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74450386",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/20406129/"
] |
74,450,387 | <p>I was using the replace method with the following regex to strip periods at the end of a string: <code>replace(/\.[^/.]+$/, "");</code> . Now I want to change this to meet the following requirements:</p>
<ul>
<li>can't end with a period,</li>
<li>can't contain only spaces</li>
<li>can't contain the follow... | [
{
"answer_id": 74450466,
"author": "Dimava",
"author_id": 5734961,
"author_profile": "https://Stackoverflow.com/users/5734961",
"pm_score": 1,
"selected": false,
"text": "s = s\n .replaceAll(/\\s/g, '')\n .replaceAll(/[\\\\/*?\"|:<>]/g, '')\n .replace(/\\.+$/, '')\n"
},
{
"... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74450387",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/17237933/"
] |
74,450,398 | <p>I want to make a triangle like this with php , but i try in local still fail how to code like the example above</p>
<pre><code><?php
$star=10;
for($a=1; $a<=$star; $a++){
for($c=$star; $c>=$a; $c-=1){
echo "*";
}
echo "<br>";
}
?>
</code></pre>
<p... | [
{
"answer_id": 74450637,
"author": "Austen Holland",
"author_id": 6421617,
"author_profile": "https://Stackoverflow.com/users/6421617",
"pm_score": 2,
"selected": true,
"text": "<?php\n# Replace this with whatever is the source of your input.\n$input = '1225441';\n\n# get total number of... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74450398",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/15967988/"
] |
74,450,410 | <p>example json</p>
<pre class="lang-json prettyprint-override"><code>{
"11var":"value1",
"11var2":"val2",
"11var3":"val3",
"11var4":"val444",
"11var5":"val5",
.....
}
</code></pre>
<p>how to convert this to a pojo in la... | [
{
"answer_id": 74453554,
"author": "dev_in_progress",
"author_id": 3330947,
"author_profile": "https://Stackoverflow.com/users/3330947",
"pm_score": 1,
"selected": false,
"text": "map objectMapper String json = \"{\\\"11var\\\":\\\"value1\\\",\\\"11var2\\\":\\\"val2\\\",\\\"11var3\\\":\\... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74450410",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/175554/"
] |
74,450,453 | <p>C# 11:</p>
<pre><code>file class C
{
public int IntField1;
}
file struct S
{
public int IntField1;
}
file class StructureVsClassWhenCopying
{
private static void v1()
{
System.Console.WriteLine("v1");
}
private static void v2()
{
System.Console.WriteLine("... | [
{
"answer_id": 74453554,
"author": "dev_in_progress",
"author_id": 3330947,
"author_profile": "https://Stackoverflow.com/users/3330947",
"pm_score": 1,
"selected": false,
"text": "map objectMapper String json = \"{\\\"11var\\\":\\\"value1\\\",\\\"11var2\\\":\\\"val2\\\",\\\"11var3\\\":\\... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74450453",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/-1/"
] |
74,450,465 | <p>I want to size the textfield based on text length...while typing it's length should be changed according to text..I was suggested to use IntrinsicWidth but its not working..</p>
<pre><code>Container(
height: 300,
decoration: BoxDecoration(
color: Colors.white,
... | [
{
"answer_id": 74450547,
"author": "Yeasin Sheikh",
"author_id": 10157127,
"author_profile": "https://Stackoverflow.com/users/10157127",
"pm_score": 3,
"selected": true,
"text": "TextEditingController final TextEditingController controller = TextEditingController();\n .....\n\nPadding(\... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74450465",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/18817235/"
] |
74,450,529 | <p>In Excel sheet I havea column data where some set of records are in 'mm/dd/yyyy' format and some are in 'mm-dd-yyyy'. But I need all records in one format with data type as "DATE". How could I achieve?<a href="https://i.stack.imgur.com/rudK0.png" rel="nofollow noreferrer">enter image description here</a> <... | [
{
"answer_id": 74450547,
"author": "Yeasin Sheikh",
"author_id": 10157127,
"author_profile": "https://Stackoverflow.com/users/10157127",
"pm_score": 3,
"selected": true,
"text": "TextEditingController final TextEditingController controller = TextEditingController();\n .....\n\nPadding(\... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74450529",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/20512360/"
] |
74,450,537 | <p>I would like to create a DataFrame that has an "index" (integer) from a number of (sparse) Series, where the index (or primary key) is NOT necessarily consecutive integers. Each Series is like a vector of <code>(index, value)</code> tuple or <code>{index: value}</code> mapping.</p>
<h2>(1) A small example<... | [
{
"answer_id": 74459797,
"author": "kwk",
"author_id": 20519471,
"author_profile": "https://Stackoverflow.com/users/20519471",
"pm_score": 0,
"selected": false,
"text": "pl.from_pandas dt = pl.from_pandas(\n pd.DataFrame({\n \"A\": {0: 'a', 20: 'b', 40: 'c'},\n \"B\": {10: 'd',... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74450537",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/1534182/"
] |
74,450,539 | <p>I can't find a solution to this, so I'm asking here. I have a string that consists of several lines and in the string I want to increase exactly one number by one.
For example:</p>
<pre><code>[CENTER]
[FONT=Courier New][COLOR=#00ffff][B][U][SIZE=4]{title}[/SIZE][/U][/B][/COLOR][/FONT]
[IMG]{cover}[/IMG]
[IMG]IMAG... | [
{
"answer_id": 74459797,
"author": "kwk",
"author_id": 20519471,
"author_profile": "https://Stackoverflow.com/users/20519471",
"pm_score": 0,
"selected": false,
"text": "pl.from_pandas dt = pl.from_pandas(\n pd.DataFrame({\n \"A\": {0: 'a', 20: 'b', 40: 'c'},\n \"B\": {10: 'd',... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74450539",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/16558339/"
] |
74,450,618 | <p>Assume a table like this (in actuality I have 50 date columns to compare):</p>
<div class="s-table-container">
<table class="s-table">
<thead>
<tr>
<th>ID</th>
<th>MY_DATE_1</th>
<th>MY_DATE_2</th>
<th>MY_DATE 3</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>2022-10-1</td>
<td>2022-11-1</td>
<td>2022-12-1</td>
</tr... | [
{
"answer_id": 74459797,
"author": "kwk",
"author_id": 20519471,
"author_profile": "https://Stackoverflow.com/users/20519471",
"pm_score": 0,
"selected": false,
"text": "pl.from_pandas dt = pl.from_pandas(\n pd.DataFrame({\n \"A\": {0: 'a', 20: 'b', 40: 'c'},\n \"B\": {10: 'd',... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74450618",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/3406483/"
] |
74,450,623 | <p>I am hoping somebody could please clarify what I am doing wrong.
I am trying to replicate the strcpy function in C.</p>
<p>The exercise requires us to create two loop through a src string and replace the content at each corresponding index at the destination string.
My issue is when I create the test function in int... | [
{
"answer_id": 74459797,
"author": "kwk",
"author_id": 20519471,
"author_profile": "https://Stackoverflow.com/users/20519471",
"pm_score": 0,
"selected": false,
"text": "pl.from_pandas dt = pl.from_pandas(\n pd.DataFrame({\n \"A\": {0: 'a', 20: 'b', 40: 'c'},\n \"B\": {10: 'd',... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74450623",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/19964689/"
] |
74,450,641 | <p>I need to insert multiple values into a table after checking if it doesn't exist using psycopg2.
The query am using:</p>
<pre><code>WITH data(name,proj_id) as (
VALUES ('hello',123),('hey',123)
)
INSERT INTO keywords(name,proj_id)
SELECT d.name,d.proj_id FROM data d
WHERE NOT EXISTS (SELECT 1 FROM keywords u2 W... | [
{
"answer_id": 74451088,
"author": "Zegarek",
"author_id": 5298879,
"author_profile": "https://Stackoverflow.com/users/5298879",
"pm_score": 1,
"selected": false,
"text": "conn from typing import Iterator, Dict, Any\n\ndef insert_execute_values_iterator(connection, keywords: Iterator[Dic... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74450641",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/14666733/"
] |
74,450,653 | <pre><code>game.Players.PlayerAdded:Connect(function(player)
script.Parent.Touched:Connect(function(hit)
if hit and hit.Parent and hit.Parent:FindFirstChild("Humanoid") then
local players = game:GetService("Players")
local clone = game.Workspace.Sparkles:Clone()
... | [
{
"answer_id": 74451088,
"author": "Zegarek",
"author_id": 5298879,
"author_profile": "https://Stackoverflow.com/users/5298879",
"pm_score": 1,
"selected": false,
"text": "conn from typing import Iterator, Dict, Any\n\ndef insert_execute_values_iterator(connection, keywords: Iterator[Dic... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74450653",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/19513775/"
] |
74,450,669 | <p>is there any way to convert Arabic ي to the Persian ي in React JS? I have an array of data in Persian language which contains the Arabic ي . and that's because of bad language support for Persian.</p>
<p>if I want to make a search functionality, I must enter ي instead ی and I can't force people to do this. how can I... | [
{
"answer_id": 74451088,
"author": "Zegarek",
"author_id": 5298879,
"author_profile": "https://Stackoverflow.com/users/5298879",
"pm_score": 1,
"selected": false,
"text": "conn from typing import Iterator, Dict, Any\n\ndef insert_execute_values_iterator(connection, keywords: Iterator[Dic... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74450669",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/20395245/"
] |
74,450,717 | <p>I'm working on a 3D visualization of a network graph and the input to the 3D Visualization is an XML file with nodes and edges. The XML file is the output of a network analysis tool without proper 3d visualization capability. Unfortunately, this XML file cannot be read properly in the tool where I'm doing the 3D vis... | [
{
"answer_id": 74451004,
"author": "Sebastien",
"author_id": 9871012,
"author_profile": "https://Stackoverflow.com/users/9871012",
"pm_score": 2,
"selected": true,
"text": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<xsl:stylesheet xmlns:xsl=\"http://www.w3.org/1999/XSL/Transform\"\n ... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74450717",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/20512690/"
] |
74,450,753 | <p>I am trying to figure out how to connect my Rust app to a surrealdb database that is running inside a docker container.</p>
<p>The docs on the SurrealDB website only specify three ways to connect to the database, these are: memory, file, and tikv.</p>
<p>I am running surrealdb on docker as indicated on their website... | [
{
"answer_id": 74451004,
"author": "Sebastien",
"author_id": 9871012,
"author_profile": "https://Stackoverflow.com/users/9871012",
"pm_score": 2,
"selected": true,
"text": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<xsl:stylesheet xmlns:xsl=\"http://www.w3.org/1999/XSL/Transform\"\n ... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74450753",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/1219937/"
] |
74,450,824 | <p>I want the car spawn selected by the player.......</p>
<p>but the problem is whenever the other local player select. the all car are same (mean player2 and player3).....</p>
<p>but the there is no issue with the masterclient car (mean host player) the car are same which he selected......</p>
<p>here is my code.....<... | [
{
"answer_id": 74451004,
"author": "Sebastien",
"author_id": 9871012,
"author_profile": "https://Stackoverflow.com/users/9871012",
"pm_score": 2,
"selected": true,
"text": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<xsl:stylesheet xmlns:xsl=\"http://www.w3.org/1999/XSL/Transform\"\n ... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74450824",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/20513177/"
] |
74,450,838 | <p>I have a composable for example</p>
<pre><code>Box(modifier){ ... }
</code></pre>
<p>I want to share this view as an image with other apps, that's why I have to convert this Box into an image that can be shared with other apps such as WhatsApp etc. Thank you</p>
| [
{
"answer_id": 74450871,
"author": "ScriptSecure Services",
"author_id": 16119169,
"author_profile": "https://Stackoverflow.com/users/16119169",
"pm_score": 0,
"selected": false,
"text": "Box(\nmodifier: BoxModifier(\n shape: BoxShape.rectangle,\n color: Colors.red,\n),\nchild: Ima... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74450838",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/7798091/"
] |
74,450,865 | <p>I have below piece of code,
What I am trying to do is add a new record at the 0th position and then sort the array based on the label. But I can't get it to work; I am getting an empty array.</p>
<pre><code>const array = [{id: '3', name: 'name1'},
{id: '4', name: 'name2'},
{id: '5', na... | [
{
"answer_id": 74450930,
"author": "ScriptSecure Services",
"author_id": 16119169,
"author_profile": "https://Stackoverflow.com/users/16119169",
"pm_score": -1,
"selected": false,
"text": "const array = [{id: '3', name: 'name1'},\n{id: '4', name: 'name2'},\n{id: '5', name: 'name3'}]\n\nc... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74450865",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/2349082/"
] |
74,450,873 | <p>I have an array of objects like below -</p>
<pre><code>const studentDetails = [
{id:1, name:"Mike", stream:"Science", status:"active"},
{id:2, name:"Kelly", stream:"Commerce", status:"inactive"},
{id:3, name:"Bob", stream:"Law&quo... | [
{
"answer_id": 74450927,
"author": "Tomas Deans",
"author_id": 20513153,
"author_profile": "https://Stackoverflow.com/users/20513153",
"pm_score": 0,
"selected": false,
"text": "const studentDetails = [\n {id:1, status:\"active\"},\n {id:2, status:\"inactive\"}\n]\n"
},
{
"... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74450873",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/14833974/"
] |
74,450,891 | <p>10/2 is 5 but pyhton says its 5.0 I want it to be 5 while making 11/2 5.5 which still makes it a float
so basically thing that wouldnt be a float should be int but things like 4.3 should stay a float</p>
<p>`</p>
<pre><code>user_input = 10
prime_verification = user_input / 2
if isinstance(prime_verification, int):... | [
{
"answer_id": 74450967,
"author": "Raboro",
"author_id": 18052690,
"author_profile": "https://Stackoverflow.com/users/18052690",
"pm_score": -1,
"selected": false,
"text": "// prime_verification = user_input // 2\n\nif isinstance(prime_verification, int):\n print(user_input)\n"
},
... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74450891",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/20513245/"
] |
74,450,899 | <p>I'm trying to compare all the numbers in this list and if any of them are within 1 of the number next to them in the list, if so then I want the command to print True. I realised that by applying the [x+1] to the last item in the list I'd be going out of the range of the list. I've tried to avoid this but I'm still ... | [
{
"answer_id": 74450962,
"author": "BeRT2me",
"author_id": 11865956,
"author_profile": "https://Stackoverflow.com/users/11865956",
"pm_score": 1,
"selected": false,
"text": "itertools.pairwise from itertools import pairwise\n\nvals = [x for x in pairwise(listed) if abs(x[0] - x[1]) <= 1]... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74450899",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/20512713/"
] |
74,450,901 | <p>In the development of a website that offers only static content, the backend aspect is necessary? It can be useful for optimize some aspects?</p>
<p>Or is the backend only needed to handle authentications, dynamic content, etc.?</p>
| [
{
"answer_id": 74450962,
"author": "BeRT2me",
"author_id": 11865956,
"author_profile": "https://Stackoverflow.com/users/11865956",
"pm_score": 1,
"selected": false,
"text": "itertools.pairwise from itertools import pairwise\n\nvals = [x for x in pairwise(listed) if abs(x[0] - x[1]) <= 1]... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74450901",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/20389783/"
] |
74,450,944 | <p>I am using a JWT authentication scheme for my app. I did some research about how to store and use access and refresh tokens, and I have several questions that I couldn't really find an answer to. For the app, I am using React for the frontend and .NET 6 Web API for the backened.</p>
<p><strong>Question 1:</strong> S... | [
{
"answer_id": 74450962,
"author": "BeRT2me",
"author_id": 11865956,
"author_profile": "https://Stackoverflow.com/users/11865956",
"pm_score": 1,
"selected": false,
"text": "itertools.pairwise from itertools import pairwise\n\nvals = [x for x in pairwise(listed) if abs(x[0] - x[1]) <= 1]... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74450944",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/19187727/"
] |
74,450,954 | <pre><code>void main() {
var values = List<String>.filled(3, 0);
values[0] = 'abc';
values[1] = 'def';
values[2] = 'ghi';
}
</code></pre>
<p>I am trying to have a regular debugging experience with breakpoints on my code. However, I don't want to design a UI screen on my emulator just to run a code that d... | [
{
"answer_id": 74451040,
"author": "THEODORE",
"author_id": 9185856,
"author_profile": "https://Stackoverflow.com/users/9185856",
"pm_score": 0,
"selected": false,
"text": "dart --version dart filename.dart"
},
{
"answer_id": 74451158,
"author": "Gwhyyy",
"author_id": 186... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74450954",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/-1/"
] |
74,450,968 | <p><img src="https://i.stack.imgur.com/L4Stp.png" alt="enter image description here" /></p>
<p>I need to build a relief profile graph by coordinates, I have a csv file with 12,000,000 lines. searching through a csv file of the same height takes about 2 - 2.5 seconds. I rewrote the csv to parquet and it helped me save s... | [
{
"answer_id": 74451040,
"author": "THEODORE",
"author_id": 9185856,
"author_profile": "https://Stackoverflow.com/users/9185856",
"pm_score": 0,
"selected": false,
"text": "dart --version dart filename.dart"
},
{
"answer_id": 74451158,
"author": "Gwhyyy",
"author_id": 186... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74450968",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/19206620/"
] |
74,450,970 | <pre><code>answer = input('Enter a number: ')
x = 10**(len(answer) - 1)
print(answer, end = ' = ')
for i in answer:
if '0' in i:
x = x//10
continue
else:
print('(' + i + ' * ' + str(x) + ')' , end = '')
x = x//10
print(' + ', end = '')
</code></pre>
<p>so i have this pr... | [
{
"answer_id": 74451055,
"author": "Valery",
"author_id": 20513338,
"author_profile": "https://Stackoverflow.com/users/20513338",
"pm_score": 1,
"selected": false,
"text": "else:\n print('(' + i + ' * ' + str(x) + ')' , end = '')\n x = x//10\n if x:\n print(' + ', end = '... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74450970",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/20513324/"
] |
74,451,034 | <p>In Python, if I install <code>mambaforge</code> or <code>conda</code> then I can make a file with extension <code>.yml</code> and then inside it list the name of packages I want to install alongside their specific versions. How can I do a similar way of installing packages in Julia?
I understand that if I have alrea... | [
{
"answer_id": 74451055,
"author": "Valery",
"author_id": 20513338,
"author_profile": "https://Stackoverflow.com/users/20513338",
"pm_score": 1,
"selected": false,
"text": "else:\n print('(' + i + ' * ' + str(x) + ')' , end = '')\n x = x//10\n if x:\n print(' + ', end = '... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74451034",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/1381340/"
] |
74,451,058 | <p>SAP exports make all numbers into text I need to keep cells with leading zero as text while converting the rest if numeric text to number.</p>
<pre><code>Sub ConvertUsingLoop()
For Each r In Sheets("Loop&CSng").UsedRange.SpecialCells(xlCellTypeConstants)
If IsNumeric(r) Then
r.Value = CSng(r.Value)
r.N... | [
{
"answer_id": 74451080,
"author": "BigBen",
"author_id": 9245853,
"author_profile": "https://Stackoverflow.com/users/9245853",
"pm_score": 3,
"selected": true,
"text": "Left$ If If IsNumeric(r.Value) And Left$(r.Value, 1) <> \"0\" Then\n"
},
{
"answer_id": 74462429,
"author... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74451058",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/10442755/"
] |
74,451,068 | <p><a href="https://easyupload.io/lothof" rel="nofollow noreferrer">csv with df</a></p>
<pre><code>import pandas as pd
df = pd.read_csv('loves_1.csv')
</code></pre>
<p>in the column FuelPrices you'll see another df</p>
<pre><code>df1 = pd.DataFrame(df['FuelPrices'][0])
df1
</code></pre>
<p><a href="https://i.stack.img... | [
{
"answer_id": 74451080,
"author": "BigBen",
"author_id": 9245853,
"author_profile": "https://Stackoverflow.com/users/9245853",
"pm_score": 3,
"selected": true,
"text": "Left$ If If IsNumeric(r.Value) And Left$(r.Value, 1) <> \"0\" Then\n"
},
{
"answer_id": 74462429,
"author... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74451068",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/8291387/"
] |
74,451,129 | <p>I am getting some -Wnarrowing conversion errors when doubles are narrowed to floats. How can I do this in a well defined way? Preferably with an option in a template I can toggle to switch behavior from throwing exceptions, to clamping to the nearest value, or to simple truncation. I was looking at the <code>gsl:... | [
{
"answer_id": 74451080,
"author": "BigBen",
"author_id": 9245853,
"author_profile": "https://Stackoverflow.com/users/9245853",
"pm_score": 3,
"selected": true,
"text": "Left$ If If IsNumeric(r.Value) And Left$(r.Value, 1) <> \"0\" Then\n"
},
{
"answer_id": 74462429,
"author... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74451129",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/17985913/"
] |
74,451,131 | <p>I have data like below in google sheets</p>
<pre><code>A B C
1 82 54.73
2 20 58.32
4 78 57.84
3 21 58.58
2 20 55.05
3 20 54.55
1 20 49.63
4 21 43.65
2 33 43.65
5 19 45.87
</code></pre>
<p>In this column A can have repeated values</p>
<p>I want to list the rows with same column A va... | [
{
"answer_id": 74451329,
"author": "ztiaa",
"author_id": 17887301,
"author_profile": "https://Stackoverflow.com/users/17887301",
"pm_score": 2,
"selected": true,
"text": "SORT =sort(A1:C10,1,1,2,1)\n"
},
{
"answer_id": 74451447,
"author": "player0",
"author_id": 5632629,
... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74451131",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/3999424/"
] |
74,451,132 | <pre><code>public class Main {
public static void main(String[] args) {
// positive number
int number = 6;
System.out.print("Factors of " + number + " are: ");
// loop runs from 1 to 60
for (int i = 1; i <= number; ++i) {
// if number is divided by i
// i is... | [
{
"answer_id": 74451187,
"author": "abel1502",
"author_id": 13484707,
"author_profile": "https://Stackoverflow.com/users/13484707",
"pm_score": 1,
"selected": false,
"text": "List<String> divisors = new ArrayList<>();\n\n// loop runs from 1 to 60\nfor (int i = 1; i <= number; ++i) {\n\n ... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74451132",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/19415322/"
] |
74,451,133 | <p>I'm new to Django and I'm trying to learn it from <em>Django for Professionals</em> by William Vincent. After installing <code>django-allauth</code> and following the steps in the book, I managed to get the logging in and out the sign up functionality to work. However, when I go to <code>127.0.0.1:8000/admin</code>,... | [
{
"answer_id": 74451187,
"author": "abel1502",
"author_id": 13484707,
"author_profile": "https://Stackoverflow.com/users/13484707",
"pm_score": 1,
"selected": false,
"text": "List<String> divisors = new ArrayList<>();\n\n// loop runs from 1 to 60\nfor (int i = 1; i <= number; ++i) {\n\n ... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74451133",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/19505160/"
] |
74,451,152 | <p>Not sure how to add an optional action to TextFieldButton view and have the TextFieldClearButton view modifier accept the action.</p>
<pre><code>struct TextFieldClearButton: ViewModifier {
@Binding var fieldText: String
var action: (() -> Void)? = nil
func body(content: Content) -> some View {
... | [
{
"answer_id": 74451404,
"author": "whiteio",
"author_id": 19222466,
"author_profile": "https://Stackoverflow.com/users/19222466",
"pm_score": 0,
"selected": false,
"text": "action (() -> Void)? action action action?() Button {\n fieldText = \"\"\n action?()\n} label: {\n Image(... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74451152",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/18131679/"
] |
74,451,166 | <p>I have an array contain a list of courses</p>
<pre><code>$courses = ['php', 'mysql', 'java', 'ruby'];
</code></pre>
<p>I have also a function that helps me to split this array into pieces, depends on the number of the giving years.</p>
<p>this is my function:</p>
<pre><code>public function planner($courses, $periodi... | [
{
"answer_id": 74451404,
"author": "whiteio",
"author_id": 19222466,
"author_profile": "https://Stackoverflow.com/users/19222466",
"pm_score": 0,
"selected": false,
"text": "action (() -> Void)? action action action?() Button {\n fieldText = \"\"\n action?()\n} label: {\n Image(... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74451166",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/19395233/"
] |
74,451,180 | <p>i'm learning and would appreciate any help in this code.</p>
<p>The issue is trying to print the values in the data that are contained in one line of the JSON using Python.</p>
<pre><code>import json
import requests
data = json.loads(response.text)
print(len(data)) #showing correct value
</code></pre>
<p>#where i'... | [
{
"answer_id": 74451404,
"author": "whiteio",
"author_id": 19222466,
"author_profile": "https://Stackoverflow.com/users/19222466",
"pm_score": 0,
"selected": false,
"text": "action (() -> Void)? action action action?() Button {\n fieldText = \"\"\n action?()\n} label: {\n Image(... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74451180",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/7044664/"
] |
74,451,207 | <p>I have searched through the other questions similar to my own problem and have come to no solution so im hoping someone can help me figure out where i went wrong.</p>
<p>I'm trying to implement a delete post option in my blog program but it is throwing the following error once you click the 'delete' button:</p>
<p><... | [
{
"answer_id": 74451375,
"author": "Sunderam Dubey",
"author_id": 17562044,
"author_profile": "https://Stackoverflow.com/users/17562044",
"pm_score": 2,
"selected": false,
"text": "model form_class class Deletepost(LoginRequiredMixin, DeleteView):\n model = Post\n success_url = rev... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74451207",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/20399868/"
] |
74,451,216 | <p>When I try to run this code
`</p>
<pre><code>import json
import os
import random
from pprint import pprint
import aiohttp
import discord
import requests
from discord.ext import commands
from dotenv import load_dotenv
from mojang import api
# Functions
# Sends a Get request to a given url
def get_info(call):
r... | [
{
"answer_id": 74452306,
"author": "stijndcl",
"author_id": 13568999,
"author_profile": "https://Stackoverflow.com/users/13568999",
"pm_score": 2,
"selected": true,
"text": "Bot bot client wait_for discord.Client commands.Bot wait_for await # Yours:\nmessage = client.wait_for('message', ... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74451216",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/20512978/"
] |
74,451,248 | <p>I've created a tableView, but when I click it, I don't get any results. I wanted to add a new feature to improve my project, but I couldn't add the videos I watched and the things I researched.</p>
<p><a href="https://i.stack.imgur.com/CLf4x.png" rel="nofollow noreferrer">Table View</a></p>
<pre><code>import UIKit
... | [
{
"answer_id": 74452306,
"author": "stijndcl",
"author_id": 13568999,
"author_profile": "https://Stackoverflow.com/users/13568999",
"pm_score": 2,
"selected": true,
"text": "Bot bot client wait_for discord.Client commands.Bot wait_for await # Yours:\nmessage = client.wait_for('message', ... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74451248",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/19148758/"
] |
74,451,256 | <p>I am making app with framer motion and I need to drag svg inside another svg but my problem is that viwebox size is not equal to window size so when I drag element my 1px movement of mouse on the screen is like 100+ px. I know in JavaScript we can calculate x and y with screenX, sceenY and CTM (current transform mat... | [
{
"answer_id": 74638603,
"author": "Zhubei Federer",
"author_id": 10769406,
"author_profile": "https://Stackoverflow.com/users/10769406",
"pm_score": 0,
"selected": false,
"text": "movement.dragdragConstraints movement.dragElastic <svg viewBox=\"0 0 40 20\">\n <motion.circle\n drag\n... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74451256",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/15792376/"
] |
74,451,264 | <p>So I'm trying to create this program where it takes an input (for example x+2=5) and sympy solves that equation. However since I believe that "=" sign will cause an error I tried to cut it out from the input but with this I'm finding my self inputting a string type in the simpy solver. Is there any solutio... | [
{
"answer_id": 74451367,
"author": "Davide_sd",
"author_id": 2329968,
"author_profile": "https://Stackoverflow.com/users/2329968",
"pm_score": 2,
"selected": true,
"text": "sympify sympify def solution(self, *o):\n left, right = [sympify(t) for t in self.operation.split(\"=\")]\n s... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74451264",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/20513444/"
] |
74,451,283 | <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>#desc {
visibility: hidden;
opacity: 0;
}
.exp-container > .buttons:has(.button:focus) + #desc {
opacity: 1;
... | [
{
"answer_id": 74451367,
"author": "Davide_sd",
"author_id": 2329968,
"author_profile": "https://Stackoverflow.com/users/2329968",
"pm_score": 2,
"selected": true,
"text": "sympify sympify def solution(self, *o):\n left, right = [sympify(t) for t in self.operation.split(\"=\")]\n s... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74451283",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/16028882/"
] |
74,451,296 | <p>I can print the ip and url from a massive log file, but I need to list how many times an ip has visited that url. I have done some research about throwing the log in a database, but I specifically need to do all of this in Python. any help is very appreciated.</p>
<p>My Code so far:</p>
<pre><code>#!/usr/bin/python3... | [
{
"answer_id": 74451367,
"author": "Davide_sd",
"author_id": 2329968,
"author_profile": "https://Stackoverflow.com/users/2329968",
"pm_score": 2,
"selected": true,
"text": "sympify sympify def solution(self, *o):\n left, right = [sympify(t) for t in self.operation.split(\"=\")]\n s... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74451296",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/-1/"
] |
74,451,310 | <p>I'm developing a site with MERN stack and I want to do all the things with Docker. But I have trouble with connecting to MongoDB with Docker.</p>
<p>Here's my docker-compose.yml file.</p>
<pre><code>version: "3.7"
services:
backend:
build:
context: ./node_backend
dockerfile: Dockerfile.d... | [
{
"answer_id": 74451384,
"author": "Def Soudani",
"author_id": 4119055,
"author_profile": "https://Stackoverflow.com/users/4119055",
"pm_score": 2,
"selected": false,
"text": "db DB_URL - DB_URL=mongo://db:27017/${DB_NAME}\n"
},
{
"answer_id": 74451521,
"author": "Matia... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74451310",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/20512951/"
] |
74,451,315 | <p>How do I update a clob field with 7000 characters?</p>
<p>tbody -> CLOB</p>
<pre><code>update ttable set tbody = 'sample text'
where tid = 13;
</code></pre>
<p>Of course, when I do this, I get an error.It may be a very simple question for experts, but it is a really difficult process for me. I'm working in new or... | [
{
"answer_id": 74451852,
"author": "MT0",
"author_id": 1509264,
"author_profile": "https://Stackoverflow.com/users/1509264",
"pm_score": 3,
"selected": true,
"text": "CLOB EMPTY_CLOB() update ttable\nset tbody = EMPTY_CLOB()\n || '4000 characters (or bytes)'\n || 'n... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74451315",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/8442130/"
] |
74,451,341 | <p>Below is a snippet taken from: <a href="https://discordjs.guide/creating-your-bot/command-handling.html#loading-command-files" rel="nofollow noreferrer">https://discordjs.guide/creating-your-bot/command-handling.html#loading-command-files</a></p>
<pre><code>client.commands = new Collection();
const commandsPath = p... | [
{
"answer_id": 74452895,
"author": "Finbar",
"author_id": 17525834,
"author_profile": "https://Stackoverflow.com/users/17525834",
"pm_score": 3,
"selected": true,
"text": "import() import require() import() import module.exports = {\n commandData: new SlashCommandBuilder()...,\n async ... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74451341",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/12186318/"
] |
74,451,373 | <p>What I want to do is move the placeholder image to the space to the right of the text.</p>
<p>I've tried several solutions involving adding different classes to the image, removing the nested container, and so on, but nothing moves the image up next to the text. The image resizes depending on the col-x of the left ... | [
{
"answer_id": 74452895,
"author": "Finbar",
"author_id": 17525834,
"author_profile": "https://Stackoverflow.com/users/17525834",
"pm_score": 3,
"selected": true,
"text": "import() import require() import() import module.exports = {\n commandData: new SlashCommandBuilder()...,\n async ... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74451373",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/19757883/"
] |
74,451,398 | <p>I have multiple text files that I want to process and get the version number of the 'banana' package section, here one example:</p>
<pre><code>Package: apple
Settings: scim
Architecture: amd32
Size: 2312312312
Package: banana
Architecture: xsl64
Version: 94.3223.2
Size: 23232
Package: orange
Architecture: bbl64
Ve... | [
{
"answer_id": 74451493,
"author": "caTS",
"author_id": 18244921,
"author_profile": "https://Stackoverflow.com/users/18244921",
"pm_score": 1,
"selected": false,
"text": "\\n\\n \\n Version: const text = `\\\nPackage: apple\nSettings: scim\nArchitecture: amd32\nSize: 2312312312\n\nPacka... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74451398",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/9439634/"
] |
74,451,415 | <p>I created a simple .NET 7.0 app with SQL Server and if I use the default "localdb" or even after I change it to a "network server", I get the error below:</p>
<blockquote>
<p>The certificate chain was issued by an authority that is not trusted.</p>
</blockquote>
<p>My connection string is:</p>
<p... | [
{
"answer_id": 74451493,
"author": "caTS",
"author_id": 18244921,
"author_profile": "https://Stackoverflow.com/users/18244921",
"pm_score": 1,
"selected": false,
"text": "\\n\\n \\n Version: const text = `\\\nPackage: apple\nSettings: scim\nArchitecture: amd32\nSize: 2312312312\n\nPacka... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74451415",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/16955137/"
] |
74,451,430 | <p>I'm making a game and I need to find the 2 <code>GameObject</code>s from a list closest to another <code>GameObject</code> which is also in the same list but I don't want it to return more than 2 <code>GameObject</code>s or return the <code>GameObject</code> that I'm checking against.</p>
<p>Here's what I want to in... | [
{
"answer_id": 74451493,
"author": "caTS",
"author_id": 18244921,
"author_profile": "https://Stackoverflow.com/users/18244921",
"pm_score": 1,
"selected": false,
"text": "\\n\\n \\n Version: const text = `\\\nPackage: apple\nSettings: scim\nArchitecture: amd32\nSize: 2312312312\n\nPacka... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74451430",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/16068301/"
] |
74,451,481 | <p>I have built a python script that uses python socket to build a connection between my python application and my python server. I have encrypted the data sent between the two systems. I was wondering if I should think of any other things related to security against hackers. Can they do something that could possibly s... | [
{
"answer_id": 74451493,
"author": "caTS",
"author_id": 18244921,
"author_profile": "https://Stackoverflow.com/users/18244921",
"pm_score": 1,
"selected": false,
"text": "\\n\\n \\n Version: const text = `\\\nPackage: apple\nSettings: scim\nArchitecture: amd32\nSize: 2312312312\n\nPacka... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74451481",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/20513644/"
] |
74,451,485 | <p>I am trying to see if it's possible to click a button on a series of sheets with a function. For a single sheet, my code works fine, but I get an Runtime error 438 when I try to do the code below.</p>
<pre><code>Public Sub Read_All_Data_Click()
Dim ws As Worksheet
For Each ws In Worksheets
ThisWorkbook.Sheets(ws.N... | [
{
"answer_id": 74451493,
"author": "caTS",
"author_id": 18244921,
"author_profile": "https://Stackoverflow.com/users/18244921",
"pm_score": 1,
"selected": false,
"text": "\\n\\n \\n Version: const text = `\\\nPackage: apple\nSettings: scim\nArchitecture: amd32\nSize: 2312312312\n\nPacka... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74451485",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/7308118/"
] |
74,451,489 | <p>I have pieced together this topological sort in JavaScript, and have a graph based on <a href="https://adelachao.medium.com/graph-topological-sort-kahns-algorithm-93380b00e7d7" rel="nofollow noreferrer">this post</a>:</p>
<p><a href="https://i.stack.imgur.com/f9VRy.png" rel="nofollow noreferrer"><img src="https://i.... | [
{
"answer_id": 74451493,
"author": "caTS",
"author_id": 18244921,
"author_profile": "https://Stackoverflow.com/users/18244921",
"pm_score": 1,
"selected": false,
"text": "\\n\\n \\n Version: const text = `\\\nPackage: apple\nSettings: scim\nArchitecture: amd32\nSize: 2312312312\n\nPacka... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74451489",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/169992/"
] |
74,451,552 | <p>VBA - Copy specific cell from all files within a folder and pasting each file copied column as a separate column in a master table</p>
<p>I have alot of files with a single sheet (sometimes the sheets are named different but they contain similar data arrangement).
I need to copy a specific column from every workbook... | [
{
"answer_id": 74451773,
"author": "ASH",
"author_id": 5212614,
"author_profile": "https://Stackoverflow.com/users/5212614",
"pm_score": 1,
"selected": false,
"text": "Sub FromAllFilesIntoColumns()\n Dim MyPath As String, FilesInPath As String\n Dim MyFiles() As String\n Dim Sou... | 2022/11/15 | [
"https://Stackoverflow.com/questions/74451552",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/20513678/"
] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.