Questions tagged [internals]

The internals tag denotes questions about how things work, as opposed to how to accomplish something specific. Of course, how something works underneath will have practical implications, but internals questions aren't about how to do something; rather, how to understand something.

If you understand how a database or parser or version control system actually works, you'll be better at using it. Internals questions seek this kind of inside knowledge.

660 questions
0
votes
0 answers

Why adding external dll in class library expected to be added in calling project?

I have to call an external .Net Framework assembly that required to be consumed in different projects (Console, Desktop and Web Applications). In order to avoid adding external assembly, I have created a class library project and wrap external…
0
votes
0 answers

How to get nginx phase on which handler was called

I'm writing my own Nginx HTTP module. I'm registering module's handler on two phases: NGX_HTTP_SERVER_REWRITE_PHASE and NGX_HTTP_PREACCESS_PHASE. The logic is pretty much the same on each phase therefore it's unnecessarily to make two different…
cooleck
  • 343
  • 1
  • 5
  • 14
0
votes
1 answer

werkzeug.routing.exceptions.BuildError: Could not build url for endpoint python flask

I'm trying to create login page and register page for personal project in Python / Flask but I am facing this error in vscode terminal, when I try to access Register endpoint: "werkzeug.routing.exceptions.BuildError: Could not build url for…
Rithik
  • 1
0
votes
2 answers

How to instantiate a class with an internal constructor in Kotlin

I am interested to instantiate Duration class from Kotlin.time package provided by kotlin. my code so far.. ... import kotlin.time class MyGLRenderer : GLSurfaceView.Renderer { override fun onSurfaceCreated(unused: GL10, config: EGLConfig) { …
beginner
  • 27
  • 1
  • 6
0
votes
0 answers

How to publish oracle apex app in internal network for users?

I am a newbie in learning about oracle apex How to publish oracle apex app in internal network for users? Is it the same as publishing asp.net web? Can you help me, please? I try get Login page address and then configure in DNS server but it failed
0
votes
0 answers

Homestead project setup issue cannot access internal API

For context, I do have 2 Laravel projects on my local unit. 1 for the app and 1 for internal API. The app will send API request to the internal API. I expected for the Laravel homestead to work smoothly but I encountered a problem wherein I keep on…
kamer
  • 11
  • 3
0
votes
1 answer

Version Control on Visual Basic Internal Web App

I work on an internal web app in visual studio that is a visual basic project. This web app is used in a facility and is going to be scaled larger for other facilities. I am looking for the best way to manage 4-5 different versions of this web app.…
0
votes
1 answer

C# Class with parsed properties for sorting

I want to build a class that parses a Road Number (RdNumber) code for sorting that overrides the default alphanumeric sort of the original values. Examples of the original RdNumber code and they way they would sort ascending…
0
votes
0 answers

Who prepares a process for being debugged in windows?

I'm currently trying to create an anti-anti-debugging software to better analyze a security vulnerability that I found in a popular game. Naturally as any other game it has robust anti-anti-cheating measures. As part of my research I looked at many…
Alex
  • 1
  • 1
0
votes
1 answer

Does this Cloud Run Metadata Server endpoint provide the default service account, or the one attached?

In the documentation for the Cloud Run container contract, the endpoints are listed to include those to get the email and…
thclark
  • 4,784
  • 3
  • 39
  • 65
0
votes
0 answers

How does multiple keyword search works internally using grep

I am trying to find, how grep works internally while searching for multiple keywords. ex:- grep -inrE "keyword1|keyword2|keyword3" For a single keyword search, grep uses boyer's-moore algorithm internally by using bad match table. Can anyone please…
0
votes
1 answer

Does it affect the working of programs that how negative numbers are represented internally?

I am not specific about any algorithm or program. But considering bit manipulation programs and other tasks that involves 2's complement or 1's complement etc., what if the negative numbers are represented (in memory or wherever) in a way opposite…
Aryaman
  • 55
  • 5
0
votes
0 answers

AEM - External links appended to current page

When adding external urls in any component with field, say pagefield or pathfield, it doesnt open the external link, but appends it to the current path eg: property given - http://www.google.com when clicked, it goes…
calculus
  • 87
  • 15
0
votes
0 answers

Import .spydata files to Spyder

I am trying to import some .spydata files into Spyder (from Anaconda) but an "Issue reporter" window pops out which says: "Spyder has encountered an internal problem!" Also, in Consol the following error exists: TypeError: () takes 1 positional…
0
votes
0 answers

Internal server error 500 when sending ajax post request in laravel 9

I am using laravel 9. I am trying to make a ajax crud operation using alax. It respond well in get request. but when I sending the post request it shows: http://127.0.0.1:8000/add/teacher 500 (Internal Server Error) in the console. I used meta in…