Newest Questions
24,188,320 questions
0 votes
0 answers
23 views
Rust std::process::Command works in embedded zed shell but not on a regular shell
From within my rust program, I'm trying to execute pdflatex myfile.tex using std::process::Command: let output = Command::new("pdflatex") .arg(["-jobname=", ...
-1 votes
0 answers
18 views
Pygame Movement Stuttering
When I try to move Surface in Pygame, it seems to stutter in a weird way. Even when I use dt, the movement speed is not constant. Even thought FPS oscilate around 59-61, the Surface sometimes moves ...
0 votes
1 answer
28 views
Is there any issue using Get snackbars & loaders and closing them using Get.back() in flutter sdk v3.38.3?
I recently upgraded to flutter v3.38.2 from v3.29.2 and found an issue that Get.back() & get.closeAllSnackbars() throwing some LateInitializer error for Controllers. Facing this issue post upgrade ...
0 votes
0 answers
20 views
Flutter (Xcode 26.1.1) error Command PhaseScriptExecution failed with a nonzero exit code
I'm encountering this error while building the iOS app with Flutter: Command PhaseScriptExecution failed with a nonzero exit code I've tried all the available solutions. If anyone knows how to resolve ...
-2 votes
0 answers
37 views
How to properly manage vertical offset for ghosts oscillating between tiles in Pac-Man ghost house
I am implementing ghost behavior in a Pac-Man clone, specifically the behavior when ghosts are inside the ghost house during the waiting phase. The issue is that ghosts inside the ghost house do not ...
0 votes
0 answers
35 views
Is it possible to connect to a local Python server using secure web sockets from a browser console on an HTTPS webpage?
We installed websockets for Python on macOS using this terminal command: (.venv) a@as-MacBook-Pro dic % python3 -m pip install websockets server.py: #!/usr/bin/env python3 """Secure ...
Advice
0 votes
1 replies
20 views
How to set physical machine access when mount to docker container?
I'm trying to run postgresql. after checking their document, I added this volume mount /path/to/data:/var/lib/postgresql/18/docker my container failed immedeately, chmod: changing permissions of '/var/...
0 votes
0 answers
13 views
Pyspark - Flatten nested strucutre
I have MongoDB collections forms and submissions where forms define dynamic UI components (textfield, checkbox, radio, selectboxes, columns, tables, datagrids) and submissions contain the user data in ...
0 votes
0 answers
22 views
How do I authenticate to GitHub using username and personal access token in the Git terminal? [duplicate]
I'm trying to log in to my GitHub account from the terminal using my GitHub username and password, but GitHub no longer accepts account passwords. I generated a Personal Access Token (PAT), but when I ...
-3 votes
1 answer
58 views
Is the source code representation in the Go Programming Language the same as in Git?
git(1) uses one representation when storing source code (not binary) by default which IIRC is utf-8 (no working-tree-encoding). Is this the same default as in Go? I tried comparing to Git but have ...
0 votes
0 answers
13 views
Applying the onRowSelectionModelChange for React Material UI DataGrid
I'm trying to apply the row selection model in React Material UI. Intension here is to show the rowId when a row is selected so that I can show the row action buttons as DELETE/EDIT. I'm using the &...
-1 votes
0 answers
19 views
mesibo Compilation Error: Unresolved reference 'MessageParams' in Mesibo Android SDK 2.7.19 (Kotlin)
I am integrating the Mesibo Android SDK (version 2.7.19) into my Kotlin application. I need to implement the Mesibo.MessageListener interface to receive real-time messages, but I am facing a ...
0 votes
0 answers
21 views
How to debug an app once it's in the field
I've used log messages extensively for debugging my app during development using Android Studio. It concerns me how I will debug problems users may report when the app published and out there in the ...
0 votes
0 answers
14 views
Guidewire triggering a custom event in messaging queue
Im trying to create a new message queue which would send a message to external system but im not able to trigger the new custom event. From the docs ive seen we need to use .addevent() method but ...
-6 votes
0 answers
53 views
messy codes in VS code [closed]
I am a beginner, I have a question as follows. When I run the code, the output is messy code. When I move the size of console, the messy code disappear, why? It is a very annoying question. I have ...