Kauri gum by Wikipedia Bot 0
Kauri gum is a natural resin obtained from the kauri tree (Agathis australis), which is native to New Zealand. The gum is formed when the tree's bark is damaged or when it is under stress, causing resin to seep out and eventually harden over time. Kauri gum can be found in various forms, ranging from small droplets to larger chunks.
Amber by Wikipedia Bot 0
Amber is a fossilized tree resin that has been appreciated for its beauty and durability for millions of years. It often features a warm, yellow to orange-brown coloration, although it can come in other hues as well, including green, blue, and even white. Amber is notable for sometimes containing inclusions of prehistoric organisms, such as insects, spiders, and plant material, which were trapped in the resin before it hardened.
Thomas C. Brinsmade is a notable figure in the field of microbiology, particularly recognized for his contributions to the study of bacterial pathogenesis and host-pathogen interactions. He is associated with academic institutions and research organizations where he focuses on understanding the mechanisms of bacterial infections and developing strategies for combating infectious diseases.
Thomas Greytak by Wikipedia Bot 0
As of my last update, Thomas Greytak is not a widely recognized public figure, historical person, or concept, so I'm unable to provide specific information without additional context.
Tom Baehr-Jones by Wikipedia Bot 0
Tom Baehr-Jones is not a widely recognized public figure, and there is not a significant amount of verifiable information available about him in the public domain. It's possible that he may be known within a specific community or field that has not garnered broader attention.
Uzi Landman by Wikipedia Bot 0
As of my last knowledge update in October 2023, "Uzi Landman" may not refer to a widely recognized public figure, brand, or concept. It's possible that it could be a name associated with a lesser-known individual or a fictional character, or it could have emerged after my last update.
Thomas James Bernatowicz is not a widely recognized figure in public knowledge up to my last training cut-off in October 2023. It's possible that he could be a private individual, an emerging personality, or a figure within a specialized field not covered extensively in mainstream sources.
Amorphous metals by Wikipedia Bot 0
Amorphous metals, also known as metallic glasses, are a class of materials that lack a long-range periodic atomic arrangement, which is characteristic of crystalline metals. Instead, their atomic structure is disordered, resembling that of liquids. This lack of crystallinity gives amorphous metals unique physical properties, such as high strength, good corrosion resistance, and excellent magnetic properties.
ELF Hello World Tutorial / Section header table by Ciro Santilli 37 Updated +Created
Array of Elf64_Shdr structs.
Each entry contains metadata about a given section.
e_shoff of the ELF header gives the starting position, 0x40 here.
e_shentsize and e_shnum from the ELF header say that we have 7 entries, each 0x40 bytes long.
So the table takes bytes from 0x40 to 0x40 + 7 + 0x40 - 1 = 0x1FF.
Some section names are reserved for certain section types: www.sco.com/developers/gabi/2003-12-17/ch4.sheader.html#special_sections e.g. .text requires a SHT_PROGBITS type and SHF_ALLOC + SHF_EXECINSTR
Running:
readelf -S hello_world.o
outputs:
There are 7 section headers, starting at offset 0x40:

Section Headers:
  [Nr] Name              Type             Address           Offset
       Size              EntSize          Flags  Link  Info  Align
  [ 0]                   NULL             0000000000000000  00000000
       0000000000000000  0000000000000000           0     0     0
  [ 1] .data             PROGBITS         0000000000000000  00000200
       000000000000000d  0000000000000000  WA       0     0     4
  [ 2] .text             PROGBITS         0000000000000000  00000210
       0000000000000027  0000000000000000  AX       0     0     16
  [ 3] .shstrtab         STRTAB           0000000000000000  00000240
       0000000000000032  0000000000000000           0     0     1
  [ 4] .symtab           SYMTAB           0000000000000000  00000280
       00000000000000a8  0000000000000018           5     6     4
  [ 5] .strtab           STRTAB           0000000000000000  00000330
       0000000000000034  0000000000000000           0     0     1
  [ 6] .rela.text        RELA             0000000000000000  00000370
       0000000000000018  0000000000000018           4     2     4
Key to Flags:
  W (write), A (alloc), X (execute), M (merge), S (strings), l (large)
  I (info), L (link order), G (group), T (TLS), E (exclude), x (unknown)
  O (extra OS processing required) o (OS specific), p (processor specific)
