Eleanor Robson by Wikipedia Bot 0
Eleanor Robson is a prominent scholar and academic known for her work in the field of ancient Mesopotamian studies, particularly focusing on the history, mathematics, and culture of the region. As of my last knowledge update in October 2023, she has contributed significantly to the understanding of ancient Babylonian mathematics and the socio-cultural contexts of mathematical practices in Mesopotamia. Robson has published various articles and books, engaging with both historical texts and modern interpretations.
HTML canvas by Ciro Santilli 37 Updated +Created
Allows us to draw with JavaScript pixel by pixel! Great way to create computational physics demos!
Here is an animation demo with some useful controls:
HTML snippet:
new class extends OurbigbookCanvasDemo {
  init() {
    super.init('hello');
    this.pixel_size_input = this.addInputAfterEnable(
      'Pixel size',
      {
        'min': 1,
        'type': 'number',
        'value': 1,
      }
    );
  }
  draw() {
    var pixel_size = parseInt(this.pixel_size_input.value);
    for (var x = 0; x < this.width; x += pixel_size) {
      for (var y = 0; y < this.height; y += pixel_size) {
        var b = ((1.0 + Math.sin(this.time * Math.PI / 16)) / 2.0);
        this.ctx.fillStyle =
          'rgba(' +
          (x / this.width) * 255 + ',' +
          (y / this.height) * 255 + ',' +
          b * 255 +
          ',255)'
        ;
        this.ctx.fillRect(x, y, pixel_size, pixel_size);
      }
    }
  }
}
htop by Ciro Santilli 37 Updated +Created
HTTP by Ciro Santilli 37 Updated +Created
Eva Germaine Rimington Taylor, often referred to as Germaine Taylor, was a notable figure known for her contributions to various fields, including botany and horticulture. Born in 1881 and passing away in 1973, she was particularly recognized for her work in plant classification and her efforts in promoting horticultural education. She played an important role in the establishment of botanical gardens and contributed to various scientific publications.
Maurice Wilkes by Wikipedia Bot 0
Maurice Wilkes was a British computer scientist and a pioneer in the field of computing. He was born on June 26, 1913, and passed away on November 1, 2010. Wilkes is best known for designing and building the Electronic Delay Storage Automatic Calculator (EDSAC), one of the first stored-program computers, which he completed in 1949 at the University of Cambridge. He made significant contributions to the development of computer programming and architecture.
Hugo (static site generator) by Ciro Santilli 37 Updated +Created
Human by Ciro Santilli 37 Updated +Created
wget ftp://ftp.ncbi.nlm.nih.gov/refseq/H_sapiens/annotation/GRCh38_latest/refseq_identifiers/GRCh38_latest_genomic.fna.gz
gunzip --keep GRCh38_latest_genomic.fna.gz
Henry Thomas Colebrooke (1765–1837) was a British orientalist and scholar known for his significant contributions to the study of Indian languages, literature, and culture, particularly in the fields of Sanskrit and Hindu philosophy. He is best known for his work in translating and interpreting ancient Indian texts, making them more accessible to the Western audience.
Isaac Todhunter by Wikipedia Bot 0
Isaac Todhunter (1820–1884) was a notable English mathematician and educator, known for his contributions to geometry, mathematical analysis, and for his role in popularizing mathematics through his textbooks and lectures. He wrote several influential mathematical texts and served as a professor at various institutions. Todhunter was also involved in the development of mathematical education in India, where he played an important role in the establishment of educational systems.
Human brain connectome by Ciro Santilli 37 Updated +Created
By cranks:
Suzie Sheehy by Ciro Santilli 37 Updated +Created
Ivor Grattan-Guinness is a recognized mathematician and historian of mathematics. He is known for his work in various areas, including the history and philosophy of mathematics, as well as contributions to mathematical logic and the development of mathematical ideas. Grattan-Guinness has authored several books and papers exploring the evolution of mathematical thought and the contributions of key figures in mathematics throughout history. His work often emphasizes the contextual and cultural factors that influence mathematical development.
The Journal of Dental Biomechanics is a scientific publication that focuses on the application of biomechanics to dental science. This journal typically features research articles, reviews, and studies that explore the mechanical aspects of dental materials, the interaction between dental structures and forces, and the biomechanics of dental treatments and interventions.
James Gow is a scholar known for his expertise in international relations, defense studies, and military history. He has been involved in research and teaching at various academic institutions, often focusing on the Balkans, peacekeeping, security studies, and the impact of military interventions. His work frequently addresses the complexities of post-conflict societies and the role of international organizations in peace processes.
Kenneth Standley by Wikipedia Bot 0
Kenneth Standley could refer to various individuals, as it's not a widely recognized name associated with a specific person or topic. If you have more context or details about who Kenneth Standley is or what he is known for, I can provide a more accurate response. For example, are you referring to a person in a particular field like science, literature, business, etc.? Please clarify!
Human Brain Project by Ciro Santilli 37 Updated +Created
www.nature.com/articles/d41586-023-02600-x
Almost since it began, however, the HBP has drawn criticism. The project did not achieve its goal of simulating the whole human brain — an aim that many scientists regarded as far-fetched in the first place. It changed direction several times, and its scientific output became “fragmented and mosaic-like”, says HBP member Yves Frégnac
They overreached it seems.
Human-computer chess matches by Ciro Santilli 37 Updated +Created
Jeremy Gray by Wikipedia Bot 0
As of my last knowledge update in October 2023, "Jeremy Gray" could refer to a few different individuals depending on the context. One prominent individual is Jeremy Gray, a British professor known for his work in the field of chemistry, particularly in the area of organic and polymer chemistry. Additionally, there may be other people with the same name in various fields, such as politics, sports, or arts.

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