Tagged Questions
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.
23
votes
7answers
4k views
How do databases work internally?
I've been working with databases for the last few years and I'd like to think that I've gotten fairly competent with using them. However I was reading recently about Joel's Law of Leaky Abstractions ...
15
votes
3answers
316 views
What constitutes a merge conflict in Git?
How does git determine that a particular merge has a conflict and what the conflict is?
My guess would go something like this: if the two commits being merged have a common parent commit, and if they ...
14
votes
3answers
186 views
If Java's garbage collector moves objects, what is Object.hashCode and System.identityHashCode?
I've often heard that these methods (Object.hashCode and System.identityHashCode) return the address of the object, or something computed quickly from the address; but I'm also pretty sure the garbage ...
12
votes
3answers
562 views
GNU STL string: is copy-on-write involved here?
(Disclaimer: I don't know what the C++ standard might say about this..I know, I'm horrible)
while operating on very large strings I noticed that std::string is using copy-on-write. I managed to write ...
11
votes
1answer
118 views
Ocaml internals: Exceptions
I'm curious to know how exceptions are dealt with in Ocaml runtime to make them so lightweight. Do they use setjmp/longjmp or do they return a special value in each function, and propagate it?
It ...
11
votes
3answers
282 views
.NET: Value type inheritance - technical limitations?
I'm wondering if there are any technical reasons for why .NET value types do not support inheritance (disregarding interface implementation)... I can't at first glance think of a reason why value ...
10
votes
4answers
177 views
How to get array of bits in a structure?
I was pondering (and therefore am looking for a way to learn this, rather than a better solution) if it is possible to get an array of bits in a structure.
Let me demonstrate by an example. Imagine ...
10
votes
3answers
816 views
How are java interfaces implemented internally? (vtables?)
C++ has multiple inheritance. The implementation of multiple inheritance at the assembly level can be quite complicated, but there are good descriptions online on how this is normally done (vtables, ...
10
votes
2answers
528 views
Ruby - how does object_id assignment work?
I'm playing around with Ruby's .object_id and noticed that, in several sequential sessions of irb, I get these identical results:
false.object_id // 0
true.object_id // 2
nil.object_id // 4
...
10
votes
9answers
2k views
Database Internals - Where to Begin?
So lets say that you want to learn some stuff about database internals. What's the best source code to look at? the best books to buy?
I was talking about this with a buddy the other day and he ...
9
votes
1answer
140 views
Reference for R wizards
Based on this answer, I learned of a special class of internal functions that can be accessed from R: a set of functions accessed via .Internal(specialFunction). If one queries ?.Internal this ...
9
votes
5answers
2k views
Order of static constructors/initializers in C#
While working on a C# app I just noticed that in several places static initializers have dependencies on each other like this:
static private List<int> a = new List<int>() { 0 };
static ...
8
votes
4answers
301 views
Internals of Python list, access and resizing runtimes
Is Python's [] a list or array. Is the access time of an index O(1) like an array or O(n) like a list, and is appending/resizing O(1) like a list or O(n) like an array, or is it a hybrid that can ...
8
votes
5answers
218 views
Are Delegates more lightweight than classes?
I tried disassembling a C# created executable, but I couldn't come to a conclusion. What I'd like to know is that if for the CLR c#'s delegates are really special entities or just a compiler sugar?
I ...
8
votes
3answers
445 views
my C# winform needs to detect when other applications enter/exit/run-in TRUE fullscreen, prefer by events
my C# winform application needs put itself in standby mode during time other application runs in true fullscreen mode (not only maximized), like video games, video movies, powerpoint.
I need a method ...
8
votes
2answers
446 views
How Firebug works internally?
I have debugged through JavaScript using Firebug more than hundred times without worrying about whats happening there.
I want to know how exactly a Firebug handles JavaScript/DOM debugging.
Say I set ...
8
votes
7answers
9k views
How does c# figure out the hash code for an object?
This question comes out of the discussion on tuples.
I started thinking about the hash code that a tuple should have.
What if we will accept KeyValuePair class as a tuple? It doesn't override the ...
6
votes
2answers
122 views
Can obj.__dict__ be inspected if the class has a __dict__ variable?
I am interested in whether there is a way to introspect a Python instance infallibly to see its __dict__ despite any obstacles that the programmer might have thrown in the way, because that would help ...
6
votes
2answers
590 views
Are Git's pack files deltas rather than snapshots?
One of the key differences between Git and most other version control systems is that the others tend to store commits as a series of deltas - changesets between one commit and the next. This seems ...
6
votes
3answers
162 views
Determining if a given Python module is a built-in module
I am doing some parsing and introspection of various modules, but I don't want to parse built-in modules. Now, there is no special type for built-in modules like there is a types.BuiltinFunctionType, ...
6
votes
3answers
252 views
What is the “identity pointer” before a TTypeInfo there for?
If you poke around enough in Delphi internals, you'll find something strange and apparently undocumented about TTypeInfo records generated by the compiler. If the PTypeInfo points to a TTypeInfo ...
6
votes
3answers
352 views
How does .Net CLR implement an “Interface” internally?
Just curious about how .NET CLR handles interfaces internally?
Q1] What happens when CLR encounters something like :
simple interface example. (same used below.)
interface ISampleInterface
{
...
6
votes
1answer
105 views
Where is the documentation for Perl's builtin `Internals::` package?
When using keys %:: to get a list of the currently loaded root namespaces, the Internals:: package is loaded by default (along with UNIVERSAL:: and a few others). However, I haven't found any ...
6
votes
4answers
711 views
How does a syscall actually happen on linux?
Inspired by this question
http://stackoverflow.com/questions/1237489/how-can-i-force-gdb-to-disassemble
and related to this one
http://stackoverflow.com/questions/1245809/what-is-int-21h
How does ...
6
votes
3answers
774 views
How are weak references implemented?
I wonder how weak references work internally, for example in .NET or in Java. My two general ideas are:
"Intrusive" - to add list of weak references to the most top class (object class). Then, when ...
5
votes
1answer
72 views
How can Class be of the Class class and not have Class instance methods?
I was studying how the Ruby interpreter is implemented, and one question occurred that didn't get an answer yet for me. That's the one in the title: since Class (r_cClass) has super set to itself ...
5
votes
6answers
159 views
What happens if I didn't call delete operator after allocating data using new and ending program?
What happens if I didn't call delete operator after allocating data using new.
I know that the data that has been allocatted, won't be available until releasing it, but after ending the program ?
Why ...
5
votes
3answers
199 views
What is the purpose of the _HACK methods in System.Internal (.net 4.0 on x64)
In the mscorlib of .net 4.0 on x64 there is a class System.Internal that contains three static methods with the suffix _HACK. Does anybody have an idea what the purpose of these methods is?
Here is ...
5
votes
6answers
841 views
How can I learn more about Python’s internals?
I have been programming using Python for slightly more than half an year now and I am more interested in Python internals rather than using Python to develop applications. Currently I am working on ...
5
votes
4answers
160 views
What is the header of an array in .NET
I have a little bit seen the representation of an array in memory with Windbg and SOS plugin.
Here it is the c# :
class myobj{
public int[] arr;
}
class Program{
static void Main(string[] args){
...
5
votes
5answers
201 views
need book & web site suggestion for advanced low-level programming
I want to learn all advanced details of low-level programming so i want to be able to
Learn advanced c/c++
Optimize my code with and without inline assembly
Understand the internals of an exe, dll, ...
5
votes
5answers
456 views
Where did the text segment get its name?
Traditional assembler, and higher level compilers work with several memory segments, according to intended use. Hence, there is a data segment, a stack segment, a bss, and text segment. The text ...
4
votes
2answers
295 views
How can bcrypt have built-in salts?
Coda Hale's article "How To Safely Store a Password" claims that:
bcrypt has salts built-in to prevent rainbow table attacks.
He cites this paper, which says that in OpenBSD's implementation of ...
4
votes
1answer
315 views
How does the Blue Brain Project (and NEURON software) work?
This question is related to 873448.
From Wikipedia:
The Blue Brain Project is an attempt to create a synthetic brain by reverse-engineering the mammalian brain down to the molecular level. [...] ...
4
votes
2answers
1k views
How can I inspect a jQuery object?
In jQuery 1.4.4, if I do this in Google Chrome's console:
var divs = $('div');
... what I get back appears to be an array of DOM elements. But I know it must be a jQuery object, because I can chain ...
4
votes
3answers
288 views
What Ruby technique does Rails use to make my controller methods render views?
Just curious if anybody knows what Ruby technique is used to accomplish the following in the Rails framework.
If I don't write, say, an index method on a Rails controller, Rails will still render the ...
4
votes
2answers
333 views
What are the inner workings of the Selenium waitFor mechanism?
I am trying to customize the behavior of Selenium's click command, (via user-extentions.js), by intercepting calls to doClick(locator). Basically I need to delay click actions whenever our ...
4
votes
1answer
292 views
How does PHP's list function work?
After recently answering a couple of questions here on SO that involved utilizing PHP's list function, I wondered, "how in the world does that function actually work under the hood?". I was thinking ...
4
votes
4answers
374 views
Java Virtual Machine Internals
Can u suggest some articles or books about JVM internals: how it allocates memory, handles object inheritance, garbage collection, how it executes byte code and so on.
4
votes
2answers
662 views
Internal classes with ADO.NET Entity Framework
I'm using Entity Framework for creation of my Data Access Layer and I want for all of my classes to be internal.
I know it is possible to manually assign it in the designer for each class.
UPDATE
I ...
4
votes
10answers
4k views
Alignment along 4-byte boundaries
I recently got thinking about alignment... It's something that we don't ordinarily have to consider, but I've realized that some processors require objects to be aligned along 4-byte boundaries. ...
4
votes
1answer
149 views
What's a pushlock?
Pushlocks are used internally by windows as synchronization primitives for some of its operations, specifically as part of the memory manager.
What exactly is a pushlock? How is it different from a ...
4
votes
2answers
374 views
What's the internal format of a .NET String?
I'm making some pretty string-manipulation-intensive code in C#.NET and got curious about some Joel Spolsky articles I remembered reading a while back:
...
4
votes
2answers
1k views
Internals of Spring Framework and other IoC containers
I've been using spring for some time, but I always wondered how does it work, more specifically, how do they load and weave beans/classes marked only with an interface or @annotation.
For the xml ...
3
votes
3answers
82 views
Spring transaction internals
The situation is as follows:
Method1 has four database update methods in it. The Method1 is annotated using the Spring transaction management semantics.
Method2 has a database read method in it and ...
3
votes
4answers
77 views
Trying to localize an outside package variable through a lexical binding in Perl
It's a long title, but I'm afraid I can't take a single word out without losing the true meaning of the question. I'll give a quick description of what I'm trying to achieve first, then a long ...
3
votes
2answers
76 views
Mercurial repository internal format
Docs regarding repository format over at mercurial.selenic.com are scattered all over and refer to various legacy versions as well as current one and all in all aren't very detailed IMO.
Is there any ...
3
votes
4answers
154 views
Does erlang implement record copy-and-modify in any clever way?
given:
-record(foo, {a, b, c}).
I do something like this:
Thing = #foo{a={1,2}, b={3,4}, c={5,6}},
Thing1 = Thing#foo{a={7,8}}.
From a semantic view, Thing and Thing1 are unique entities. ...
3
votes
3answers
80 views
How are categories implemented in Objective C?
I know how to use categories as a programmer, but I'm curious how they are implemented. Does the compiler compile them into calls to class_replaceMethod from a static initializer? Thanks.
3
votes
4answers
133 views
In perl, is there a way to make subroutines print their name and arguments when called?
I need to quickly understand which subroutines are being called in a mess of spaghetti code perl modules.
I could write a script to go through all the modules and add code to print out the subroutine ...