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,688
1
null
null
0
19
I wrote a program which outputs SVG code, but when I paste it to Figma, it seems to display incorrectly. Here is an example: ``` svg { background: black; } ``` ``` <svg viewBox="0 0 1024 1024"> <defs> <linearGradient id="g"> <stop offset="0%" stop-color="#0f0"></stop> <stop offset="50%" stop-color=...
Pasting SVG Code To Figma Not Showing Expected Result
CC BY-SA 4.0
null
2023-03-02T14:17:30.977
2023-03-02T16:16:57.703
2023-03-02T16:16:57.703
1,020,237
1,020,237
[ "svg", "linear-gradients", "figma", "mix-blend-mode" ]
75,616,754
1
null
null
0
10
So I want to use the google cloud vision api and NOT the `google_mlkit_text_recognition: ^0.5.0` package. Instead, i want to access the cloud vision api through the `googleapis: ^10.1.0` package. But how can I use it now to recognize text from a image file in the flutter app? I have a project setup and ready to use in ...
How do you use Google Cloud Vision API in flutter dart for text recognition OCR?
CC BY-SA 4.0
null
2023-03-02T14:23:17.297
2023-03-02T14:23:17.297
null
null
11,904,683
[ "python", "flutter", "dart", "google-api", "computer-vision" ]
75,616,755
1
null
null
-2
50
My current code exits a trade when there is a profit of 24 or a loss of 12. However, sometimes the profit can reach 20 or 22 and then reverse, resulting in a loss. I want to modify the code so that if the profit reaches above 10 but does not touch 20 before reversing, the profit of 10 will be booked. Similarly, if the ...
I have written some code and I would like someone to check whether my logic is correct?
CC BY-SA 4.0
null
2023-03-02T14:23:18.793
2023-03-04T12:34:28.960
2023-03-02T22:04:15.880
417,552
417,552
[ "python" ]
75,616,760
2
null
75,615,928
1
null
So that property is only valid if the keyspace doesn't exist so that it knows how many replicas to create it with. It won't modify an existing keyspace, because there are other things that need to happen when you do that (ex: data movement with `nodetool repair` or `nodetool rebuild`). You will need to modify the keys...
null
CC BY-SA 4.0
null
2023-03-02T14:23:35.800
2023-03-02T14:23:35.800
null
null
1,054,558
null
75,616,758
1
null
null
0
20
When I set baseUrl and try to visit URL, the content of the URL is not getting loaded. Here is config file. ``` const { defineConfig } = require("cypress"); module.exports = defineConfig({ projectId: 'qu3jox', e2e: { baseUrl : 'https://dxplus.mom.gov.sg', pageLoadTimeout : 60000, // modifyObstructiveCo...
Cypress visiting an URL is not loading content of the site
CC BY-SA 4.0
null
2023-03-02T14:23:31.830
2023-03-03T14:55:37.983
2023-03-03T07:33:10.487
5,868,910
5,868,910
[ "cypress", "e2e-testing", "cypress-testing-library", "cypress-intercept" ]
75,616,753
1
null
null
2
15
I have a simple application with 2 dockable windows in a dockspace. One is sidebar and the other is the content. I am using the docking branch of imgui How do I make the content window fill up the remaining dockspace programmatically? Kind of like Visual Studio Code Currently, there is some weird space between the side...
How do I make a dockable window fill up the remaining dockspace programatically?
CC BY-SA 4.0
null
2023-03-02T14:23:15.393
2023-03-02T14:25:08.297
2023-03-02T14:25:08.297
21,319,499
21,319,499
[ "c++", "imgui" ]
75,616,757
1
null
null
0
13
The following is my error report content. After I enter php Artisan route: cache, I will report an error when I enter any command of php Artisan. [root@VM-16-16-centos kangyang]# php artisan Illuminate\Contracts\Container\BindingResolutionException Target class [App\Http\Controllers\V1\AttachmentController] does not ex...
Running any command related to php artisan in larravel will report an error
CC BY-SA 4.0
null
2023-03-02T14:23:31.237
2023-03-02T14:23:31.237
null
null
21,318,757
[ "php" ]
75,616,759
1
null
null
0
14
I am trying to fetch details using the SPARQLWrapper and JSON format from the dbpedia database. This is my code: ``` from SPARQLWrapper import SPARQLWrapper, JSON sparql = SPARQLWrapper("http://dbpedia.org") sparql.setReturnFormat(JSON) sparql.setQuery(""" PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT ?...
RuntimeWarning: unknown response content type 'text/html; charset=UTF-8' returning raw response
CC BY-SA 4.0
null
2023-03-02T14:23:34.573
2023-03-02T14:23:34.573
null
null
6,157,409
[ "python-3.x", "sparql", "dbpedia", "sparqlwrapper" ]
75,616,764
2
null
75,615,798
0
null
Always validate your JSON with jq. Install jq $ jq < file.json Perhaps it is some quoting or unicode issue. Then re run your python code.
null
CC BY-SA 4.0
null
2023-03-02T14:23:57.897
2023-03-02T14:23:57.897
null
null
5,898,167
null
75,616,762
2
null
36,753,524
0
null
I had that problem because `Maven home path` was pointing to an old Maven version. 1. enter new path at Settings> Build, Execution, Deployment > Build Tools > Maven > ... 2. run mvn clean install -U [](https://i.stack.imgur.com/ZFbGQ.png) [](https://i.stack.imgur.com/E1DEB.png)
null
CC BY-SA 4.0
null
2023-03-02T14:23:44.293
2023-03-02T14:29:01.677
2023-03-02T14:29:01.677
5,733,842
5,733,842
null
75,616,766
1
null
null
1
14
Hellow, I need my application to receive a text file by 'dragging and dropping'. It is fundamentally important that the place where I will drag the file is in the application window.
How to upload a text file to a window in Kivi, Python
CC BY-SA 4.0
null
2023-03-02T14:24:02.770
2023-03-03T20:56:43.797
null
null
21,319,651
[ "python-3.x", "file", "kivy", "text-files" ]
75,616,743
2
null
75,613,026
0
null
I had another look at your code, created a couple of test tables in the database and tried to get your code working. The ajax requests are sending POST requests but your PHP is looking for a GET variable when it constructs the 2nd dropdown menu. The ajax request also featured `contentType:"application/json; charset=utf...
null
CC BY-SA 4.0
null
2023-03-02T14:22:28.497
2023-03-02T14:22:28.497
null
null
3,603,681
null
75,616,761
1
null
null
0
29
I have two arrays array1 and array2 in my Node.js application, both of which may contain duplicate elements. I need to calculate the position change for each element in array1 compared to array2. I know for sure that the arrays are of the same length and contain the same characters. The position change is defined as th...
How to determine position change between two arrays with duplicates in Node.js?
CC BY-SA 4.0
null
2023-03-02T14:23:42.453
2023-03-03T08:22:48.870
2023-03-03T08:22:48.870
17,336,252
17,336,252
[ "javascript", "node.js", "arrays", "data-structures" ]
75,616,765
1
null
null
-2
28
I only have these buttons >> ``` <button name="action" value="activate" type="submit" class="btn btn-success">Activate</button> <button name="action" value="deactivate" type="submit" class="btn btn-secondary">Deactivate</button> ``` ``` elseif ($action=="active") { $sql = "update $table set status...
I want to hide and show products, but I don't know what command or codes I should use?
CC BY-SA 4.0
null
2023-03-02T14:24:02.387
2023-03-02T15:52:33.820
2023-03-02T15:52:33.820
21,245,191
21,245,191
[ "php", "html", "css", "mysql", "button" ]
75,616,767
1
null
null
0
23
I need to change a few lines in one of Symfony services (to be more specific I need a feature/bugfix that was added in 6.2 while staying in 5.4) So I copied the service class to my project, did the change and replaced the class in `services.yml` ``` messenger.senders_locator: class: 'App\Overwrites\Symfony\SendersL...
How to replace symfony service class, without changing anything else
CC BY-SA 4.0
null
2023-03-02T14:24:02.953
2023-03-02T14:24:02.953
null
null
5,329,722
[ "php", "symfony" ]
75,616,770
1
null
null
0
57
The project was working fine before just I reinstalled the OS and Visual Studio, when I build the project this error is showing. "Failed to resolve 'System.Net.Http.HttpClientHandler' from 'Mono.Android'. Please check your `AndroidHttpClientHandlerType` setting. TakolA.Mobile.Android" [](https://i.stack.imgur.com/Pou...
Xamarin.Forms Failed to resolve 'System.Net.Http.HttpClientHandler'
CC BY-SA 4.0
null
2023-03-02T14:24:23.727
2023-03-03T06:39:42.707
null
null
8,140,867
[ "xamarin", "xamarin.forms", "build-error" ]
75,616,763
1
null
null
0
16
I'm trying to create an audio player with several track list for render this i'm using that html code ``` <p>Clearwater... <a href="#" class="openaudio" data-value="/assets/audio/1.mp3" data-text="Swing">[plays audio]</a></p> <p>Blues... <a href="#" class="openaudio" data-value="/assets/audio/2.mp3" data-text="Swing">[...
audio player html5 problem with my javascript, just works on localhost
CC BY-SA 4.0
null
2023-03-02T14:23:48.867
2023-03-02T16:56:49.127
2023-03-02T16:56:49.127
3,566,099
3,566,099
[ "javascript", "loops", "html5-audio" ]
75,616,773
1
null
null
0
16
I need to apply a normal map to a mesh so that it remains at the same scale regardless of the size of polygons, I know this should be possible with some complex UV mapping, but I want to use this effect pretty extensively so I would love to have a shader that can do it on the fly. It will only be applied to vertical wa...
Unity: how to tile a texture to be a constant size
CC BY-SA 4.0
null
2023-03-02T14:24:33.177
2023-03-02T14:24:33.177
null
null
17,653,621
[ "unity3d", "textures", "texture-mapping", "uv-mapping", "urp" ]
75,616,774
1
null
null
-1
10
I'm new to Axios and having a problem with authentication headers for an API I am using in a Node service. I have added the headers in Postman and they work just fine, so I know it's got to be something about the way I structured them in JS. Every time I call this API, I get a 403 error through Node, but Postman is fla...
Problems loading headers into Axios
CC BY-SA 4.0
null
2023-03-02T14:24:33.780
2023-03-02T14:24:33.780
null
null
2,214,345
[ "javascript", "node.js", "axios" ]
75,616,769
2
null
38,475,975
0
null
I know that's pretty old question, but for all struggling with OSGi with probably all suggestions on SO not working I have small tip: My case: Reflections 0.9.8 (later versions should work simmilar) on a Fabric8 container. TL;DR: The key was make `org.osgi.framework.Bundle` to work as `java.lang.ClassLoader` and passed...
null
CC BY-SA 4.0
null
2023-03-02T14:24:22.733
2023-03-03T11:00:16.940
2023-03-03T11:00:16.940
20,879,151
20,879,151
null
75,616,772
1
75,616,915
null
0
14
I'm having a problem with using the response that I get with axios from a simple weather API - specifically, I'm having trouble mapping the response. The `.map()` function does not work since my response is an object, I get that. My WeatherApi component returns the response - an object. I then want to import the Weathe...
React Trypescript Axios response data mapping
CC BY-SA 4.0
null
2023-03-02T14:24:29.293
2023-03-02T14:34:15.730
null
null
13,706,859
[ "javascript", "reactjs", "typescript" ]
75,616,778
1
null
null
0
17
I am solving a using Cplex solver (Docplex) on . However, I got stuck trying to adapt the . Available documentation provides the following function to include in the main file in order to retrieve the output as a : ``` def write_all_outputs(outputs): '''Write all dataframes in ``outputs`` as .csv. Args: ...
How to retrieve output data as JSON from IBM Watson cloud
CC BY-SA 4.0
null
2023-03-02T14:24:41.030
2023-03-02T14:27:46.363
2023-03-02T14:27:46.363
14,612,539
14,612,539
[ "json", "ibm-watson", "docplex", "docplexcloud" ]
75,616,782
2
null
75,616,252
1
null
SpringBoot 101: SpringBoot scans for components starting from the directory where the class annotated with `@SpringBootApplication` is and going from that directory down. (unless you tell him explicitly the package to look for with `@ComponentScan` annotation) Solution: put you `ToDoApp4TryApplication` class in the to...
null
CC BY-SA 4.0
null
2023-03-02T14:24:52.113
2023-03-02T14:24:52.113
null
null
12,038,714
null
75,616,783
2
null
75,616,720
0
null
The error is self explanatory here. a simple `.toString()` could convert your array into a string but I don't know if this is what the api would expect as a query param. ``` interface ContainerProps { name: string; query: string; cuisine: any[]; location: any[]; } fetch("http://127.0.0.1:8000/api/search"+ new...
null
CC BY-SA 4.0
null
2023-03-02T14:24:52.330
2023-03-02T14:24:52.330
null
null
3,188,049
null
75,616,781
1
null
null
2
25
Trying to make the auth0 authenticate login with cypress, followed this instructions ([https://auth0.com/blog/end-to-end-testing-with-cypress-and-auth0/](https://auth0.com/blog/end-to-end-testing-with-cypress-and-auth0/)) I got a successful 200 response on POST but keep getting redirected to the login page whenever I d...
Cypress auth0 redirect to login on successful auth
CC BY-SA 4.0
null
2023-03-02T14:24:51.347
2023-03-02T17:16:36.317
2023-03-02T14:26:30.060
21,319,680
21,319,680
[ "javascript", "cypress", "auth0" ]
75,616,780
2
null
75,615,729
0
null
I'm not sure I understand correctly but if you want to load all courses, you'll have to click on "Load more" until the button isn't available. You can get the URLs of the course via the `href`attribute: ``` from selenium import webdriver from selenium.webdriver.common.by import By from selenium.webdriver.support.ui imp...
null
CC BY-SA 4.0
null
2023-03-02T14:24:51.217
2023-03-02T14:24:51.217
null
null
13,525,512
null
75,616,785
2
null
75,616,720
1
null
You are passing an object with three properties (query, cuisine, and location) to the URLSearchParams constructor, which expects a record of key-value pairs where both the key and value are strings. In your case, the cuisine and location properties are arrays of unknown types. You should probably convert the cuisine an...
null
CC BY-SA 4.0
null
2023-03-02T14:25:04.227
2023-03-02T14:25:04.227
null
null
1,785,729
null
75,616,786
1
null
null
0
13
We have a power bi report where we have enabled data refresh based on some parameters. One of the problem we have faced is that if a value is selected in a drop down list and then the data is refreshed based on another parameter, the values in the dropdown should complete change as the old selections are no more valid....
Power BI down filters have old data after data refresh
CC BY-SA 4.0
null
2023-03-02T14:25:07.550
2023-03-02T14:25:07.550
null
null
3,475,582
[ "powerbi", "dax", "powerbi-desktop", "powerbi-datasource" ]
75,616,779
1
null
null
0
3
server.js ``` import express from "express"; import dotenv from "dotenv"; import morgan from "morgan"; import cors from "cors"; import AuthRoutes from "./routes/auth.js"; import RoomsRoute from "./routes/rooms.js"; import passport from "passport"; import session from "express-session"; import cookieParser from "cookie...
passport.desearilize() function is not getting executed , what might be the reason?
CC BY-SA 4.0
null
2023-03-02T14:24:45.270
2023-03-02T14:24:45.270
null
null
13,080,144
[ "node.js", "reactjs", "express", "session", "passport.js" ]
75,616,784
2
null
75,608,685
3
null
If your keys are numeric then an array is more memory efficient, if they are alpha then use a dictionary. This build an array of dictionaries with array values in about 20 seconds for 2000 records with 250 fields. ``` Sub Test() Dim dbconn As ADODB.Connection, data Set dbconn = DbConnect("SO_75608685.accdb") ...
null
CC BY-SA 4.0
null
2023-03-02T14:24:56.703
2023-03-02T14:43:48.997
2023-03-02T14:43:48.997
12,704,593
12,704,593
null
75,616,791
1
75,620,973
null
-1
50
The function `getDev` gets instances of the interface `DeveloperInterface`. Every instance contains the function `code` the function returns a `Promise<String>`. Now I would like to call the function for every instance and append the result to one single string and return the string. I can output the individual result ...
Concat the several responses of a promise into one single string
CC BY-SA 4.0
null
2023-03-02T14:25:27.697
2023-03-02T21:55:48.277
null
null
11,720,573
[ "typescript", "async-await", "promise" ]
75,616,793
2
null
75,616,594
1
null
Yes, there is an exhaustive list of what elements can be children of what elements in HTML5. The HTML5 specification defines the rules for the structure of an HTML document, including the allowed parent-child relationships between elements. The rules can be complex, but generally, each HTML element has a set of allowed...
null
CC BY-SA 4.0
null
2023-03-02T14:25:34.767
2023-03-02T14:25:34.767
null
null
6,657,330
null
75,616,794
1
null
null
0
20
So i have this code that is supposed to open Word document and change controlled content text, inside of a textBox: ``` $Word = New-Object -ComObject word.application $Doc = $Word.Documents.Add(PATH) ForEach($Control in $Doc.ContentControls){ Switch($Control.Title){ ** "name"{$Control.Range.Text = ...
How do I change contents of a text box in a .docx file using PowerShell
CC BY-SA 4.0
null
2023-03-02T14:25:38.403
2023-03-02T14:26:12.100
2023-03-02T14:26:12.100
21,318,043
21,318,043
[ "powershell", "ms-word" ]
75,616,789
1
null
null
0
20
We have a huge Visual Studio solution with many projects (SDK style). In order to simplify the update/maintenance we introduced the central package management feature with a Directory.Packages.props file including: ``` <PropertyGroup> <CentralPackageTransitivePinningEnabled>true</CentralPackageTransitivePinningEnab...
Nuget Central Package Management - Transitive
CC BY-SA 4.0
null
2023-03-02T14:25:20.597
2023-03-02T14:25:20.597
null
null
2,894,980
[ "c#", "nuget", "nuget-package-restore", "nuget-spec" ]
75,616,788
1
null
null
0
14
I'm trying to start RabbitMQ 3.10 from Docker running on MacOSX on Apple Silicon (M1). In Linux, I could just do: ``` docker run --rm --name my-rabbit rabbitmq:3.10.18-management ``` And I can see in the console that everything seems to boot as it should: ``` 023-03-02 13:57:33.756849+00:00 [info] <0.223.0> Feature fl...
Starting RabbitMQ server in Docker (Colima) on Mac Silicon (M1)?
CC BY-SA 4.0
null
2023-03-02T14:25:15.123
2023-03-02T14:25:15.123
null
null
398,441
[ "docker", "macos", "rabbitmq" ]
75,616,790
2
null
75,595,963
0
null
This is a bug in `seqMD`. I cannot run your example because you do not provide the data. However, I think I have identified the issue. The error occurs because of a badly specified test in `seqMD`, which sets `with.missing` as `TRUE` when sequences do not all have the same length as in your data. This will be fixed wit...
null
CC BY-SA 4.0
null
2023-03-02T14:25:23.940
2023-03-02T14:25:23.940
null
null
1,586,731
null
75,616,796
1
75,616,859
null
-1
26
I am trying to access 2 different directories in ADLS using for loop & f-string but facing issues in doing so ``` # Primary storage info account_name = "accountnamehere" # fill in your primary account name container_name = "logscontainer" # fill in your container name subscription_id = "subscriptionname" resource...
Looping through directories in Python using f-string
CC BY-SA 4.0
null
2023-03-02T14:25:43.803
2023-03-02T14:30:07.540
2023-03-02T14:29:02.873
9,296,093
10,927,566
[ "python", "containers", "azure-data-lake-gen2", "f-string" ]
75,616,799
2
null
10,159,186
0
null
If you have a `javax.ws.rs.core.UriBuilder` : ``` URI location; UriBuilder.fromUri(location).path("..").build().normalize(); ```
null
CC BY-SA 4.0
null
2023-03-02T14:25:59.043
2023-03-02T14:25:59.043
null
null
14,946,729
null
75,616,795
1
null
null
0
26
We are able to see a different carousel card pagination style in the (Desktop App) for the past two days. [](https://i.stack.imgur.com/29LyZ.png) [](https://i.stack.imgur.com/PPgfS.png) .
How to disable carousel card pagination in MS Teams
CC BY-SA 4.0
null
2023-03-02T14:25:38.513
2023-03-03T06:25:03.463
2023-03-02T14:45:58.610
2,890,048
2,890,048
[ "botframework", "microsoft-teams", "chatbot", "adaptive-cards", "qnamaker" ]
75,616,801
1
null
null
0
11
I am trying to create a OData function import via RAP. When I use an abstract CDS view to define my parameter like this it works just fine: ``` static function XXX parameter YYY result [0..*] $self; ``` ``` define abstract entity YYY { importParameter: abap.string; } ``` But since I only want a single importing pa...
SAP RAP Function DDIC Type as Import Parameter
CC BY-SA 4.0
null
2023-03-02T14:26:05.427
2023-03-03T08:11:40.643
2023-03-03T08:11:40.643
9,150,270
7,556,782
[ "odata", "sap", "cds" ]
75,616,803
2
null
75,616,188
1
null
The issue is likely here: ``` self.current_user = sign_in(:user, self.current_user_token.user) ``` The `sign_in` method returns a boolean, so you're setting `self.current_user` to a boolean (in your case `TrueClass`), instead of a `User` object (or whatever user class you're using).
null
CC BY-SA 4.0
null
2023-03-02T14:26:10.540
2023-03-02T14:26:10.540
null
null
2,266,827
null
75,616,800
1
null
null
-1
22
Our goal is to dynamically register vuex modules within the `setup()` inside a vue component. The actions and getters are to be provided to the component to build the template but we can't get it to work due to the asynchronous behaviour. We register a new vuex module within the `onMounted` lifecycle hook and store the...
Dynamically register vuex modules inside setup-hook (vue composition API)
CC BY-SA 4.0
null
2023-03-02T14:26:03.627
2023-03-02T15:00:38.543
2023-03-02T15:00:38.543
7,786,433
7,786,433
[ "javascript", "vue.js", "async-await", "vuejs3", "vue-composition-api" ]
75,616,802
1
null
null
1
29
I'm trying to develop a c# app with xamarin forms to print some zpl commands but my printer is just printing text. I've tried using [Zebra SDK](https://techdocs.zebra.com/link-os/2-14/pc_net/content/html/28f08ed4-7778-403a-9042-a65f86c5abad.htm) and [Link-OS SDK](https://techdocs.zebra.com/link-os/2-15/xamarin/) to set...
Zebra MZ320 printing zpl commands as text
CC BY-SA 4.0
null
2023-03-02T14:26:08.910
2023-03-03T13:58:16.240
null
null
21,298,692
[ "c#", "xamarin", "zebra-printers", "zpl" ]
75,616,792
2
null
50,439,809
0
null
# tl;dr Answer Testability provides unit tests with access to symbols that would normally not be accessible from outside a module/framework, so tests can be written for these components. # Full Answer Here's an (probably incomplete) overview of what `Testability` means in different contexts. ## Swift In case o...
null
CC BY-SA 4.0
null
2023-03-02T14:25:33.843
2023-03-02T15:21:57.093
2023-03-02T15:21:57.093
15,809
15,809
null
75,616,804
1
null
null
-2
20
I am trying to render custom marker in android and ios and using library. The number of markers is between 16-900. So when the number of marker increases(>60) or the marker size increases the markers are not rendering completely in ios whereas there is no issue observed in android for any number of markers or marker s...
Custom Markers not rendering completely in React Native IOS when number of marker or marker size increases
CC BY-SA 4.0
null
2023-03-02T14:26:18.173
2023-03-03T09:48:42.420
2023-03-03T09:48:42.420
21,319,421
21,319,421
[ "android", "ios", "react-native", "google-maps", "react-native-maps" ]
75,616,805
1
null
null
0
10
I have a JPA Entity `School`, I added below method isOutstation() and related Constant When I deployed the new version of this I am getting the below error ``` @MappedSuperclass public class AbstractDomain implements Domain, Serializable{ } import javax.persistence.Column; import javax.persistence.Entity; @Entity @Ta...
Adding helper method to Class marked as Entity, breaking serialization. How do we keep adding behaviour without breaking serialization
CC BY-SA 4.0
null
2023-03-02T14:26:18.693
2023-03-02T15:59:03.280
2023-03-02T15:59:03.280
4,420,967
21,319,592
[ "hibernate", "jpa" ]
75,616,806
2
null
75,608,969
0
null
Thanks to egeorge I got it working. How I implemented it was the following: ``` #create properties volume docker volume create propertiesvolume #copy propertiesfile and other relevant files to propertiesvolume volume with the help of a temporary container named alpine docker run -d --name alpine --mount type=volume,so...
null
CC BY-SA 4.0
null
2023-03-02T14:26:21.333
2023-03-02T14:26:21.333
null
null
12,171,869
null
75,616,809
2
null
75,371,360
0
null
We can create a function like this This for top-right ``` expandCollapseCuePosition: (e) => { const { nodeX, nodeY, nodeH, nodeW } = e._private.rstyle; return { x: nodeX + nodeW / 2, y: nodeY - nodeH / 2 }; }, ```
null
CC BY-SA 4.0
null
2023-03-02T14:26:27.380
2023-03-02T14:26:27.380
null
null
10,564,312
null
75,616,810
2
null
61,445,875
0
null
I simply removed the process.env.REACT etc I had there and instead used the original key from rapidapi. And that worked.
null
CC BY-SA 4.0
null
2023-03-02T14:26:29.540
2023-03-02T14:26:29.540
null
null
19,179,759
null
75,616,811
2
null
6,313,167
0
null
Restart your adb server with higher port. I was trying to use adb on 5555 port but it didnt connect and when i started server on 50370 it connected instantly
null
CC BY-SA 4.0
null
2023-03-02T14:26:35.060
2023-03-02T14:26:35.060
null
null
17,872,173
null
75,616,807
2
null
75,593,446
1
null
You should use syntax to write query with Entity framework. Your code will look like this: ``` var lastModifiedDate = dbContext.ContractInvoicePerDay .Select(c => new { LastModifiedDate = new[] { c.CreatedDate, c.SubmittedDate, c.ApprovedDate, c....
null
CC BY-SA 4.0
null
2023-03-02T14:26:25.000
2023-03-02T14:26:25.000
null
null
15,589,317
null
75,616,768
1
null
null
0
13
I am working on a Flutter application and one of the pages has these functionalities: 1. Scaffold body is GetBuilder<ImageController> (provides image preview functionality). 2. GetBuilder builder returns ``` LoaderOverlay( overlayWidget: Center( child: Container( alignment: Alignment....
LoaderOverlay widget and GetX navigation not working: Flutter
CC BY-SA 4.0
null
2023-03-02T14:24:20.953
2023-03-02T15:22:30.650
2023-03-02T15:22:30.650
13,302
19,580,540
[ "flutter", "flutter-getx", "snackbar" ]
75,616,812
1
null
null
-3
22
so I need to make a program on Python that needs to work with a CSV database, where you can look for a car, that matches the desired criteria. Issue is I've got no clue how to do it, I browsed through many sources and I could not find any solution that could work. Alright, so the idea was to at least find out how to pr...
How to select specific row that matches a criteria from CSV file in Python?
CC BY-SA 4.0
null
2023-03-02T14:26:37.263
2023-03-02T15:28:01.380
null
null
21,319,448
[ "python", "database", "csv" ]
75,616,808
1
75,629,106
null
0
15
I have a Spring boot application (2.6.9) with gradle 7.6. I'm using the open api generator gradle plugin to generate request controllers in my application, with the delegate pattern. ``` id 'org.openapi.generator' version '6.3.0' ``` Here are my open api generate config options, ``` "dateLibrary": "java8", "hi...
How to get the message of the Bad request in API response with openAPI generated controllers in gradle spring
CC BY-SA 4.0
null
2023-03-02T14:26:25.370
2023-03-03T15:39:00.970
null
null
7,865,181
[ "spring-boot", "gradle", "openapi", "openapi-generator" ]
75,616,816
2
null
75,282,931
0
null
If I understand your questions correctly you are saying the first row of table A should connect to the first row of table B, and the second row of table A should connect to the second row of table B, etc. Easiest way is to add a rownumber in your loading process for both tables and use stream lookup to connect on the r...
null
CC BY-SA 4.0
null
2023-03-02T14:26:40.320
2023-03-02T14:26:40.320
null
null
6,480,762
null
75,616,818
1
null
null
0
16
I use wscat from a bash script for connecting to a websocket endpoint in a web application with success. ``` #!/bin/bash ... wscat -n -c wss://myappserver:2443/mywebapp/websocket/myendpoint?param1=x ... ``` When I call the same script from a ubuntu systemd service unit with the same user, wscat gives me an error: "err...
How can I use wscat in a service unit?
CC BY-SA 4.0
null
2023-03-02T14:26:53.653
2023-03-03T15:36:54.223
2023-03-03T15:36:54.223
6,625,923
6,625,923
[ "linux", "ubuntu", "websocket", "service", "wscat" ]
75,616,819
1
null
null
-3
31
I have a flask application and that is connected with a database hosted on [https://www.elephantsql.com/](https://www.elephantsql.com/) And that connectionString locally is in my .env file but when I push my code, where should I put it? I know about github secrets but these secrets we can only access in github actions ...
Where to put database connectionstring when you push your code to github?
CC BY-SA 4.0
null
2023-03-02T14:27:00.253
2023-03-02T17:58:54.357
2023-03-02T16:10:48.390
400,617
2,983,359
[ "flask", "github-actions" ]
75,616,814
1
null
null
0
9
I have two python scripts, one connects to a sql DB and returns a DF. The other connects to a Teiid DB and returns a DF. they work fine running separately, but when I try to run them together it fails to find the other jar. I have to run them in multiple kernels because the path to the jar file changes. how can I do th...
Python multidatabase connection and data sharing
CC BY-SA 4.0
null
2023-03-02T14:26:38.973
2023-03-02T14:30:05.547
2023-03-02T14:30:05.547
3,706,016
13,585,224
[ "sql", "python-3.x", "sql-server", "pandas", "multithreading" ]
75,616,820
1
null
null
0
8
I'm learning customer relationship management framework Eclipse Scout right now and would like to use text input from the UI for my search query. It goes something like this: ``` public IContribution createConstraints(){ int ageInput = ....; return QL.contribution().where(eq(addYears(currentDate(), - ageInput), getPare...
Eclipse Scout BuilderParts createConstraints() take string input for search query
CC BY-SA 4.0
null
2023-03-02T14:27:06.083
2023-03-02T14:27:06.083
null
null
12,410,060
[ "crm", "eclipse-scout" ]
75,616,813
1
null
null
0
11
I'm using MongoDB from the command line on a linux box. I've written a simple deletedata.js script that looks like; ``` //this script deletes everything db.Collection1.deleteMany({}) db.Collection2.deleteMany({}) db.CollectionN+1.deleteMany({}) ``` ...to delete all the data form multiple collections in one go. I run i...
MongoDB load() output to mongodb commandline session
CC BY-SA 4.0
null
2023-03-02T14:26:37.790
2023-03-02T16:11:16.213
null
null
10,000,319
[ "javascript", "mongodb", "load" ]
75,616,821
1
null
null
0
7
i am trying make CNN for face detection with tensorflow. I would like to try CNN with two outputs: 1 - is there face? range[0,1], mark this as Y 2 - where is face, (x, y, width, height) for rectangle (normalized [0,1]) I am using tensorflow dataset (tf.data.Dataset), where every row has image array and tuple (Y, x, y, ...
How to setup tensorflow Dataset for CNN with multiple outputs
CC BY-SA 4.0
null
2023-03-02T14:27:17.610
2023-03-02T14:27:17.610
null
null
16,351,250
[ "tensorflow", "conv-neural-network", "tensorflow2.0", "tensorflow-datasets" ]
75,616,824
1
null
null
0
12
when I try to install tesseract macOS13, the displayed information is as follows: Warning: You are using macOS 13. We do not provide support for this pre-release version. You will encounter build failures with some formulae. Please create pull requests instead of asking for help on Homebrew's GitHub, Twitter or any oth...
when I try to install tesseract macOS13, I get the error: Error: tesseract: no bottle available
CC BY-SA 4.0
null
2023-03-02T14:27:26.517
2023-03-02T14:59:10.683
null
null
21,319,620
[ "macos", "tesseract" ]
75,616,826
1
null
null
0
37
``` class Country(models.Model): status = models.BooleanField() country_name = models.CharField(max_length=100, null=True, blank=True) country_flag = models.CharField(max_length=10, null=True, blank=True) class Offers(models.Model): @property def flag_from(self): return self....
Django model property does not working - Django
CC BY-SA 4.0
null
2023-03-02T14:27:28.613
2023-03-02T15:27:36.493
2023-03-02T15:02:08.280
17,562,044
2,797,922
[ "python", "django", "django-models", "django-views" ]
75,616,825
1
null
null
0
12
I have this entity: ``` import { Column, CreateDateColumn, Entity, JoinColumn, ManyToOne, ObjectID, ObjectIdColumn, } from 'typeorm'; import { Transform, Type } from 'class-transformer'; import { User } from './user.entity'; import { Prop } from '@nestjs/mongoose'; import mongoose...
Nest JS and Mongo DB
CC BY-SA 4.0
null
2023-03-02T14:27:27.977
2023-03-02T14:27:27.977
null
null
9,313,095
[ "javascript", "node.js", "mongodb", "nest" ]
75,616,828
1
null
null
0
8
I'm a beginner at front end development, i recently joined an early startup as an intern. And I was given a figma design to replicate into a working website. But when I'm copying any size from figma (like padding, margin, etc), the component becomes larger in the site. Is this problem from developer's end or designer's...
Replicating sizing from figma to my css makes everthing larger
CC BY-SA 4.0
null
2023-03-02T14:27:37.773
2023-03-02T15:20:35.220
null
null
20,619,722
[ "css", "responsive-design", "frontend", "figma" ]
75,616,827
1
75,617,430
null
0
26
I have several parent routes that have child routes with same path, just like this: ``` FeatureA (path: 'featureA', name: null) Grid (path: '', name: 'featureA-grid') New (path: 'new', name: 'featureA-new') ...... FeatureB (path: 'featureB', name: null) Grid (path: '', name: 'featureB-grid') New (p...
Resolve to child route of current route
CC BY-SA 4.0
null
2023-03-02T14:27:37.523
2023-03-02T15:27:19.243
null
null
1,184,708
[ "vue.js" ]
75,616,831
2
null
75,540,176
0
null
Just found out there is an open bug at microsoft. All of my websockets stays in WAIT_CLOSE state. [https://github.com/microsoft/vscode-remote-release/issues/3561](https://github.com/microsoft/vscode-remote-release/issues/3561)
null
CC BY-SA 4.0
null
2023-03-02T14:27:57.357
2023-03-02T14:27:57.357
null
null
2,302,957
null
75,616,823
1
75,617,027
null
1
14
I'm trying to send a username and password to the backend. When I sent the request, I got a 404 error for the route. Backend - `index.js` ``` const express = require("express"); const app = express(); const port = 3001; const cors = require("cors"); app.use(cors()); app.use(express.json()); app.get("/signup", (req, r...
Route is present but getting result 404
CC BY-SA 4.0
null
2023-03-02T14:27:24.153
2023-03-02T14:44:28.100
null
null
16,875,752
[ "node.js", "reactjs", "express" ]
75,616,833
2
null
71,890,948
0
null
If it still doesn't work, even if you ran Github Desktop as administrator, you need to add your repository as a secure directory in the (.gitconfig) file. If you don't have [safe] in your (.gitconfig) you have to add the following: `[safe] directory = [directory path]` However, you still have to keep in mind that backs...
null
CC BY-SA 4.0
null
2023-03-02T14:28:01.137
2023-03-02T14:28:01.137
null
null
21,319,742
null
75,616,835
2
null
75,616,422
0
null
Lazy loading isn't enabled by default. You have to [enable it](https://learn.microsoft.com/en-us/ef/core/querying/related-data/lazy) explicitly. You can also [mark some fields to be always auto included](https://learn.microsoft.com/en-us/ef/core/querying/related-data/eager?source=recommendations#model-configuration-for...
null
CC BY-SA 4.0
null
2023-03-02T14:28:06.373
2023-03-02T14:28:06.373
null
null
19,958,607
null
75,616,822
1
75,617,046
null
0
38
im trying to convert my text from TextFormField to an integer for example i insert '3' as string but i need to convert it to Int here is my code just focus on duration variable thats what i want it to be as int ``` import 'package:flutter/cupertino.dart'; import 'package:flutter/material.dart'; import 'package:flutter_...
Flutter / converting TextEdittingController text to integer
CC BY-SA 4.0
null
2023-03-02T14:27:21.417
2023-03-02T14:51:25.563
2023-03-02T14:45:59.263
10,157,127
20,685,633
[ "flutter", "dart" ]
75,616,830
1
null
null
0
24
In [this spreadsheet](https://docs.google.com/spreadsheets/d/1i3S1xVZocZ6PeLVCgunuGkPcwc_AhvdlMxj4GRFxCw0/edit?usp=sharing) Col A: If value row value of Amount (col C) is >0, it returns $A$1. If row value of Amount (col C) is <0 it returns the value of the column header (rows D to G) `=iferror(if(C4>0,$A$1,index($D$3...
Arrayformula or map formula for index-matching
CC BY-SA 4.0
null
2023-03-02T14:27:43.407
2023-03-02T14:44:32.050
null
null
11,932,071
[ "google-sheets", "array-formulas" ]
75,616,834
2
null
75,605,044
0
null
``` class SharedPrefs { static SharedPreferences _sharedPrefs; factory SharedPrefs() => SharedPrefs._internal(); SharedPrefs._internal(); Future<void> init() async { _sharedPrefs ??= await SharedPreferences.getInstance(); } String get username => _sharedPrefs.getString('apitoken') ?? ""; set apitoken(String v...
null
CC BY-SA 4.0
null
2023-03-02T14:28:02.113
2023-03-02T14:28:02.113
null
null
11,217,742
null
75,616,836
1
null
null
0
14
I have written a MongoDB query that looks like this: ``` db.collection.aggregate([ { $group: { _id: null, categories: { $addToSet: "$category" } } }, { $project: { _id: 0, categories: 1 } } ]) ``` but the result is: ``` [ { "categories": [ "Enha...
mongodb: how can i get a array result
CC BY-SA 4.0
null
2023-03-02T14:28:09.097
2023-03-02T17:00:36.203
null
null
21,284,252
[ "mongodb", "mongodb-query", "aggregation-framework" ]
75,616,841
2
null
66,627,336
0
null
Not exactly an answer to the question posted, but an answer to a related question: how to fix the above error message. For me installing angular language server helped: `npm install -g @angular/language-service@next typescript @angular/language-server` (run in the project directory)
null
CC BY-SA 4.0
null
2023-03-02T14:28:29.857
2023-03-02T14:28:29.857
null
null
218,261
null
75,616,840
1
null
null
-2
8
Add image watermark to FFmpeg video, and display random position and random time period thank you random position and random time period image watermark
Add image watermark to FFmpeg video, and display random position and random time period
CC BY-SA 4.0
null
2023-03-02T14:28:28.610
2023-03-02T14:28:28.610
null
null
21,319,705
[ "ffmpeg", "fluent-ffmpeg", "ffmpeg-python" ]
75,616,837
1
null
null
0
37
I am trying to include `lua_ls` on my lspconfig but I am getting this error `[lspconfig] Cannot access configuration for lua_ls. Ensure this server is listed in `server_configurations.md` or added as a custom server.` It will only appear after I add `lua_ls` to `ensured_installed` on `mason-lspconfig`. I`m using `mason...
How to include/configure lua_ls on lspconfig?
CC BY-SA 4.0
null
2023-03-02T14:28:16.887
2023-03-02T23:38:24.523
2023-03-02T15:23:01.710
546,861
3,387,602
[ "lua", "neovim", "language-server-protocol" ]
75,616,832
2
null
75,616,653
3
null
cppreference.com isn't a canonical source. There is nothing in the actual standard stating that `typedef` must be used. The C standard (C17 7.19) does however make a recommendation (and as such, it isn't normative but obviously highly recommended): > The types used for `size_t` and `ptrdiff_t` should not have an intege...
null
CC BY-SA 4.0
null
2023-03-02T14:27:59.200
2023-03-02T14:49:31.297
2023-03-02T14:49:31.297
584,518
584,518
null
75,616,842
1
null
null
0
9
I installed Wazuh, and got a running agent on some test machine to connect to it, and I can see the logs in Wazuh and all the alerts that are firing. Now my goal is to tweak the alerts that are displayed, because most of them are just regular activity which is not suspicious, and I only want to see activity which devia...
Tweak Wazuh to show alerts of out-of-the-ordinary activity
CC BY-SA 4.0
null
2023-03-02T14:28:33.087
2023-03-02T14:28:33.087
null
null
21,319,559
[ "wazuh" ]
75,616,846
2
null
11,643,448
0
null
[PyDepta](https://github.com/BuGoNee/pydepta) might help. It can extract structured data from HTML page and works in unsupervised mode.
null
CC BY-SA 4.0
null
2023-03-02T14:29:09.250
2023-03-02T14:29:09.250
null
null
597,401
null
75,616,847
2
null
75,616,456
1
null
It was a dependencies issue as I have had only: `kapt("com.google.dagger:hilt-android-compiler:2.44")` in my `build.gradle`. To solve the issue I have had to add even `kapt("androidx.hilt:hilt-compiler:1.0.0")` [As per documentation](https://developer.android.com/training/dependency-injection/hilt-jetpack#workmanager)
null
CC BY-SA 4.0
null
2023-03-02T14:29:11.753
2023-03-02T14:29:11.753
null
null
9,945,307
null
75,616,746
1
null
null
0
10
I decided to update to the latest Xampp (3.2.1) and found that my Apache SSI test site isn't working as it was under my previous version. I did some research and updating the xampp\apache\conf\httpd.conf managed to unlock single-level-deep include calls. The structure goes something like this: ``` xampp/htdocs/SSI/ind...
Xampp / Apache SSI nested includes not working
CC BY-SA 4.0
null
2023-03-02T14:22:45.530
2023-03-02T14:22:45.530
null
null
3,817,171
[ "apache", "nested", "xampp", "include", "ssi" ]
75,616,817
1
null
null
2
24
After playing around with this for quite some time I am still searching for a solution. The content Security Policy of a certain website requires a long list of allowed sources (especially because Google loads certain content with dynamic .TLDs - Google states in the documentation also that this is necessary for some s...
Content Security Policy (CSP): Is it somehow possible to report violations if using meta tag?
CC BY-SA 4.0
null
2023-03-02T14:26:41.903
2023-03-02T16:03:29.643
2023-03-02T15:05:43.817
576,746
576,746
[ "http-headers", "reporting", "content-security-policy", "meta", "sentry" ]
75,616,848
1
null
null
0
16
> ld: '/Users/falv/Library/Developer/Xcode/DerivedData/Unity-iPhone-gflhgpgrdfxqnhdvnghrzrzkkfzm/Build/Products/ReleaseForRunning-iphoneos/XCFrameworkIntermediates/GoogleAppMeasurement/WithoutAdIdSupport/GoogleAppMeasurement.framework/GoogleAppMeasurement(APMEventAggregates.o)' does not contain bitcode. You must rebuil...
Xcode bitcode on and off makes no difference
CC BY-SA 4.0
null
2023-03-02T14:29:15.860
2023-03-02T15:05:49.377
2023-03-02T15:05:49.377
1,033,581
20,526,096
[ "ios", "xcode", "bitcode" ]
75,616,849
2
null
75,616,660
1
null
You can use a generator expression to filter the keys with a c that is below the target and [min](https://docs.python.org/3/library/functions.html#min) to find the closet key: ``` target = 312 closest_key_above = min((k for k, d in data.items() if d['c']>target), key=lambda k: data[k]['c']-tar...
null
CC BY-SA 4.0
null
2023-03-02T14:29:15.983
2023-03-02T14:29:15.983
null
null
16,343,464
null
75,616,844
2
null
75,615,763
1
null
I'm not entirely able to reproduce what you shared, but here are the steps I took to generate a BCrypt string. I am on an Apple M1 Pro as well running the following versions of Elixir/Erlang via ASDF: ``` elixir 1.14.2 erlang 24.2 ``` 1. Add {:bcrypt_elixir, "~> 3.0"} to mix.exs and then mix deps.ge...
null
CC BY-SA 4.0
null
2023-03-02T14:29:08.293
2023-03-02T14:29:08.293
null
null
274,030
null
75,616,853
1
null
null
0
8
I have simple XCUIElementTypeStaticText in my iOS app, but `getText()` doesn't work as expected it doesn't return text inside. Any tips&tricks or workarounds? - - - - code: ``` const reportTitleName = await driver.$('~reportTitleName') const reportName = await reportTitleName.getText() // not working const reportName ...
Appium can’t get text from XCUIElementTypeStaticText
CC BY-SA 4.0
null
2023-03-02T14:29:28.093
2023-03-02T14:29:28.093
null
null
1,337,352
[ "webdriver-io", "appium-ios", "xcuitest" ]
75,616,852
1
null
null
0
24
i really need help to see whats wrong ``` Private Sub btnSaveData_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnSaveData.Click Try conn.Open() cmd = conn.CreateCommand cmd.CommandType = CommandType.Text cmd.CommandText = "insert into vbsavedata([Studen...
i keep getting the error number or query values and destination fields are not the same
CC BY-SA 4.0
null
2023-03-02T14:29:20.377
2023-03-02T16:31:34.077
2023-03-02T16:31:34.077
3,043
21,319,490
[ "database", "vb.net" ]
75,616,854
2
null
75,290,343
3
null
You can use neo4j library for object graph mapping in Java. The process is overall simple just like object relational modelling where we map each entity to a class. In your case, you would have classes like Person and Department. ``` @NodeEntity public class Department { @id String name; @Relationship(type...
null
CC BY-SA 4.0
null
2023-03-02T14:29:32.637
2023-03-02T14:29:32.637
null
null
19,878,001
null
75,616,856
2
null
65,345,995
0
null
Works for me adding "&confirm=t", so: wget --no-check-certificate 'https://docs.google.com/ucexport=download&id=FILEID&confirm=t' -O FILENAME
null
CC BY-SA 4.0
null
2023-03-02T14:29:55.170
2023-03-02T14:29:55.170
null
null
21,319,763
null
75,616,850
1
null
null
0
34
I am in the process of installing VOLTTRON on my raspberry Pi. I came across this [VOLTTON installation video](https://www.youtube.com/watch?v=0zHG1p76GNs&list=TLGG8TyZC8fiYxMwMTAzMjAyMw&t=4s&ab_channel=PNNLUnplugged) and followed the same steps. But my installation is running into some issues: On a Linux machine as sh...
VOLTTRON: `python3 bootstrap.py` Does not install all packages
CC BY-SA 4.0
null
2023-03-02T14:29:16.540
2023-03-03T21:53:12.333
2023-03-03T21:53:12.333
11,922,765
11,922,765
[ "python", "raspberry-pi", "raspberry-pi4", "volttron" ]
75,616,859
2
null
75,616,796
0
null
How about the following: ``` datasets = ['test1', 'test2'] for df in datasets: input_path = f"{df}/subdirectory" ``` ?
null
CC BY-SA 4.0
null
2023-03-02T14:30:07.540
2023-03-02T14:30:07.540
null
null
1,459,061
null
75,616,845
1
null
null
0
43
I'm new to CSS (actually, every time I tried to learn web development I dropped because of it). I'm writing the Survey Form from FCC and decided to play with it a bit to challenge myself. As the title says, apparently whenever I add the class `radio-inputs` to a `div`, having as a first class `user-input`, the styles f...
First class is ignored when second class is added - CSS
CC BY-SA 4.0
null
2023-03-02T14:29:08.580
2023-03-02T16:04:40.970
2023-03-02T14:42:07.187
82,548
18,781,924
[ "html", "css", "class" ]
75,616,855
1
75,617,246
null
0
16
I want to delete log files automatically in my Spring Boot apps and use the following settings: ``` logging: file: name: './logs/application.log' max-size: 10KB # for test purpose keep small max-history: 5 ``` Here is the documentation page: [https://docs.spring.io/spring-boot/docs/2.1.13.RELEASE/referen...
logging.file.max-history is not working in Spring Boot
CC BY-SA 4.0
null
2023-03-02T14:29:47.520
2023-03-02T15:01:29.713
null
null
21,263,160
[ "java", "spring", "spring-boot", "logging", "logback" ]
75,616,839
1
75,616,979
null
0
25
I am trying to build up a Elasticsearch query in PHP using arrays and then using the `json_encode()` function to convert it to JSON, however, there seems to be something Elasticsearch is disliking: Example of my array in PHP (relevant parts): ``` 'query' => [ 'bool' => [ 'must' => [ 'multi_match...
JSON encoding complex arrays with json_encode in PHP
CC BY-SA 4.0
null
2023-03-02T14:28:26.147
2023-03-02T14:39:13.927
null
null
1,334,894
[ "php", "arrays", "json", "laravel", "elasticsearch" ]
75,616,863
2
null
5,772,666
0
null
You should try DocToText I think this should help you its open source and there is a new version out: [https://sourceforge.net/projects/doctotext/files/](https://sourceforge.net/projects/doctotext/files/)
null
CC BY-SA 4.0
null
2023-03-02T14:30:21.813
2023-03-02T14:30:21.813
null
null
21,219,525
null
75,616,861
2
null
75,592,015
2
null
After two days of debugging and testing various combinations, what fixed it was setting the encoding on the *.cs files of my solution to "UTF-8". They were in "Western European" by default on my installation. I guess that's why building on Windows worked and Linux not (maybe Linux does not know this encoding). I used V...
null
CC BY-SA 4.0
null
2023-03-02T14:30:20.363
2023-03-02T14:30:20.363
null
null
1,300,516
null
75,616,862
2
null
75,616,660
0
null
``` [ins] In [19]: 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}, ...: '...
null
CC BY-SA 4.0
null
2023-03-02T14:30:21.360
2023-03-02T14:30:21.360
null
null
3,335,163
null
75,616,860
2
null
75,603,763
0
null
[Refining the Results of a Values or Co-Occurrence Query](https://docs.marklogic.com/guide/node-dev/search#id_71023) > - [cts.values](https://docs.marklogic.com/cts.values)[cts:values](https://docs.marklogic.com/cts:values) One of the options listed is `map`: > "map" Return results as a JavaScript Object instead of as ...
null
CC BY-SA 4.0
null
2023-03-02T14:30:12.750
2023-03-02T14:30:12.750
null
null
14,419
null
75,616,866
2
null
75,616,238
0
null
Just out of curiosity to see if connecting between local functions emulator and cloud firestore was the problem, I deployed the function and tested cloud to cloud. This solved the problem. While I had really liked that my little cheat had worked previously, I suppose I will have to emulate the entire structure locall...
null
CC BY-SA 4.0
null
2023-03-02T14:30:33.140
2023-03-02T14:30:33.140
null
null
1,369,160
null