27 questions from the last 30 days
Advice
0
votes
0
replies
32
views
How to interpolate attribute names into translations with i18next?
Laravel has localization for authorization, validation and other types of messages. validation.php returns an array which contains error messages for validation rules. It can also have custom ...
1
vote
1
answer
38
views
Spring Boot 4 upgrade hibernate jpa json functions incubated
When upgrading to Spring Boot 4 (Hibernate 7) you can get the message that the json functions are incubated, i.e. default its turned off. It will then tell you to set hibernate.query.hql....
1
vote
1
answer
44
views
Error reading file content in helm template
Hi I am trying to read below file content in helm template but getting below.
Folder:
charts
--Example
----pipelines
------a.conf
------b.conf
------c.conf
----templates
------example.yaml
{{ ....
-3
votes
0
answers
168
views
nlohmann: Assertion failed: endptr == token_buffer.data() + token_buffer.size(), file include/nlohmann/detail/input/lexer.hpp, line 1292 [closed]
anybody anytime get next error?
Assertion failed: endptr == token_buffer.data() + token_buffer.size(), file include/nlohmann/detail/input/lexer.hpp, line 1292
i've next code:
int main(int argc, char *...
-3
votes
0
answers
89
views
Json charges after rest of page? [closed]
I'm new at using JavaScript and studying for web design. I'm having some trouble with JSON and a gsap powered horizontal gallery.
Basically, i started designing my web portfolio without using a JSON, ...
Best practices
0
votes
1
replies
59
views
Force discard of the HTTP response body in Spring Webflux to avoid out of memory
I have a reactive spring webflux rest api which exposes a REST endpoint.
The business logic of the rest endpoint is straightforward. Based on some ID, I am going to call another third-party service I ...
-4
votes
0
answers
53
views
N8n Automation - inline keyboard [closed]
want to build an n8n automation that works for booking salon appointments.
It should work like this: it reads available time slots from Google Calendar and shows them to the user so they can choose ...
2
votes
0
answers
45
views
Why does Milvus return a generic RPC error when json_contains_all uses mixed types in an ARRAY?
I’m using Milvus 2.5 with PyMilvus 2.5.x and ran into a confusing error message when querying an ARRAY<FLOAT> field.
In my collection schema, I defined an array field float_array with ...
2
votes
1
answer
58
views
Get all objects with attribute that does not have any of the provided substrings
Consider this basic JSON file:
{
"list": [
{
"random": 123,
"fruits": "pineapple"
},
{
"...
-3
votes
0
answers
96
views
Incremental/partial deserialization in Python for JSON? [closed]
I have a problem in which a program needs to:
Read in a large (4K+) JSON document;
Modify one object deeply nested in it, often just one field of one object.
Write it back out.
Even with something ...
1
vote
1
answer
141
views
How to pass parameters to Queue new build to Azure DevOps from PowerAutomate?
I want to trigger an Azure DevOps pipeline from PowerAutomate.
The pipeline requires a single parameter - UserID.
This is the Pipeline:
trigger: none
pr: none
name: User-$(Date:yyyyMMdd)$(Rev:.r)
...
Best practices
0
votes
5
replies
83
views
How to handle "JSON payload" templates for web requests to an API?
I'm working with a 3rd party API. The API uses an elasticsearch-like query language. So queries can get quiet complex. Often I have such a complex query (eg. long json string) which has 1 or maybe 2 ...
0
votes
1
answer
45
views
Karate Framework # Unable to read the data from JSON while using JSON Array Data Source using read() and karate.setup()
Problem Statement: I am trying to read a Json file into my feature file. This Json contains multiple Json Objects as payloads as shown below. Once I can read, I want to pass that Json Payload as input ...
1
vote
1
answer
131
views
Converting JSON to JSONL without losing original object structure
I have JSON that looks like:
{
"18003432343": {
"04:00:25": {....},
"12:00:25": {....},
},
"18005553332": {
"18:11:25": {....},
...
0
votes
1
answer
105
views
Filtering out JSON properties where keys do not match length
I have JSON that looks like:
{
"18003432343": ....,
"18005553332": ....,
"1-3-2025 10:36:41_08941100 AM": ....,
"1-3-2025 11:36:41_08941100 AM": ....
}
...