Newest Questions
24,144,403 questions
Score of 0
0 answers
8 views
Makefile generation error with canonical name
everybody,
## Process this file with automake to produce Makefile.in
lib_LIBRARIES = \
libhelpers.a
libhelpers_a_SOURCES = <set of source files>
libhelpers_a_CXXFLAGS = <set of CXX ...
Score of 0
0 answers
12 views
How do I connect an existing Azure Function App to Visual Studio Code?
when ever i create a azure function app i don't get a option to open it in the portal. I want to know how to connect app and use it wisely and efficiently..
Score of 0
1 answer
10 views
Git hub change local repo
I cloned a repo into my system but later that repo had changes on Github. Since I had already cloned that repo earlier which means it has no changes. How do I get the new changes made on Github. ...
Score of 0
1 answer
35 views
Where can i find resources for learning more about vibe coding?
What technical skills should I learn to use AI coding assistants effectively?
I’m trying to understand the development approach sometimes called “vibe coding,” where a developer uses natural-language ...
Score of 0
0 answers
14 views
Flutter Linux desktop build fails with "No provider of glBlitFramebuffer found" after updating to Flutter 3.44.6
After updating Flutter to version 3.44.6, I can no longer run my Flutter app on Linux. The app builds successfully, but when it launches, I get the following error:
Launching lib/main.dart on Linux in ...
Score of 0
1 answer
23 views
How to let code know if it's run using cargo test vs cargo run vs run as an executable?
I'm creating a data type library that takes in some text and converts it into a usable data format, and I want to make life easier for those who are debugging by outputting some useful information ...
Score of 0
2 answers
18 views
Which is the better framework between Express and Nest.js for developing middleware application based on text and images data and connection with DB
I am choosing between Express or Nest JS.
In terms of performance and scalability, I would choose the one which is better in longterm to iterate and refactor the code without making any big loss/...
Score of 1
0 answers
16 views
RPi3B+ AArch64 kernel in `ttbr1` region: instruction fetch succeeds after `br` to `ttbr1` region, but first data access causes Data Abort (EC=0x25)
I'm writing a kernel in Rust for the Raspberry Pi 3b+ hardware which uses Mini UART for I/O. And so far it had been working wonderfully on QEMU. However, when I finally got access to real hardware to ...
Score of 0
1 answer
34 views
Why does numpy do a copy in this array slice?
In the following code, it appears numpy does a copy when slicing:
>>> a = numpy.arange(1, 5, dtype = numpy.int32).reshape((2, 2))
>>> a
array([[1, 2],
[3, 4]], dtype=int32)
&...
Score of 1
2 answers
34 views
How does a parallel stream continue after a stateful operation like sorted()?
I'm trying to understand the architecture of a stream processing framework (conceptually, not JDK implementation details).
My current understanding is:
A stream pipeline is a chain of stages like ...
Score of 0
1 answer
24 views
using a proof to unwind a decidable `if`
Suppose I have a function that uses decidability to choose one of two outcomes, and I have a proof that one of the branches will be taken; how can I combine these to reduce a proof about this function ...
Score of 2
2 answers
75 views
Where is the C Standard function sqrt actually defined? (Windows user)
For context: I'm currently re-learning C after a long time without using it (since school). Now I need to use it a little in work as well as C++. This question is not about the sqrt function, but ...
Score of 0
0 answers
18 views
Can an internal Google Workspace OIDC app receive the Security Bundle amr claim without OAuth verification?
I am implementing an internal Google Workspace web application that uses Google's OpenID Connect authorization-code flow with PKCE, state, and nonce. The application requests only the openid scope.
...
Score of 0
0 answers
27 views
Isn't there a method/constructor in the JDK that creates a JTable with dummy data?
I 100% expect this question to be downvoted or deleted if I am wrong, but if I am right, then this is a genuinely useful question for the Swing community to have answered. It'll be great for beginners ...
Score of 0
0 answers
31 views
How can I create a Pydantic secret field that is plaintext in `model_dump()` but masked in every validation error?
I need a Pydantic field for sensitive strings such as API keys.
The behavior should be:
The real value is stored in the model.
model_dump() and model_dump_json() return the real value because I need
...