Newest Questions
24,180,438 questions
0
votes
0
answers
8
views
JSX element type LottieView does not have any construct or call signatures react native expo
I'm trying to add a lottie file to my app. Im using expo, and I installed lottie-react-native with npx expo install lottie-react-native.
However, when I try using LottieView
import LottieView from &...
-1
votes
0
answers
15
views
What exactly is the MVC project structure like [closed]
MyExamProject
│
├── MyExamProject.sln
│
└── MyExamProject
│
├── Areas
│ └── Admin
│ ├── Controllers
│ │ ├── DashboardController.cs
│ │ ├── ...
-3
votes
1
answer
15
views
Python error when calculating average score in nested list, please help me [closed]
#4
scores = [
[80,90,85],
[75,88,92],
[90,85,80],
[88,88,88]
]
max_avg = -1
best_index = 0
for i in range(len(scores)):
avg = sum(scores[i]) \ len(scores[i])
...
Best practices
0
votes
0
replies
4
views
How to get the current preview size of CommunityToolkit.Maui.Views.CameraView?
I'm using the CameraView control from the CommunityToolkit.Maui package in a .NET MAUI application, and I need to obtain the actual dimensions (width and height) of the camera preview as it appears on ...
0
votes
0
answers
17
views
How to disable automatic routing of go_router in app?
In the flutter app, I use go_router for navigation purposes.
I have deeplinking in the application but I want to handle it myself due to some concerns.
For this I want to disable the automatic routing ...
1
vote
0
answers
19
views
facebook login js: Error validating verification code. Please make sure your redirect_uri is identical to the one you used in the OAuth dialog request
I know this question has been asked in here already - none of the solutions have worked for me yet.
this is the code im using to get the token, from meta's documentation:
window.fbAsyncInit = function(...
0
votes
0
answers
20
views
How can I open an accordion with an external link?
I'm trying to link from one page on my website to content in an accordion on another page, and I can't get the javascript to work for opening that accordion automatically. I've looked at a lot of ...
0
votes
0
answers
13
views
Pool hard cap violation? on react native image
How to fix this issue? Currently getting Pool hard cap violation?. Some answers suggest to add
"android/app/src/main/AndroidManifest.xml"
<application android:largeHeap="true"
...
0
votes
0
answers
12
views
Registering Multiple IAP products
I just learned today that Google Play removed import/export of CSV file anymore. I have at least 80 IAP Products to register for the game that I am working with.
Is there a better and faster way to do ...
0
votes
0
answers
16
views
Forever waiting for CompletableFuture$Signaller in shutdown hook
A method receives ProcessHandle toBeKilledProcessHandle and then kills that process normally. Note that this is normal termination of the process so that the shutdown hook gets invoked in that process....
0
votes
1
answer
23
views
Getting 401 Unauthorized with Vite environment variables - Keys visible in console but API calls fail
I'm working with Vite and trying to use API keys from my .env file. I'm experiencing a strange issue where the keys appear correctly in console.log(), but my API requests are failing with 401 ...
0
votes
0
answers
12
views
how to rectify javax.jms.JMSException: Failed to create connection?
We are(multiple JAVA applications) connecting to IBM MQ using the JMS / JNDI approach in a WebSphere Application Server environment.
Each request follows the below high-level flow:
Create a JNDI ...
0
votes
0
answers
10
views
Auto Capture YouTube Video Frame as WordPress Featured Image via Make.com
I have a scenario where I’m pulling YouTube videos using the RSS module, then generating content based on the video title, and finally posting it to WordPress.
My issue is about the featured image.
...
-1
votes
1
answer
21
views
XDG base dir spec: What to do if $HOME is also not set?
In the XDG base dir specification it is advised that if e.g. $XDG_STATE_HOME is not set, the application should fall back to $HOME/.local/state . But it says nothing about what happens if $HOME is not ...