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,207,702 | OSError: [WinError 193] %1 is not a valid Win32 application Python<p>i'm trying to setup a simple OCR with python, I'm now doing tests.
I use notepad++, Python 3.10.1, PIP, Pillow, pytesseract.
This is my code :</p>
<pre><code>import pytesseract
import numpy
from PIL import Image, ImageEnhance, ImageFilter
pytesserac... | <p>The problem is this line:</p>
<pre class="lang-py prettyprint-override"><code>pytesseract.pytesseract.tesseract_cmd = 'Lib/site-packages/pytesseract/pytesseract.py'
</code></pre>
<p>You need to set <code>pytesseract.pytesseract.tesseract_cmd</code> to the location of the Tesseract executable. You have instead set it... | OSError: [WinError 193] %1 is not a valid Win32 application Python | python|runtime-error|ocr|traceback | 0 | 342 | 1 | 72,207,954 | 72,207,954 | 0 | true | 2022-05-11T21:20:06.510Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
OSError: [WinError 193] %1 is not a valid Win32 application Python<p>i'm trying to setup a simple OCR with python, I'm now doing tests.
I use notepad++, Pyth... |
72,207,659 | ReactJS : Child wont re-rendered when the parents state object changes<p>I have been trying to re-render a contact list inside a Carousel by changing the state object in the parent class. The first time the Cards are rendered just fine - but when I try to add a new contact and update the state object, the child wont re... | <p>Finally after much research, it turns out that the @trendyol-js/react-carousel has a <strong>dynamic</strong> flag that must be set to TRUE to allow adding newer items into it. The official document doesn't talk about it. Maybe this will help someone if they face a similar issue with this react component.</p>
<pre><... | ReactJS : Child wont re-rendered when the parents state object changes | javascript|reactjs|react-hooks|react-component|react-functional-component | 0 | 64 | 1 | 72,208,001 | 72,208,001 | 0 | true | 2022-05-11T21:14:43.123Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
ReactJS : Child wont re-rendered when the parents state object changes<p>I have been trying to re-render a contact list inside a Carousel by changing the sta... |
72,207,808 | Intellij - Missing basic intention actions<p>I have absolutely no idea why IntelliJ IDEA 2022.1.1 (Community Edition), just after creating a new Java class and typing in some random fields, doesn't show basic intention actions like generate constructor, getter, setter etc.
I know it looks so trivial - despite I'm Java ... | <p>It looks like you are using the wrong shortcut (<strong>Show Intention Actions</strong> or <kbd>Alt</kbd>+<kbd>Enter</kbd> instead of <strong>Generate</strong> or <kbd>Alt</kbd>+<kbd>Insert</kbd>).</p>
<p>See <a href="https://www.jetbrains.com/idea/guide/tips/generate-getters-and-setters/" rel="nofollow noreferrer">... | Intellij - Missing basic intention actions | intellij-idea | 0 | 25 | 1 | 72,208,004 | 72,208,004 | 0 | true | 2022-05-11T21:31:42.843Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Intellij - Missing basic intention actions<p>I have absolutely no idea why IntelliJ IDEA 2022.1.1 (Community Edition), just after creating a new Java class a... |
72,182,864 | Documenting functions built by a Proxy get trap<p>In <a href="https://github.com/draber/fancy-node/blob/main/src/index.js#L242" rel="nofollow noreferrer">https://github.com/draber/fancy-node/blob/main/src/index.js#L242</a> I use the <code>get</code> trap of a <code>Proxy</code> to build function names on the fly. That ... | <p>In case somebody comes with a similar problem in the future, I have found a solution. In my particular scenario I know the names and signatures of all "virtual", i.e. Proxy-generated functions.</p>
<p>A file <em>index.d.ts</em> with all function declarations in the same directory where <em>index.js</em> (t... | Documenting functions built by a Proxy get trap | javascript|proxy|intellisense | 0 | 20 | 1 | 72,208,060 | 72,208,060 | 0 | true | 2022-05-10T08:18:32.657Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Documenting functions built by a Proxy get trap<p>In <a href="https://github.com/draber/fancy-node/blob/main/src/index.js#L242" rel="nofollow noreferrer">htt... |
72,202,825 | Download dotenv job artifact via GitLab API<p>I'm trying to download dotenv artifact called <code>release.env</code> from the latest job related to branch <code>feature/tests-update</code> but API returns <code>404</code> error.</p>
<p>API docs: <a href="https://docs.gitlab.com/14.8/ee/api/job_artifacts.html#download-a... | <p>Unfortunately, <code>artifacts:reports:dotenv</code> artifacts are not exposed by the API. Only files in the artifacts archive (e.g. in <code>artifacts:paths:</code>) can be retrieved from this endpoint.</p>
<p>You are, however, able to <a href="https://docs.gitlab.com/ee/ci/pipelines/job_artifacts.html#download-job... | Download dotenv job artifact via GitLab API | gitlab|continuous-integration | 0 | 56 | 1 | 72,208,072 | 72,208,072 | 0 | true | 2022-05-11T14:27:12.373Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Download dotenv job artifact via GitLab API<p>I'm trying to download dotenv artifact called <code>release.env</code> from the latest job related to branch <c... |
72,207,990 | Labelling data in order to train a YOLOv5 model on a custom dataset<p>I used the source code (<a href="https://www.youtube.com/redirect?event=video_description&redir_token=QUFFLUhqbkJHQm1Ic2dQbzhSbUxEQnBENlBsNURhRVE1Z3xBQ3Jtc0tsT0lMZWxVRFZhNVprdUotaVBGWUo1SWk2Qk1SdlBCemVsaVRrUEF5dFAwaTFrQ04xWnQ0Qk9COVMydXp1dmVPakFP... | <p>this article explains labelmaps: <a href="https://blog.roboflow.com/label-map/" rel="nofollow noreferrer">https://blog.roboflow.com/label-map/</a></p>
<p>I would suggest creating a "data.yaml" file. Be sure to update the references to the folder paths for your "train" and "validation" s... | Labelling data in order to train a YOLOv5 model on a custom dataset | image|label|yolov5|roboflow | 0 | 529 | 1 | 72,208,202 | 72,208,202 | 0 | true | 2022-05-11T21:51:58.627Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Labelling data in order to train a YOLOv5 model on a custom dataset<p>I used the source code (<a href="https://www.youtube.com/redirect?event=video_descripti... |
72,208,161 | returning the value of an if statement within a PHP function<p>I'm trying to write a function that returns a random number for every new student registered, but each time the form is submitted the function returns a null value, and the DB does not accept null values, it ought to return something like this: DFA/SSS/22/1... | <p>Looks like the issue is that you return <code>$reg_no</code> but unless <code>$month == '3'</code> or <code>$month == '9'</code> it never gets set. Most likely you want:</p>
<pre><code>if ($month == '3') {
$intake += $increase_with;
} else if ($month == '9') {
$increase_with++;
$intake += $increase_with... | returning the value of an if statement within a PHP function | php|mysql|function|if-statement|random | 0 | 33 | 1 | 72,208,215 | 72,208,215 | 0 | true | 2022-05-11T22:16:06.450Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
returning the value of an if statement within a PHP function<p>I'm trying to write a function that returns a random number for every new student registered, ... |
72,184,865 | How to get PlayerGUI from a Server Script?<p>I am working on an inventory system and and now i need to make it save, but when trying to save it prints this in the output</p>
<p>PlayerGui is not a valid member of Player "Players.RidhoMBLR"</p>
<pre><code>local function save(player)
local invTable = {}
... | <p>While you are accessing the path to the PlayerGui correctly, it is probably not replicated to the server (ie, it's existence is only observable on the client in LocalScripts).</p>
<p>So you will likely need to use a LocalScript to pull all of the relevant information out of the UI, and communicate it up to the serve... | How to get PlayerGUI from a Server Script? | roblox | 0 | 618 | 2 | 72,208,232 | 72,208,232 | 0 | true | 2022-05-10T10:41:23.157Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to get PlayerGUI from a Server Script?<p>I am working on an inventory system and and now i need to make it save, but when trying to save it prints this i... |
72,208,103 | How to update a field of text whenever a button is pressed in flutter<p><strong>The Problem:</strong> I'm trying to get a venerable "gae" to update to a random variable from a list whenever a button is pressed. Unfortunately it keeps define gae as a local variable making it unable to work.
<strong>What I've T... | <p>The problem is the program cannot access to the variable</p>
<pre><code>Padding(
padding: const EdgeInsets.symmetric(vertical: 16.0),
child: ElevatedButton(
onPressed: () {
final _random = new Random();
// cannot access this variable
... | How to update a field of text whenever a button is pressed in flutter | flutter|flutter-text | 0 | 35 | 1 | 72,208,267 | 72,208,267 | 0 | true | 2022-05-11T22:06:57.937Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to update a field of text whenever a button is pressed in flutter<p><strong>The Problem:</strong> I'm trying to get a venerable "gae" to update... |
72,207,189 | NestJS Exception filter messes up error array if it comes from ValidationPipe<p>So I use the ValidationPipe to validate my DTOs in NestJS, like this:</p>
<pre class="lang-js prettyprint-override"><code>// auth.dto.ts
export class AuthDto {
@IsEmail()
@IsNotEmpty()
email: string;
}
</code></pre>
<p>Without the Exc... | <p>As <a href="https://stackoverflow.com/users/8613630/tobias-s">@tobias-s</a> commented, there's a workaround, which solved the problem:</p>
<blockquote>
<p>Try exception["response"]["message"]. This bypasses the private restriction</p>
</blockquote> | NestJS Exception filter messes up error array if it comes from ValidationPipe | node.js|typescript|nestjs|httpexception | 0 | 682 | 2 | 72,208,285 | 72,208,285 | 0 | true | 2022-05-11T20:21:14.317Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
NestJS Exception filter messes up error array if it comes from ValidationPipe<p>So I use the ValidationPipe to validate my DTOs in NestJS, like this:</p>
<pr... |
72,207,515 | Trying to sort two combined strings alphabetically without duplicates<p>Challenge: <strong>Take 2 strings s1 and s2 including only letters from a to z. Return a new sorted string, the longest possible, containing distinct letters - each taken only once - coming from s1 or s2.</strong></p>
<pre class="lang-py prettyprin... | <p>You have two options here. The first is the answer you want and the second is an alternative method</p>
<hr />
<p>To filter out duplicates, you can make a blank string, and then go through the returned string. For each character, if the character is already in the string, move onto the next otherwise add it</p>
<pre... | Trying to sort two combined strings alphabetically without duplicates | python|python-3.x|sorting|alphabetical-sort | 0 | 243 | 1 | 72,208,294 | 72,208,294 | 0 | true | 2022-05-11T20:56:30.443Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Trying to sort two combined strings alphabetically without duplicates<p>Challenge: <strong>Take 2 strings s1 and s2 including only letters from a to z. Retur... |
72,166,859 | Errors linking to tdh.lib<p>I'm trying to use functions from the Microsoft TDH library building with Visual Studio 2019. The project is using <code>WindowsApplicationForDrivers10.0</code> <em>Platform Toolset</em> and the program is very simple:</p>
<pre class="lang-cpp prettyprint-override"><code>#include <windows.... | <p>Finally found the Visual Studio settings:<a href="https://i.stack.imgur.com/KD0xf.png" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/KD0xf.png" alt="ApiValidator" /></a></p> | Errors linking to tdh.lib | c++|c|windows|visual-studio-2019|etw | 0 | 97 | 1 | 72,208,434 | 72,208,434 | 0 | true | 2022-05-09T04:00:14.120Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Errors linking to tdh.lib<p>I'm trying to use functions from the Microsoft TDH library building with Visual Studio 2019. The project is using <code>WindowsAp... |
72,177,582 | Drake Mathematical Program Tutorial<p>I am running Drake on Ubuntu 20.04 using WSL2.<br />
I use python3.8.10 and Drake1.2.0.<br />
I tried running the "Mathematical Program Tutorial" obtained from <a href="https://deepnote.com/workspace/Drake-0b3b2c53-a7ad-441b-80f8-bf8350752305/project/Tutorials-2b4fc509-ae... | <p>It turns out that the pip <code>drake == 1.2.0</code> version has a <a href="https://github.com/RobotLocomotion/drake/issues/17162" rel="nofollow noreferrer">bug in the IpoptSolver compilation</a>.</p>
<p>As a work-around, you can use <code>SnoptSolver</code> instead, or else use the <a href="https://drake.mit.edu/f... | Drake Mathematical Program Tutorial | drake | 0 | 128 | 3 | 72,208,465 | 72,208,465 | 0 | true | 2022-05-09T19:57:31.557Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Drake Mathematical Program Tutorial<p>I am running Drake on Ubuntu 20.04 using WSL2.<br />
I use python3.8.10 and Drake1.2.0.<br />
I tried running the "... |
72,194,403 | AttributeError: 'Tensor' object has no attribute 'numpy' while mapping a function through my dataset<p>I'm trying to map a function <code>process_image</code> to the dataset. This function calls another function, <code>get_label</code>. In <code>get_label</code>, I'm trying to retrieve the label's name from images.</p>... | <p>I solved it! I didn't understand exactly where the error was, I think the previous code mixed eager mode and graph mode, so I changed the code of <code>get_label</code> function and it worked!</p>
<pre><code>def get_lab(file_path):
parts = tf.strings.split(file_path, os.path.sep)[-1]
part=tf.strings.split(p... | AttributeError: 'Tensor' object has no attribute 'numpy' while mapping a function through my dataset | numpy|tensorflow|deep-learning|map-function | 0 | 528 | 2 | 72,208,469 | 72,208,469 | 0 | true | 2022-05-11T01:14:19.503Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
AttributeError: 'Tensor' object has no attribute 'numpy' while mapping a function through my dataset<p>I'm trying to map a function <code>process_image</code... |
72,201,875 | How do we proceed to the next script with previous script not generating an exit code in Gitlab CI<p>I have a situation where one of the script deploys the application on to a local host, but does not have any exit code after which my tests needs to run to access the application. Below is my yaml -</p>
<pre><code> t... | <p>Just like on your local system, running the server will <em>block</em> forever. You can't enter any more command in your terminal until the server stops.</p>
<p>To get around this in GitLab CI, you can background the server task to allow the rest of the script to continue. In bash, to background a command, end the c... | How do we proceed to the next script with previous script not generating an exit code in Gitlab CI | gitlab-ci|gitlab-ci.yml | 0 | 60 | 1 | 72,208,491 | 72,208,491 | 0 | true | 2022-05-11T13:24:18.780Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How do we proceed to the next script with previous script not generating an exit code in Gitlab CI<p>I have a situation where one of the script deploys the a... |
72,208,473 | Convert Require to Import<p>I am currently working on a Discord.js Bot in <a href="https://repl.it" rel="nofollow noreferrer">replit</a>. The example code I found, which I used to get started with the bot, begins with this line of code.<br><code>const { Client, Intents, Message } = require('discord.js'); const client =... | <p>you can try using package named bable, as it will compile your code down into supported one. you can read about it here <a href="https://github.com/babel/babel" rel="nofollow noreferrer">https://github.com/babel/babel</a></p> | Convert Require to Import | javascript|import|discord.js|require|chalk | 0 | 97 | 1 | 72,208,537 | 72,208,537 | 0 | true | 2022-05-11T23:02:21.797Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Convert Require to Import<p>I am currently working on a Discord.js Bot in <a href="https://repl.it" rel="nofollow noreferrer">replit</a>. The example code I ... |
72,207,488 | Bootstrap card content overflowing past background height<p>I am currently running into an issue with my HTML/CSS (Bootstrap 5.0) code. I am trying to implement a Pinterest style Masonry card gallery using the Bootstrap 5.0 grid system and the <a href="https://masonry.desandro.com/" rel="nofollow noreferrer">Masonry</a... | <p>To just focus on the masonry layout (you have a couple of other height issues) - the issue is actually being caused by the <code><img></code> element in each of your cards. Instead of using an <code><img></code> maybe consider using a <code><div></code> with a <code>background-image</code>. This co... | Bootstrap card content overflowing past background height | javascript|html|css|bootstrap-5 | 0 | 76 | 1 | 72,208,559 | 72,208,559 | 0 | true | 2022-05-11T20:54:09.873Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Bootstrap card content overflowing past background height<p>I am currently running into an issue with my HTML/CSS (Bootstrap 5.0) code. I am trying to implem... |
72,208,530 | Array Formula to find rows on another sheet dated within the last 7 days<p>I have rows of data on Sheet 1 ("Base Stats") with Col A containing the date the row of data was inserted. There is a header row spanning Col A to Col I. First row of data is Row 2 and so on.</p>
<p>I have a Sheet 2 ("Latest&quo... | <p>Delete everything from the "Latest" sheet (you don't need any of it, including your formulas in K, L, M).</p>
<p>Then place the following formula in A1:</p>
<p><code>=ArrayFormula({'Base Stats'!A1:I1; SORT(FILTER('Base Stats'!A2:I,'Base Stats'!A2:A>=TODAY()-7),1,0)})</code></p>
<p>This will produce all ... | Array Formula to find rows on another sheet dated within the last 7 days | arrays|google-sheets|formula | 0 | 16 | 1 | 72,208,654 | 72,208,654 | 0 | true | 2022-05-11T23:12:06.317Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Array Formula to find rows on another sheet dated within the last 7 days<p>I have rows of data on Sheet 1 ("Base Stats") with Col A containing the ... |
72,206,863 | How is my breadth first search algorithm finding the shortest path in my tutorial example below<p>I understand the basics of how a breadth-first search works. It utilizes a queue data structure to find adjacent vertices level by level.</p>
<p>My issue is in understanding how to find the shortest path between two vertic... | <p><code>this.edgeTo</code> is a simple array.</p>
<p>The BFS starts at the source vertex, and when it discovers a new vertex <code>i</code>, it sets <code>edgeTo[i]</code> to the <em>predecessor</em> vertex, which must necessarily be one step <em>closer</em> to the source.</p>
<p>In the <code>pathTo</code> function, t... | How is my breadth first search algorithm finding the shortest path in my tutorial example below | javascript|algorithm|data-structures | 0 | 113 | 1 | 72,208,689 | 72,208,689 | 0 | true | 2022-05-11T19:48:45.267Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How is my breadth first search algorithm finding the shortest path in my tutorial example below<p>I understand the basics of how a breadth-first search works... |
72,185,998 | get password client from access token passport laravel<p>i use passport in laravel and after user verification i want to generate a token for them with refresh token . for get refresh token i have to send curl request with <code>password</code> grant_type . after generate access token i want to get <code>Password Grant... | <p>For obtaining the <code>client_id</code> and <code>client_secret</code> for <code>Password Grant Client</code> you need to run the following command on your authorization server (OAuth server) as stated here <a href="https://laravel.com/docs/9.x/passport#creating-a-password-grant-client" rel="nofollow noreferrer">ht... | get password client from access token passport laravel | php|laravel | 0 | 223 | 1 | 72,208,778 | 72,208,778 | 0 | true | 2022-05-10T12:05:17.497Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
get password client from access token passport laravel<p>i use passport in laravel and after user verification i want to generate a token for them with refre... |
72,203,579 | Reduce storage in cosmos db<p>I just realized that some of the tables which I moved from parquet to cosmos db, have pretty big size, as obviously there is not the same level of compression like in parquet. That is obviously resulting in big cost. Eventually RUs don't cost me much, but storage is a bit high. Any good re... | <p>Cosmos DB is not designed to be a cold store for massive amounts of data that isn't actively queried. If you have huge amounts of data that is infrequently queried, one suggestion would be to enable Synapse Link and let it write that data from Cosmos DB into analytical storage on a remote blob store in parquet forma... | Reduce storage in cosmos db | azure|azure-cosmosdb | 0 | 188 | 2 | 72,208,784 | 72,208,784 | 0 | true | 2022-05-11T15:18:42.343Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Reduce storage in cosmos db<p>I just realized that some of the tables which I moved from parquet to cosmos db, have pretty big size, as obviously there is no... |
72,193,435 | terraform - how to make aws_subnet resource take next available cidr_block?<p>I am using this code:</p>
<pre><code>resource "aws_subnet" "subnet" {
vpc_id = var.vpc_id
cidr_block = var.subnet_cidr_block
availability_zone = var.availability_zone
}
</code></pre>
<p>And in varia... | <p>Terraform can only work with what the underlying AWS API provides, and as far as I know there is no mechanism in EC2 for <em>explicitly</em> tracking allocations of subnets in a way that allows you to request to be assigned a new one without deciding ahead of time what address it will have. If the EC2 API had such a... | terraform - how to make aws_subnet resource take next available cidr_block? | terraform|terraform-provider-aws | 0 | 272 | 1 | 72,208,846 | 72,208,846 | 0 | true | 2022-05-10T22:10:42.887Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
terraform - how to make aws_subnet resource take next available cidr_block?<p>I am using this code:</p>
<pre><code>resource "aws_subnet" "subn... |
72,208,828 | Mule4 error handler - Enable Notifications and Log Exception<p>This is more a generic question about the usage of this feature , so please excuse the absence of code.</p>
<pre><code><on-error-continue enableNotifications="true" logException="true" doc:name="OnErrorContinue" />
</code... | <p>Enable notifications is to send an internal <a href="https://docs.mulesoft.com/mule-runtime/4.3/mule-server-notifications" rel="nofollow noreferrer">Mule notification</a>, unrelated to logging.</p>
<p>Only the logException attribute activates sending the exception in the log.</p> | Mule4 error handler - Enable Notifications and Log Exception | mule|mulesoft|mule4 | 0 | 87 | 1 | 72,208,916 | 72,208,916 | 0 | true | 2022-05-12T00:09:16.970Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Mule4 error handler - Enable Notifications and Log Exception<p>This is more a generic question about the usage of this feature , so please excuse the absence... |
72,208,678 | Is there a way to combine totals and frequencies across rows and columns in R<p>So I have a df with people putting down other people they've interacted with in covid time. And they can have multiple types of people (e.g. "colleague/s", "laborer/s", "Spouse") and then next to that have how ... | <p>There maybe a better to do this, below is my approach</p>
<pre><code>df<- data.frame(contact1 = c('spouse', 'children', 'parents'),
multiple1 = c(0,2,2), contact2 = c('children', 'aunt', 'children'),
multiple2 = c(3, 0, 4), contact3 = c('neighbor','colleagues','colleagues'),
multiple3 ... | Is there a way to combine totals and frequencies across rows and columns in R | r | 0 | 29 | 1 | 72,209,014 | 72,209,014 | 0 | true | 2022-05-11T23:42:29.540Z | 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 combine totals and frequencies across rows and columns in R<p>So I have a df with people putting down other people they've interacted with ... |
72,166,739 | How to create a single-sign-on Identity provider server in ASP.NET MVC?<p>I am quite new to SSO and SAML. We have an ASP.NET MVC server. We need to make it act as a SSO <strong>identity provider</strong>, which accepts a <strong>SAML request</strong> from other <strong>service provider</strong> websites of ours, lets u... | <p>I found the answer.</p>
<p>This document answers all the questions I listed, and the following supplier, <a href="http://www.componentspace.com" rel="nofollow noreferrer">www.componentspace.com</a>, is a well-known and reputed SDK that can be used to create both a IdP and SP.</p> | How to create a single-sign-on Identity provider server in ASP.NET MVC? | single-sign-on|saml | 0 | 182 | 2 | 72,209,056 | 72,209,056 | 0 | true | 2022-05-09T03:37:40.150Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to create a single-sign-on Identity provider server in ASP.NET MVC?<p>I am quite new to SSO and SAML. We have an ASP.NET MVC server. We need to make it a... |
72,166,241 | Can SAML response contain custom data?<p>We have multiple websites that share the same customer base but doing different kind of business. We already have a server that acts as a <strong>centralized identity service</strong> - it manages <strong>customers</strong>, their <strong>businesses</strong> and customer's <stro... | <p>This document answers the question I asked:</p>
<p><a href="http://docs.oasis-open.org/security/saml/Post2.0/sstc-saml-tech-overview-2.0.html" rel="nofollow noreferrer">http://docs.oasis-open.org/security/saml/Post2.0/sstc-saml-tech-overview-2.0.html</a></p> | Can SAML response contain custom data? | single-sign-on | 0 | 25 | 1 | 72,209,074 | 72,209,074 | 0 | true | 2022-05-09T01:44:03.357Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Can SAML response contain custom data?<p>We have multiple websites that share the same customer base but doing different kind of business. We already have a ... |
72,206,656 | How to read environment variables in env section of github action workflow<p>I'm trying to set a env variable based on another env variable in a github workflow. I've tried a couple of syntax options but none seem to work</p>
<pre><code>on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
wor... | <blockquote>
<p>Is this doable?</p>
</blockquote>
<p>It does not seem like a supported behaviour at the moment.</p>
<p>The docs on <a href="https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#env" rel="nofollow noreferrer"><code>env</code></a> mentions that</p>
<blockquote>
<p>variable... | How to read environment variables in env section of github action workflow | environment-variables|github-actions | 0 | 813 | 1 | 72,209,113 | 72,209,113 | 0 | true | 2022-05-11T19:30:45.317Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to read environment variables in env section of github action workflow<p>I'm trying to set a env variable based on another env variable in a github workf... |
72,200,080 | How can I detect focus on child view inside a Tabbed Page in Xamarin.Forms?<p>I have a TabbedPage, which includes 3 pages (A,B,C). I need to detect (using some override method) when a page is active/selected from tabbed control. I tried some override methods such us OnAppearing with no result, because during debugging ... | <p>Just like
ToolmakerSteve sayed, the tabbedpage has the CurrentPageChanged event, so you can override the <code>OnCurrentPageChanged()</code> method of the TabbedPage. Such as:</p>
<pre><code>public partial class TabbedPage1 : TabbedPage
{
public TabbedPage1()
{
InitializeComponent();
}
... | How can I detect focus on child view inside a Tabbed Page in Xamarin.Forms? | xamarin.forms|tabbedpage | 0 | 68 | 1 | 72,209,120 | 72,209,120 | 0 | true | 2022-05-11T11:16:50.343Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How can I detect focus on child view inside a Tabbed Page in Xamarin.Forms?<p>I have a TabbedPage, which includes 3 pages (A,B,C). I need to detect (using so... |
72,208,525 | why may image is not darken? HTML CSS<p>I'm trying to darken my image by applying black colour with an opacity of 0.7 on top of my image using <code>:after</code> in CSS. However, it doesn't seem to be working for me? any advice/suggestion for it -> this image will be my background for the main page of my website</p... | <p>you can save the image link in css</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>.home {
background: rgba(0,0,0,0.7)url("https://images.unsplash.com/photo-1526675849... | why may image is not darken? HTML CSS | html|css | 0 | 44 | 3 | 72,209,173 | 72,209,173 | 0 | true | 2022-05-11T23:11:12.420Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
why may image is not darken? HTML CSS<p>I'm trying to darken my image by applying black colour with an opacity of 0.7 on top of my image using <code>:after</... |
72,196,945 | How does faceeffect decide where to attach the 3dmesh? e.g attach the axis to the nose<p>Looking into below Mediapipe's faceeefect module's graph definition</p>
<pre><code> node_options: {
[type.googleapis.com/mediapipe.SwitchContainerOptions] {
contained_node: {
calculator: "FaceGeometryEffectRendererCalcu... | <p>By digging into the document and paper I get to understand that the estimated face geometry is aligned with the canonical face model. You can refer the pager <a href="https://arxiv.org/pdf/1907.06724.pdf" rel="nofollow noreferrer">https://arxiv.org/pdf/1907.06724.pdf</a> and the explanation <a href="https://develope... | How does faceeffect decide where to attach the 3dmesh? e.g attach the axis to the nose | mediapipe | 0 | 26 | 1 | 72,209,218 | 72,209,218 | 0 | true | 2022-05-11T07:21:00.750Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How does faceeffect decide where to attach the 3dmesh? e.g attach the axis to the nose<p>Looking into below Mediapipe's faceeefect module's graph definition<... |
72,206,978 | How to switch between 'scenes' using switch statement<p>so I'm creating an interactive story, and I want to switch between scenes by clicking buttons (like a standard old pokemon game except there isn't movement, just clicking).</p>
<p>I should probably use a switch statement right? But I don't know how to implement th... | <p>The source code below shows one possible approach to your question. It does not rely on ‘switch’ but instead uses a custom control with up and down buttons similar to a Java stepper. The stepper control value corresponds with images in the scenes array and the background() is set accordingly. A separate button cl... | How to switch between 'scenes' using switch statement | switch-statement|processing | 0 | 48 | 1 | 72,209,227 | 72,209,227 | 0 | true | 2022-05-11T20:00:21.310Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to switch between 'scenes' using switch statement<p>so I'm creating an interactive story, and I want to switch between scenes by clicking buttons (like a... |
72,209,090 | limit results based upon 1 column<p>I'm a SQL newbie, any help is greatly appreciated! The id is the ID of a person that is in a program, and STI is the step ID that correlates to the ID of the step they are currently on or have completed. What I'm having a hard time figuring out is how to limit the results to only sh... | <p>From my understanding of your question. You only care about unique id. So you could try to use the MAX() function to get the max step for each id.</p>
<pre><code>select
distinct(s.PersonAliasId) AS id,
max(s.StepTypeId) AS sti
FROM Step s
GROUP BY s.PersonAliasId
ORDER BY s.PersonAliasId
</code></pre>
<p><a href="h... | limit results based upon 1 column | tsql | 0 | 25 | 1 | 72,209,315 | 72,209,315 | 0 | true | 2022-05-12T01:15:32.587Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
limit results based upon 1 column<p>I'm a SQL newbie, any help is greatly appreciated! The id is the ID of a person that is in a program, and STI is the ste... |
72,209,236 | Comments DateTimeField() Django<p>I'm trying to build a comments section in my website, and I'm pretty much done, but I'm trying to display the time that it was posted, but it keeps displaying the wrong time.</p>
<p>This is my code in my models.py Posts class:</p>
<pre><code>date = models.DateTimeField(default=timezone... | <p>check your "settings.py" and rewrite TIME_ZONE</p>
<p><a href="https://stackoverflow.com/questions/29311354/how-to-set-the-timezone-in-django">How to set the timezone in Django?</a></p>
<p><a href="https://en.wikipedia.org/wiki/List_of_tz_database_time_zones" rel="nofollow noreferrer">https://en.wikipedia.... | Comments DateTimeField() Django | python|django|datetime|django-models|web-site-project | 0 | 33 | 1 | 72,209,345 | 72,209,345 | 0 | true | 2022-05-12T01:43:30.490Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Comments DateTimeField() Django<p>I'm trying to build a comments section in my website, and I'm pretty much done, but I'm trying to display the time that it ... |
72,180,011 | How to display data by current month and display no data message if data not exists<p>I want to show data by current month and show 'no data to display' message if no data exists on current month. I managed to show all data ascending by date, but this time I only want it to display the data by current month. Oh, I'm u... | <p>I think i already solved this by using if else condition, and then using isEmpty() to check if the collection is empty or not, if it's not empty, then run the foreach. Like this :</p>
<pre><code> if($achieveDaily->isEmpty()){
$labels1[] = [];
$plan1[] = [];
$actual1[] = [];
}el... | How to display data by current month and display no data message if data not exists | laravel|chart.js | 0 | 224 | 3 | 72,209,367 | 72,209,367 | 0 | true | 2022-05-10T02:12:42.723Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to display data by current month and display no data message if data not exists<p>I want to show data by current month and show 'no data to display' mes... |
72,209,414 | Export specific numbers from Sheets<p><a href="https://i.stack.imgur.com/wkNUE.png" rel="nofollow noreferrer">So i have this column of numbers</a> and i wish to extract only the numbers before the "HE" text <a href="https://i.stack.imgur.com/uuzbq.png" rel="nofollow noreferrer">for example, this is what i nee... | <p><code>REGEXEXTRACT()</code> is suitable in this case.</p>
<pre><code>=REGEXEXTRACT(A1,"(.+) HE")
</code></pre>
<p>Few good tips <a href="https://productivityspot.com/regexextract-google-sheets/" rel="nofollow noreferrer">here</a> about <code>REGEXEXTRACT()</code>.</p>
<p>For array approach use below formul... | Export specific numbers from Sheets | google-sheets|google-sheets-formula|google-sheets-api | 0 | 20 | 1 | 72,209,517 | 72,209,517 | 0 | true | 2022-05-12T02:15:01.660Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Export specific numbers from Sheets<p><a href="https://i.stack.imgur.com/wkNUE.png" rel="nofollow noreferrer">So i have this column of numbers</a> and i wish... |
72,207,267 | How can I set a default value if a user doesn't send an input in Thymeleaf<p>Right now - I have a input field on my html that Thymeleaf sticks a '0' in when the page loads. If for some reason that '0' is erased and the form is submitted - I get a NumberFormatException.</p>
<p>Is there a way I can automatically make it ... | <p>There are a couple ways to handle this:</p>
<ol>
<li><p>Turn your variable <code>numConcealed</code> into an <code>Long</code> instead of a <code>long</code>. Deal with a null value when they erase the field.</p>
</li>
<li><p>Use JavaScript, capture the submit just change the field value back to 0 if they submit a ... | How can I set a default value if a user doesn't send an input in Thymeleaf | spring-boot|thymeleaf|spring-thymeleaf | 0 | 394 | 1 | 72,209,546 | 72,209,546 | 0 | true | 2022-05-11T20:29:57.753Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How can I set a default value if a user doesn't send an input in Thymeleaf<p>Right now - I have a input field on my html that Thymeleaf sticks a '0' in when ... |
72,204,397 | Visual C++ 6.0 - Possible Conversion Loss of Data (Warning C4244)<p>I am using quite an old compiler, and I believe the compiler has made a bit of a mistake in its warning diagnosis.</p>
<pre><code> typedef unsigned char uint8_t; // 8-bit byte
typedef unsigned int uint32_t; // 32-bit word (chan... | <p>There's nothing wrong with the compiler in this case</p>
<pre><code>ctx->data[63] = ctx->bit_len; // LINE 156 IS HERE!
ctx->data[62] = ctx->bit_len >> 8;
ctx->data[61] = ctx->bit_len >> 16;
ctx->data[60] = ctx->bit_len >> 24;
ctx->data[59] = ctx->bit_len >> 32;
c... | Visual C++ 6.0 - Possible Conversion Loss of Data (Warning C4244) | c++|compiler-warnings | 0 | 77 | 2 | 72,209,557 | 72,209,557 | 0 | true | 2022-05-11T16:17:32.027Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Visual C++ 6.0 - Possible Conversion Loss of Data (Warning C4244)<p>I am using quite an old compiler, and I believe the compiler has made a bit of a mistake ... |
72,208,838 | Pass matrix of unknown dimensions to C++ function<p>The following code compiles with gcc but not g++. Is it possible to write a function with a matrix argument of arbitrary dimensions in C++?</p>
<pre><code>void print_mat(const int nr, const int nc, const float x[nr][nc]);
#include <stdio.h>
void print_mat(const... | <p>To build on <a href="https://stackoverflow.com/a/72209248/2706707">Peter’s answer</a>, you can use the single-dimension variant with proper indexing to do the work. But you can make <em>invoking</em> the function much nicer in C++:</p>
<pre><code>void print_mat(const int nr, const int nc, const float *x)
{
...
}
... | Pass matrix of unknown dimensions to C++ function | c++|c|multidimensional-array | 0 | 104 | 2 | 72,209,648 | 72,209,648 | 0 | true | 2022-05-12T00:10:54.827Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Pass matrix of unknown dimensions to C++ function<p>The following code compiles with gcc but not g++. Is it possible to write a function with a matrix argume... |
72,209,009 | Npc not moving to waypoints in order?<p>Ive been trying to move an npc to a waypoint in order, it worked for a bit but then it starts moving out of order and is starting to act weird</p>
<p>Waypoints:
<a href="https://i.stack.imgur.com/ehuNT.png" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/ehuNT.png" ... | <p>Unintuitively, the order of the children is not determined by alphabetical order. If you look at the docs for <a href="https://developer.roblox.com/en-us/api-reference/function/Instance/GetChildren" rel="nofollow noreferrer">Instance:GetGhildren()</a>, you'll see this note :</p>
<blockquote>
<p>The children are sort... | Npc not moving to waypoints in order? | lua|roblox | 0 | 38 | 1 | 72,209,679 | 72,209,679 | 0 | true | 2022-05-12T00:57:31.580Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Npc not moving to waypoints in order?<p>Ive been trying to move an npc to a waypoint in order, it worked for a bit but then it starts moving out of order and... |
72,209,605 | How do I get a variable inside of an "if" statement to be a global variable?<p>I'm new to Python, and I need to get the new DataFrame with the appended values (df_ap) after the condition is met, is this possible or should I try a completely new approach.</p>
<p>This is my current code:</p>
<pre><code>df = pd.DataFrame(... | <p>First, in order to make your condition working, you need to make sure your <code>input</code> has been converted into <code>int</code> before the <code>if</code> condition.
Since you using <code>df_ap</code> outside of the <code>if</code> condition, you have to define it outside the <code>if</code> as well, which is... | How do I get a variable inside of an "if" statement to be a global variable? | python|pandas|dataframe | 0 | 36 | 3 | 72,209,685 | 72,209,685 | 0 | true | 2022-05-12T02:51:32.417Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How do I get a variable inside of an "if" statement to be a global variable?<p>I'm new to Python, and I need to get the new DataFrame with the appended value... |
72,181,586 | Use X-Mailgun-Variables with html template field in Mailgun API<p>I'm using the Mailgun API to send an email. I'm providing my own HTML as the template in the request as opposed to using the UI or API to send the template.</p>
<p>I'd like to inject my variables in the email but the variables are not being passed on. ... | <p>Here's a solution provided from the support at Mailgun:</p>
<pre class="lang-py prettyprint-override"><code>return requests.post(
f"https://api.mailgun.net/v3/{MY_DOMAIN}/messages",
auth=("api", API_KEY),
data={"from": f"Excited User <admin@{MY_DOMAIN}>... | Use X-Mailgun-Variables with html template field in Mailgun API | python|mailgun | 0 | 171 | 1 | 72,209,725 | 72,209,725 | 0 | true | 2022-05-10T06:25:30.083Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Use X-Mailgun-Variables with html template field in Mailgun API<p>I'm using the Mailgun API to send an email. I'm providing my own HTML as the template in t... |
72,209,677 | How can I put 12 buttons and 12 containers into arrays in Javascript?<p>If I can organize all the 'song(n)' containers && the 'playsong(n)' buttons into 2 arrays, I could put 2 'forEach' method on each array and save hundreds of lines of code. Is this possible in Javascript?</p>
<pre><code>// 12 buttons
let pl... | <p>Use an array (or NodeList) for the buttons and containers instead, and use the index being iterated over to identify which button and container needs to be toggled. Give each of the buttons and containers a class in common, like <code>play-button</code> and <code>container</code>.</p>
<p>Instead of separate <code>.i... | How can I put 12 buttons and 12 containers into arrays in Javascript? | javascript|html | 0 | 34 | 1 | 72,209,741 | 72,209,741 | 0 | true | 2022-05-12T03:02:57.093Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How can I put 12 buttons and 12 containers into arrays in Javascript?<p>If I can organize all the 'song(n)' containers && the 'playsong(n)' buttons i... |
72,196,241 | Don't show a notification from firebase in android studio<p>This is the code in firebase functions:</p>
<pre><code>exports.androidPushNotification = functions.database
.ref("/chat/{pushId}")
.onCreate((snapshot, context) => {
admin.messaging().sendToTopic("notification", {
data: {
... | <p>If you're sending to a topic, there is no way to exclude one subscriber from receiving the message.</p>
<p>What you <em>can</em> do however is send a <strong>data only</strong> message and handle that in code. If you include a <code>notification</code> node however (as you do), the system will display that notificat... | Don't show a notification from firebase in android studio | android|kotlin|google-cloud-functions|firebase-cloud-messaging | 0 | 117 | 1 | 72,209,775 | 72,209,775 | 0 | true | 2022-05-11T06:19:22.013Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Don't show a notification from firebase in android studio<p>This is the code in firebase functions:</p>
<pre><code>exports.androidPushNotification = function... |
72,158,632 | Add members to F5(BigIP) pool via CURL<p>I am trying to add a member to F5 using the below CURLs. Both of them fail with the error copied below</p>
<pre><code>curl -u<username>:<password> -sk -XPOST -H "Content-type: application/json" -d '{"state": "present", "name": ... | <p><em>To list node & pool member info</em></p>
<pre><code>curl -snkw"\n" -H "Content-Type: application/json" -X GET https://<IP_ADDR>/mgmt/tm/ltm/pool/~Common~<pool_name>/members
curl -snkw"\n" -H "Content-Type: application/json" -X GET https://<IP_ADDR>/mg... | Add members to F5(BigIP) pool via CURL | curl|f5|big-ip | 0 | 127 | 2 | 72,209,799 | 72,209,799 | 0 | true | 2022-05-08T06:27:24.037Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Add members to F5(BigIP) pool via CURL<p>I am trying to add a member to F5 using the below CURLs. Both of them fail with the error copied below</p>
<pre><cod... |
72,209,295 | Why is the password entered in the shard directories created in the distributed engine table directory?<p>I have set up 3 shards including local shards on the cluster as shown below.</p>
<pre><code><log>
<secret>users</secret>
<shard>
<replica>
<host>127... | <p>There is a setting for this</p>
<pre><code> --use_compact_format_in_distributed_parts_names arg
Changes format of directories names for distributed table insert parts.
</code></pre>
<p>and it's enabled by default</p>
<pre class="lang-sql prettyprint-override"><code>SELECT
name,
... | Why is the password entered in the shard directories created in the distributed engine table directory? | clickhouse | 0 | 39 | 1 | 72,209,842 | 72,209,842 | 0 | true | 2022-05-12T01:53:40.313Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Why is the password entered in the shard directories created in the distributed engine table directory?<p>I have set up 3 shards including local shards on th... |
72,195,709 | Cannot debug in VS 2022 by attaching to Chrome 64bit<p>I upgraded Chrome 32 to 64 bit under latest Windows 10, and now my VS2022 projects cannot debug using Chrome as my browser of choice. They run fine under Firefox (latest) and even MS Edge.</p>
<p>I get this <em>cannot attach</em> error:</p>
<p><a href="https://i.st... | <p>The Chrome Installer was running in the background and took a whopping 20-30 mins to complete, even though I could "run" Chrome as a normal browser. After a few reboots and clearing the caches, Chrome 64 bit started-up normally and I was able to attach VS processes to it.</p> | Cannot debug in VS 2022 by attaching to Chrome 64bit | visual-studio|google-chrome|debugging | 0 | 97 | 1 | 72,209,867 | 72,209,867 | 0 | true | 2022-05-11T05:09:16.063Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Cannot debug in VS 2022 by attaching to Chrome 64bit<p>I upgraded Chrome 32 to 64 bit under latest Windows 10, and now my VS2022 projects cannot debug using ... |
72,154,913 | Cannot load HTML code of image converted from base64 image<p>I have a HTML string (generated by Summernote) that contains base64 image tags.
I load the image elements, convert it to image blob, upload it, and get the image-url back.
Then, I set the src attribute of previous base64 image to new image-url.</p>
<p>When I ... | <p>Maybe the problem you're having is that you are uploading the image which is done asynchronously, and the console log is triggered before the uploading and fetching of the URL is finished. So you may try awaiting for the image to be uploaded completely using promises or the success callback if you're using jQuery.aj... | Cannot load HTML code of image converted from base64 image | javascript|html|base64|summernote|base64url | 0 | 189 | 1 | 72,209,897 | 72,209,897 | 0 | true | 2022-05-07T17:28:31.823Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Cannot load HTML code of image converted from base64 image<p>I have a HTML string (generated by Summernote) that contains base64 image tags.
I load the image... |
72,206,234 | crontab cannot run shell script with docker command?<p>I have a simple shell script to run a docker command below, which works just fine if I ran it manually. However it didn't work if I ran it by cron. I didn't see any logging in <code>/var/log/cron</code>..
And I tested cron by creating a simple script to touch a fil... | <p>Update the <code>crontab</code> content to:</p>
<pre><code>2 * * * * /bin/bash /home/ec2-user/start.sh >/dev/null 2>&1
</code></pre>
<p>And then, make sure that the <code>crontab</code>'s user has the permission to run this script.</p> | crontab cannot run shell script with docker command? | docker|shell|cron | 0 | 216 | 1 | 72,209,917 | 72,209,917 | 0 | true | 2022-05-11T18:54:42.210Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
crontab cannot run shell script with docker command?<p>I have a simple shell script to run a docker command below, which works just fine if I ran it manually... |
72,207,600 | Azure Synapse Pipeline Execution based on file copy in DataLake<p>I want to execute Azure Synapse Pipeline whenever a file is copied into a folder in data lake.</p>
<p>Can we do that and how can we achieve that?</p>
<p>Thanks,
Pavan.</p> | <p>You can trigger a pipeline (start pipeline execution) based on a file copied to datalake folder using storage event triggers. The storage event triggers can start the execution of pipeline based on a selected action.</p>
<p>You can follow the steps specified below to create a storage event trigger.</p>
<ul>
<li><p>A... | Azure Synapse Pipeline Execution based on file copy in DataLake | azure|pipeline|azure-data-factory-2|azure-data-lake|azure-synapse | 0 | 226 | 1 | 72,209,986 | 72,209,986 | 0 | true | 2022-05-11T21:06:55.290Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Azure Synapse Pipeline Execution based on file copy in DataLake<p>I want to execute Azure Synapse Pipeline whenever a file is copied into a folder in data la... |
72,131,006 | AVFAudio - Is it safe to perform file copy immediately after AVAudioRecorder.stop()<p>We start a voice recording via</p>
<pre><code>self.avAudioRecorder = try AVAudioRecorder(
url: self.recordingFileUrl,
settings: settings
)
self.avAudioRecorder.record()
</code></pre>
<p>At certain point, we will stop the reco... | <p>It seems safer to perform file saving in <a href="https://developer.apple.com/documentation/avfaudio/avaudiorecorderdelegate/1388688-audiorecorderdidfinishrecording" rel="nofollow noreferrer"><code>audioRecorderDidFinishRecording(_:successfully:)</code></a></p>
<p>Source: <a href="https://developer.apple.com/forums/... | AVFAudio - Is it safe to perform file copy immediately after AVAudioRecorder.stop() | ios|swift | 0 | 21 | 1 | 72,210,033 | 72,210,033 | 0 | true | 2022-05-05T16:59:15.110Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
AVFAudio - Is it safe to perform file copy immediately after AVAudioRecorder.stop()<p>We start a voice recording via</p>
<pre><code>self.avAudioRecorder = tr... |
72,209,045 | Laravel : Problem showing image from the storage folder<p>I'm having a problem viewing image fron the storage folder, here are the codes:</p>
<pre><code>->editColumn('image_path', function ($submission) {
$imgUrl = asset('storage' . str_replace('public', '', $submission->image_path));
... | <p>Laravel generate cache version of that storage link..</p>
<p>First step</p>
<p>Delete the storage folder created by storage link command inside a public folder on your root directory</p>
<p>Then execute these commands</p>
<pre><code>php artisan optimize :clear
</code></pre>
<p>Then again execute</p>
<pre><code>php ... | Laravel : Problem showing image from the storage folder | php|laravel|image|storage | 0 | 81 | 1 | 72,210,102 | 72,210,102 | 0 | true | 2022-05-12T01:05:30.513Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Laravel : Problem showing image from the storage folder<p>I'm having a problem viewing image fron the storage folder, here are the codes:</p>
<pre><code>->... |
72,203,210 | How to filter each index in a query with two indexes in Elastic?<p>I'm trying to make a query to fetch information on two different indexes in Elastic:</p>
<pre><code>GET _search
{
"query": {
"bool": {
"must" : [{
"bool" : {
"should" : [{
... | <p>You can add <code>bool</code> clause inside existing <code>should</code> like below:</p>
<pre class="lang-json prettyprint-override"><code>{
"query": {
"bool": {
"must": [
{
"bool": {
"should": [
{
... | How to filter each index in a query with two indexes in Elastic? | elasticsearch|elasticsearch-5|elasticsearch-aggregation | 0 | 64 | 2 | 72,210,173 | 72,210,173 | 0 | true | 2022-05-11T14:54:59.723Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to filter each index in a query with two indexes in Elastic?<p>I'm trying to make a query to fetch information on two different indexes in Elastic:</p>
<... |
72,145,781 | Hasura inherited role permission inconsistency<p>I am trying to define two roles in Hasura:</p>
<ul>
<li><code>role_1</code>: In <code>my_table</code>, can update: <code>column_A</code> and <code>column_B</code></li>
<li><code>role_2</code>: In <code>my_table</code>, can update: <code>column_C</code></li>
</ul>
<p>I wa... | <p><em>(Thanks to jmart on Hasura Discorf for the answer):</em></p>
<p>As far as I understand the feature, it's a cascade of checks, not a combination of checks.</p>
<p>So it looks to see if the user has permission to select columns ABC from the first role it has access to, and if not, checks if it has access via any o... | Hasura inherited role permission inconsistency | postgresql|graphql|hasura | 0 | 91 | 1 | 72,210,179 | 72,210,179 | 0 | true | 2022-05-06T18:12:57.400Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Hasura inherited role permission inconsistency<p>I am trying to define two roles in Hasura:</p>
<ul>
<li><code>role_1</code>: In <code>my_table</code>, can u... |
72,172,507 | Lighthouse mutations can't get big string or json<p>When i want to pass a big string like json data i got this error:
"error": "Unexpected token < in JSON at position 0"</p>
<p>Can people help me?</p>
<p><strong>My query:</strong></p>
<pre><code>mutation {
createReport(
input: {
name... | <p>I can resolve my problem!</p>
<p>My problem was with my playground.</p>
<p>I was using the suggested playground graphql and i understood my problem was with it.</p>
<p>If you have this problem use: <strong>Firecamp</strong> playground</p> | Lighthouse mutations can't get big string or json | json|laravel|graphql|lighthouse | 0 | 71 | 1 | 72,210,352 | 72,210,352 | 0 | true | 2022-05-09T13:07:09.333Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Lighthouse mutations can't get big string or json<p>When i want to pass a big string like json data i got this error:
"error": "Unexpected tok... |
72,195,204 | TensorFlow Lite Error in Release Build: java.lang.NoSuchMethodError: no non-static method "Lorg/tensorflow/lite/XnnpackDelegate;.<init>(JJ)V"<p>I am trying to make an Object Detection app based off the <a href="https://github.com/tensorflow/examples/tree/master/lite/examples/object_detection/android" rel="nofollow nore... | <p>In the example app, there is <a href="https://github.com/tensorflow/examples/blob/master/lite/examples/object_detection/android/lib_interpreter/src/main/java/org/tensorflow/lite/examples/detection/tflite/TFLiteObjectDetectionAPIModel.java#L139" rel="nofollow noreferrer">this line of code in TFLiteObjectDetectionAPIM... | TensorFlow Lite Error in Release Build: java.lang.NoSuchMethodError: no non-static method "Lorg/tensorflow/lite/XnnpackDelegate;.<init>(JJ)V" | android|tensorflow-lite|object-detection-api | 0 | 261 | 1 | 72,210,407 | 72,210,407 | 0 | true | 2022-05-11T03:51:15.027Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
TensorFlow Lite Error in Release Build: java.lang.NoSuchMethodError: no non-static method "Lorg/tensorflow/lite/XnnpackDelegate;.<init>(JJ)V"<p>I am trying t... |
72,182,437 | how to use Like any, like all in spark<p>I was trying to use like any and like all in this query in Spark/ Dremio SQL</p>
<pre><code>SELECT * FROM table_name where col_name LIKE ANY (CONCAT('%', 10, '%'), CONCAT('%', 20, '%'), CONCAT('%', 12, '%'))
SELECT * FROM table_name where col_name LIKE ALL (CONCAT('%', 10, '%'),... | <pre><code>SELECT * FROM table_name where col_name LIKE '%10%' AND col_name LIKE '%20%' AND col_name LIKE '%12%'
SELECT * FROM table_name where col_name LIKE '%10%' OR col_name LIKE '%20%' OR col_name LIKE '%12%'
</code></pre> | how to use Like any, like all in spark | apache-spark|apache-spark-sql|dremio | 0 | 89 | 1 | 72,210,423 | 72,210,423 | 0 | true | 2022-05-10T07:43:09.457Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
how to use Like any, like all in spark<p>I was trying to use like any and like all in this query in Spark/ Dremio SQL</p>
<pre><code>SELECT * FROM table_name... |
72,210,437 | Angular function shows updated value first time only<h2>html</h2>
<pre><code> <input type="file" [(ngModel)]="profile.myFile1" (change)="handleFileInfo($event.target.files, 'myFile1')">
<div *ngIf="filesExists('myFile1')">
<span>Size: {{getFileSize('m... | <p><code>getFileSize</code> only gets called the first time the HTML is rendered. It has no way to know if your <code>myFile1</code> has changed. I suggest having a <code>myFile1Size</code> variable that gets updated in your TS code whenever you upload a new file to hold the information about the size and bind that int... | Angular function shows updated value first time only | angular|angular10 | 0 | 22 | 1 | 72,210,489 | 72,210,489 | 0 | true | 2022-05-12T05:18:52.327Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Angular function shows updated value first time only<h2>html</h2>
<pre><code> <input type="file" [(ngModel)]="profile.myFile1" (change... |
72,210,450 | Is there any way to create or delete workspaces in AML studio using powershell?<p>I am working on a prediction model and am about to use the azure machine learning studio resources. The main operation is to create a workspace on azure ML studio through Powershell. I would like to operate my workspace through the comman... | <p>According to the requirements, there is no procedure developed to create/delete workspaces through PowerShell in machine learning studio. For reference of creation of workspaces, you can check the below link and the point to be noted is we can create/delete workspaces using <em><strong>Az</strong></em></p>
<p>Here i... | Is there any way to create or delete workspaces in AML studio using powershell? | azure|powershell|azure-machine-learning-studio | 0 | 104 | 1 | 72,210,518 | 72,210,518 | 0 | true | 2022-05-12T05:21:34.457Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Is there any way to create or delete workspaces in AML studio using powershell?<p>I am working on a prediction model and am about to use the azure machine le... |
72,210,480 | I need help making a program that will take random values of a dictionary and put them in another<p>This is meant for quiz I am trying to program in python. I have no ideas on how to proceed with this part of my program, since I'm fairly new to programming, but essentially I'm trying to set the key values of dico_q_ran... | <p>There are few problems here. Firstly, <code>dico_q_ran</code> is defined as a set, not a dict, so <code>dico_q_alea[i]</code> assignment is not possible. If you want it to be a dict, just init it empty as <code>dico_q_ran = {}</code>. I'd consider using lists instead, though.</p>
<p>Secondly, I'd suggest using lists... | I need help making a program that will take random values of a dictionary and put them in another | python|dictionary | 0 | 23 | 1 | 72,210,548 | 72,210,548 | 0 | true | 2022-05-12T05:25:44.573Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
I need help making a program that will take random values of a dictionary and put them in another<p>This is meant for quiz I am trying to program in python. ... |
72,210,552 | Unable to download csv file from iShares website<p>all by using the code below (link checked, it is correct) I get an HTML file as a result instead of .csv if I were to use a browser like Chrome.</p>
<pre><code>import urllib.request
urllib.request.urlretrieve('https://www.ishares.com/us/products/239726/ishares-core-sp-... | <p>THe problem is you have not been careful about the spelling. You have <code>filename</code>, <code>filetype</code> and <code>datatype</code>, whereas the site requires <code>fileName</code>, <code>fileType</code>, and <code>dataType</code>. The capitalization must match.</p> | Unable to download csv file from iShares website | python|csv|download | 0 | 63 | 1 | 72,210,579 | 72,210,579 | 0 | true | 2022-05-12T05:35:53.813Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Unable to download csv file from iShares website<p>all by using the code below (link checked, it is correct) I get an HTML file as a result instead of .csv i... |
72,180,931 | Add and remove required attribute based on whether it is visible or hidden<p>I have looked at this post <a href="https://stackoverflow.com/questions/35943964/add-required-attribute-when-fields-are-visible">Add required attribute when fields are visible</a> however I'm not using a yes/no check.</p>
<p>I'm wanting to rem... | <p>I believe this is what you want.</p>
<pre><code>$('#Additional-Attendees').on('change', function() {
var v = $(this).val() == "No" ? 0 : +$(this).val();
var after = $(".additional-attendees:eq(" + v + ")").nextAll(".additional-attendees").addBack();
var before = $("... | Add and remove required attribute based on whether it is visible or hidden | jquery|attributes|show-hide | 0 | 204 | 2 | 72,210,595 | 72,210,595 | 0 | true | 2022-05-10T04:57:33.960Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Add and remove required attribute based on whether it is visible or hidden<p>I have looked at this post <a href="https://stackoverflow.com/questions/35943964... |
72,210,274 | Page Pre loader not removing<p>Can someone tell me why the pre loader div doesn't disappear after the page is loaded and specified added time. It used to work, now it doesn't on a new site... I think I may have missed something when using it on the new site.</p>
<p>it just shows the div and stays on that screen forever... | <p>Try with below code. i jsut save html string with jquery object in loader variable. and now its not depend on id.</p>
<pre><code>var loader = $('<div id="loading-container"><div id="loading-inner"><p id="percent">100</p><div id="bar"><div id=&q... | Page Pre loader not removing | javascript|jquery | 0 | 37 | 1 | 72,210,625 | 72,210,625 | 0 | true | 2022-05-12T04:53:03.967Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Page Pre loader not removing<p>Can someone tell me why the pre loader div doesn't disappear after the page is loaded and specified added time. It used to wor... |
72,197,548 | Consuming a WCF Service with custom UserNamePasswordValidator<p>I have a WCF Service running on my windows 2019 server on IIS. The service is to be consumed by a .Net Core library being used within a xamarin enviornment. Everything was working fine, until I wanted to add my custom UserNamePasswordValidator in order to ... | <p>Okay I figured it out myself.</p>
<p>Xamarin and .Net Standard do not support wsHttpEndpoints. I had to switch to a basicHttpsBinding, Xamarin does not support security mode TransportWithMessageCredential, so I had to stick with Transport only.</p>
<p>In the end my Web.config section looks like this:</p>
<pre><code>... | Consuming a WCF Service with custom UserNamePasswordValidator | asp.net|wcf|.net-core|https | 0 | 62 | 1 | 72,210,670 | 72,210,670 | 0 | true | 2022-05-11T08:09:28.137Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Consuming a WCF Service with custom UserNamePasswordValidator<p>I have a WCF Service running on my windows 2019 server on IIS. The service is to be consumed ... |
72,210,652 | Basic variable declaration and memory in Javascript/Vue<p>I have a very basic question about declaring variable in Javascript/Vue.</p>
<pre><code>function myFunction () {
let myVars = this.myVars;
forEach(myVars, (var) => {
// Do something with var
}
}
</code></pre>
<p>VS</p>
<pre><code>function myFunctio... | <p>There's no impact on performance here.
When the <code>myFunction</code> is called, <code>myVars</code> is registered in the function scope.
Then you make <code>myVars</code> refer to <code>this.myVars</code>, if the value in <code>this.myVars</code> is an array or object, then there is no deep copy operation here. B... | Basic variable declaration and memory in Javascript/Vue | javascript|vue.js|memory|vuejs2 | 0 | 36 | 1 | 72,210,696 | 72,210,696 | 0 | true | 2022-05-12T05:49:53.750Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Basic variable declaration and memory in Javascript/Vue<p>I have a very basic question about declaring variable in Javascript/Vue.</p>
<pre><code>function my... |
72,208,633 | Elasticsearch ILM - ELK<p>I am trying to create an index template with two patterns, my questions are</p>
<ul>
<li>Can I add two patterns in the template?</li>
<li>Or the only way is to create an index template per pattern?</li>
</ul>
<p>My policy</p>
<pre><code>PUT _ilm/policy/my_first_policy
{
"policy": {... | <p>the issue here is <code>index.lifecycle.rollover_alias</code> can only be attached to a single index, it's the write index for that policy</p>
<p>ie - you cannot have two indices attached to an alias that are both write indices</p> | Elasticsearch ILM - ELK | elasticsearch|elastic-stack | 0 | 113 | 1 | 72,210,722 | 72,210,722 | 0 | true | 2022-05-11T23:34:16.833Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Elasticsearch ILM - ELK<p>I am trying to create an index template with two patterns, my questions are</p>
<ul>
<li>Can I add two patterns in the template?</l... |
72,202,852 | 0 Byte file when uploading an Excel document to SharePoint online using the Microsoft Graph API<p>I am attempting to upload an Excel document created using the NPOI library to a SharePoint Online site using the Microsoft Graph API.</p>
<p>When I write the Excel file to my local machines user directory, I'm able to open... | <p>It looks like that you need to set <code>memoryStream.Position</code> to 0.</p>
<p>When you call <code>workbook.Write(memoryStream, true)</code> then the current position within the stream is same as the length of the stream and therefore zero bytes are uploaded.</p>
<pre><code>await using (var memoryStream = new Me... | 0 Byte file when uploading an Excel document to SharePoint online using the Microsoft Graph API | c#|sharepoint|microsoft-graph-api|microsoft-graph-sdks|npoi | 0 | 215 | 1 | 72,210,743 | 72,210,743 | 0 | true | 2022-05-11T14:29:34.723Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
0 Byte file when uploading an Excel document to SharePoint online using the Microsoft Graph API<p>I am attempting to upload an Excel document created using t... |
72,210,166 | How to make a color changing sky in Racket?<p>I have a variable that controls the number of blue in (color R, G, B). Now I am confused about how to use that variable in (color R, G, B). Also, I am totally new to Racket. I know I can combine these functions together, but I don't know how :( The purpose of this code is t... | <p>It's not very clear what do you mean with "color changing", but you can take some inspiration from following code. See also <a href="https://stackoverflow.com/questions/72205143/racket-beginner-student-language-confusion">this similar question</a>, where I explain how <a href="https://docs.racket-lang.org/... | How to make a color changing sky in Racket? | racket | 0 | 62 | 1 | 72,210,775 | 72,210,775 | 0 | true | 2022-05-12T04:32:44.420Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to make a color changing sky in Racket?<p>I have a variable that controls the number of blue in (color R, G, B). Now I am confused about how to use that ... |
72,197,393 | Sanic how to locate to static file<p>I want to locate to static file, because there are many relative path in the html, like:</p>
<pre><code><a href="1.html"> page1 </a>
<a href="2.html"> page2 </a>
....
</code></pre>
<p>I can use <code>app.send_static_file()</code> in <em><s... | <p>It is a little unclear to me <em>exactly</em> what you are looking to do, so I will provide a couple of examples that might be what you are looking for. Please let me know if this does or does not solve the problem and I can amend the answer.</p>
<hr />
<h2>Static files</h2>
<p>If you have a single static file (this... | Sanic how to locate to static file | python|jinja2|sanic | 0 | 284 | 1 | 72,210,817 | 72,210,817 | 0 | true | 2022-05-11T07:57:58.807Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Sanic how to locate to static file<p>I want to locate to static file, because there are many relative path in the html, like:</p>
<pre><code><a href="... |
72,210,411 | Browser window callback on iOS<p>I would like to pass data from an iOS browser window back to the app. What would be the mechanism for doing so? As in, the user would click "Submit" on an HTML button in the browser, and there would be some data passed from the browser window back to the app.</p> | <p>This is typically done using JavaScript.</p>
<p><a href="https://medium.com/john-lewis-software-engineering/ios-wkwebview-communication-using-javascript-and-swift-ee077e0127eb" rel="nofollow noreferrer">Here's an article describing the process of linking JS and Swift.</a></p> | Browser window callback on iOS | ios|callback|mobile-safari | 0 | 41 | 1 | 72,210,883 | 72,210,883 | 0 | true | 2022-05-12T05:16:18.640Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Browser window callback on iOS<p>I would like to pass data from an iOS browser window back to the app. What would be the mechanism for doing so? As in, the... |
72,195,316 | How to remove key value from map when keys are store in list in scala<p>I have list of keys and map following:</p>
<blockquote>
<p>val keys = List("key1", "key2", "key5")</p>
<p>Map("key1" -> 1, "key2" -> 2, "key3" ->3, "key4" -> 4, "... | <p>you can use <a href="https://www.scala-lang.org/api/2.12.4/scala/collection/immutable/Map.html#--(xs:scala.collection.GenTraversableOnce%5BA%5D):Repr" rel="nofollow noreferrer">--</a> method</p>
<pre><code>val keys = List("key1", "key2", "key5")
val map = Map("key1" -> 1, &... | How to remove key value from map when keys are store in list in scala | scala|dictionary|collections|scala-collections | 0 | 65 | 2 | 72,210,885 | 72,210,885 | 0 | true | 2022-05-11T04:10:54.813Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to remove key value from map when keys are store in list in scala<p>I have list of keys and map following:</p>
<blockquote>
<p>val keys = List("key1... |
72,210,783 | TypeScript - How can i deal with multiple IFs<p>I was trying to do a <em>"multiple filter"</em> in TS, So...</p>
<p>If i send <em>nothing</em> -> <strong>it returns all products normally;</strong></p>
<p>But if i send some <em>params</em> -> <strong>it returns products filtered by the params.</s... | <p>You have not included a <a href="https://stackoverflow.com/help/minimal-reproducible-example">minimal, reproducible example</a>, but based on what you <em>have</em> shown, you can use a (map-like) array of tuples and iterate over it:</p>
<pre class="lang-ts prettyprint-override"><code>const colorFns = [
['red', lo... | TypeScript - How can i deal with multiple IFs | typescript|if-statement | 0 | 52 | 2 | 72,210,919 | 72,210,919 | 0 | true | 2022-05-12T06:06:08.757Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
TypeScript - How can i deal with multiple IFs<p>I was trying to do a <em>"multiple filter"</em> in TS, So...</p>
<p>If i send <em>nothing</em> ... |
72,162,305 | Can using Locate in C:/ cause issues?<p>I'm making a installer for a GTA modification. When the user executes the .exe the first thing it does before showing any GUI is searching for where GTA-SA.exe is located.</p>
<p>I've written common install locations:</p>
<pre><code># Most common directories where GTA SA can be f... | <p>I think I get what you are trying to do.</p>
<p>You want to first check if GTA is installed and then you want to get the exact directory where it is installed.</p>
<p>Checking the Steam registry entries didn't work for you though because it could also be installed from another platform.</p>
<p>If I were you I would ... | Can using Locate in C:/ cause issues? | installation|nsis | 0 | 47 | 1 | 72,210,949 | 72,210,949 | 0 | true | 2022-05-08T15:04:31.593Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Can using Locate in C:/ cause issues?<p>I'm making a installer for a GTA modification. When the user executes the .exe the first thing it does before showing... |
72,210,753 | Why is parseInt displaying Nan? - Angular<p>I am currently iterating through an array and adding the key to my panels array. I am getting the correct length of the array which is three but my parseint is displaying NaN. How can I convert the key which is a string to an int to display panel-0 for example instead of pane... | <p>what you are doing is <code>parseInt('Car' 3)</code>, since "Car" is not a number you will get <code>NaN</code></p>
<p>probaby you want something like this:</p>
<pre class="lang-js prettyprint-override"><code>Object.keys(this.Category).forEach((key) => {
this.panels.push('panel-' + panels.length + 1)... | Why is parseInt displaying Nan? - Angular | arrays|angular|typescript|parseint | 0 | 43 | 2 | 72,210,975 | 72,210,975 | 0 | true | 2022-05-12T06:02:25.730Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Why is parseInt displaying Nan? - Angular<p>I am currently iterating through an array and adding the key to my panels array. I am getting the correct length ... |
72,202,259 | How to extract ID from WP_POST table by POST_PARENT ID and POST_TYPE in WordPress?<p>How to extract ID from WP_POST table by POST_PARENT ID and POST_TYPE in WordPress?</p>
<p><a href="https://i.stack.imgur.com/SZf3q.png" rel="nofollow noreferrer">Plese see this image for better understanding >> Click here</a></p... | <p>According to your screenshot image, we have extracted the post id. you can use this code.</p>
<pre><code><?php
// Table Name Define
$posts_table = $wpdb->prefix.'posts';
// Get result wp_posts table using table column
$result = $wpdb->get_results ( "SELECT `ID`, `post_parent`, `post_type` FROM $posts_... | How to extract ID from WP_POST table by POST_PARENT ID and POST_TYPE in WordPress? | sql|wordpress | 0 | 38 | 1 | 72,211,091 | 72,211,091 | 0 | true | 2022-05-11T13:50:06.283Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to extract ID from WP_POST table by POST_PARENT ID and POST_TYPE in WordPress?<p>How to extract ID from WP_POST table by POST_PARENT ID and POST_TYPE in... |
72,210,628 | How to manage out of the box monitoring using Kubernetes online endpoints<p>I am learning about Kubernetes online endpoints and my objective is to monitor my resources which are deployed using Kubernetes endpoints. Is there any provision to get out-of-the-box monitoring to Kubernetes online endpoints to check the perfo... | <p>The general monitoring is available and supportive in AKS, but the out of the box implementation was not supportive unfortunately. Check the below documentation and screenshot to refer supportive formats of monitoring in AKS</p>
<p><a href="https://i.stack.imgur.com/0uxW5.png" rel="nofollow noreferrer"><img src="htt... | How to manage out of the box monitoring using Kubernetes online endpoints | kubernetes|azure-aks|azure-machine-learning-studio | 0 | 72 | 1 | 72,211,127 | 72,211,127 | 0 | true | 2022-05-12T05:46:48.657Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to manage out of the box monitoring using Kubernetes online endpoints<p>I am learning about Kubernetes online endpoints and my objective is to monitor my... |
72,211,097 | Why the values of array are not updating when I push elements in it in findOne callback function?<p>Here are two variables whose values are unexpected for me I can't get a way around it. Whenever I try to push message object in array inside a loop even after the variable being in global scope of the loop the value of v... | <p>The problem here are that both <code>AccountsCollection.findOne</code> and <code>PrivateChat.findOne</code> are asyncronous</p>
<p>it's easier if you handle it with <code>async/await</code> instead of callback like this</p>
<p><div class="snippet" data-lang="js" data-hide="false" data-console="true" data-babel="fals... | Why the values of array are not updating when I push elements in it in findOne callback function? | javascript|arrays|asynchronous|mongoose | 0 | 28 | 1 | 72,211,233 | 72,211,233 | 0 | true | 2022-05-12T06:41:11.327Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Why the values of array are not updating when I push elements in it in findOne callback function?<p>Here are two variables whose values are unexpected for me... |
72,210,853 | Search Bar Is Not In Coded Position HTML<p>again.</p>
<p>I am stuck with my search bar where it is not the position and the size i had coded in it.</p>
<p>Supposedly the search bar shall be look like in the following link: <a href="https://www.w3schools.com/howto/howto_css_searchbar.asp" rel="nofollow noreferrer">http... | <p>The problem I found with your code was indexing. So I made some changes in the indexing of the elements of Nav bar</p>
<p>And Other chanage I made in the css of Nav bar to aling the search bar at right</p>
<p><div class="snippet" data-lang="js" data-hide="false" data-console="true" data-babel="false">
<div class="sn... | Search Bar Is Not In Coded Position HTML | html|css | 0 | 69 | 2 | 72,211,316 | 72,211,316 | 0 | true | 2022-05-12T06:14:23.840Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Search Bar Is Not In Coded Position HTML<p>again.</p>
<p>I am stuck with my search bar where it is not the position and the size i had coded in it.</p>
<p>Su... |
72,197,382 | OBIEE12C - Allowed operations in XML writeback file<p>I would like to know if it is possible to include sql operations on the XML writeback template other than insert and update.
Would it be possible to call a database stored procedure?</p>
<p>Thanks!</p> | <p>OBIEE and its current incarnation OAS (OBIEE has been replaced since some years now) are analytical platform tools. They are not data entry or data generation tools.
That's what tings like APEX are for. It's free, it's part of the DB and you can just embed it into OBI/OAS. It also does all the checks, validations, f... | OBIEE12C - Allowed operations in XML writeback file | stored-procedures|obiee | 0 | 14 | 1 | 72,211,359 | 72,211,359 | 0 | true | 2022-05-11T07:57:17.337Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
OBIEE12C - Allowed operations in XML writeback file<p>I would like to know if it is possible to include sql operations on the XML writeback template other th... |
72,204,325 | poetry error "'setup.py' [...] not found" when it exists<p>I'm migrating my packaging tool for a Python project from <code>pipenv</code> to <code>poetry</code>.</p>
<p>However, when attempting to install <code>jaro-winkler</code> (using <code>poetry add jaro-winkler</code>), I get the following error:</p>
<pre><code> ... | <p>The package is not installed from GitHub. It is installed from PyPi. And there the content of the file looks unexpected. See <a href="https://pypi.org/project/jaro-winkler/2.0.1/#files" rel="nofollow noreferrer">https://pypi.org/project/jaro-winkler/2.0.1/#files</a></p> | poetry error "'setup.py' [...] not found" when it exists | python|python-poetry|jaro-winkler | 0 | 309 | 1 | 72,211,464 | 72,211,464 | 0 | true | 2022-05-11T16:11:07.327Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
poetry error "'setup.py' [...] not found" when it exists<p>I'm migrating my packaging tool for a Python project from <code>pipenv</code> to <code>poetry</cod... |
72,210,655 | visual C++ and u8 prefix<p>I was writting a HTTP server in visual studio preview, and I add <code><meta charset="utf-8"></code> to use UTF-8 as content encoding.</p>
<p>The problem is when I use <a href="https://docs.microsoft.com/en-us/cpp/cpp/string-and-character-literals-cpp?view=msvc-170" rel="nofol... | <p>thanks to @AlanBirtles, use <code>\u</code> literal solve my problem.</p>
<p><code>u8</code> and no <code>u8</code> both works in <code>\U0001f4dd</code></p>
<p>update code</p>
<pre><code>#define WIN32_LEAN_AND_MEAN
#include <Windows.h>
#include <winsock2.h>
#include <ws2tcpip.h>
#include <stdio... | visual C++ and u8 prefix | c++|visual-studio|visual-c++ | 0 | 153 | 1 | 72,211,816 | 72,211,816 | 0 | true | 2022-05-12T05:50:32.457Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
visual C++ and u8 prefix<p>I was writting a HTTP server in visual studio preview, and I add <code><meta charset="utf-8"></code> to use UTF-8 ... |
72,208,789 | Bitbucket pipeline import mysql schema<p>I'm trying to import database schema to mysql service through following statment</p>
<pre><code>mysql -h 127.0.0.1 -u $DB_USERNAME -p$DB_PASSWORD $DB_DATABASE < DB_Schema.sql
</code></pre>
<p>and it return <strong>mysql: not found</strong>. I have even tried the following com... | <p>You cannot install/update/change you main image in the first step for them to be there in the last step. Make your custom Docker image with all those installations, which will make it faster to run the pipeline and will let you use other tools you need in your pipeline.</p> | Bitbucket pipeline import mysql schema | mysql|dockerfile|bitbucket-pipelines | 0 | 303 | 2 | 72,211,875 | 72,211,875 | 0 | true | 2022-05-12T00:03:06.240Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Bitbucket pipeline import mysql schema<p>I'm trying to import database schema to mysql service through following statment</p>
<pre><code>mysql -h 127.0.0.1 -... |
72,211,822 | DiscordAPIError: Invalid Form Body - Discord.js Embed<p>Hey i was trying to make a <code>url</code> button to my embed when it sent on slashCommand, but when I tried to put the button and use the command I got an error of : <em><strong>DiscordAPIError: Invalid Form Body</strong></em></p>
<p>I don't know why is that err... | <p>According to the official discord.js guide on buttons => <a href="https://discordjs.guide/interactions/buttons.html#button-styles" rel="nofollow noreferrer">Buttons | Discord.js</a>, there are 5 styles which you can apply to buttons: <code>PRIMARY</code> <code>SECONDARY</code> <code>SUCCESS</code> <code>DANGER</c... | DiscordAPIError: Invalid Form Body - Discord.js Embed | javascript|discord.js|interaction | 0 | 567 | 1 | 72,211,896 | 72,211,896 | 0 | true | 2022-05-12T07:46:44.713Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
DiscordAPIError: Invalid Form Body - Discord.js Embed<p>Hey i was trying to make a <code>url</code> button to my embed when it sent on slashCommand, but when... |
72,211,640 | 'ImmutableDenseNDimArray' - Can't get equation to plot<p>I'm trying to plot an equation, but I can't seem to do it because of the error mentioned above.</p>
<p>This is a snippet of the code, should work by itself:</p>
<pre><code>import numpy as np
from numpy import linspace
from sympy import *
import matplotlib.pyplot ... | <p>You are mixing numpy with sympy, and that is what is causing the issue.</p>
<p>Let's analyze the code. Here you create a symbolic expression:</p>
<pre><code>test = simplify(-(0.02631027*sin(3*x)+0.1594*cos(3*x))*exp(-1*x))
</code></pre>
<p>Here you are creating a lambda function asking it to be evaluated by sympy. T... | 'ImmutableDenseNDimArray' - Can't get equation to plot | python|matplotlib|sympy | 0 | 27 | 2 | 72,211,917 | 72,211,917 | 0 | true | 2022-05-12T07:31:24.577Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
'ImmutableDenseNDimArray' - Can't get equation to plot<p>I'm trying to plot an equation, but I can't seem to do it because of the error mentioned above.</p>
... |
72,211,623 | How to fix "Remote certificate is invalid according to the validation procedure"<p>I am going to try to send emails via Mailkit but ran into problems with the error from "System.Security.Authentication.AuthenticationException" which is "The remote certificate is invalid according to the validation proced... | <p>To be fair, the underlying problem should be checked/corrected.</p>
<p>You can control how MailKit does the server certificate validation using <a href="http://www.mimekit.net/docs/html/P_MailKit_MailService_ServerCertificateValidationCallback.htm" rel="nofollow noreferrer">a ServerCertificateValidationCallback</a><... | How to fix "Remote certificate is invalid according to the validation procedure" | c#|asp.net|ssl|mailkit | 0 | 1,808 | 1 | 72,211,927 | 72,211,927 | 0 | true | 2022-05-12T07:29:50.747Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to fix "Remote certificate is invalid according to the validation procedure"<p>I am going to try to send emails via Mailkit but ran into problems with th... |
72,199,438 | Zabbix 6 Remote command not available<p>I am unable to get the remote command option on zabbix 6 for some reason any ideas?<a href="https://i.stack.imgur.com/bToZb.png" rel="nofollow noreferrer">Operation description</a></p>
<p>if anyone can assist me i have worked through all the user manuals and they don't mention so... | <p>In version 6, commands are available for execution <strong>if previously defined in global scripts</strong> with <code>Action operation</code> selected as its scope.</p>
<p>In the previous versions, you just needed to select "remote command" as "operation type".</p>
<p>See <a href="https://www.za... | Zabbix 6 Remote command not available | zabbix|remotecommand | 0 | 404 | 2 | 72,212,072 | 72,212,072 | 0 | true | 2022-05-11T10:27:55.083Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Zabbix 6 Remote command not available<p>I am unable to get the remote command option on zabbix 6 for some reason any ideas?<a href="https://i.stack.imgur.com... |
72,211,959 | For loop where each value is distributed correctly<p>I have a for loop where I want to distribute a certain number of words with the same length across a timeline.</p>
<p>I have variables that give me the duration for each text, the start of where the words will spawn, and the end.</p>
<pre><code>var wordArray = [];
fo... | <p>I updated the syntax to match the correct code.</p>
<p>Turns out that The issue was that the gap for each word wasn't being calculated correctly.</p>
<p>I got it to work by calculating the start and the end of each section by doing this :</p>
<pre><code>var startDurationString = timeCalc[0].split(":");
... | For loop where each value is distributed correctly | javascript|arrays|math|extendscript | 0 | 43 | 1 | 72,212,182 | 72,212,182 | 0 | true | 2022-05-12T07:57:42.357Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
For loop where each value is distributed correctly<p>I have a for loop where I want to distribute a certain number of words with the same length across a tim... |
72,211,454 | How can I implement code into an Alexa Skill?<p>I'm running into significant problems understanding how to turn my Python or JS code into a skill for Alexa. I have code written in Python and half written in JS, but no matter what I try, I can't seem to implement it into an Alexa skill.</p>
<p>I've looked through so man... | <h2>Short answer:</h2>
<p><strong>Anywhere really, it just depends on your logic</strong>.</p>
<p>In that case, if you want this part of code to run after the <code>ChoresIntent</code> is invoked, then within the handle function.</p>
<h2>Long answer:</h2>
<p><a href="https://github.com/alexa-samples/skill-sample-nodejs... | How can I implement code into an Alexa Skill? | javascript|python|json|alexa | 0 | 42 | 1 | 72,212,183 | 72,212,183 | 0 | true | 2022-05-12T07:14:37.967Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How can I implement code into an Alexa Skill?<p>I'm running into significant problems understanding how to turn my Python or JS code into a skill for Alexa. ... |
72,199,280 | Opencart 3: how to insert to any page data from own module?<p>I have own module with several fields. I want to show this data in contact page and in the header. How to connect this module for exemple to contact page controller?</p>
<p>I have tried connect it like this:</p>
<pre><code>$data['mymodule'] = $this->load-... | <p>As I thought, it's very easy to do. But I had to figure out exactly how.</p>
<p>First of all, we need to connect the modules model in the controller. Then connect the module that we need by ID. At the end, according to the standard opencart scheme, we specify variables for outputting data from the array.</p>
<pre><c... | Opencart 3: how to insert to any page data from own module? | opencart|opencart-3|opencart-module | 0 | 73 | 1 | 72,212,240 | 72,212,240 | 0 | true | 2022-05-11T10:15:50.903Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Opencart 3: how to insert to any page data from own module?<p>I have own module with several fields. I want to show this data in contact page and in the head... |
72,211,864 | Mongo project add to array<p>I'm trying to add an item to array in aggregation, but seem to be stuck with it for a couple of days.
Here is what it looks like:</p>
<p><div class="snippet" data-lang="js" data-hide="false" data-console="true" data-babel="false">
<div class="snippet-code">
<pre class="snippet-code-html lan... | <ol>
<li><code>$unwind</code></li>
<li><code>$lookup</code></li>
<li><code>$group</code> - Group by <code>_id</code>. Get the <code>title</code> field and <code>subjects</code> array (this field is needed in <em>stage 4</em>).</li>
<li><code>$set</code> - Modify <code>subjects</code> field by adding first document and ... | Mongo project add to array | mongodb-query|aggregation-framework | 0 | 57 | 2 | 72,212,241 | 72,212,241 | 0 | true | 2022-05-12T07:49:53.110Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Mongo project add to array<p>I'm trying to add an item to array in aggregation, but seem to be stuck with it for a couple of days.
Here is what it looks like... |
72,200,319 | How to get the URL of a file uploaded on a server in C#.net web application?<p>I am presently working on a C#.net Web Application which supports file uploads to the server by users. I am using an external WhatsApp API which needs to access these files using a URL. So, I am wondering as to what URL should I pass to the ... | <p>Based on the above discussion, i can see 'DocumentMessage' is the model where its asking. I have 2 ways to handle. you can pick any based on your system design.</p>
<ol>
<li>This is the approach where your app don't need any Cloud involvement. Irrespective of Hosting in IIS(on premise) or any Any Cloud service app,... | How to get the URL of a file uploaded on a server in C#.net web application? | c#|asp.net-mvc|api|server | 0 | 345 | 1 | 72,212,314 | 72,212,314 | 0 | true | 2022-05-11T11:33:13.440Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to get the URL of a file uploaded on a server in C#.net web application?<p>I am presently working on a C#.net Web Application which supports file uploads... |
72,196,489 | PreferenceScreen always shows with additional space to top<p>Currently, I'm facing a problem regarding the display of the preference fragment. I'm using a bottom navigation menu and I want to show a toolbar (previously action bar) showing the currently selected menu item of the navigation bar.</p>
<p>The problem is tha... | <p>Problem has been solved.</p>
<p>The reason for the behaviour was the <code>android:paddingTop="?attr/actionBarSize"</code> in the main activity xml file.</p> | PreferenceScreen always shows with additional space to top | android|preferences | 0 | 27 | 1 | 72,212,353 | 72,212,353 | 0 | true | 2022-05-11T06:41:51.747Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
PreferenceScreen always shows with additional space to top<p>Currently, I'm facing a problem regarding the display of the preference fragment. I'm using a bo... |
72,210,933 | How to create a search filter expression with a 'not equal to' condition in a NetSuite RESTlet?<p>I'm new to JavaScript and to NetSuite as well. I'm trying to create a search with filters expressions but NetSuite is throwing an error in the condition 'not equal to'. This is my code:</p>
<pre><code> search
... | <p>Parent field would be a record / list type.</p>
<p>Try using "NONE OF" operator in the filter for Parent field.</p> | How to create a search filter expression with a 'not equal to' condition in a NetSuite RESTlet? | search|netsuite|restlet|suitescript2.0 | 0 | 264 | 1 | 72,212,472 | 72,212,472 | 0 | true | 2022-05-12T06:23:38.697Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to create a search filter expression with a 'not equal to' condition in a NetSuite RESTlet?<p>I'm new to JavaScript and to NetSuite as well. I'm trying t... |
72,210,748 | Configuration for multiple databases with rails<p>A Rails 7.0.3 application has the following database.yml configuration, with the default block generated by the rails app initialisation process.</p>
<pre><code>default: &default
adapter: postgresql
encoding: unicode
pool: <%= ENV.fetch("RAILS_MAX_THRE... | <p>The call to shared attributes <code><<: *default</code> needs to be removed.
This will allow processing of development databases.</p>
<p>The attributes</p>
<pre><code> adapter: postgresql
encoding: unicode
pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %>
</code></pre>
<p>being added to ea... | Configuration for multiple databases with rails | ruby-on-rails | 0 | 30 | 1 | 72,212,593 | 72,212,593 | 0 | true | 2022-05-12T06:01:29.950Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Configuration for multiple databases with rails<p>A Rails 7.0.3 application has the following database.yml configuration, with the default block generated by... |
72,212,545 | How to divide values in column by condition in R?<p>I have code which divides the Sales column by 10 if the mean of sales is more than 150, else if the mean > 80, values are divided by 5 or keep the same in case < 80</p>
<pre><code>df <- data.frame (Sale = c(100,200,500,150),
Cost = c(50,20,... | <p>You can use <code>dplyr::across</code> to do the same function over multiple columns:</p>
<pre class="lang-r prettyprint-override"><code>library(dplyr)
df %>%
mutate(across(c(Sale, Cost), ~ case_when(Sale > 150 ~ .x/10,
Sale > 50 ~ .x/5,
... | How to divide values in column by condition in R? | loops|if-statement|dplyr|conditional-statements|tidyverse | 0 | 66 | 1 | 72,212,598 | 72,212,598 | 0 | true | 2022-05-12T08:45:52.183Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How to divide values in column by condition in R?<p>I have code which divides the Sales column by 10 if the mean of sales is more than 150, else if the mean ... |
72,212,596 | Pandas apply function with additional arguments<p>I'm trying to use a function "multiply" to create a new column in a dataframe, and I'm using the apply() method to do it. the code currently looks like this:</p>
<pre><code>import pandas as pd
var_a = 10
var_b = 20
def multiply(row):
if 0.1 in row['Alpha... | <p>You can use a lambda function or use <code>args</code> argument</p>
<pre class="lang-py prettyprint-override"><code>pdf['Calc'] = pdf.apply(lambda row: multiply(row, var_a, var_b), axis = 1)
# or
pdf['Calc'] = pdf.apply(multiply, axis = 1, args=(var_a, var_b))
</code></pre> | Pandas apply function with additional arguments | python|pandas|dataframe | 0 | 65 | 1 | 72,212,662 | 72,212,662 | 0 | true | 2022-05-12T08:49:53.540Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Pandas apply function with additional arguments<p>I'm trying to use a function "multiply" to create a new column in a dataframe, and I'm using the ... |
72,212,269 | Why in master asp the places of the content change<p>Master page:</p>
<pre><code><div class="container">
<asp:ContentPlaceHolder ID="ContentPlaceHolder1" runat="server">
</asp:ContentPlaceHolder>
</div>
<footer>
<div class="contai... | <p>Because I used the table I had to add</p>
<pre><code><FooterTemplate>
</table>
</FooterTemplate>
</code></pre> | Why in master asp the places of the content change | jquery|asp.net|master-pages | 0 | 76 | 1 | 72,212,667 | 72,212,667 | 0 | true | 2022-05-12T08:23:52.277Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Why in master asp the places of the content change<p>Master page:</p>
<pre><code><div class="container">
<asp:ContentPlaceHolder I... |
72,167,306 | Error waiting for SSH: Packer experienced an authentication error : using vsphere-iso<p>getting below error while running packer using vsphere-iso builder.</p>
<pre><code>Error waiting for SSH: Packer experienced an authentication error when trying to connect via SSH. This can happen if your username/password are wrong... | <p>I got the solution as below</p>
<p>In <strong>autounattend.xml</strong> file password was given as plain text true , which needs to be change to false.</p> | Error waiting for SSH: Packer experienced an authentication error : using vsphere-iso | jenkins|ssh|packer|hashicorp-packer|packer-builder | 0 | 671 | 1 | 72,212,668 | 72,212,668 | 0 | true | 2022-05-09T05:22:51.120Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Error waiting for SSH: Packer experienced an authentication error : using vsphere-iso<p>getting below error while running packer using vsphere-iso builder.</... |
72,212,561 | How do I Create Bootstrap 5 Tooltip With Text of Different Color Inside?<p>It seems that adding the double quote char
<code>"</code> to the custom HTML tooltip will break the tooltip itself, making the browser think that the tooltip title is over and parsing a chunk of the tooltip title as external HTML.</p>
<p>He... | <p>The answer of @poo is not working for me, when using classes it gave me the answer you are searching for.</p>
<p>Here is a <a href="https://jsfiddle.net/p5bzmqd1/" rel="nofollow noreferrer">https://jsfiddle.net/p5bzmqd1/</a></p>
<pre><code><button type="button" class="btn btn-danger" data-bs-t... | How do I Create Bootstrap 5 Tooltip With Text of Different Color Inside? | javascript|html|css|bootstrap-5|web-frontend | 0 | 62 | 2 | 72,212,734 | 72,212,734 | 0 | true | 2022-05-12T08:46:48.890Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
How do I Create Bootstrap 5 Tooltip With Text of Different Color Inside?<p>It seems that adding the double quote char
<code>"</code> to the custom HTML ... |
72,209,694 | Plot polygons with buffer of some radius using folium not working properly<p>I am trying plot the intersection between a buffer circle and the mesh blocks (or boundaries) within that circle of some radius (in this case, 80 km).</p>
<p>I got the intersection using sjoin() as follows:</p>
<pre><code>intersection_MeshBloc... | <ul>
<li>have located some geometry for Melbourne to demonstrate</li>
<li>fundamentally, you want to use <code>overlay()</code> not <code>sjoin()</code></li>
<li>generation of <strong>folium</strong> map is much simpler using <strong>GeoPandas</strong> 0.10 capability <code>explore()</code></li>
</ul>
<pre><code>import... | Plot polygons with buffer of some radius using folium not working properly | python|plot|geospatial|geopandas|folium | 0 | 283 | 1 | 72,212,778 | 72,212,778 | 0 | true | 2022-05-12T03:07:28.267Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Plot polygons with buffer of some radius using folium not working properly<p>I am trying plot the intersection between a buffer circle and the mesh blocks (o... |
72,183,985 | Xamarin Forms, "Invalid syntax for a hexadecimal numeric entity reference" error inside App.xaml when importing Icon<p>the font.otf is imported correctly and placed inside the correct folder because the font works on letters but importing an icon from the otf file does not work because of the syntax error. Entering <s... | <p>After adding the icon codes in a new class, this worked for me:</p>
<pre><code><Label Text="&#xf1ea;"/>
</code></pre> | Xamarin Forms, "Invalid syntax for a hexadecimal numeric entity reference" error inside App.xaml when importing Icon | visual-studio|xaml|xamarin.forms|xamarin.android | 0 | 75 | 2 | 72,212,814 | 72,212,814 | 0 | true | 2022-05-10T09:38:42.613Z | Please answer the following Stackoverflow question on Programming. Answer it like you are a developer answering Stackoverflow questions.
Stackoverflow question:
Xamarin Forms, "Invalid syntax for a hexadecimal numeric entity reference" error inside App.xaml when importing Icon<p>the font.otf is imported correctly and... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.