The struct represented by each entry is:
typedef struct {
    Elf64_Word  sh_name;
    Elf64_Word  sh_type;
    Elf64_Xword sh_flags;
    Elf64_Addr  sh_addr;
    Elf64_Off   sh_offset;
    Elf64_Xword sh_size;
    Elf64_Word  sh_link;
    Elf64_Word  sh_info;
    Elf64_Xword sh_addralign;
    Elf64_Xword sh_entsize;
} Elf64_Shdr;
Veronika Hubeny by Wikipedia Bot 0
Veronika Hubeny is a notable figure in the field of mathematics, particularly known for her contributions to mathematical logic and set theory. She has worked on topics related to the foundations of mathematics, as well as areas exploring the intersections of logic, set theory, and mathematical structures.
Walter A. Rosenblith (1916–2006) was an American neuroscientist known for his significant contributions to the fields of biology, neuroscience, and bioengineering. He was particularly recognized for his work on the neural mechanisms of hearing and the development of auditory systems, as well as his research on how the brain processes sound. Throughout his career, Rosenblith held various academic and administrative positions, notably at the Massachusetts Institute of Technology (MIT).
Warren J. Smith by Wikipedia Bot 0
Warren J. Smith could refer to multiple individuals across various fields. Without more context, it’s difficult to pinpoint exactly which Warren J. Smith you might be referring to. If you are looking for information on a specific Warren J.
William F. Brinkman is an American physicist known for his contributions to nuclear physics and his work in various governmental and educational roles. He served as the Director of the Office of Science in the U.S. Department of Energy and has been involved in research related to particle physics and nuclear science. Additionally, Brinkman has held positions in academic institutions, contributing to the advancement of science and education in these fields.
William J. Atkinson could refer to several individuals depending on the context, but one prominent figure is a notable author and speaker known for his work in the field of personal development and self-help. He is often associated with the New Thought movement and is credited with writing several influential books, including "The Law of Attraction" and "Thought Vibration or the Law of Attraction in the Thought World." His writings focus on the power of thought and how it can shape one's reality.
RNA secondary structure by Ciro Santilli 37 Updated +Created
Analogous problem to the secondary structure of proteins. Likely a bit simpler due to the strong tendency for complementary pairs to bind.
CPUs per node and nodes per server (server) by Ciro Santilli 37 Updated +Created
  • there can be more than one node per server.
  • there can be more than one CPU per node
E.g.:
RNA half-life prediction by Ciro Santilli 37 Updated +Created
William L. Kruer by Wikipedia Bot 0
William L. Kruer is a prominent physicist known for his work in the field of plasma physics, particularly in the study of laser-plasma interactions and the development of plasma physics theories. He has contributed significantly to the understanding of inertial confinement fusion and has published numerous papers and books on the subject. One of his notable works is the textbook "Plasma Physics for Fusioon Energy," which has served as a resource for students and researchers in the field.
William Skocpol by Wikipedia Bot 0
William Skocpol is an American sociologist and political scientist best known for his work in the fields of social theory, comparative politics, and social movements. Born in 1947, he has made significant contributions to the understanding of state structures, civic engagement, and the dynamics of social revolutions. Skocpol is particularly renowned for his book "States and Social Revolutions: A Comparative Analysis of France, Russia, and China," published in 1979.
William T. Silfvast is a notable figure in the field of optics and laser technology, particularly known for his contributions to the development of laser systems and his academic work. He is also known for authoring the book "Laser Fundamentals," which serves as a comprehensive resource on the principles and applications of lasers. In addition to his scholarly work, Silfvast has been involved in various research projects and has contributed to the advancement of laser science.

Pinned article: ourbigbook/introduction-to-the-ourbigbook-project

Welcome to the OurBigBook Project! Our goal is to create the perfect publishing platform for STEM subjects, and get university-level students to write the best free STEM tutorials ever.
Everyone is welcome to create an account and play with the site: ourbigbook.com/go/register. We belive that students themselves can write amazing tutorials, but teachers are welcome too. You can write about anything you want, it doesn't have to be STEM or even educational. Silly test content is very welcome and you won't be penalized in any way. Just keep it legal!
We have two killer features:
  1. topics: topics group articles by different users with the same title, e.g. here is the topic for the "Fundamental Theorem of Calculus" ourbigbook.com/go/topic/fundamental-theorem-of-calculus
    Articles of different users are sorted by upvote within each article page. This feature is a bit like:
    • a Wikipedia where each user can have their own version of each article
    • a Q&A website like Stack Overflow, where multiple people can give their views on a given topic, and the best ones are sorted by upvote. Except you don't need to wait for someone to ask first, and any topic goes, no matter how narrow or broad
    This feature makes it possible for readers to find better explanations of any topic created by other writers. And it allows writers to create an explanation in a place that readers might actually find it.
    Figure 1.
    Screenshot of the "Derivative" topic page
    . View it live at: ourbigbook.com/go/topic/derivative
  2. local editing: you can store all your personal knowledge base content locally in a plaintext markup format that can be edited locally and published either:
    This way you can be sure that even if OurBigBook.com were to go down one day (which we have no plans to do as it is quite cheap to host!), your content will still be perfectly readable as a static site.
    Figure 5. . You can also edit articles on the Web editor without installing anything locally.
    Video 3.
    Edit locally and publish demo
    . Source. This shows editing OurBigBook Markup and publishing it using the Visual Studio Code extension.
  3. https://raw.githubusercontent.com/ourbigbook/ourbigbook-media/master/feature/x/hilbert-space-arrow.png
  4. Infinitely deep tables of contents:
    Figure 6.
    Dynamic article tree with infinitely deep table of contents
    .
    Descendant pages can also show up as toplevel e.g.: ourbigbook.com/cirosantilli/chordate-subclade
All our software is open source and hosted at: github.com/ourbigbook/ourbigbook
Further documentation can be found at: docs.ourbigbook.com
Feel free to reach our to us for any help or suggestions: docs.ourbigbook.com/#contact