Newest Questions
24,187,365 questions
-1
votes
0
answers
7
views
Highlight QuickFilter value in MUI DataGrid
When a search is being performed in MUI's DataGrid component, how can the search term (ie. QuickFilter) be used to highlight the matching texts within the rows of the grid? (similar to search ...
0
votes
0
answers
9
views
com.fasterxml.jackson.module.kotlin.jacksonObjectMapper Removed from Latest Jackson 3.x Versions?
We have a very old Kotlin class (v1.4) that we were upgrading to the latest Kotlin and in the process upgrading to the latest jackson JARs too in the process.
I see that the groupId has changed for ...
0
votes
0
answers
12
views
Hibernate @oneToOne mapping is unable to use L2 cache when mapping returns no Object
I have 2 JPA classes with bi-directional onetoOne mapping :
@Entity
public class A {
...
// bi-directional one-to-one association to B
@OneToOne(cascade = CascadeType.ALL, optional = true, fetch =...
Best practices
0
votes
0
replies
13
views
Next.js + S3-compatible storage: presigned uploads from browser vs uploading files to API route
I’m building a page builder in Next.js (App Router) where users upload images that are stored in DigitalOcean Spaces (S3-compatible).
Depending on the page:
some flows upload a single image (e.g. ...
-3
votes
0
answers
21
views
Why is our coded Microsoft SSO, written in .NET 8 and implemented via AddMicrosoftAccount, now causing 404 errors? [closed]
We have a .NET application written in 8.0. For several months we've been using AddMicrosoftAccount for our Microsoft SSO after upgrading the program from the old .NET Framework 4.8. Several weeks ago ...
0
votes
0
answers
13
views
SELECT dynamic FROM statement
I want to look over all tables which have specific columns like OUTLET and OUTLET2.
And then I want to look if the columns has any match with any value like 'xyz'. But the value can be changed.
I am ...
-2
votes
0
answers
22
views
Sell Digital Content through Razorpay Payment Gateway [closed]
In all educational app are used Payment Gateway direct their app but Google Play Console Policy does not allow it... they say you can used User chooses billing system for selling digital content.
But ...
0
votes
0
answers
11
views
Importing std with CMake / Visual Studio
CMake version: 4.1.1-msvc1
Also using VS26 / MSVC.
I’m getting the following error when generating CMake files:
CMake Error in CMakeLists.txt:
The "CXX_MODULE_STD" property on the target &...
1
vote
0
answers
13
views
How to implement a "new" indicator that highlights a change for x seconds with Rx.Net?
I'm trying to implement a ViewModel that highlights changes as they happen coming from a external device. I have a working valueObservable that triggers on each change.
I want to highlight each ...
0
votes
0
answers
11
views
Django Allauth Google OAuth: MultipleObjectsReturned even though no duplicates in MySQL
I’m using Django + MySQL with django-allauth and Google OAuth.
Login fails with this error:
MultipleObjectsReturned: get() returned more than one SocialAccount
The confusing part is that the database ...
0
votes
0
answers
11
views
I'm encountering an error in helpdesk.ticket when calling a custom method within a scheduled action
This is my scheduled action in Odoo.
action image
and this is my code
# -*- coding: utf-8 -*-
from odoo import models, api
import pika
import json
import logging
_logger = logging.getLogger(__name__)
...
0
votes
0
answers
15
views
postgres "<schema.function>" does not exist
I have a script in postgres to create test data and error Error: relation "schema" does not exist is being thrown. I have verified that the schema and function exists and that I can run the ...
Advice
0
votes
0
replies
10
views
nvim server to use nvim as godot editor
I am trying to use nvim as the external editor for Godot, with GDScript.
I have found a decent amounts of post explaining how to do it, so I have some idea on how to do it.
No solutions perfectly fit ...
Best practices
0
votes
0
replies
12
views
Azure Load Balancer vs Application Gateway for Elasticsearch
After deploying the DEMAND ES Azure Web App in PaaS, we started seeing:
Slow responses from ElasticSearch.
ElasticSearch node overload.
Search thread pool queue saturation.
429 errors and ...
-2
votes
0
answers
37
views
How to make an Android app launchable but hidden from the launcher (Android 13)? [closed]
I want to make an Android app on Android 13 that can be launched, but does not appear in the launcher / home screen.
I tried modifying my AndroidManifest.xml by changing the intent filter:
<intent-...