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

Excel internal expression of fractional format numbers

I have been trying to apply some conditional formatting to numbers which are formatted externally as fractions with a mask ???/???. In trying to test whether the fraction has a numerator of 1, I apply the formula = =MOD(1/G62,0)<>0, which divides 1…
Andy
  • 1
0
votes
0 answers

How does a COM client parses Type Library from a EXE COM server?

Let's say we have a COM server EXE and COM client EXE running on the same machine. COM server exposes IDispatch interface and carries a Type Library (.TLB file) into it's resource section. COM client (something like PowerShell) wants to call a…
0
votes
1 answer

Which component of the spark architecture convert the Spark Application to DAG?

Can Someone explain which component of the spark architecture convert Spark Application to DAG? Can Someone help me with where can I find the complete internal working of Spark architecture in absolute ultra depth? I am trying to understand Apache…
0
votes
0 answers

LogonSessionId SID in a Service's Access Token

What's the purpose of having LogonSessionId_0_xxxx (S-1-5-5-0-xxxx) SID on access token of a service ? I know a LogonSessionId_0_xxxx (S-1-5-5-0-xxxx) SID is present in access tokens of non zero terminal session which enables desktop and kernel…
0
votes
0 answers

Does Windows Resize the Redirection Bitmap of Window?

I have been writing a moderately simple visual compositor for one of my projects. As you may guess, each visual has a redirection bitmap for itself. At some point, I must handle the case in which when a visual needs to be resized. I have a few of…
jtxkopt
  • 916
  • 1
  • 8
  • 21
0
votes
0 answers

MediaWiki TemplateParser.php internal error

I have a local wiki (MediaWiki 1.38.4 ; Apache with xampp) that worked perfectly for a few weeks, but today started giving me errors with the TemplateParser.php and now is completely unnaccesible and shows the following error details: MediaWiki…
0
votes
0 answers

How are tuple with mutable elements stored in python?

I understand since tuples are immutable, they are typically stored in contiguous memory blocks for efficiency. But I would like to understand how tuples are stored when elements are mutable e.g. list. Concretely, I can create a tuple with a list as…
0
votes
0 answers

https://graph.microsoft.com/v1.0/sites?search=* Error

When I query "https://graph.microsoft.com/v1.0/sites?search=*" I get the error "Internal Server Error - 500". This also seems to be the reason why I cannot connect to Synology Backup for M365 and Synology Cloud Sync. Is this issue known? Synology…
0
votes
0 answers

'hardhat' is not recognized as an internal or external command

The following is my problem: window x64 CMD terminal shows 'hardhat' is not recognized as an internal or external command I tried to add a new path C:\Windows\System32, but it didn't work. Could someone please help me fix this problem? Thank you…
Ashhhh
  • 1
  • 1
0
votes
1 answer

PHP errror in cos() function

In an exercise I did :
Simone
  • 29
  • 7
0
votes
0 answers

FileNotFoundException although the text file exist (readable and writable)

I am trying to save data into text file in the internal storage and read it again .. It works fine in my mobile with android 11 but when i tried at android 8 it gives me this…
Mnaweshy
  • 1
  • 3
0
votes
1 answer

Does internal communication between private servers use DNS and HTTPS?

I would like to know how internal communication links between private internal servers and a reverse proxy look. When from my client (browser) I make a request to, say https://facebook.com, I hit Facebook's reverse proxy. I have two questions, when…
sivafe9540
  • 23
  • 7
0
votes
0 answers

PEB structure x64 c++

Probably a fairly simple mistake/question as I'm relatively new to C++. I'm trying to query a process's basic information via NtQueryInformationProcess. It all works as expected when using the PROCESS_BASIC_INFORMATION defined in winternl.h. typedef…
0
votes
0 answers

method must be declared internal because its parameter uses an internal type

I have a public function using a public protocol as the type of its parameter and I got the error method must be declared internal because its parameter uses an internal type. The function and the protocol are in different Swift packages(targets)…
0
votes
1 answer

Can I perfectly clone any ordinary object?

I want to write a cloneDeep function that clones any JS object. There are two distinct problems here: Self references. Exotic objects. I want to focus on the latter. Exotic objects in ECMAScript are listed in this section: 10.4 Built-in Exotic…
Anurag Kalia
  • 4,668
  • 4
  • 21
  • 28