Newest Questions
24,222,669 questions
0
votes
0
answers
5
views
in unity 2d how can i change the move tool to be free move tool?
i mean that i can drag in the scene view objects all around 360 degrees freedom and not locked right,left,up,down ?
instead of the move tool axes arrows the green and red in the attached image i want ...
0
votes
0
answers
7
views
entra batch returning same data every time
trying to batch the queries to get them faster, problem is i end up with duplicate of the same 19 people
for starters my filter is
(startswith(userprincipalname,'xyz105766')) OR (startswith(...
-1
votes
0
answers
8
views
update database table where array value is not equal to
Currenlty I am using php wrapper class to update database.
I want to use where value is not equal to in where clause.
Current code updates where 'id' = $id. I want where 'id' != $id
Sample code :
<?...
0
votes
0
answers
5
views
Is there a way to prevent rasterization of SVG images while changing their orientation via CSS's "transform: rotate()"?
I'm trying to build a weather app with React. I want to achieve a slot machine effect while scrolling weather cards. Most of those cards have charts on them. To draw charts I'm using the "...
-2
votes
0
answers
14
views
I've written a MySQL data compare tool. Should I release it as an open source tool? [closed]
I've written a MySQL data compare tool in Python that can compare data for all tables in a database, between two MySQL servers. It does this as follows:
Checks for missing tables in either database
...
0
votes
0
answers
10
views
Unable to console.log document.cookie
I am trying to understand the cookies js.
I have seen some sample codes which I have tried to replicate but even writing it the same way I am unable to console.log my document.cookie nor I can see ...
0
votes
0
answers
5
views
Bazel oci_python_image example doesn't build when adding new Python dependency
I'm new to Bazel Python, so trying to follow the examples in https://github.com/aspect-build/bazel-examples/tree/main/oci_python_image.
The oci_python_image example builds and runs well without any ...
0
votes
1
answer
9
views
No Data from SwiftData repository is appearing in List
I'm trying to load data from the repository using Swift 6. My app built successfully, but when I run it, the data isn't displayed in the list.
Sample below.
struct ContentView: View {
@State ...
0
votes
0
answers
7
views
Building .NET MAUI app for iOS fails with "clang++ exited with code 1"
I am developing a mobile app in .NET Maui with .NET 8.0 for both Android and iOS using the latest Release of Visual Studio 2022 and a Windows PC. Everything worked very well until this week. I can no ...
0
votes
0
answers
21
views
Xcode 16.4 C++ and Objective-C Interoperability broken?
Xcode 16.4 no longer has the "C++ and Objective-C++" interoperability build setting option (normally under the Swift Compiler -- Language category). According to the WWDC '25 notes this is ...
0
votes
0
answers
4
views
Can I connect to an authenticated proxy using undetected-chromedriver + seleniumwire?
The proxy I'm trying to connect to is ScraperAPI's proxy and this is the way they provided in documentation to connect to seleniumwire, however it doesn't work and it still uses my IP.
API_KEY = '...
-2
votes
0
answers
12
views
Two "identical" charts that display data differently [closed]
I have inherited two files for tracking data on two different lines. The two files are "identical", they are just tracking data for two different production lines. Each file has charts that ...
-3
votes
1
answer
28
views
Bit Manipulation
#include <stdio.h>
#include <stdlib.h>
#include <limits.h>
int main(void) {
int v;
int sign;
sign = -(v < 0);
printf("%d",sign);
}
...
0
votes
0
answers
3
views
How to write a query in AWS Log Insight for a Line Graph for lambda logs
This is a query that I have
fields @timestamp, function
| filter event = "lambda_request"
| stats count() as req_count by bin(10m) as time, function
| sort time
I want to display lines ...
0
votes
0
answers
5
views
Playwright/VS Code -- Empty 'Run Tests' dropdown list in Test Explorer bar
I’m able to successfully run 'likesCounterGlobal.spec.ts' in the CLI and manually trigger the global setup and teardown commands before/after running the test (also manually) in the VSCode UI, but I ...