Take the group of all Translation in .
Let's see how the generator of this group is the derivative operator:
The way to think about this is:
So let's take the exponential map:
and we notice that this is exactly the Taylor series of around the identity element of the translation group, which is 0! Therefore, if behaves nicely enough, within some radius of convergence around the origin we have for finite :
This example shows clearly how the exponential map applied to a (differential) operator can generate finite (non-infinitesimal) Translation!
Read-modify-write by Ciro Santilli 37 Updated 2025-07-16
That's what usually fucks up parallel programs.
LLVM IR hello world by Ciro Santilli 37 Updated 2025-07-16
Example: llvm/hello.ll adapted from: llvm.org/docs/LangRef.html#module-structure but without double newline.
To execute it as mentioned at github.com/dfellis/llvm-hello-world we can either use their crazy assembly interpreter, tested on Ubuntu 22.10:
sudo apt install llvm-runtime
lli hello.ll
This seems to use puts from the C standard library.
Or we can Lower it to assembly of the local machine:
sudo apt install llvm
llc hello.ll
which produces:
hello.s
and then we can assemble link and run with gcc:
gcc -o hello.out hello.s -no-pie
./hello.out
or with clang:
clang -o hello.out hello.s -no-pie
./hello.out
hello.s uses the GNU GAS format, which clang is highly compatible with, so both should work in general.
Many plotting software can be used to create mathematics illustrations. They just tend to have more data-oriented rather than explanatory-oriented output.
Ciro Santilli found out that he likes computer security researchers and vice versa.
It's a bit the same reason why he likes physicists: you can't bullshit with security.
You can't just talk nice and hope for people to belive you.
You can't not try to break things and just keep everyone happy in their false illusion of safety.
You can't do a half job.
If you do any of that, you will get your ass handed to you in a little gift bag.
Outermorphism is a concept in the field of mathematics, specifically in category theory, which deals with the structure and relationships between different mathematical objects. While "outermorphism" is not a standard term widely recognized in mathematics, it may refer to a specific type of morphism that relates to certain structures or transformations in a broader context. In general, the term "morphism" in category theory refers to a structural-preserving map between two objects.
In abstract algebra, particularly in the context of ring theory, a **prime ideal** is a special type of ideal that has important properties related to the structure of rings.
Krull's theorem is a result in commutative algebra that pertains to the structure of integral domains, specifically regarding the heights of prime ideals in a Noetherian ring. The theorem states: In a Noetherian ring (or integral domain), the height of a prime ideal \( P \) is less than or equal to the number of elements in any generating set of the ideal \( P \).
As of my last knowledge update in October 2021, there isn't a widely recognized figure or entity known as "Peter Wyder." It's possible that he could be a person of interest in more recent news or events. If you have specific context or details about who Peter Wyder might be, I could provide more relevant information or insight. You may want to check current news sources for the latest information.
Deck-building card games are a genre of tabletop games in which players start with a small, predetermined set of cards and gradually build a larger deck throughout the game. The primary mechanic involves acquiring new cards to add to one's deck, which enhances gameplay options and strategies as the game progresses. ### Key Features of Deck-Building Games: 1. **Starting Deck**: All players begin with the same or a similar set of basic cards that dictate their initial capabilities.
Digital collectible card games (CCGs) are a genre of digital games that combine elements of traditional collectible card games with digital gameplay mechanics. In these games, players build their decks by acquiring cards, which can represent characters, abilities, items, or spells, and use these decks to compete against other players or challenges in the game.

Pinned article: 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