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,634,885 | 1 | null | null | 0 | 16 | Hi guys [file manager](https://pub.dev/packages/file_manager) package working fine in other folders but when I try to open data folder in Android 13 it gives me an error
[here is error](https://i.stack.imgur.com/hkIAE.png)
[here is my AndroidManifest.xml](https://i.stack.imgur.com/PiMYP.png)
[permission handler impleme... | Directory listing failed, path = '/storage/emulated/0/Android/data/' (OS Error: Permission denied, errno = 13) | CC BY-SA 4.0 | null | 2023-03-04T09:55:30.190 | 2023-03-04T10:11:04.623 | 2023-03-04T10:11:04.623 | 19,786,533 | 19,786,533 | [
"flutter",
"flutter-dependencies"
] |
75,634,887 | 2 | null | 75,634,791 | 0 | null | A variant using `array_walk()`:
```
<?php
$input = [
0 => "foo (bar1)",
1 => "bar (foo2)",
2 => "bas",
3 => "foo (bas3)",
4 => "bar",
];
$output = [];
array_walk($input, function($entry, $key) use (&$output) {
$output[$key] = preg_match('|\([^\)]*\)|', $entry, $token) ? $token[0] : " ";
});
print_r($... | null | CC BY-SA 4.0 | null | 2023-03-04T09:55:32.420 | 2023-03-04T09:55:32.420 | null | null | 1,248,114 | null |
75,634,890 | 2 | null | 75,634,785 | 1 | null | Add `mainAxisSize: MainAxisSize.min,` in your `Column`
```
return InkWell(
onTap: press,
child: Container(
...
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
mainAxisSize: MainAxisSize.min // add this line
children: [...]
)
)
);
```... | null | CC BY-SA 4.0 | null | 2023-03-04T09:56:06.887 | 2023-03-04T09:56:06.887 | null | null | 13,431,819 | null |
75,634,888 | 1 | null | null | 3 | 35 | I have a question about the insert operation in heap. Reading it about it says it is in O(logn), but when I saw this implementation:
```
void max_insert(int* max_heap, int size, int elm) {
if (size == 0) {
max_heap[0] = elm;
}
else {
max_heap[size] = elm;
for (int i = size / 2 - 1; ... | Do we have to build the heap again after insert? | CC BY-SA 4.0 | null | 2023-03-04T09:55:35.183 | 2023-03-04T11:04:26.617 | null | null | 21,078,706 | [
"c",
"data-structures",
"binary-tree",
"heap"
] |
75,634,889 | 2 | null | 75,634,790 | 1 | null | You may want to use the function written in this [issue](https://github.com/tidyverse/dplyr/issues/4223) called `named_group_split` in combination with `map` and `pull` like this:
```
library(dplyr)
library(purrr)
df %>%
named_group_split(var1) %>%
map(~ pull(.x))
#> $A
#> [1] 1 2 3
#>
#> $B
#> [1] 4 5
#>
#> $C
#... | null | CC BY-SA 4.0 | null | 2023-03-04T09:55:52.923 | 2023-03-04T09:55:52.923 | null | null | 14,282,714 | null |
75,634,891 | 1 | null | null | 1 | 46 | I am trying to make a Point tuple that would work like this:
```
p1 = (3, 5)
p1.x
# returns 3
p1.y
# returns 5
p1
# returns (3, 5)
p1.x = 7
# mutable
```
So instead of `p1[0]` i can just call `p1.x` and at the same time calling `p1` returns the tuple, not an object.
I want to use this data structure with Pygame. I tri... | Why do I get a TypeError "must be a pair of numbers" when trying to use custom Point tuple with pygame? | CC BY-SA 4.0 | null | 2023-03-04T09:56:12.807 | 2023-03-04T14:36:03.820 | 2023-03-04T11:12:13.070 | 4,621,513 | 16,775,849 | [
"python",
"data-structures",
"tuples",
"point"
] |
75,634,892 | 2 | null | 75,631,098 | 0 | null | The keys are identical, only their formats differ:
- `BAlW...`- `MFkw...`
This can be easily verified by encoding both keys not in Base64 but in hex:
```
input : 0409565aee3a8a5fe5cba03177fa9c9668445611ad87ddd0379fa1dc904910a12684a7752dfaa4a42a97d5c4f57100ecf673eaf4ba... | null | CC BY-SA 4.0 | null | 2023-03-04T09:56:20.893 | 2023-03-04T09:56:20.893 | null | null | 9,014,097 | null |
75,634,893 | 1 | 75,634,977 | null | -1 | 19 | I have view that combines two tables. One of the requested values by select has to be in either one of those tables and the other has to have null as this value. As a solution I use coalesce
`COALESCE(tbl1.Val, tbl2.Val) As Val`
I am now struggling to select the next value from the same table as Val was taken from, as ... | Using the same table in another value from previous COALESCE | CC BY-SA 4.0 | null | 2023-03-04T09:56:24.530 | 2023-03-04T10:13:34.817 | 2023-03-04T10:03:30.960 | 2,029,983 | 11,826,762 | [
"sql-server",
"null",
"coalesce",
"sql-server-2019"
] |
75,634,894 | 2 | null | 75,628,037 | 0 | null | Solved it, quite silly mistake from a noob actually.
All I had to do was add a reference:
```
<SimpleKeyboard
ref="simplekeyboard"
@onChange="onChange"
@onKeyPress="onKeyPress"
:input="input"
:layout="layout"
... | null | CC BY-SA 4.0 | null | 2023-03-04T09:56:32.163 | 2023-03-04T09:56:32.163 | null | null | 8,863,254 | null |
75,634,863 | 2 | null | 75,631,709 | 0 | null | I have successfully integrated both `Font Awesome Pro 5 and 6`, into `Ext JS versions 6 and 7 (classic)`. I used several guides, including the ones you linked, and last time I even got an upgrade instructions document from Sencha Support.
I can tell you, this is not an easy ride since both Ext JS and Font Awesome are c... | null | CC BY-SA 4.0 | null | 2023-03-04T09:51:55.463 | 2023-03-04T09:51:55.463 | null | null | 14,726,230 | null |
75,634,896 | 1 | null | null | 1 | 19 | Code:
```
func main() {
ctx := context.Background()
rdb := redis.NewClient(&redis.Options{
Addr: "localhost:6379",
Password: "", // no password set
DB: 0, // use default DB
})
pipe := rdb.TxPipeline()
for i := 0; i < 10000; i++ {
pipe.Set(ctx, "a", "abc", t... | Other clients not be blocked while the transaction is executing in redis? | CC BY-SA 4.0 | null | 2023-03-04T09:56:54.447 | 2023-03-04T09:56:54.447 | null | null | 12,958,132 | [
"go",
"redis"
] |
75,634,898 | 1 | null | null | 0 | 8 | I have created a dashboard on Excel and used a Year slicer to dynamically change charts. But 1st chart in my dashboard is not changing as per the slicer. I have created a Date Table in Excel data modeling and mapped date column from date table to various date columns in other tables. But at a time one relationship will... | Excel Slicer not able to filter a chart because of inactive relationship in data model | CC BY-SA 4.0 | null | 2023-03-04T09:57:02.673 | 2023-03-04T09:57:02.673 | null | null | 21,330,746 | [
"excel",
"data-modeling",
"powerpivot"
] |
75,634,897 | 1 | null | null | 0 | 16 | I have a NextJS app with NextAuth setup as my authentication service.
My backend is in Springboot 3.0.3.
I am trying to set up the oauth2 resource server in spring-boot to be able to decode the JWT token from NextAuth but I cannot find any valid issuer-URI in order to be able to have role-based entry points in my API.
... | Next auth with SpringBoot as resource server | CC BY-SA 4.0 | null | 2023-03-04T09:56:55.310 | 2023-03-04T10:23:25.483 | 2023-03-04T10:23:25.483 | 7,884,616 | 21,330,716 | [
"spring-boot",
"next.js",
"spring-security",
"next-auth"
] |
75,634,899 | 2 | null | 75,634,790 | 5 | null | There are a couple of options, some of them already mentioned in the comments:
```
df <- data.frame(var1=c("A","A","A","B","B","C"),var2=seq(1,6))
# magrittr pipe
df %>%
{split(.$var2, .$var1)}
#> $A
#> [1] 1 2 3
#>
#> $B
#> [1] 4 5
#>
#> $C
#> [1] 6
# base pipe
df |>
(\(x) split(x$var2, x$var1))()
#> $A
#... | null | CC BY-SA 4.0 | null | 2023-03-04T09:57:19.473 | 2023-03-04T09:57:19.473 | null | null | 9,349,302 | null |
75,634,904 | 2 | null | 75,627,774 | 0 | null | ```
=INDEX(Dates,MATCH(MIN(ABS(Criteria-DateTimes)),ABS(Criteria-DateTimes),0))
```
| null | CC BY-SA 4.0 | null | 2023-03-04T09:57:44.997 | 2023-03-04T09:57:44.997 | null | null | 1,759,099 | null |
75,634,900 | 2 | null | 75,631,706 | 0 | null | Your code works with a small fix:
```
Private Sub Workbook_NewSheet(ByVal Sh As Object)
Dim ws As Worksheet
Set ws = Sh
' Add Worksheet_Change event to new sheet
Dim code As String
code = "Private Sub Worksheet_Change(ByVal Target As Range)" & vbCrLf & _
" If Not (Application.Inte... | null | CC BY-SA 4.0 | null | 2023-03-04T09:57:31.157 | 2023-03-04T09:57:31.157 | null | null | 15,794,828 | null |
75,634,907 | 2 | null | 75,634,746 | 1 | null | Nice question, my understanding is that domain events should occur when domain state changes and not in a simple query.
In the above example if we want to measure temperature we just query using a repository directly from application layer that has nothing to do with domain, so no domain events should occur.
If someone... | null | CC BY-SA 4.0 | null | 2023-03-04T09:58:38.167 | 2023-03-04T09:58:38.167 | null | null | 7,600,871 | null |
75,634,881 | 1 | null | null | 1 | 14 | I have a problem with using @aspnet/signalr-client, I'm still just starting out and I don't understand where
> SignalR connection error: Error: WebSocket failed to connect comes from. The connection could not be found on the server, either the endpoint may not be a SignalR endpoint, the connection ID is not present on ... | How to refresh an angular view using Azure function App with signalr negociate | CC BY-SA 4.0 | null | 2023-03-04T09:54:30.107 | 2023-03-04T19:33:54.680 | 2023-03-04T19:33:54.680 | 13,242,362 | 13,242,362 | [
"angular",
"azure-functions",
"signalr"
] |
75,634,901 | 1 | null | null | 0 | 13 | [](https://i.stack.imgur.com/MiIUk.png)
The above is the very high-level sequence diagram for two APIs trying to communicate with each other. The frontend does only communicate with AppOne. AppOne calls AppTwo to store some data in AppTwo's DB but before saving the data, AppTwo calls AppOne to retrieve some further inf... | What is the reason for getting HTTP 504 while trying to make HTTP call-back to retrieve further information from caller API in Django? | CC BY-SA 4.0 | null | 2023-03-04T09:57:33.103 | 2023-03-04T12:04:34.923 | 2023-03-04T12:04:34.923 | 1,707,924 | 1,707,924 | [
"mysql",
"django",
"rest",
"http",
"azure-web-app-service"
] |
75,634,905 | 1 | null | null | -4 | 26 | I'm tinkering this [Python nats POC](https://github.com/stephane-klein/nats-python-poc).
I run the script:
```
$ python read_pull.py
```
My question: what do you recommend to automatically restart the `read_pull.py` script when its content is modified?
I have looked [https://github.com/gorakhargosh/watchdog](https://g... | I look for a light solution to auto reload my asyncio python script | CC BY-SA 4.0 | null | 2023-03-04T09:57:45.647 | 2023-03-04T10:03:38.313 | 2023-03-04T10:03:38.313 | 261,061 | 261,061 | [
"python",
"python-asyncio",
"hot-reload"
] |
75,634,908 | 1 | null | null | 0 | 7 | I'd like to use two models for topic modelling. Can it be possible that I get the average of two different document-topic matrices to have a new document-topic matrix? If not is there a way to use two different topic modelling method such as LDA and NMF?
First, I get two same document-term matrices with Tfidf vectorize... | Can you take average of two document-topic matrices for example one is produced by LDA and the other one is produced by NMF? | CC BY-SA 4.0 | null | 2023-03-04T10:00:07.287 | 2023-03-04T10:00:07.287 | null | null | 20,217,421 | [
"lda",
"topic-modeling",
"nmf"
] |
75,634,914 | 2 | null | 75,634,790 | 4 | null | Not a `dplyr` solution but using `magrittr`s "exposition" pipe `%$%` you could do:
```
df <- data.frame(var1=c("A","A","A","B","B","C"),var2=seq(1,6))
library(magrittr)
df %$%
split(var2, var1)
#> $A
#> [1] 1 2 3
#>
#> $B
#> [1] 4 5
#>
#> $C
#> [1] 6
```
| null | CC BY-SA 4.0 | null | 2023-03-04T10:00:43.770 | 2023-03-04T10:00:43.770 | null | null | 12,993,861 | null |
75,634,895 | 1 | null | null | 0 | 10 | My web app has a django rest framework backend and reactjs frontend. I want to add firebase push notification service to my web app. According to the tutorials I added the in the public folder of the react app which is the frontend. The contents in the is as below:
firebase-messaging-sw.js/public
```
importScripts(
... | FirebaseError: Messaging: We are unable to register the default service worker. Django Rest + Reactjs App | CC BY-SA 4.0 | null | 2023-03-04T09:56:53.653 | 2023-03-04T09:56:53.653 | null | null | 16,425,029 | [
"reactjs",
"django",
"firebase",
"django-rest-framework",
"firebase-cloud-messaging"
] |
75,634,906 | 1 | null | null | 0 | 7 | From [https://github.com/tensorflow/models/blob/master/research/object_detection/model_main_tf2.py](https://github.com/tensorflow/models/blob/master/research/object_detection/model_main_tf2.py), the approach shared was to run Tensorflow object detection API from the linux terminal or anaconda prompt.
On a particular co... | Is there a way to run Tensorflow Object Detection API's model_main_tf2.py from within a Jupyter Notebook cell? | CC BY-SA 4.0 | null | 2023-03-04T09:58:28.963 | 2023-03-04T09:58:28.963 | null | null | 5,324,726 | [
"tensorflow",
"jupyter-notebook",
"object-detection-api"
] |
75,634,910 | 1 | null | null | 0 | 13 | I'm interested to know the state of the :
Four years ago it was announced: [https://www.youtube.com/watch?v=rQM_ZPZy8Ck&list=PLU8TPe7k8z9ew5W6YpACnGvjBDYaJVORZ&index=1](https://www.youtube.com/watch?v=rQM_ZPZy8Ck&list=PLU8TPe7k8z9ew5W6YpACnGvjBDYaJVORZ&index=1)
According to the README: [https://github.com/JanusGraph/ja... | FoundationDB as storage backend for JanusGraph: still feasible and advisable? | CC BY-SA 4.0 | null | 2023-03-04T10:00:23.873 | 2023-03-04T10:09:45.583 | 2023-03-04T10:09:45.583 | 466,862 | 14,175,733 | [
"janusgraph",
"foundationdb"
] |
75,634,909 | 2 | null | 17,841,323 | 0 | null | `@abc.abstractmethod`
build.sh
```
sphinx-build . out
```
conf.py
```
import os
import sys
sys.path.insert(0, os.path.abspath('.'))
extensions = [ 'sphinx.ext.autodoc' ]
autodoc_default_options = {
'members': True,
# Does now show base classes otherwise... why such bad defaults?
# But with this it does sho... | null | CC BY-SA 4.0 | null | 2023-03-04T10:00:16.140 | 2023-03-04T10:00:16.140 | null | null | 895,245 | null |
75,634,917 | 1 | null | null | 0 | 24 | When i try to insert picture manually it gets inserted. When i try to insert it with the recorded macro it shows error cannot insert picture. i think it is due to picture name.
image name
HCLL20220419 色块 50x65cm-效果图.jpg\
Recorded Macro
```
ActiveSheet.Pictures.Insert( "C:\Users\ABDULLAH\Pictures\HCLL20220419 ?? 50x65cm... | Inserting a picture | CC BY-SA 4.0 | null | 2023-03-04T10:01:09.993 | 2023-03-04T16:01:14.700 | 2023-03-04T15:24:17.543 | 8,422,953 | 11,779,221 | [
"excel",
"vba"
] |
75,634,912 | 1 | null | null | 0 | 34 | I have an ASP.NET 6 Core application. There is a `serilog.json` file with the Serilog configuration. At runtime, if you change this file, Serilog does not see the change, but the reloadOnChange configuration parameter is true.
Method main of the `Program` class:
```
public static void Main(string[] args)
{
var isSe... | Can't see changes to the json file when the application is running | CC BY-SA 4.0 | null | 2023-03-04T10:00:26.283 | 2023-03-04T10:57:48.317 | 2023-03-04T10:57:48.317 | 13,302 | 21,285,779 | [
"c#",
".net-core",
"configuration",
"serilog",
"asp.net-core-6.0"
] |
75,634,903 | 2 | null | 75,634,605 | 1 | null | I modified only slightly and put together a full working example of what you are trying to accomplish - the `compressImage` function works and reduces the quality of suitable images perfectly well. Use the returned value from that function in subsequent operations
```
<?php
if( $_SERVER['REQUEST_METHOD']=='POST' ){... | null | CC BY-SA 4.0 | null | 2023-03-04T09:57:38.323 | 2023-03-04T10:34:24.017 | 2023-03-04T10:34:24.017 | 3,603,681 | 3,603,681 | null |
75,634,918 | 1 | null | null | -2 | 33 | I'm using postgresql to create a database driven web app.
The user makes a post, then can add related documents and photos to that post.
The documents and photos are stored in their tables along with the 'contentid' of the post they were added to.
I'm trying to create a query that can fetch all a user's posts and their... | Query for Fetching related data from multiple PostgreSQL tables at once | CC BY-SA 4.0 | null | 2023-03-04T10:01:23.660 | 2023-03-04T11:21:25.350 | 2023-03-04T11:21:25.350 | 3,639,372 | 3,639,372 | [
"postgresql"
] |
75,634,916 | 1 | null | null | -1 | 35 | I want to parse a string of JSON back into a JSON. the string has some boolean values.
str_json = "{'name': 'bob', 'id': '11111', 'happy': True, 'sad': False}"
d = {"name": "bob", "id": "11111", "happy": "True", "sad": "False"}
```
p = re.compile('(?<!\\\\)\'')
str_json = p.sub('\"', str_json)
d = json.loads(str_jso... | Parsing a string that has some boolean values back to json (Python) | CC BY-SA 4.0 | null | 2023-03-04T10:01:07.777 | 2023-03-04T11:53:41.370 | 2023-03-04T11:53:41.370 | 3,440,745 | 21,330,733 | [
"python",
"json",
"string",
"python-re",
"python-jsons"
] |
75,634,923 | 1 | null | null | -3 | 28 | please tell me, in php there is a command like phpinfo (), which displays a query table on a page from the database (request and its processing time)
very handy tool, but after changing the project I forgot the name. Searching again on google didn't help.
| Display information about mysql queries in PHP | CC BY-SA 4.0 | null | 2023-03-04T10:02:29.427 | 2023-03-04T11:07:56.350 | 2023-03-04T11:07:56.350 | 5,389,997 | 21,330,628 | [
"php"
] |
75,634,922 | 1 | null | null | 1 | 11 | I'm developing Google Workspace Add-On based on Node.JS + Cloud Run ().
I want to let my client install this Add-On while it's still unpublished to see the progress.
It's easily achieved with Apps Script based add-on and perfectly described [here](https://developers.google.com/apps-script/add-ons/how-tos/testing-worksp... | Google Workspace Add-On on Node.JS + Cloud Run - how to allow another user make test deployment while it's still unpublished | CC BY-SA 4.0 | null | 2023-03-04T10:02:21.253 | 2023-03-04T11:03:15.350 | 2023-03-04T11:03:15.350 | 4,882,535 | 4,882,535 | [
"google-apps-script",
"google-cloud-run",
"google-workspace",
"google-workspace-add-ons"
] |
75,634,921 | 1 | null | null | 0 | 36 | I want to run my Flutter app for the first time on emulator . at first I had problem to running it at gradle . then I deleted the gradle folder and download it manuall and replace it in the folder . gradle version is 8.0-all , its fine here . but the Daemon part is problem . it stuck at :
```
Starting a Gradle Daemon (... | flutter app gradle Daemon is stuck , how to solve it? | CC BY-SA 4.0 | null | 2023-03-04T10:02:08.153 | 2023-03-04T10:02:08.153 | null | null | 16,572,372 | [
"flutter",
"gradle",
"daemon"
] |
75,634,920 | 1 | null | null | 0 | 12 | I'm working on a small project in nestJs,
I need to add audit columns for some entities.
For that I'm setting user information on a request object, I'm sure that it is setting correctly.
And Saw working fine if I print request object in controller .
But this not working on entity classes.
I'm trying like this :
```
imp... | How to get request object inside the entity class in nestJs | CC BY-SA 4.0 | null | 2023-03-04T10:01:41.060 | 2023-03-04T10:01:41.060 | null | null | 20,181,423 | [
"typescript",
"nestjs",
"typeorm"
] |
75,634,929 | 2 | null | 1,266,666 | 0 | null | ```
SELECT SUM(*)
FROM (
SELECT COUNT(*) AS cnt FROM IP_IRRADIATE_SUBMISSION_PHOTON WHERE IRRADIATESUBMISSIONMASTERID = 84
UNION SELECT COUNT(*) AS cnt FROM IP_IRRADIATE_SUBMISSION_ELECTRON WHERE IRRADIATESUBMISSIONMASTERID = 84
);
```
This worked in Oracle. The "As TMP" was throwing it. ... | null | CC BY-SA 4.0 | null | 2023-03-04T10:04:06.037 | 2023-03-04T15:25:10.593 | 2023-03-04T15:25:10.593 | 658,216 | 658,216 | null |
75,634,927 | 2 | null | 75,634,368 | 0 | null | Solidity mapping doesn't keep info about what keys have been set, which makes it not possible to iterate over.
On the other hand: If you know the key, it's more cost-effective to retrieve the value from a mapping than from an array.
If you want to retrieve list of valid keys, you'll need to store the keys in a separate... | null | CC BY-SA 4.0 | null | 2023-03-04T10:03:47.353 | 2023-03-04T10:03:47.353 | null | null | 1,693,192 | null |
75,634,925 | 2 | null | 69,142,121 | 0 | null | Sorry for the late response, but add
`options={{ title: null, }}`
in your Screen Stack, hope this helps.
```
<Stack.Screen
name="Video Details"
component={Video Details}
options={{ title: null, }}
headerLeft: ({onPress, focused}) => (
<TouchableOpacity onPress={onPress}>
... | null | CC BY-SA 4.0 | null | 2023-03-04T10:03:45.907 | 2023-03-04T10:03:45.907 | null | null | 11,976,414 | null |
75,634,919 | 1 | null | null | 0 | 21 | Any idea why PATCH wouldn't be accepting multipart/form-data file uploads? I am trying to update data using mumultipart form data but my postman is not recognising variables If I POST the file, it works fine. following is my function in php
```
function updateImage($writeDB, $returned_userid) {
// Retrieve the r... | Patch request is not working multipart form data | CC BY-SA 4.0 | null | 2023-03-04T10:01:36.620 | 2023-03-04T10:13:11.687 | null | null | 17,033,081 | [
"php",
"api"
] |
75,634,924 | 2 | null | 75,579,033 | 0 | null | If you want to expose traffic via multiple IPs, you'll just need to create multiple Services of type LoadBalancer:
```
apiVersion: v1
kind: Service
metadata:
name: traefik-web-service
spec:
type: LoadBalancer
ports:
- targetPort: web
port: 80
selector:
app: traefik
---
apiVersion: v1
kind: Servic... | null | CC BY-SA 4.0 | null | 2023-03-04T10:03:42.793 | 2023-03-04T10:03:42.793 | null | null | 5,529,712 | null |
75,634,933 | 1 | null | null | 0 | 8 | I have a problem while installing adobe xd !
I got this error ![image of error] ([https://i.stack.imgur.com/ntB8v.png](https://i.stack.imgur.com/ntB8v.png))
What should I do ?
I tried every way, but ... !
| how can I solve 0x800706b5 error while installing adobe xd | CC BY-SA 4.0 | null | 2023-03-04T10:05:10.307 | 2023-03-04T10:05:10.307 | null | null | 18,367,187 | [
"adobe",
"adobe-xd"
] |
75,634,934 | 2 | null | 75,634,645 | 0 | null | I realized that I forgot to name the `control` argument, as in:
```
control = control.ergm(seed = 567)
```
| null | CC BY-SA 4.0 | null | 2023-03-04T10:05:21.440 | 2023-03-04T18:46:34.790 | 2023-03-04T18:46:34.790 | 12,685,768 | 21,320,440 | null |
75,634,936 | 1 | null | null | -2 | 13 | When I change the image link and I put mine, It doesn't display in whatsapp
I tried to change the link of an image and I put mine, the image refused to display in whatsapp
| How can I add share image on whatsapp on my website, I had got the source code but when I changed the image link , the image didn't display | CC BY-SA 4.0 | null | 2023-03-04T10:06:06.587 | 2023-03-04T10:06:06.587 | null | null | 21,330,766 | [
"html"
] |
75,634,931 | 1 | null | null | -2 | 36 | I am reading data from a MYSQL database using the following SQL:
```
SELECT GROUP_CONCAT(MemberMemberId SEPARATOR ',')
AS
MemberMemberId
FROM
member_events
WHERE
event_date = "2000-01-01"
AND
EventEventId= 1;
```
This SQL is embedded as raw SQL in a Sequelize query, itself part of an Express router, as foll... | Extracting a comma seperated list of numbers from an array | CC BY-SA 4.0 | null | 2023-03-04T10:04:42.293 | 2023-03-04T10:35:47.180 | null | null | 20,695,270 | [
"javascript",
"reactjs",
"express",
"sequelize.js"
] |
75,634,938 | 2 | null | 14,719,007 | 0 | null |
# Tree vs Arrays:
Trees use more time and memory; even tho Asymptotically they have the same time-space complexity, the constant factors are different.
Pointers require a lot more memory, especially if we have 3 pointers per node:
for each node we would have:
1. pointer to parent node
2. pointer to left node
3. poi... | null | CC BY-SA 4.0 | null | 2023-03-04T10:06:27.867 | 2023-03-04T10:06:27.867 | null | null | 12,417,175 | null |
75,634,937 | 1 | null | null | 0 | 7 | I have a wxFilePickerCtrl & am trying to colour the filepath/text background e.g. when the filepath no longer exists.
```
tcf_entry = wx.FilePickerCtrl(myframe, message="Select File", wildcard="TCF files (*.tcf)|*.tcf|All files (*.*)|*.*", name="FilePicker_tcf")
tcf_entry.SetBackgroundColour("red")
```
My code makes t... | wx.FilePickerCtrl SetBackgroundColor of File/Path box instead of entire object | CC BY-SA 4.0 | null | 2023-03-04T10:06:13.600 | 2023-03-04T10:06:13.600 | null | null | 18,735,874 | [
"wxpython"
] |
75,634,940 | 2 | null | 75,634,022 | 1 | null | You need to `await` all those async calls otherwise they become "fire and forget" and you won't capture the result.
I have removed all mention of username and password to discourage it
```
@code
{
private string? testString = "teststring";
async Task StoreValueAsync()
{
await storage.SetAsync("dat... | null | CC BY-SA 4.0 | null | 2023-03-04T10:06:50.497 | 2023-03-04T10:06:50.497 | null | null | 2,658,697 | null |
75,634,932 | 1 | null | null | 0 | 13 | I am trying to setup Change Data Capture (CDC) between wso2si and a local OracleDB.
I have added ojdbc8-12.2.0.1.jar to <SI_HOME>/lib (I am following [Installing a specfic Siddhi Extension](https://apim.docs.wso2.com/en/latest/reference/streaming-connectors/downloading-and-installing-siddhi-extensions/#installing-a-spe... | How to config Oracle CDC with WSO2 Streaming Integrator | CC BY-SA 4.0 | null | 2023-03-04T10:04:59.420 | 2023-03-04T10:04:59.420 | null | null | 17,810,495 | [
"wso2"
] |
75,634,943 | 2 | null | 75,308,204 | 0 | null | The server header cannot be removed unless you use Nginx Plus (paid) or build Nginx yourself and remove the header inclusion in the source code.
Duplicate of [https://serverfault.com/questions/214242/can-i-hide-all-server-os-info](https://serverfault.com/questions/214242/can-i-hide-all-server-os-info)
| null | CC BY-SA 4.0 | null | 2023-03-04T10:07:38.777 | 2023-03-04T10:07:38.777 | null | null | 4,035,845 | null |
75,634,939 | 1 | null | null | -1 | 23 | I have a dataset and I want to draw scatterplots for all the columns with the last column (Result), using subplots.
```
fig, ax = plt.subplots(figsize=(10, 6))
for i in range(len(columns)-1):
columns = df.columns[i]
ax.scatter(x = df[columns], y = df['Result'])
plt.xlabel(columns[i])
plt.ylabel("Result"... | Creating multiple plots using loops | CC BY-SA 4.0 | null | 2023-03-04T10:06:42.940 | 2023-03-04T10:22:49.753 | null | null | 21,291,722 | [
"python",
"pandas",
"matplotlib"
] |
75,634,942 | 1 | null | null | 1 | 27 | I use R to manipulate my data then take the vector files I generate into a GIS platform such as QGIS (because my datasets are large and cannot be easily interrogated using `leaflet`, `mapview`, etc.
I would like to save my point vector file as a shapefile with the styles embedded (e.g. colour) so I can open it in QGIS ... | Save a sf object in r as a shapefile with embedded style | CC BY-SA 4.0 | null | 2023-03-04T10:07:38.110 | 2023-03-04T13:51:01.713 | 2023-03-04T13:51:01.713 | 13,302 | 13,326,190 | [
"r",
"gis",
"sf"
] |
75,634,945 | 2 | null | 75,634,919 | 0 | null | `PATCH` is not for uploading binary data (like what you want with the image), see: [https://developer.mozilla.org/en-US/docs/web/http/methods/patch](https://developer.mozilla.org/en-US/docs/web/http/methods/patch)
(Allowed in HTML Forms: No).
Uploading binary data (like images) has to be done with `POST` always, `PUT` ... | null | CC BY-SA 4.0 | null | 2023-03-04T10:07:58.873 | 2023-03-04T10:07:58.873 | null | null | 356,239 | null |
75,634,944 | 2 | null | 75,453,010 | 0 | null | resolved issues by updating the dependencies in the package-lock.json file, not user if this is the best scenario. I followed the steps on this website: [https://itnext.io/fixing-security-vulnerabilities-in-npm-dependencies-in-less-than-3-mins-a53af735261d](https://itnext.io/fixing-security-vulnerabilities-in-npm-depen... | null | CC BY-SA 4.0 | null | 2023-03-04T10:07:42.427 | 2023-03-04T10:07:42.427 | null | null | 2,284,961 | null |
75,634,941 | 2 | null | 72,869,663 | 0 | null | Not sure if you have other reasons for using the context to get this data into the api consumer but with nextjs, the `getStaticProps` or `getServerSideProps` of course feeds into the route component, but maybe you've missed the following detail?
> The Component prop is the active page, so whenever you navigate between ... | null | CC BY-SA 4.0 | null | 2023-03-04T10:07:16.863 | 2023-03-04T10:07:16.863 | null | null | 454,615 | null |
75,634,930 | 1 | 75,638,960 | null | -1 | 25 | I try to login. after registration had done.
When I try to login it shows invalid password and username.
But, I mention the correct password and username
[github file](https://github.com/kishore05102004/login-and-reg.git)
```
package com.example.app
import android.content.Intent
import android.os.Bundle
import android... | facing issue in login and registration in android studio using SQLite + kotlin | CC BY-SA 4.0 | null | 2023-03-04T10:04:25.910 | 2023-03-04T22:06:03.623 | 2023-03-04T13:27:07.443 | 4,420,967 | 19,539,644 | [
"kotlin",
"android-sqlite",
"sqliteopenhelper"
] |
75,634,946 | 1 | null | null | -1 | 35 | The window shown in green is the listview. Widgets information is kept which window will be opened in Listview. I want to bring different gui designs in the window on the right according to the widgets I choose. When I select 1 in the items written in the listview, the widget on the right will be number one. When I cho... | How can I bring the different widget interface gui in the right window according to the items I selected in the listview window? | CC BY-SA 4.0 | null | 2023-03-04T10:07:59.607 | 2023-03-04T10:07:59.607 | null | null | 20,166,908 | [
"java",
"user-interface",
"listview",
"javafx",
"java-8"
] |
75,634,950 | 2 | null | 75,634,916 | 0 | null | You can try:
```
import ast
str_json = "{'name': 'bob', 'id': '11111', 'happy': True, 'sad': False}"
j=ast.literal_eval(str_json)
print(j)
#{'name': 'bob', 'id': '11111', 'happy': True, 'sad': False}
```
Link to document :[https://docs.python.org/3/library/ast.html#ast.literal_eval](https://docs.python.org/3/library... | null | CC BY-SA 4.0 | null | 2023-03-04T10:09:22.947 | 2023-03-04T10:14:51.080 | 2023-03-04T10:14:51.080 | 13,086,128 | 13,086,128 | null |
75,634,949 | 1 | null | null | -2 | 39 | I am aware of the fact that we can print colors in the terminal as mentioned here: [stdlib and colored output in C](https://stackoverflow.com/questions/3219393/stdlib-and-colored-output-in-c) and here: [https://en.wikipedia.org/wiki/ANSI_escape_code#Colors](https://en.wikipedia.org/wiki/ANSI_escape_code#Colors)
Is it p... | Color output in terminal using 24-bit RGB code (r,g,b) where r,g and b goes each from 0 to 255? | CC BY-SA 4.0 | null | 2023-03-04T10:09:05.987 | 2023-03-04T14:01:09.143 | 2023-03-04T13:11:51.930 | 9,381,746 | 9,381,746 | [
"c",
"terminal",
"colors",
"rgb"
] |
75,634,951 | 1 | null | null | -1 | 17 | iam receiving an error in check_model() in performance package.
data from library (ISLR)[](https://i.stack.imgur.com/s3lNN.png)
```
m<-lm(log(salary)~poly(age, 2)*health,dd)
plot(allEffects(m))
check_model(m)
```
i am unable to get multicollinearity and non normality of residuals
[](https://i.stack.imgur.com/zF... | why am i unable to get a log transformed value showing normality? | CC BY-SA 4.0 | null | 2023-03-04T10:09:30.577 | 2023-03-04T10:09:30.577 | null | null | 21,099,653 | [
"r"
] |
75,634,954 | 1 | null | null | -3 | 15 | When an expiry date is added for a particular good, how do I write code that will give me an alert when the expiry date reaches the computer date
Vb.net
| Is there a function that can notify me when the expiry date is reached? | CC BY-SA 4.0 | null | 2023-03-04T10:09:48.080 | 2023-03-04T10:09:48.080 | null | null | 20,541,532 | [
"vb.net"
] |
75,634,947 | 1 | null | null | 0 | 14 | I have the code below as a template for a plugin that will hopefully eventually allow easy sharing of content to social media.
In testing, however, it seems the values are not being set in the POST.
The testing code I put in does not run - there are no error messages.
What have I done wrong?
```
//Add box to the post e... | POST variables in wordpress plugin | CC BY-SA 4.0 | null | 2023-03-04T10:08:01.637 | 2023-03-04T11:51:53.913 | 2023-03-04T11:51:53.913 | 1,505,631 | 1,505,631 | [
"wordpress",
"plugins",
"wordpress-plugin-creation"
] |
75,634,955 | 1 | null | null | 0 | 4 | I try to run code in Dev-c but it doesn't work. I want to find where is wrong but ide compile not logging that.
[enter image description here](https://i.stack.imgur.com/xes67.png)
How can I fix to be like this
[enter image description here](https://i.stack.imgur.com/Gq3Wp.png)
| Dev-C logging compile not showing | CC BY-SA 4.0 | null | 2023-03-04T10:09:56.940 | 2023-03-04T10:09:56.940 | null | null | 18,525,079 | [
"logging",
"compilation",
"toolbar",
"show",
"dev-c++"
] |
75,634,952 | 1 | null | null | 0 | 5 | i have a Toogle button in my UWP i need to change its default color value if it is checked i need the both check and Uncheck color to white
```
<StackPanel Height="200" >
<ToggleButton Width="100" Height="100" Checked="ToggleButton_Checked" >
</ToggleButton>
</StackPanel... | How to set Togglebutton's background where it has checked | CC BY-SA 4.0 | null | 2023-03-04T10:09:38.560 | 2023-03-04T10:09:38.560 | null | null | 20,147,032 | [
"uwp"
] |
75,634,958 | 2 | null | 75,627,762 | 0 | null | there is an extra braces in the query.
Write this:
```
const query = `*[_type == "courses"]{
title
}`;
sanityClient.fetch(query)
.then(data=>setCourses(data))
```
| null | CC BY-SA 4.0 | null | 2023-03-04T10:11:15.127 | 2023-03-04T10:11:15.127 | null | null | 20,182,014 | null |
75,634,953 | 2 | null | 75,634,324 | 0 | null | You can set default value in mounted hook and use `option-value` property to select just the value:
```
const { createApp, reactive, onMounted } = Vue;
const App = {
setup() {
const conditions = [
{ name: "Hyper Tension", value: "Hyper Tension" }, { name: "Hyper Tension2", value: "Hyper Tension2" }, { name... | null | CC BY-SA 4.0 | null | 2023-03-04T10:09:47.837 | 2023-03-04T10:09:47.837 | null | null | 11,989,189 | null |
75,634,801 | 1 | null | null | 0 | 20 |
# Optimization Problem Statement
Company A is looking to partner with a popular Hotel chain . However, the hotel chain is keen to
test the factory's production line first to ensure that it can handle the daily demand for beverage from its guests. Company A is looking for innovative solutions that can help them esta... | Modelling a tricky optimization problem using python | CC BY-SA 4.0 | null | 2023-03-04T09:37:04.047 | 2023-03-04T09:37:42.170 | 2023-03-04T09:37:42.170 | 21,330,655 | 21,330,655 | [
"python",
"optimization",
"pulp"
] |
75,634,960 | 2 | null | 75,634,891 | 0 | null | You could use [types.SimpleNamespace](https://docs.python.org/3/library/types.html#types.SimpleNamespace):
```
>>> from types import SimpleNamespace
>>> p = SimpleNamespace(x=3, y=5)
>>> p.x
3
>>> p.y
5
>>> p.x = 7
>>> p
namespace(x=7, y=5)
```
| null | CC BY-SA 4.0 | null | 2023-03-04T10:11:34.710 | 2023-03-04T10:11:34.710 | null | null | 3,080,723 | null |
75,634,962 | 1 | null | null | -1 | 21 | My project doesn't opens after added texture pack from asset store.
It's Stucking on Initial .
I'm guessing it'll open after deleting that package. Added
But I couldn't find information about how to delete packages without opening Unity.
Can someone help me with this?
| How to delete packages in without opening Unity? | CC BY-SA 4.0 | null | 2023-03-04T10:11:45.227 | 2023-03-05T02:23:21.400 | 2023-03-04T10:31:02.097 | 17,959,492 | 17,959,492 | [
"unity3d",
"package"
] |
75,634,964 | 1 | null | null | 0 | 15 | I think this is more of a math question than anything else. I can return a calculation, but no matter how I try to manipulate it, I get an answer that has to be wrong. I've been using the simple formula [(X/Y)-1].
```
| Company | 2020 profit | 2022 profit| % increase |
| ----------- | ----------- | ---------- | ... | Completely stumped on calculating percentage when denominator is negative | CC BY-SA 4.0 | null | 2023-03-04T10:12:02.963 | 2023-03-04T10:12:02.963 | null | null | 7,691,012 | [
"excel",
"math"
] |
75,634,935 | 1 | null | null | 0 | 8 | I am following this sample :
[https://github.com/Azure-Samples/ms-identity-blazor-server/tree/main/WebApp-OIDC/MyOrg](https://github.com/Azure-Samples/ms-identity-blazor-server/tree/main/WebApp-OIDC/MyOrg)
The app-settings.json file is as follows :
```
{
"AzureAd": {
"Instance": "https://login.microsoftonline.com... | bind between various keys in the appsettings.json file | CC BY-SA 4.0 | null | 2023-03-04T10:05:30.417 | 2023-03-04T10:05:30.417 | null | null | 4,679,505 | [
"azure-active-directory",
"azure-ad-b2c",
"msal"
] |
75,634,956 | 2 | null | 75,634,638 | 0 | null | Just wrap the `IconButton` inside the `Expanded`, and
to change the `color` of the `IconButton` use the `color` prop of `IconButton`.
Output:
[](https://i.stack.imgur.com/nGtrY.png)
Code:
```
Scaffold(
body: Row(
children: [
Padding(
padding: const EdgeInsets.only(left: 10, ... | null | CC BY-SA 4.0 | null | 2023-03-04T10:10:25.940 | 2023-03-04T10:10:25.940 | null | null | 13,431,819 | null |
75,634,967 | 1 | null | null | 0 | 17 | I am working on Php and right now i am getting "start_date" from database and i am trying to convert datetime into "UTC" time , But how can i do this ? I tried with following code
```
$tymEnd2 = $_POST['end_time']; // dynamic time
$endTime2 = date('h:i A', strtotime($tymEnd2));
$dateEnd2 = $_POST['end_date'];
$nft_end_... | How to convert gmt time to UTC using php | CC BY-SA 4.0 | null | 2023-03-04T10:12:20.427 | 2023-03-04T10:12:47.487 | 2023-03-04T10:12:47.487 | 21,309,268 | 21,309,268 | [
"php",
"laravel",
"date",
"datetime"
] |
75,634,957 | 1 | null | null | 0 | 13 | I want to use cypress to do end-to-end testing in my web applications.
When I do them locally has been quite easy:
1. Install cypress: npm install cypress
2. Run tests: npx cypress run
I want to test it in Jenkins, in my CI/CD pipelinee. Following the [https://docs.cypress.io/guides/continuous-integration/ci-provide... | cypress test in Jenkins CI/CD pipeline not working | CC BY-SA 4.0 | null | 2023-03-04T10:10:58.410 | 2023-03-04T10:10:58.410 | null | null | 10,565,052 | [
"jenkins",
"continuous-integration",
"cypress"
] |
75,634,959 | 2 | null | 75,634,849 | 0 | null | Try moving the `addNewNote` request-function into your `<AddNewNote>` component then pass `setNotes` to it instead of the previous `addNewNote` function.
Something like this:
```
function NotesList({isModalVisible, onStopNote}) {
const [notes, setNotes] = useState([]);
const [isLoading, setIsLoading] = useState... | null | CC BY-SA 4.0 | null | 2023-03-04T10:11:25.017 | 2023-03-04T10:18:48.543 | 2023-03-04T10:18:48.543 | 4,533,252 | 4,533,252 | null |
75,634,966 | 1 | null | null | 0 | 12 | I am trying to install scrapy using pip but this happened. I already have a virtualenv and all.
` Building wheel for twisted-iocpsupport (pyproject.toml) ... error
error: subprocess-exited-with-error
× Building wheel for twisted-iocpsupport (pyproject.toml) did not run successfully.
│ exit code: 1
╰─> [12 lines of outp... | Building wheel for twisted-iocpsupport (pyproject.toml) did not run successfully | CC BY-SA 4.0 | null | 2023-03-04T10:12:16.067 | 2023-03-04T10:12:30.380 | 2023-03-04T10:12:30.380 | 21,298,769 | 21,298,769 | [
"python",
"pip",
"scrapy",
"virtualenv",
"twisted"
] |
75,634,961 | 1 | null | null | 0 | 22 | I'm trying to implement Telegram login widget in my Django website. I'm using django-allauth and the login did work indeed for my test with Firefox browser but it failed to work on mobile devices and Chrome desktop. Authorization dialog just disappear after entering my phone number and confirming the login in Telegram ... | Telegram login widget with django TypeError: Cannot read properties of null (reading 'postMessage') with some browsers | CC BY-SA 4.0 | null | 2023-03-04T10:11:38.017 | 2023-03-04T10:11:38.017 | null | null | 7,346,913 | [
"javascript",
"django",
"google-chrome",
"telegram",
"django-allauth"
] |
75,634,948 | 1 | null | null | 0 | 22 | ValueError at /login
The given username must be set
Request Method: POST
Below is the code for views.py and signup.html
```
views.py
def login(request):
if request.method == 'POST':
email = request.POST['email']
name = request.POST.get('fname')
passw = request.POST['pass']
my_user =... | Why i am getting ValueError at /login The given username must be set in Request Method POST- DJANGO | CC BY-SA 4.0 | null | 2023-03-04T10:08:16.830 | 2023-03-04T10:08:16.830 | null | null | 21,005,391 | [
"python",
"django",
"authentication",
"django-views",
"django-templates"
] |
75,634,971 | 2 | null | 75,626,399 | 0 | null | It seems what happens currently is `https://cozy-stay.vercel.app/api` path requests go to the frontend server and not to your backend server as you expect:
```
Request URL: https://cozy-stay.vercel.app/api/all-places
Request Method: GET
Status Code: 404
Remote Address: 76.76.21.9:443
Referrer Policy: strict-origin-whe... | null | CC BY-SA 4.0 | null | 2023-03-04T10:12:41.637 | 2023-03-04T10:12:41.637 | null | null | 8,510,405 | null |
75,634,969 | 1 | null | null | 0 | 14 | I am using flutter responsive framework on my project to make a responsive UI, After setting brakes point there is an issue when Ui changed scaling to resizing.
> snapback from scale size to the original size
```
return ResponsiveWrapper.builder(
ClampingScrollWrapper.builder(context, child!),
minWidth: 480,
brea... | Flutter responsive framework : snapback from scale size to the original size | CC BY-SA 4.0 | null | 2023-03-04T10:12:30.030 | 2023-03-04T10:12:30.030 | null | null | 9,010,134 | [
"flutter",
"responsive"
] |
75,634,972 | 2 | null | 75,634,577 | 1 | null | The borrow checker is saving you from undefined behavior. Other languages would happily compile code like this, but reading from `first_word` after `s.clear()` could cause a crash or other misbehavior from the program.
`first_word` borrows from `s`. It contains a pointer to the start of the slice (the beginning of t... | null | CC BY-SA 4.0 | null | 2023-03-04T10:12:48.317 | 2023-03-04T10:12:48.317 | null | null | 501,250 | null |
75,634,968 | 1 | 75,635,218 | null | 0 | 28 | My issue is that adding `white-space: nowrap;` to any of my classes, this causes my .grid-item to expand.
```
.grid-container {
display: grid;
grid-template-columns: repeat(6, 1fr);
grid-template-rows: repeat(4, 200px);
justify-content: center;
grid-column-gap: 5%;
grid-row-gap: 2px;
}
.grid-item {
backg... | white-space: nowrap; Causes grid-item to expand | CC BY-SA 4.0 | null | 2023-03-04T10:12:28.023 | 2023-03-04T11:21:48.930 | 2023-03-04T11:21:48.930 | 82,548 | 20,990,693 | [
"html",
"css"
] |
75,634,974 | 2 | null | 75,634,919 | 0 | null | You can only retrieve data directly from `$_POST` if the request method is post. Since the request method is `patch` in your case, you can parse the data to `$_POST` like so
```
parse_str(file_get_contents('php://input'), $_POST);
echo $_POST['name']; // now this should work
```
| null | CC BY-SA 4.0 | null | 2023-03-04T10:13:11.687 | 2023-03-04T10:13:11.687 | null | null | 6,214,210 | null |
75,634,970 | 1 | null | null | 0 | 6 |
I have grafana dashboards with a "Data source" variable, allowing the user to select different databases. All panels in the dashboard reference the selected data source.
The databases that the user can select from are as follows:
Source selection:
- - - - - -
Where "aaa" and "aaa_mirror" are identical, but hosted on... | How can I toggle between sources in grafana? | CC BY-SA 4.0 | null | 2023-03-04T10:12:38.237 | 2023-03-04T10:12:38.237 | null | null | 14,782,776 | [
"grafana"
] |
75,634,965 | 1 | null | null | 0 | 21 | I am tying to implement a Depthwise 3D convolution. In the process, I am using a tf.nn.conv3d operation, where I utilize as input a 5D tensor, with shapes [batch, depth, height, width, channels] and a filter with exactly the same dimension than input: [filter_depth, filter_height, filter_width, in_channels, out_channel... | tf.nn.conv3d No algorithm worked! when appying dilation in "D" dimension | CC BY-SA 4.0 | null | 2023-03-04T10:12:14.367 | 2023-03-04T10:37:38.623 | 2023-03-04T10:37:38.623 | 12,406,638 | 12,406,638 | [
"tensorflow",
"dilation",
"3d-convolution"
] |
75,634,977 | 2 | null | 75,634,893 | 0 | null | Instead of `IIF` try a case expressions like so:
```
CASE WHEN tbl1.Val IS NULL THEN COALESCE(tbl1.Val2, tbl2.Val2) END AS X
```
or
```
CASE WHEN tbl1.Val IS NOT NULL THEN COALESCE(tbl1.Val2, tbl2.Val2) END AS X
```
You can also include `ELSE` E.G.
```
CASE
WHEN tbl1.Val IS NULL THEN COALESCE(tbl1.Val2, tbl2.Val2... | null | CC BY-SA 4.0 | null | 2023-03-04T10:13:34.817 | 2023-03-04T10:13:34.817 | null | null | 2,067,753 | null |
75,634,979 | 1 | null | null | 0 | 16 | kibana tag cloud does not count frequency of words in my text field
let's say i have a field named : Ticket_text.keyword and here are some examples:
`hello world here I am`
`hello everybody this is blah`
`in this world`
I want my visualization to show "hello" as the most frequent and "world" as the second etc ...
but ... | kibana tag cloud does not count frequency of words in a text field | CC BY-SA 4.0 | null | 2023-03-04T10:13:38.783 | 2023-03-04T14:06:50.120 | null | null | 10,844,454 | [
"elasticsearch",
"kibana"
] |
75,634,975 | 1 | null | null | 0 | 7 | I have two celery tasks task1 and task2 which write to database. The third task task3 reads from the same database. task1 and task2 can run in parallel. task3 will run after both task1 and task2 have run.
I have looked at groups, chains and chords but can't get around to a place where I can run task3 without passing th... | Run tasks after another without using result of first task in second task | CC BY-SA 4.0 | null | 2023-03-04T10:13:25.253 | 2023-03-04T12:14:49.090 | 2023-03-04T10:14:17.493 | 162,698 | 8,380,399 | [
"celery"
] |
75,634,973 | 1 | null | null | 0 | 6 |
I have 2 repos
- - - - -
- -
Every time I do grade build of Repo1, it creates the jars for module1 and module2.
But doesn't update the local grade repository cache.
Because of this, grade-build on Repo-web always builds war file with outdated module1 and module2 jars from local grade repository cache.
How to forc... | Local grade build not updating local repository cache | CC BY-SA 4.0 | null | 2023-03-04T10:13:11.527 | 2023-03-04T10:13:11.527 | null | null | 2,044,637 | [
"gradle"
] |
75,634,976 | 2 | null | 18,230,275 | 0 | null | I only wanted to comment on the accepted answer (but SO rep says no), saying that the `do` paradigm should be fundamental lore when using coffeescript, just as the OP suggested in comments.
This feature of coffeescript is the proverbial "footgun", and could be addressed better in the language than suggesting that the "... | null | CC BY-SA 4.0 | null | 2023-03-04T10:13:28.483 | 2023-03-04T10:13:28.483 | null | null | 11,337,287 | null |
75,634,981 | 1 | null | null | -1 | 25 | Good afternoon. I work with laravel and use sync. I get an array in this form:
```
[
0 => ['attribute' => '...', 'value' => '...']
1 => ['attribute' => '...', 'value' => '...']
...
]
```
Is it possible to stuff such an array into sync? If possible, can you tell me how to do it correctly?
Already used sync, but with a... | How to use sync if I have such an array? | CC BY-SA 4.0 | null | 2023-03-04T10:14:10.093 | 2023-03-04T19:42:32.817 | null | null | 16,607,502 | [
"php",
"laravel"
] |
75,634,978 | 1 | null | null | -1 | 32 | I have the following action that first runs a semantic release and then builds a docker image. At the moment the image is tagged with `master` but I want it to be tagged with the release i.e. `v1.0.8`
I assumed that `${{ github.ref_name }}` would refer to the release number that was created in the previous step rather ... | How to tag docker image with release version number from a previous job | CC BY-SA 4.0 | null | 2023-03-04T10:13:37.780 | 2023-03-04T11:59:56.410 | 2023-03-04T11:56:42.487 | 5,078,746 | 501,827 | [
"github-actions",
"cicd",
"semantic-release"
] |
75,634,980 | 2 | null | 75,621,578 | 0 | null | The problem is now solved using macros as suggested by IgorTandetnik Tandetnik. Thank you again.
Here some code snippets:
```
#ifdef ARDUINO_ESP32_DEV // Compile flags are displayed by: “Advanced → Verbose Build”
#include <Arduino.h>
#include <esp32-hal-uart.h>
template <typename... Args>
int arduinoLogger(const cha... | null | CC BY-SA 4.0 | null | 2023-03-04T10:13:55.480 | 2023-03-04T10:13:55.480 | null | null | 7,563,676 | null |
75,634,982 | 1 | null | null | 0 | 9 | QUESTION -
Create a program so that when the user enters “B” the green light blinks, “g” the green light is illuminated “y” the yellow light is illuminated and “r” the red light is illuminated.
The above question is about controlling LED blinking with the help of Arduino , am personally doing the simulation on tinkerca... | I want to keep blinking the led till i give the input for next colour to blink? | CC BY-SA 4.0 | null | 2023-03-04T10:14:13.857 | 2023-03-04T10:46:09.670 | null | null | 21,330,681 | [
"arduino",
"iot",
"tinkercad"
] |
75,634,990 | 1 | null | null | 0 | 24 | I have Material UI DataGrid table with an Action column which contains an edit button per row.
I cannot find any example. Any Link to some example or documentation appreciated
Basically, I think this should work via renderCell section in the columns definition where the current row data needs to be passed to the dialo... | Update Material UI DataGrid row via Dialog Popup with Edit-Form in Material UI V5 | CC BY-SA 4.0 | null | 2023-03-04T10:15:09.020 | 2023-03-04T10:25:29.197 | 2023-03-04T10:25:29.197 | 11,427,065 | 11,427,065 | [
"reactjs",
"material-ui",
"datagrid",
"mui-datagrid"
] |
75,634,985 | 1 | null | null | 0 | 11 | im using div to wrap content placeholder in masterpage of asp.net web app.
```
```<div id="bg" class="">
<!-- Main Content Placeholder -->
<asp:ContentPlaceHolder ID="ContentPlaceHolder1" runat="server">
</asp:ContentPlaceHolder>
<!-- Main Content Placeholder -->
... | Div Background of content placeholder in asp.net changes | CC BY-SA 4.0 | null | 2023-03-04T10:14:36.910 | 2023-03-04T10:14:36.910 | null | null | 17,517,250 | [
"javascript",
"html",
"jquery",
"css",
"asp.net"
] |
75,634,993 | 2 | null | 75,630,846 | 0 | null | This is how I solve it
First you need to install one of the packages from (ZXing.Net.Bindings.*)
First example using
> ZXing.Net.Bindings.Windows.Compatibility
Please note this package only works on Windows.
```
using ZXing;
using ZXing.Common;
using ZXing.QrCode;
using ZXing.Windows.Compatibility;
public static string... | null | CC BY-SA 4.0 | null | 2023-03-04T10:15:57.203 | 2023-03-04T12:31:41.167 | 2023-03-04T12:31:41.167 | 9,608,194 | 9,608,194 | null |
75,634,992 | 2 | null | 75,628,632 | 0 | null | Normally we should create protocol functions on ViewController B and should pass any updated UI value via delegates to ViewController A. For example consider LibraryVC as A, DetailsVC as B. So you need define protocols on DetailsVC like below,
```
protocol DetailsVCDelegate: AnyObject {
func didGetMovie(movie: Strin... | null | CC BY-SA 4.0 | null | 2023-03-04T10:15:33.913 | 2023-03-04T10:15:33.913 | null | null | 3,683,408 | null |
75,634,987 | 2 | null | 62,124,036 | 0 | null | You can try this ....
In the User model, define the One-to-One relationship with the Phone model:
```
class User extends Model
{
public function phone()
{
return $this->hasOne(Phone::class);
}
}
```
In the Phone model, define the reverse relationship:
```
class Phone exten... | null | CC BY-SA 4.0 | null | 2023-03-04T10:14:49.423 | 2023-03-04T10:14:49.423 | null | null | 20,127,612 | null |
75,634,996 | 2 | null | 75,634,303 | 0 | null |
## Unpivot (Excel Formula)
```
=LET(Data,A2:G6,
dRows,ROWS(Data)-1,dCols,(COLUMNS(Data)-1)/2,Cells,dRows*dCols,
rSeq,MOD(SEQUENCE(Cells,,0),dRows)+1,vSeq,ROUNDUP(SEQUENCE(Cells)/dRows,0),
rd,INDEX(DROP(TAKE(Data,,1),1),rSeq),hd,INDEX(TOCOL(DROP(TAKE(Data,1),,dCols+1)),vSeq),
vData,DROP(DROP(Data,1),,... | null | CC BY-SA 4.0 | null | 2023-03-04T10:16:47.453 | 2023-03-04T10:16:47.453 | null | null | 9,814,069 | null |
75,634,989 | 1 | null | null | 0 | 13 | I'm using showTimePicker in flutter with 24 hour format.
My Code:
```
var selectDateTime = await showTimePicker(
context: context,
initialTime: TimeOfDay.now(),
builder: (context, child) {
return MediaQuery(
data: MediaQuery.of(context).copyWit... | Flutter time picker with 1-12 in the outer circle, and 13-00 in the inner circle | CC BY-SA 4.0 | null | 2023-03-04T10:15:01.257 | 2023-03-04T15:30:44.310 | 2023-03-04T15:30:44.310 | 8,176,062 | 8,176,062 | [
"android",
"flutter",
"timepicker"
] |