Id int64 4 8.51M | PostTypeId int64 1 7 | AcceptedAnswerId int64 7 75.5M ⌀ | ParentId int64 4 41.8M ⌀ | Score int64 -208 27.7k | ViewCount int64 11 12.4M ⌀ | Body stringlengths 0 45k | Title stringlengths 2 150 ⌀ | ContentLicense stringclasses 3
values | FavoriteCount int64 0 225 ⌀ | CreationDate stringdate 2008-07-31 21:42:52 2011-12-14 18:48:47 | LastActivityDate stringdate 2008-08-01 12:19:17 2023-03-05 04:40:26 | LastEditDate stringdate 2008-08-01 13:54:25 2023-03-05 03:12:45 ⌀ | LastEditorUserId int64 -1 21.3M ⌀ | OwnerUserId int64 -1 21.1M ⌀ | Tags listlengths 1 6 ⌀ |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
75,616,612 | 2 | null | 75,614,007 | 2 | null | You can write a method to extract the name/value pairs from the input by returning ranges for the name and value strings, like so:
```
public static IEnumerable<(Range name, Range value)> ExtractNameValuePairs(string input)
{
int nameStart = 0;
int nameEnd = 0;
for (int i = 0; i < input.Length; i++)
... | null | CC BY-SA 4.0 | null | 2023-03-02T14:10:51.997 | 2023-03-02T14:10:51.997 | null | null | 106,159 | null |
75,616,631 | 1 | null | null | 0 | 31 | In my first ever Visual Studio C++ DLL template project I'm attempting to `#include <matplot/matplot.h>` but I'm receiving a lot of errors on build caused by this include. The errors are pasted at the end of this question.
I've installed the library using `vcpkg install matplotplusplus:x64-windows` and run the integrat... | Errors building DLL with matplotplusplus dependency | CC BY-SA 4.0 | null | 2023-03-02T14:13:08.630 | 2023-03-02T15:08:46.687 | 2023-03-02T15:08:46.687 | 2,600,531 | 2,600,531 | [
"c++",
"visual-studio",
"dll"
] |
75,616,645 | 2 | null | 75,503,555 | 0 | null | According to your code, looks like you are loading all your data in single attribute. i.e. ;
can you try with
```
$model->cashback = Yii::$app->request->post('cashback');
$model->compensa = Yii::$app->request->post('compensa');
$model->associazione = Yii::$app->request->post('associazione');
$model->formazione = Yii::$... | null | CC BY-SA 4.0 | null | 2023-03-02T14:14:23.237 | 2023-03-02T14:14:23.237 | null | null | 20,298,736 | null |
75,616,644 | 1 | null | null | 0 | 14 | I'm reviewing a CircleCI `config.yml` file where a pipeline parameter has been added for the purpose of detecting whether a build was manually triggered (i.e. via "Trigger Pipeline"):
```
workflows:
run_tests:
when:
and:
- equal: [true, << pipeline.parameters.manual >>]
[...]
```
The above ... | Is there a way to detect whether a CircleCI pipeline build was manually triggered? | CC BY-SA 4.0 | null | 2023-03-02T14:14:11.667 | 2023-03-02T14:14:11.667 | null | null | 1,063,716 | [
"build",
"yaml",
"pipeline",
"circleci",
"cicd"
] |
75,616,646 | 2 | null | 75,616,602 | 1 | null | I hope this work for you:
In order to place one of three values at random in a cell, you can create a function that generates a random number between 1 and 3 and then determines the value based on the number.
For instance, if the random number generated is 1, the value in the cell would be "BM". If the number is 2, the... | null | CC BY-SA 4.0 | null | 2023-03-02T14:14:29.317 | 2023-03-02T20:07:42.900 | 2023-03-02T20:07:42.900 | 6,460,297 | 21,319,634 | null |
75,616,647 | 2 | null | 75,616,325 | 0 | null | You can simply use `df1`:
```
>>> df1.stack().value_counts()
1 208
0 160
dtype: int64
```
You can also use `numpy`:
```
>>> dict(zip(*np.unique(df1, return_counts=True)))
{0: 160, 1: 208}
>>> pd.Series(dict(zip(*np.unique(df1, return_counts=True))))
0 160
1 208
dtype: int64
```
| null | CC BY-SA 4.0 | null | 2023-03-02T14:14:34.400 | 2023-03-02T14:14:34.400 | null | null | 15,239,951 | null |
75,616,648 | 2 | null | 68,892,357 | 0 | null | By default, when you configure SMTs for any connector, including Debezium, transformation is applied to every record that the connector emits. That includes change event messages that might not have the retrieved data and might not have the necessary fields.
To solve this, you need to apply your SMTs selectively to on... | null | CC BY-SA 4.0 | null | 2023-03-02T14:14:37.733 | 2023-03-02T14:14:37.733 | null | null | 2,593,275 | null |
75,616,651 | 2 | null | 46,584,324 | 0 | null | captainblack- I have used his bash command and it worked
bash -c "if [ /"$CODEBUILD_BUILD_SUCCEEDING/" == /"0/" ]; then exit 1; fi"
I have added bash command in the buildspec.yml file from where you want other pipelines to get trigger. so it would first check if that pipeline is getting successful, only then other pipe... | null | CC BY-SA 4.0 | null | 2023-03-02T14:14:54.257 | 2023-03-02T14:16:34.287 | 2023-03-02T14:16:34.287 | 6,844,315 | 6,844,315 | null |
75,616,652 | 2 | null | 75,616,572 | 1 | null | Pass the `shell=True` argument to the `subprocess.run()` function, like this:
```
proc = subprocess.run('echo "$(echo 1111dGUv+rG551123eFwBhCMde6BIS90c3AAAAA= | base64 -d)"',
shell=True,
check=True,
stdout=subprocess.PIPE)
print(proc.stdout)
```
| null | CC BY-SA 4.0 | null | 2023-03-02T14:14:55.087 | 2023-03-02T14:14:55.087 | null | null | 19,703,362 | null |
75,616,649 | 1 | null | null | 0 | 14 | Recently, I have been trying to display a Lidar in Gazebo. However, I am completely new to ROS, so it is difficult for me to understand everything. With the help of several tutorials, trial and error, and other resources, I have managed to display a small vehicle with a Lidar on it in Gazebo.
For further analysis, I al... | display lidar data from gazebo simulation | CC BY-SA 4.0 | null | 2023-03-02T14:14:38.757 | 2023-03-03T02:53:32.283 | null | null | 21,295,555 | [
"ubuntu",
"ros",
"gazebo-simu",
"rviz"
] |
75,616,636 | 1 | 75,617,202 | null | 0 | 27 | The aim of the following programm is to make a websocket server that listen HTTP request on a separate http-server and send the request into a string to the websocket-client.
The websocket client is done and works perfectly, but I have this little error on the websocket-server when I'm trying to pass my HTTP Request (i... | Sharing data between threads, getting error "value moved into closure here, in previous iteration of loop" | CC BY-SA 4.0 | null | 2023-03-02T14:13:38.660 | 2023-03-02T14:58:19.240 | 2023-03-02T14:35:43.347 | 442,760 | 20,348,570 | [
"multithreading",
"rust",
"websocket",
"thread-safety"
] |
75,616,656 | 2 | null | 75,616,602 | 4 | null | here is a way I would do it
```
Dim value As String
Select Case Int(Rnd() * 3)
Case 0
value = "BM"
Case 1
value = "JC"
Case 2
value = "KS"
End Select
Worksheets("Sheet1").Range("A1").Value = value
```
I generate a random integer between 0 and 2 using Int(Rnd() * 3), and then use a... | null | CC BY-SA 4.0 | null | 2023-03-02T14:15:10.543 | 2023-03-02T14:15:10.543 | null | null | 1,785,729 | null |
75,616,650 | 2 | null | 75,604,761 | 0 | null | At the end I created another answer that doesn't (directly) count string characters or escape sequences, because it uses the ast module:
```
import ast
def separate_by_index_and_join(string_to_split: str, indices: list[int], join:str)-> str:
return join.join([string_to_split[0:indices[0]]] + [string_to_split[i+1:j... | null | CC BY-SA 4.0 | null | 2023-03-02T14:14:52.957 | 2023-03-02T14:14:52.957 | null | null | 10,416,012 | null |
75,616,655 | 2 | null | 75,615,308 | 0 | null | `create` only throws an exception when there is a structure error such as the lack of a column in the database. If everything is correct and the same could not save just return a `false`.
You can use `createMany()` to make your code easier to read. [Check the documentation](https://laravel.com/docs/10.x/eloquent-relati... | null | CC BY-SA 4.0 | null | 2023-03-02T14:15:09.860 | 2023-03-02T14:15:09.860 | null | null | 21,250,316 | null |
75,616,653 | 1 | null | null | 2 | 89 | The C11 standard writes:
6.2.5 Types, ¶4:
> There are five , designated as `signed char`, `short int`, `int`, `long int`, and `long long int`.
The five standard unsigned integer types would thus be `unsigned char`, `unsigned short int`, `unsigned int`, `unsigned long int`, and `unsigned long long int`.
7.19 Common defi... | Must size_t be defined using a typedef as one of the five standard unsigned integer types? | CC BY-SA 4.0 | null | 2023-03-02T14:14:58.750 | 2023-03-02T15:34:12.627 | 2023-03-02T15:05:38.810 | 2,057,969 | 2,057,969 | [
"c",
"types",
"integer",
"size-t"
] |
75,616,658 | 1 | null | null | -4 | 23 | How to implement a beautiful 3D model on Android that can receive control data from other devices and
change in real time (e.g. the colour of each point)
I've tried low-level primitives like openGL and high-level frameworks like SceneKit.
But it's not very convenient.
If I have a 3D model of a human head, how can I mak... | How to implement beautiful 3D models on Android that can receive control from other devices and change in real time (e.g. the color of each point) | CC BY-SA 4.0 | null | 2023-03-02T14:15:36.467 | 2023-03-02T14:20:25.723 | 2023-03-02T14:20:25.723 | 44,729 | 18,037,237 | [
"android",
"unity3d",
"opengl-es",
"scenekit",
"arkit"
] |
75,616,657 | 1 | null | null | 0 | 18 | I'm trying to send emails to a Microsoft Teams channel using Microsoft Graph Client to the channel's email address, but the messages aren't showing up in the channel. I've verified that the email address is correct and that the email message was sent successfully - the message is in the sent folder of my email client.
... | Emails not showing up in Microsoft Teams | CC BY-SA 4.0 | null | 2023-03-02T14:15:19.363 | 2023-03-02T14:15:19.363 | null | null | 603,200 | [
"email",
"microsoft-teams",
"microsoft-graph-sdks"
] |
75,616,661 | 2 | null | 67,414,603 | 0 | null | You can do it in pure SQL, by first converting data to `xmltype`, and then using `xmltable` to extract lines:
```
select x.line
from data_tab d
, xmltable('/d/x' passing xmltype('<d><x>'||replace(dbms_xmlgen.convert(d.file_cont),chr(10),'</x><x>')||'</x></d>')
columns line clob path '/') x... | null | CC BY-SA 4.0 | null | 2023-03-02T14:15:47.550 | 2023-03-02T14:15:47.550 | null | null | 3,783,352 | null |
75,616,662 | 2 | null | 75,614,910 | 0 | null | You can extract the PDF file to JSON like this, including the streams of compressed data:
`cpdf -output-json in.pdf -o out.json`
Then, when you have processed the JSON to decompress the stream, you can check by roundtripping back to PDF:
`cpdf -j new.json -o out.pdf`
| null | CC BY-SA 4.0 | null | 2023-03-02T14:15:49.263 | 2023-03-02T14:15:49.263 | null | null | 1,387,666 | null |
75,616,654 | 1 | null | null | 0 | 24 | I have a very simple WebAssembly project created with the VS Webassembly console template in VS2022, dotnet7 as described [here](https://learn.microsoft.com/en-us/aspnet/core/client-side/dotnet-interop?view=aspnetcore-7.0).
```
import { dotnet } from './dotnet.js'
const { setModuleImports, getAssemblyExports, getConf... | How to import dotnet.wasm/dotnet.js into an Angular component? | CC BY-SA 4.0 | null | 2023-03-02T14:15:00.950 | 2023-03-03T10:45:53.707 | 2023-03-03T10:45:53.707 | 412,923 | 412,923 | [
"c#",
"angular",
"visual-studio-2022",
"webassembly",
".net-7.0"
] |
75,616,669 | 2 | null | 72,276,373 | 0 | null | If you use eksctl to provision your clusters, you can interrogate the instance's tags to get the cluster they belong to. Instances provisioned by eksctl will include the keys kubernetes.io/cluster/<CLUSTER_NAME> and eks:cluster-name (the value of this key is set to the CLUSTER_NAME).
| null | CC BY-SA 4.0 | null | 2023-03-02T14:16:05.900 | 2023-03-02T14:16:05.900 | null | null | 4,056,649 | null |
75,616,659 | 1 | null | null | 0 | 39 | I am setting up a backup solution in GKE for my Redis cluster and I get this error when I try to use `VolumeSnapshot` object in K8s. I have enabled the the CSI driver addon in the cluster and I deployed the Redis cluster with [Bitnami chart](https://github.com/bitnami/charts/tree/main/bitnami/redis-cluster) and also de... | GKE: Failed to create snapshot content with error cannot find CSI PersistentVolumeSource | CC BY-SA 4.0 | null | 2023-03-02T14:15:46.613 | 2023-03-03T13:40:03.917 | 2023-03-03T10:41:48.510 | 19,818,461 | 8,555,230 | [
"kubernetes",
"redis",
"google-kubernetes-engine",
"persistent-volumes",
"csi-driver"
] |
75,616,660 | 1 | 75,616,849 | null | 0 | 43 | Assuming I have a dictionary in this structure:
```
data = {
'111': {'a': 'xxxxxx', 'b': 'xxxxxx', 'c': 301},
'112': {'a': 'xxxxxx', 'b': 'xxxxxx', 'c': 302},
'113': {'a': 'xxxxxx', 'b': 'xxxxxx', 'c': 377},
'114': {'a': 'xxxxxx', 'b': 'xxxxxx', 'c': 311},
'115': {'a': 'xxxxxx', 'b': 'xxxxxx', 'c': ... | How can I find the closest, positive value, from a dictionary's item's keys? (Python) | CC BY-SA 4.0 | null | 2023-03-02T14:15:46.857 | 2023-03-02T14:54:40.907 | 2023-03-02T14:35:21.250 | 16,343,464 | 21,319,273 | [
"python",
"python-3.x",
"dictionary"
] |
75,616,665 | 1 | null | null | 0 | 22 | I am trying to fill out a results table for my masters thesis in psychology but have been unable to compute the values that I need.
I have conducted a daily diary study with data nested in days (level 1) and person (level 2). My multilevel model using lmer works great.
For reference:
```
model.random2 <- lmer(Arbeitszi... | How can I get the level 1 and 2 residual variances from a lmer model in R? | CC BY-SA 4.0 | null | 2023-03-02T14:15:56.097 | 2023-03-02T15:21:42.073 | 2023-03-02T15:21:42.073 | 2,372,064 | 21,318,087 | [
"r",
"lme4",
"multilevel-analysis"
] |
75,616,670 | 2 | null | 75,616,554 | 2 | null | This looks like a typical example of the usage of a local state.
Would something like this suit your need?
```
import { useEffect, useState } from 'react'
const App = () => {
const [isExternalScriptInitialized, setIsExternalScriptInitialized] = useState(false);
// Listen to external script
useEffect(() => {
... | null | CC BY-SA 4.0 | null | 2023-03-02T14:16:08.623 | 2023-03-02T14:21:52.463 | 2023-03-02T14:21:52.463 | 3,188,049 | 3,188,049 | null |
75,616,667 | 1 | null | null | 0 | 16 | I am getting error when building EC2 instance
```
Error: region not found for name "me-central-1"
"aws_region" "current":
1: data "aws_region" "current" {}
Error: region not found for name "me-central-1"
50: data "aws_region" "this" {}
```
region is showing us that is enabled correctly
```
{
"Endpoint": "e... | AWS me-central-1 region issues with aws provider 4.5 | CC BY-SA 4.0 | null | 2023-03-02T14:15:57.193 | 2023-03-02T14:15:57.193 | null | null | 1,019,888 | [
"amazon-ec2",
"terraform"
] |
75,616,672 | 1 | null | null | 0 | 7 | I can't find an open API for Google Pay that I can interact with from my Django server to make automated refunds for my customers who have bought some items but want a refund.
I am investigating [Google Pay API](https://developers.google.com/pay/api), but I can't find an open API that I can interact with from my django... | Django server calls Google pay API refund | CC BY-SA 4.0 | null | 2023-03-02T14:16:09.730 | 2023-03-03T08:09:07.067 | null | null | 20,971,236 | [
"django",
"django-rest-framework"
] |
75,616,674 | 2 | null | 75,616,203 | 2 | null | The simplest way would be to wrap this line around with
```
try:
response = client.describe_rule(Name='Name of the schedule')
except ResourceNotFoundException as err:
# decide what to do here
```
boto3 docs eventbridge client [describe_rule](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/ser... | null | CC BY-SA 4.0 | null | 2023-03-02T14:16:12.227 | 2023-03-02T16:32:15.977 | 2023-03-02T16:32:15.977 | 12,853,582 | 21,318,419 | null |
75,616,673 | 1 | null | null | 2 | 31 | In Julia, some amazing packages like `ProgressMeter` provide an easy API for displaying progress bars in the REPL. However, when it is used in the Jupyter from VScode, the whole process is printed out such as:
```
Progress: 4%|██ | ETA: 0:06:05
Progress: 6%|███ ... | Progress bar when using Jupyter of Julia in VScode | CC BY-SA 4.0 | null | 2023-03-02T14:16:11.537 | 2023-03-02T16:33:24.303 | 2023-03-02T16:33:24.303 | 13,241,995 | 13,241,995 | [
"visual-studio-code",
"julia",
"progress-bar"
] |
75,616,675 | 2 | null | 74,703,974 | 0 | null | in addition to the accepted answer, you can simply send the shape as WKT formatted String (and avoid custom converters)
```
JsonData shape = JsonData.of(WellKnownText.toWKT(new Point(longitude,latitude))); // will create a simple ValueNode, no JSON conversion
Query geoShape = QueryBuilders.geoShape().field("coordinates... | null | CC BY-SA 4.0 | null | 2023-03-02T14:16:13.447 | 2023-03-02T14:16:13.447 | null | null | 12,196,408 | null |
75,616,678 | 2 | null | 75,614,743 | -2 | null | Sounds like you are using the right commands, but something else must be wrong.
You might want to check the scope of your command line. If you're using Git Bash, make sure you're still on the folder for your repository and not a subfolder or the place where you created it.
If it is saying "working tree clean," then you... | null | CC BY-SA 4.0 | null | 2023-03-02T14:16:25.077 | 2023-03-02T14:16:25.077 | null | null | 19,580,559 | null |
75,616,680 | 1 | null | null | 0 | 14 | Unfortunately the
```
-webkit-calendar-picker-indicator {
-webkit-appearance: none;
display: none;
}
```
does not work and there is still a tiny arrow in webviews.
| Is there a way to remove the date picker calendar in both Android and iOS webview? | CC BY-SA 4.0 | null | 2023-03-02T14:16:26.420 | 2023-03-02T14:16:26.420 | null | null | 5,434,087 | [
"html",
"css",
"webview",
"uiwebview",
"android-webview"
] |
75,616,638 | 1 | null | null | 0 | 18 | My homework was about building a page with a list that had to be manipulated in JavaScript only: items added, deleted, updated, checked/unchecked with some very little CSS help.
The code had two problems.
First, when I added something to the list, I wasn't able to delete it afterwards, only toggle it.
Not only I wasn't... | Event listener that removed the element didn't work without being redeclared (basically copied) on list items after list update and reset. Why? | CC BY-SA 4.0 | null | 2023-03-02T14:13:47.487 | 2023-03-02T14:26:21.023 | 2023-03-02T14:26:21.023 | 695,364 | 21,318,666 | [
"javascript",
"list",
"event-listener"
] |
75,616,677 | 1 | 75,618,954 | null | 0 | 23 | I have a button at the bottom of a screen inside a list. I can successfully hide the button text through opacity, however the background remains white as shown in the image. I'm trying to remove the text and the background to make it completely invisible. Note that I do want to retain that background feature for the li... | SwiftUI Button opacity within a list doesn't apply to its background | CC BY-SA 4.0 | null | 2023-03-02T14:16:24.107 | 2023-03-02T17:33:53.603 | null | null | 13,059,534 | [
"swift",
"list",
"button",
"swiftui",
"opacity"
] |
75,616,679 | 2 | null | 72,715,311 | 0 | null | By default, when you configure SMTs for any connector, including Debezium, transformation is applied to every record that the connector emits. That includes change event messages that might not have the retrieved data and might not have the necessary fields.
To solve this, you need to apply your SMTs selectively to on... | null | CC BY-SA 4.0 | null | 2023-03-02T14:16:25.683 | 2023-03-02T14:16:25.683 | null | null | 2,593,275 | null |
75,616,683 | 2 | null | 75,616,572 | 3 | null | Use `shell=True`, and You don't need this extra `echo` in this case.
```
proc = subprocess.run(["echo 1111dGUv+rG551123eFwBhCMde6BIS90c3AAAAA= | base64 -d"], check=True, shell=True, capture_output=True)
print(proc.stdout)
```
You can also make this pipe in Python like so:
```
echo = subprocess.Popen(('echo', '1111dGUv... | null | CC BY-SA 4.0 | null | 2023-03-02T14:16:38.950 | 2023-03-02T14:16:38.950 | null | null | 1,360,400 | null |
75,616,685 | 1 | null | null | -2 | 27 | When await app.startAllMicroservices() is called this error happens:
ERROR [Server] Error: connect ECONNREFUSED 127.0.0.1:1883
```
async function bootstrap() {
const app = await NestFactory.create(AppModule);
app.connectMicroservice({
transport: Transport.MQTT,
options: {
url: 'mqtt://localhost:1883'... | How to create MQTT broker in NestJS 9 | CC BY-SA 4.0 | null | 2023-03-02T14:16:58.357 | 2023-03-02T22:00:04.483 | null | null | 14,505,900 | [
"javascript",
"nestjs",
"mqtt"
] |
75,616,681 | 2 | null | 75,615,524 | 0 | null | First, create some test data.
```
data have;
infile cards;
input startdate mmddyy10. @12 enddate mmddyy10.;
format startdate enddate date9.;
array pays1(*) monthly_pay_202001-monthly_pay_202012;
array pays2(*) monthly_pay_202101-monthly_pay_202112;
array pays3(*) monthly_pay_202201-monthly_pay_202212;
array pays(*) mon... | null | CC BY-SA 4.0 | null | 2023-03-02T14:16:28.297 | 2023-03-02T14:16:28.297 | null | null | 5,745,815 | null |
75,616,687 | 2 | null | 75,615,360 | 0 | null | You can use the [TabBar](https://api.flutter.dev/flutter/material/TabBar-class.html) widget, and set [isScrollable](https://api.flutter.dev/flutter/material/TabBar/isScrollable.html) to `true`:
```
TabBar(
isScrollable: true, // <-- Set this
tabs: <Widget>[
Tab(
```
Note: The tab's length needs to be long... | null | CC BY-SA 4.0 | null | 2023-03-02T14:17:15.473 | 2023-03-02T14:17:15.473 | null | null | 12,349,734 | null |
75,616,682 | 2 | null | 75,616,449 | 1 | null | You need to convert the `excel_file` to a byte stream using [io.BytesIO](https://docs.python.org/3.12/library/io.html#io.BytesIO) and pass that to the `File` constructor so the view should be:
| null | CC BY-SA 4.0 | null | 2023-03-02T14:16:32.247 | 2023-03-02T14:16:32.247 | null | null | 17,562,044 | null |
75,616,686 | 1 | null | null | 0 | 16 | I'd like to get a comma separated list of failed tests for a Robot Framework run. I'm running the tests on Jenkins and have a job that can take a comma separated list of test names to run. I want to easily get that string so I can rerun failed tests after a fix has been deployed, without running the entire job again.
I... | Robot Framework, log failed tests in current run | CC BY-SA 4.0 | null | 2023-03-02T14:17:14.817 | 2023-03-03T08:22:14.840 | null | null | 7,126,740 | [
"jenkins",
"robotframework"
] |
75,616,684 | 1 | null | null | 0 | 15 | I am creating a .NET 7 API with EF Core and an SQL Server database where users have a "policy" they can activate and "pool" it, and I need to keep track of when each user's policy is active.
The "overall policy" at any time is determined by the highest level policy
active at the time. So I will need to be able to get t... | Modelling "policy pool" | CC BY-SA 4.0 | null | 2023-03-02T14:16:41.910 | 2023-03-02T14:16:41.910 | null | null | 19,331,755 | [
"sql-server",
"entity-framework-core",
"domain-driven-design",
"data-modeling"
] |
75,616,692 | 2 | null | 54,578,488 | 0 | null | Just for anyone who is coming in!
I believe this is the solution to this case, if you have any fields in your model
```
def save_model(self, request, obj, form, change):
"""
Given a model instance save it to the database.
"""
update_fields = set()
if change:
for k... | null | CC BY-SA 4.0 | null | 2023-03-02T14:18:12.697 | 2023-03-02T14:18:12.697 | null | null | 4,984,493 | null |
75,616,690 | 1 | null | null | 0 | 16 | Hide envelope .
Error:
> (400) Reason: Bad Request Trace-Token: 52331e18-55c5-4801-8c55-c6e4fd4a5712 Timestamp: Thu, 02 Mar 2023 13:19:06 GMT HTTP response headers:
HTTPHeaderDict({'Cache-Control': 'no-cache', 'Content-Length': '164', 'Content-Type': application/json; charset=utf-8', 'X-Content-Type-Options': 'nosniff... | Unable to hide envelope_id from Document - DocuSign | CC BY-SA 4.0 | null | 2023-03-02T14:17:53.777 | 2023-03-02T18:44:24.090 | null | null | 8,250,183 | [
"docusignapi",
"docusign-sdk"
] |
75,616,689 | 1 | 75,617,583 | null | 0 | 45 | I am trying to maximize the internal distance between multiple 2D points while simultaneously minimizing their distance to a center point. I am using L1 distance for calculation and based on one of [my previous question](https://stackoverflow.com/questions/75365804/l1-distance-constraint-or-distance-objective) I was ab... | maximize internal L1 distance between multiple points | CC BY-SA 4.0 | null | 2023-03-02T14:17:39.993 | 2023-03-02T15:32:04.067 | null | null | 13,720,573 | [
"optimization",
"mathematical-optimization",
"linear-programming",
"or-tools",
"constraint-programming"
] |
75,616,671 | 1 | null | null | 0 | 19 | I am doing a multi-class classification (n = 2) using a VGG16 model truncated at its deepest layer and added with a global average pooling layer in Tensorflow Keras. I have split the images into train, validation, and test sets. I also have a CSV file containing "filename", "gender", and "age" columns for all the image... | ValueError: Failed to find data adapter that can handle input in a mixed data input classification task | CC BY-SA 4.0 | null | 2023-03-02T14:16:08.957 | 2023-03-02T16:38:08.027 | 2023-03-02T16:38:08.027 | 7,575,552 | 7,575,552 | [
"python",
"tensorflow",
"validation",
"keras",
"deep-learning"
] |
75,616,696 | 2 | null | 48,055,993 | 0 | null | What solved it for me was to add `dnspython` into the requirements file.
So in the `requirements.pinned.txt`:
```
...
dnspython==2.0.0
...
```
And in the `requirements.txt`:
```
dnspython
...
```
| null | CC BY-SA 4.0 | null | 2023-03-02T14:18:30.300 | 2023-03-02T14:18:30.300 | null | null | 2,695,641 | null |
75,616,697 | 2 | null | 75,616,576 | 1 | null | When you have floated child element, the parent div height gets collapsed.
to avoid this you need to clear floats, so that parent can gain height
```
.topnav::after{
content:"";
clear:both;
display:block;
}
```
```
<style>
.topnav{
background-color:palegreen;
}
.topnav a{
float:left;
}
.topnav::after{
content:"";
... | null | CC BY-SA 4.0 | null | 2023-03-02T14:18:34.580 | 2023-03-02T14:18:34.580 | null | null | 4,114,390 | null |
75,616,700 | 2 | null | 68,577,511 | 0 | null | I had this error on remote.
In addition to the jupyter extension, I also installed the `pylance` extension (on remote); that worked. Nothing else did.
| null | CC BY-SA 4.0 | null | 2023-03-02T14:18:47.483 | 2023-03-02T14:18:47.483 | null | null | 2,008,597 | null |
75,616,664 | 1 | 75,617,056 | null | 0 | 33 | Issue: I want to read a value in the web.config file and based on that value, transform a specific attribute in two other nodes where that attribute exists with a new attribute value.
Value to read: ClientName, can be ABCD or WXYZ. If it's WXYZ, then change....
Value to change: requireSSL from true if ClientName is ABC... | Web.config -- Setting multiple attributes in different nodes based on a value in another node attribute value | CC BY-SA 4.0 | null | 2023-03-02T14:15:54.137 | 2023-03-02T17:47:11.030 | null | null | 210,619 | [
"xml",
"iis",
"xslt",
"web-config"
] |
75,616,701 | 1 | null | null | 0 | 42 | In Patrick Loeber's How to Analyze Apple Health Data with Python ([https://www.python-engineer.com/posts/apple-health-data-python/](https://www.python-engineer.com/posts/apple-health-data-python/)), he suggests iterating over 'Workouts' here: workout_list = [x.attrib for x in root.iter('Workout')]. How does he know 'Wo... | How does the author know the element exists? | CC BY-SA 4.0 | null | 2023-03-02T14:18:47.613 | 2023-03-02T14:18:47.613 | null | null | 21,319,611 | [
"python",
"elementtree"
] |
75,616,703 | 2 | null | 6,860,661 | 0 | null | For the Version 3.1.X it mus be:
```
Logger logger = Logger.getLogger("test");
LoggingFeature loggingFeature = new LoggingFeature(logger, Level.INFO, Verbosity.PAYLOAD_ANY,null);
Client client = ClientBuilder.newClient();
client.register(loggingFeature);
```
Level.ALL is NOT Working
| null | CC BY-SA 4.0 | null | 2023-03-02T14:18:55.337 | 2023-03-02T14:18:55.337 | null | null | 13,650,051 | null |
75,616,698 | 1 | null | null | 0 | 25 | I am working on a server project where I want to user firebase firestore dependecies.
I use the firebase-admin but when I try to add firestore sdk it says that it could not find it, and yes when I looked at that site there where nothing about firestore package.
my build.grade:
```
plugins {
id 'java'
}
group 'org.exam... | Cannot add Firestore to Server | CC BY-SA 4.0 | null | 2023-03-02T14:18:36.403 | 2023-03-03T20:06:46.127 | 2023-03-02T14:25:59.530 | 209,103 | 20,939,081 | [
"java",
"google-cloud-firestore",
"server",
"firebase-admin"
] |
75,616,705 | 2 | null | 75,594,215 | 0 | null | I've found a much easier way of accomplishing what I wanted - rather than trying to build the parameter, I decided to test the step name and then pass on the correct condition for that particular step
here's how I did it
```
stage:
${{ if eq( step.step , 'step1' ) }}:
condition: eq('${{ parameters.step1 }}',... | null | CC BY-SA 4.0 | null | 2023-03-02T14:19:03.093 | 2023-03-02T14:19:03.093 | null | null | 6,565,442 | null |
75,616,704 | 1 | null | null | -2 | 23 | I've been struggling with a peculiar bug where if I include a file outside of my main I get a linker error.
```
//main.cpp
#include "A.h" //This works
//Other stuff here
```
```
//main.cpp version 2
#include "B.h"
```
```
//B.h
#pragma once
#include "A.h" //ERROR!!! LNK2005
```
```
//A.h
#ifndef LIGHTS_H
#define LIG... | Why does including a file outside of main give linker errors when including the file in main does not? | CC BY-SA 4.0 | null | 2023-03-02T14:18:56.293 | 2023-03-02T14:51:40.617 | 2023-03-02T14:51:40.617 | 6,752,050 | 9,264,160 | [
"c++",
"linker",
"include",
"linker-errors",
"lnk2005"
] |
75,616,695 | 1 | null | null | 0 | 12 | I’m developing a Spring Boot Application to gain more Spring Cloud Stream knowledge. Basically, I want to send/receive messages from Kafka Broker. I previously built an application using Spring Kafka and the Spring Cloud Stream. Still, I use annotation configuration, like using @Output, @Input, and @Enablebind. I’m hav... | Spring Cloud Stream with Kafka Binder | CC BY-SA 4.0 | null | 2023-03-02T14:18:20.920 | 2023-03-02T14:25:07.250 | 2023-03-02T14:25:07.250 | 10,380,850 | 10,380,850 | [
"java",
"spring-boot",
"spring-kafka",
"spring-cloud-stream",
"spring-cloud-stream-binder"
] |
75,616,707 | 1 | null | null | 0 | 22 | I have a code which is working just fine as localhost on port 5000 but when I use it client and server side on VPS the gRPC is refused my connection.
Server Side :
```
WebApplicationBuilder builder = WebApplication.CreateBuilder(args);
builder.Services.AddSingleton<ITaskService, TaskService>();
builder.Services.AddAu... | gRPC connection refused | CC BY-SA 4.0 | null | 2023-03-02T14:19:04.273 | 2023-03-02T14:19:04.273 | null | null | 6,544,277 | [
"c#",
".net-core",
"grpc"
] |
75,616,693 | 2 | null | 75,616,575 | 2 | null | ```
WITH
islands AS
(
SELECT
*,
ROW_NUMBER() OVER ( ORDER BY start) AS seq,
ROW_NUMBER() OVER (PARTITION BY city ORDER BY start) AS city_seq
FROM
living
)
SELECT
city,
MIN(start),
MAX(stop)
FROM
islands
GROUP BY
city,
seq - city_seq
ORDER BY
MIN(start)
```
`ROW_NUMB... | null | CC BY-SA 4.0 | null | 2023-03-02T14:18:15.163 | 2023-03-02T14:56:46.540 | 2023-03-02T14:56:46.540 | 53,341 | 53,341 | null |
75,616,415 | 1 | 75,618,905 | null | 0 | 17 | CS student here in AP CSP. I am creating a Wordle knockoff for a project, and I need a way to detect whether a string is an actual world in the English language? Is there a python module or API that can accomplish this? Additionally, is there a python module or API that can generate random words and take in parameters ... | Is there a python module or API that is able to detect whether a string is an actual word in the English language? | CC BY-SA 4.0 | null | 2023-03-02T13:56:39.360 | 2023-03-02T17:28:10.947 | null | null | 21,319,425 | [
"python",
"api",
"module"
] |
75,616,709 | 1 | null | null | 0 | 10 | We have a stand 50 eDTU Elastic Pool with approx 30 databases using this pool. We regularly find that 1,2 or 3databases use 100% of the eDTU even though we have set up the pool so that each Db can only use a max of 20 eDTU hence we end up with application insights reporting 'Elastic Pool is experiencing performance is... | Azure SQL Elastic Pool - Ensuring one database does not use all of the pool eDTU | CC BY-SA 4.0 | null | 2023-03-02T14:19:25.897 | 2023-03-02T14:19:25.897 | null | null | 21,319,583 | [
"azure",
"azure-elasticpool"
] |
75,616,710 | 2 | null | 75,600,898 | 0 | null | Thanks for all your answers.
Finally I found a way to do it myself: (without variadic functions and fold)
```
inline char const my_string_0 [] = "my string 0"; // several of these with different string lengths
typedef struct
{
char const * my_string;
int32_t length;
// other struct members
} T_my_struct... | null | CC BY-SA 4.0 | null | 2023-03-02T14:19:25.990 | 2023-03-02T14:19:25.990 | null | null | 10,755,319 | null |
75,616,702 | 2 | null | 75,616,237 | 0 | null | You have to create your own bottom text e manipulate the behavior, i have an implementation i use in my projects, as follows:
The base component:
```
@OptIn(ExperimentalMaterial3Api::class)
@Composable
fun MyOutlinedTextField(
modifier: Modifier = Modifier,
value: String,
label: String,
onValueChange: (... | null | CC BY-SA 4.0 | null | 2023-03-02T14:18:52.573 | 2023-03-02T14:18:52.573 | null | null | 8,331,852 | null |
75,616,712 | 1 | null | null | 0 | 13 | On a Terraform project I have this variable:
```
variable "databases" {
type = list(object({
name = string
collections = list(object({
name = string
maxRu = optional(number, 400)
}))
}))
description = "a description"
}
```
I want to write a validation condition to test if... | Validate un complex property in a Terraform variable | CC BY-SA 4.0 | null | 2023-03-02T14:19:28.927 | 2023-03-02T14:19:28.927 | null | null | 3,000,434 | [
"validation",
"terraform"
] |
75,616,713 | 1 | null | null | -1 | 16 | I am looking for a solution on how to test the internal state of a customHook
```
export const useCustomHook = (): any => {
const [internal, setInternal] = useState('')
const someFunction(data: string) => {
setInternal(data)
// Do something else with data
}
return {
someFunction
}
}
```
So my issue is ... | Testing Hooks with Internal state - React Testing Library | CC BY-SA 4.0 | null | 2023-03-02T14:19:31.237 | 2023-03-02T14:19:31.237 | null | null | 1,949,585 | [
"reactjs",
"react-hooks",
"react-testing-library"
] |
75,616,715 | 2 | null | 75,601,104 | 0 | null | Source the file, which will set all environment variables, then compile using msbuild as usual:
```
. "C:\Program Files\Microsoft Visual Studio\2022\Professional\Common7\Tools\Launch-VsDevShell.ps1"
msbuild /path/to/solution.sln
```
| null | CC BY-SA 4.0 | null | 2023-03-02T14:19:38.457 | 2023-03-02T14:19:38.457 | null | null | 128,384 | null |
75,616,708 | 1 | null | null | 0 | 7 | I am building an android application in which I am implementing firebase's firestore recycler adapter. But It is not showing any item in my activity. I don't know what is the problem here. Please someone solve this I am really stuck here and I don't know what to do.
This is my adapter class
```
package com.example.book... | Firestore recycler adapter not showing data | CC BY-SA 4.0 | null | 2023-03-02T14:19:07.803 | 2023-03-02T14:25:00.433 | 2023-03-02T14:25:00.433 | 209,103 | 16,945,359 | [
"android",
"google-cloud-firestore",
"android-recyclerview",
"firebaseui"
] |
75,616,717 | 2 | null | 49,355,530 | 0 | null | If you copy the dll from the unzipped nupkg package and got this error, make sure you use the right one with included dependencies like System.Runtime ... :
```
~/runtimes/unix or win/lib/netcoreapp2.1
```
for e.g. `.net6.0`
| null | CC BY-SA 4.0 | null | 2023-03-02T14:19:54.213 | 2023-03-02T14:19:54.213 | null | null | 384,556 | null |
75,616,716 | 1 | null | null | -2 | 15 | the app is based on picking your age and then picking your intrests (from a dropdown) which then is supposed to list the jobs into a text area based on a dataset.
the problem is that it wont print to the text area.
to take a look at the code press the link and then press (built on code stuio) which will show you the co... | why wont the drop down relay information to the text area? | CC BY-SA 4.0 | null | 2023-03-02T14:19:41.867 | 2023-03-02T14:26:07.913 | 2023-03-02T14:26:07.913 | 21,258,763 | 21,258,763 | [
"javascript",
"output",
"dropdown",
"code.org"
] |
75,616,718 | 1 | null | null | 1 | 49 | Can someone explain to me how to fit the following grouped frequency data to log-normal distribution in R?
```
df<-data.frame(age=c(18,22,24,25,26,27,28,29,31,32,35,37,40,44,49,50,55,60,63,67,80),
count=c(100,110,120,125,125,110,100,90,80,70,60,45,30,15,12,10,8,3,2,1,1))
```
`fitdist(df$count,"lnorm")` ... | Log-normal distribution in R | CC BY-SA 4.0 | null | 2023-03-02T14:19:56.453 | 2023-03-02T14:50:00.967 | 2023-03-02T14:40:44.123 | 4,786,466 | 21,242,742 | [
"r"
] |
75,616,722 | 2 | null | 75,427,186 | 0 | null | convert AppendixCode_1 to array. and use it in loop controller .
| null | CC BY-SA 4.0 | null | 2023-03-02T14:20:24.683 | 2023-03-02T14:20:24.683 | null | null | 13,597,511 | null |
75,616,711 | 1 | null | null | 0 | 13 | I have a vue 3 app based on vue-cli with following structures:
tsconfig.js
```
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"strict": true,
"jsx": "preserve",
"moduleResolution": "node",
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSynthet... | fix eslint "no-unused-var" for defineEmits | CC BY-SA 4.0 | null | 2023-03-02T14:19:27.007 | 2023-03-02T15:36:01.507 | null | null | 18,350,505 | [
"typescript",
"vuejs3",
"eslint"
] |
75,616,720 | 1 | null | null | 0 | 37 | I want to pass the array through urlSearchParams
```
interface ContainerProps {
name: string;
query: string;
cuisine: any[];
location: any[];
}
fetch("http://127.0.0.1:8000/api/search"+
new URLSearchParams({query: query, cuisine: cuisine, location: location}))
```
I am getting this error:
> Argument of type ... | Type 'any[]' is not assignable to type 'string' | CC BY-SA 4.0 | null | 2023-03-02T14:20:13.893 | 2023-03-02T14:25:04.227 | null | null | 12,939,216 | [
"javascript",
"reactjs",
"typescript"
] |
75,616,726 | 2 | null | 75,610,140 | 0 | null | I "resolved" the problem, although I'm not sure why it exists.
The z-index of 10000 on the nav bar , kept it above the map when it explodes out of it's div. The problem with the Ipad persisted because although I emptied the safari cache , it seems to use old files for some time.
Android works fine.
| null | CC BY-SA 4.0 | null | 2023-03-02T14:20:33.100 | 2023-03-02T14:20:33.100 | null | null | 4,519,566 | null |
75,616,714 | 2 | null | 75,616,364 | 0 | null | bruttofortjeneste is not in [https://ownr.dk/companies/public-profile/34883793](https://ownr.dk/companies/public-profile/34883793) response HTML. It is request from [https://ownr.dk/companies/public-profile/34883793?period=1129436a6b479abc232731e824879d23](https://ownr.dk/companies/public-profile/34883793?period=112943... | null | CC BY-SA 4.0 | null | 2023-03-02T14:19:32.340 | 2023-03-04T13:56:13.533 | 2023-03-04T13:56:13.533 | 17,343,170 | 17,343,170 | null |
75,616,729 | 2 | null | 75,614,410 | 0 | null | You can get the value of id like below. This example will print "id_for_class2".
```
import java.lang.reflect.Field;
public class Main {
public static void main(String[] args) throws Exception{
class1 a = new class2();
Class cls = a.getClass();
Field field = cls.getDeclaredField("id");
... | null | CC BY-SA 4.0 | null | 2023-03-02T14:20:42.897 | 2023-03-02T14:20:42.897 | null | null | 21,317,664 | null |
75,616,730 | 2 | null | 75,616,489 | 0 | null | found it. removing one `=` from filter was enough
```
cart.filter((el) => el.id == id)[0]
```
| null | CC BY-SA 4.0 | null | 2023-03-02T14:21:02.773 | 2023-03-02T14:21:02.773 | null | null | 15,136,780 | null |
75,616,721 | 2 | null | 75,606,730 | 0 | null | As [RichG](https://stackoverflow.com/users/2227420/richg) [commented](https://stackoverflow.com/questions/75606730/how-can-i-extract-all-fields-from-my-db-connect-results-in-splunk#comment133391431_75606730), seeing this sourcetype's `props.conf` is going to aid greatly
In lieu of that, however, you can start with the ... | null | CC BY-SA 4.0 | null | 2023-03-02T14:20:19.100 | 2023-03-02T16:39:31.850 | 2023-03-02T16:39:31.850 | 4,418 | 4,418 | null |
75,616,719 | 1 | null | null | 0 | 14 | Hello Stack Community,
The scenario is following:
Angular app contains of several feature modules. Those modules provides their `RouterModule.forChild(roues)` to define their internal routing and are imported into main app routing in pretty standard way. Minimal example would be:
app.module.ts
```
...
imports: [
... | Disabling navigation for whole feature module in Angular feature-module base application | CC BY-SA 4.0 | null | 2023-03-02T14:20:12.130 | 2023-03-02T14:30:14.780 | 2023-03-02T14:30:14.780 | 2,759,473 | 2,759,473 | [
"angular",
"angular-routing"
] |
75,616,731 | 2 | null | 75,554,767 | 0 | null | so I faced the same issue with previously working code that suddendly started failing with the same error. I was able to fix it by explicitly setting the pytorch-ligntning version to 1.8.6 (the most current one is 1.9.2 iirc which probably breaks something).
Let me know if this was useful to you
| null | CC BY-SA 4.0 | null | 2023-03-02T14:21:09.977 | 2023-03-02T14:21:09.977 | null | null | 11,812,395 | null |
75,616,732 | 1 | null | null | 0 | 7 | I have a case where I need a FIFO persistent queue. The FIFO persistent queue needs to write its data to a disk attached to a machine where the application is running (no network calls). I have found some libraries but I was wondering if Kafka's commit-log only logic can be used standalone without the cluster and the w... | Embedabble Kafka commit log only lib | CC BY-SA 4.0 | null | 2023-03-02T14:21:14.440 | 2023-03-02T18:35:02.347 | null | null | 2,813,071 | [
"apache-kafka"
] |
75,616,706 | 2 | null | 74,284,369 | 1 | null | Below is the code I use to monitor CPU usage :
```
public final class AndroidUtils {
private static final int FIRST_SYS_CPU_COLUMN_INDEX = 2;
private static final int IDLE_SYS_CPU_COLUMN_INDEX = 5;
public String readSystemStat() {
RandomAccessFile reader = null;
String load = null;
t... | null | CC BY-SA 4.0 | null | 2023-03-02T14:19:04.063 | 2023-03-02T14:30:15.030 | 2023-03-02T14:30:15.030 | 21,317,446 | 21,317,446 | null |
75,616,728 | 2 | null | 75,616,418 | 2 | null |
To connect JavaScript and C# code you need to use AJAX this is where in JavaScript you write a piece of code which will send a Request to the C# Server. For the AJAX Request you will tell it multiple things such as
1. Location - This is where the serve will Get/Post data from/to
2. Type - This is where you declare if... | null | CC BY-SA 4.0 | null | 2023-03-02T14:20:39.190 | 2023-03-02T14:20:39.190 | null | null | 20,654,632 | null |
75,616,736 | 2 | null | 53,017,675 | 0 | null | Another way would be to enable Private Endpoint on your App Service. This way, APIM can connect privately to the App Service without the need for public internet connectivity.
See more:
[https://learn.microsoft.com/en-us/azure/app-service/networking/private-endpoint](https://learn.microsoft.com/en-us/azure/app-service/... | null | CC BY-SA 4.0 | null | 2023-03-02T14:21:29.337 | 2023-03-02T14:21:29.337 | null | null | 548,655 | null |
75,616,737 | 2 | null | 55,230,614 | 0 | null | In this resource, you can use your own user tables without identity tables (AspNet*).
[https://github.com/dotnet/AspNetCore.Docs/tree/main/aspnetcore/security/authentication/identity-custom-storage-providers/sample/CustomIdentityProviderSample](https://github.com/dotnet/AspNetCore.Docs/tree/main/aspnetcore/security/aut... | null | CC BY-SA 4.0 | null | 2023-03-02T14:21:37.687 | 2023-03-02T14:21:37.687 | null | null | 3,414,124 | null |
75,616,727 | 2 | null | 55,479,951 | 0 | null | Old post but I wanted to share my updated version that asks to select a folder, works recursively in this folder and subfolders, asks your for the desired quality and tells you how many images have been converted.
First steps stays the same you need cwebp and python
```
# --cwebp_compressor.py--
import sys
from subpro... | null | CC BY-SA 4.0 | null | 2023-03-02T14:20:38.807 | 2023-03-02T14:28:13.003 | 2023-03-02T14:28:13.003 | 21,319,480 | 21,319,480 | null |
75,616,740 | 1 | null | null | 0 | 7 | The (relatively) new Google Ads API offers [Conversion Value Rules](https://developers.google.com/google-ads/api/docs/conversions/conversion-value-rules) - but I am looking for some examples, resources, pointers ... of uploading them via the [python client library](https://github.com/googleads/google-ads-python/). I wo... | Upload Conversion Value Rules (Google Ads API) via python sdk / script? | CC BY-SA 4.0 | null | 2023-03-02T14:21:57.977 | 2023-03-02T14:21:57.977 | null | null | 4,950,019 | [
"python",
"google-ads-api",
"google-api-python-client"
] |
75,616,733 | 2 | null | 75,611,054 | 1 | null | Apparently, you have a `Building[]` that contains various kinds of `Building` subtype. And you want to create a deep copy.
You cannot do this by implementing a `Building` copy constructor.
Why?
Because a constructor for `Building` can construct a `Building` instance. It construct a `House` instance ... or `Hotel` o... | null | CC BY-SA 4.0 | null | 2023-03-02T14:21:18.467 | 2023-03-02T14:21:18.467 | null | null | 139,985 | null |
75,616,742 | 2 | null | 75,616,594 | 3 | null | , but not in a table format. Both [the HTML spec](https://html.spec.whatwg.org/multipage/semantics.html#semantics) and [MDN's reference doc](https://developer.mozilla.org/en-US/docs/Web/HTML/Reference) list what each sort of element can be a parent/child of.
| null | CC BY-SA 4.0 | null | 2023-03-02T14:22:15.147 | 2023-03-02T14:22:15.147 | null | null | 15,299,500 | null |
75,616,741 | 2 | null | 75,558,732 | 0 | null | Groupby with [transform](https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.transform.html) could be helpful, that way you don't loose the date column.
The calculation of a running variance will need a couple more intermediary column calculations but should be possible in a similar manner.
```
import pandas ... | null | CC BY-SA 4.0 | null | 2023-03-02T14:22:10.283 | 2023-03-02T14:25:48.937 | 2023-03-02T14:25:48.937 | 21,319,052 | 21,319,052 | null |
75,616,734 | 1 | 75,618,168 | null | 0 | 39 | I have two lineplots plotted on the same axes. Each plot represents a different group and consists of two lines representing one of two conditions. Additonally each group is given a different colour palette ( for Group 1 and for Group 2).
The automatically created legend keeps track of the colour palette defined for e... | Is it possible to keep the different color palettes of two lineplots on the same axes in a manually changed legend in matplotlib/seaborn? | CC BY-SA 4.0 | null | 2023-03-02T14:21:20.417 | 2023-03-02T21:21:21.710 | 2023-03-02T15:37:57.080 | 19,256,097 | 19,256,097 | [
"python",
"matplotlib",
"seaborn"
] |
75,616,748 | 2 | null | 75,616,602 | 2 | null | Please, try the next way:
```
Sub RndOfMore3Strings()
Dim arrCrit(), arrPos As Long
arrCrit = Array("BM", "JC", "KS") 'you can use here as many criteria you need, withoout adapting the code...
Randomize
'returning the element position in the above array:
arrPos = Int((UBound(arrCrit) - LBound(arrCri... | null | CC BY-SA 4.0 | null | 2023-03-02T14:22:58.610 | 2023-03-02T14:22:58.610 | null | null | 2,233,308 | null |
75,616,744 | 2 | null | 67,930,200 | 0 | null | [This](https://developer.android.com/jetpack/compose/migrate/interoperability-apis/views-in-compose#fragments-in-compose) is the recommended way of doing it.
1. Enable data binding
2. Make sure your Activity is an AppCompatActivity
3. Create a layout for the fragment container: <androidx.fragment.app.FragmentContaine... | null | CC BY-SA 4.0 | null | 2023-03-02T14:22:30.370 | 2023-03-02T14:28:40.800 | 2023-03-02T14:28:40.800 | 902,276 | 902,276 | null |
75,616,738 | 2 | null | 68,385,426 | 0 | null | Using a C# app you can use the [NuGet QRCoder](https://github.com/codebude/QRCoder/wiki/How-to-use-QRCoder#2-installation) to generate the QRCode and then print in a console like this:
```
static void Main(string[] args)
{
var qrGenerator = new QRCodeGenerator();
var qrCodeData = qrGenerator.CreateQrCode("http:... | null | CC BY-SA 4.0 | null | 2023-03-02T14:21:53.840 | 2023-03-03T16:12:24.907 | 2023-03-03T16:12:24.907 | 4,575,793 | 17,327,904 | null |
75,616,750 | 1 | null | null | -1 | 15 | [enter image description here](https://i.stack.imgur.com/oqJnN.png)
Değiştiremiyorum pathi düzenleyemiyorum yardım eder misinizz
| Why can't I edit the path part in system variables? | CC BY-SA 4.0 | null | 2023-03-02T14:23:10.103 | 2023-03-02T15:23:52.420 | null | null | 21,319,677 | [
"reactjs",
"windows",
"react-native"
] |
75,616,751 | 2 | null | 75,610,344 | 1 | null | A vectorized solution using `findInterval` is a bit clunkier than `vapply`, but it can be a bit faster:
```
microbenchmark::microbenchmark(
findInterval = b[unique(findInterval(which(unlist(V1) %in% 1999:2000), c(0L, cumsum(lengths(V1))), 0, 1, 1))],
vapply = b[vapply(V1, \(x) any(x %in% 1999:2000), FUN.VALUE=TRUE)... | null | CC BY-SA 4.0 | null | 2023-03-02T14:23:10.967 | 2023-03-02T14:23:10.967 | null | null | 9,463,489 | null |
75,616,745 | 1 | null | null | 0 | 10 | The Lucene index I have created has a list field that contains Epoch values for when a certain piece of data is backed up. Each time a backup is performed, an element is added to the list and each time a backup expires, elements are removed from the list. That results in a Lucene document schema similar to the followin... | Find Lucene Document where list has element between time range | CC BY-SA 4.0 | null | 2023-03-02T14:22:32.500 | 2023-03-02T14:22:32.500 | null | null | 2,403,253 | [
"database",
"search",
"indexing",
"lucene"
] |
75,616,749 | 2 | null | 75,589,212 | 0 | null | Here is a example this should work
```
#bot.py
import json
import os
import discord
from discord.ext import commands
# prefix
def get_prefix(client, message):
with open('prefixes.json', 'r') as f:
prefixes = json.load(f)
return prefixes[str(message.guild.id)]
intents = discord.Intents.all()
class Bo... | null | CC BY-SA 4.0 | null | 2023-03-02T14:23:00.923 | 2023-03-02T14:23:00.923 | null | null | 19,353,865 | null |
75,616,747 | 1 | 75,617,762 | null | 0 | 28 | I'm trying to run multiple timers in a parallel manner using PyQt's QTimer objects. I'm trying to define an arbitrary number of timers (defined by n), and to launch them all at the same time : however, they'd all have different intervals (or timeouts), and these intervals would be different each time they'd start.
As o... | Array of timers with PyQt5 | CC BY-SA 4.0 | null | 2023-03-02T14:22:58.093 | 2023-03-02T16:09:13.947 | 2023-03-02T14:52:37.327 | 21,319,562 | 21,319,562 | [
"python",
"pyqt5"
] |
75,616,752 | 1 | 75,617,160 | null | 0 | 43 | I'm trying to create a Rest JSON server using python and flask as backend and JavaScript as front end, the server data need to be saved in local file but i can't seem to find a way to store the data like :
```
[
{'id': id, 'name': name},
<--- New record from POST request goes here
]
```
what i mange to do is:
```
def ... | Creating local json file in python | CC BY-SA 4.0 | null | 2023-03-02T14:23:14.947 | 2023-03-02T15:19:47.900 | 2023-03-02T15:19:47.900 | 400,617 | 19,808,015 | [
"python"
] |
75,616,756 | 1 | null | null | 0 | 23 | I have php a program.This program is being used for exporting the grid's records to csv file.This grid is working fine and able to load upto 1000000 records within a minute.When i export the records to csv file then the timeout error arises.This export function is working fine when exporting upto 1000000 records ,if th... | PHP EXPORT to csv timeout issue | CC BY-SA 4.0 | null | 2023-03-02T14:23:24.937 | 2023-03-03T12:14:55.140 | 2023-03-03T12:14:55.140 | 21,225,479 | 21,225,479 | [
"php"
] |