Isotope of hydrogen Updated +Created
Polyphyly Updated +Created
Basically mean that parallel evolution happened. Some cool ones:
Radar Updated +Created
x86 Paging Tutorial / Single level paging scheme numerical translation example Updated +Created
Suppose that the OS has setup the following page tables for process 1:
entry index   entry address       page address   present
-----------   ------------------  ------------   -------
0             CR3_1 + 0      * 4  0x00001        1
1             CR3_1 + 1      * 4  0x00000        1
2             CR3_1 + 2      * 4  0x00003        1
3             CR3_1 + 3      * 4                 0
...
2^20-1        CR3_1 + 2^20-1 * 4  0x00005        1
and for process 2:
entry index   entry address       page address   present
-----------   -----------------   ------------   -------
0             CR3_2 + 0      * 4  0x0000A        1
1             CR3_2 + 1      * 4  0x12345        1
2             CR3_2 + 2      * 4                 0
3             CR3_2 + 3      * 4  0x00003        1
...
2^20-1        CR3_2 + 2^20-1 * 4  0xFFFFF        1
Before process 1 starts running, the OS sets its cr3 to point to the page table 1 at CR3_1.
When process 1 tries to access a linear address, this is the physical addresses that will be actually accessed:
linear     physical
---------  ---------
00000 001  00001 001
00000 002  00001 002
00000 003  00001 003
00000 FFF  00001 FFF
00001 000  00000 000
00001 001  00000 001
00001 FFF  00000 FFF
00002 000  00003 000
FFFFF 000  00005 000
To switch to process 2, the OS simply sets cr3 to CR3_2, and now the following translations would happen:
linear     physical
---------  ---------
00000 002  0000A 002
00000 003  0000A 003
00000 FFF  0000A FFF
00001 000  12345 000
00001 001  12345 001
00001 FFF  12345 FFF
00004 000  00003 000
FFFFF 000  FFFFF 000
Step-by-step translation for process 1 of logical address 0x00000001 to physical address 0x00001001:
  • split the linear address into two parts:
    | page (20 bits) | offset (12 bits) |
    So in this case we would have:
    *page = 0x00000. This part must be translated to a physical location.
    *offset = 0x001. This part is added directly to the page address, and is not translated: it contains the position within the page.
  • look into Page table 1 because cr3 points to it.
  • The hardware knows that this entry is located at RAM address CR3 + 0x00000 * 4 = CR3:
    *0x00000 because the page part of the logical address is 0x00000
    *4 because that is the fixed size in bytes of every page table entry
  • since it is present, the access is valid
  • by the page table, the location of page number 0x00000 is at 0x00001 * 4K = 0x00001000.
  • to find the final physical address we just need to add the offset:
      00001 000
    + 00000 001
      ---------
      00001 001
    because 00001 is the physical address of the page looked up on the table and 001 is the offset.
    We shift 00001 by 12 bits because the pages are always aligned to 4 KiB.
    The offset is always simply added the physical address of the page.
  • the hardware then gets the memory at that physical location and puts it in a register.
Another example: for logical address 0x00001001:
  • the page part is 00001, and the offset part is 001
  • the hardware knows that its page table entry is located at RAM address: CR3 + 1 * 4 (1 because of the page part), and that is where it will look for it
  • it finds the page address 0x00000 there
  • so the final address is 0x00000 * 4k + 0x001 = 0x00000001
Tetrahedron Updated +Created
Binary translation Updated +Created
Book of Revelation Updated +Created
webpack/no-js-inject Updated +Created
webpack/template Updated +Created
Magnetic moment Updated +Created
Polish letter Updated +Created
Blog comment hosting service Updated +Created
Iteration Updated +Created
J. Craig Venter Institute Updated +Created
Founded by Craig Venter by joining up other existing institutes.
Abrahamic religion Updated +Created
It is just mind blowing that Christians, Muslims and Jews can have so many conflicts considering that their religions are basically the same. Uncanny valley comes to mind. See also remarks at: cirosantilli.com/china-dictatorship/zhong-gong
The transfiguration of Jesus is a notable example where Jesus/the Church tries to divert older religions into him. And then Muhammad does the same during isra and Mi'raj, and meets up with Jesus, John the Baptist and Abraham. The Kaaba was also clearly an earlier place of worship of local religions before Muhammad. But of course, Abraham was one of the builders of the Kaaba, so all good.
Academic publishing is broken Updated +Created
One of the most beautiful things is how they paywall even public domain works. E.g. here: www.nature.com/articles/119558a0 was published in 1927, and is therefore in the public domain as of 2023. But it is of course just paywalled as usual throughout 2023. There is zero incentive for them to open anything up.
Video 1.
What they don't tell you about academic publishing by Andy Stapleton (2021)
Source.
Video 2.
The publishing scandal happening right now by Andy Stapleton (2023)
Source. TOOD get the name of the academic who quit.
Activity tracker website Updated +Created

Unlisted articles are being shown, click here to show only listed articles.