Laurasiatheria subclade by Ciro Santilli 37 Created 2024-10-06 Updated 2025-07-16
Euarchontoglires subclade by Ciro Santilli 37 Created 2024-10-06 Updated 2025-07-16
Laurasiatheria by Ciro Santilli 37 Created 2024-10-06 Updated 2025-07-16
Tardigrade by Ciro Santilli 37 Created 2024-10-06 Updated 2025-07-16
Video 1.
We FINALLY Understand Why Tardigrades Refuse to Die by Dr Ben Miles
. Source.
Panarthropoda subclade by Ciro Santilli 37 Created 2024-10-06 Updated 2025-07-16
Protolyst by Ciro Santilli 37 Created 2024-10-06 Updated 2025-07-16
Closed source, no local editing? PDF annotation focus.
Seems like a "organize ideas for my private academic research" use case.
Co-founded by this dude: x.com/iamdrbenmiles
FlyWire by Ciro Santilli 37 Created 2024-10-06 Updated 2025-07-16
Panarthropoda by Ciro Santilli 37 Created 2024-10-06 Updated 2025-07-16
A bunch of things that looks like insects, notably arthropods and tardigrades.
Type of superconductor by Ciro Santilli 37 Created 2024-10-06 Updated 2025-07-16
Superconducting phase diagram by Ciro Santilli 37 Created 2024-10-06 Updated 2025-07-16
There are various possibilities for the axes, but some common ones:
Figure 1.
Sketch of the typical superconducting phase diagram of a Type-I superconductor
. Source.
Figure 2.
Sketch of the typical superconducting phase diagram of a Type-II superconductor
. Source.
Figure 1.
DNS Census 2013 website
. Source. This source provided valuable historical domain to IP data.
amazon.com,2012-02-01T21:33:36,72.21.194.1
amazon.com,2012-02-01T21:33:36,72.21.211.176
amazon.com,2013-10-02T19:03:39,72.21.194.212
amazon.com,2013-10-02T19:03:39,72.21.215.232
amazon.com.au,2012-02-10T08:03:38,207.171.166.22
amazon.com.au,2012-02-10T08:03:38,72.21.206.80
google.com,2012-01-28T05:33:40,74.125.159.103
google.com,2012-01-28T05:33:40,74.125.159.104
google.com,2013-10-02T19:02:35,74.125.239.41
google.com,2013-10-02T19:02:35,74.125.239.46
https://raw.githubusercontent.com/cirosantilli/media/master/ciro-love-sqlite.png
 -------------------------------------
|  Force of Will               3 U U  |
|  ---------------------------------  |
| |                  ////////////   | |
| |                ////() ()\////\  | |
| |               ///_\ (--) \///\  | |
| |        )      ////  \_____///\\ | |
| |       ) \      /   /   /    /   | |
| |    ) /   \     |   |  /   _/    | |
| |   ) \  (  (   /   / /   / \     | |
| |  / ) ( )  / (    )/(    )  \    | |
| |  \(_)/(_)/  /UUUU \  \\\/   |   | |
| .---------------------------------. |
| Interrupt                           |
| ,---------------------------------, |
| | You may pay 1 life and remove a | |
| | blue card in your hand from the | |
| | game instead of paying Force of | |
| | Will's casting cost.  Effects   | |
| | that prevent or redirect damage | |
| | cannot be used to counter this  | |
| | loss of life.                   | |
| | Counter target spell.           | |
| `---------------------------------` |
|                                     l
| Illus.  Terese Nelsen               |
 -------------------------------------
Code 1.
ASCII art of a Force of Will Magic: The Gathering card inscribed in the Bitcoin blockchain
.
Powered by crosstool-NG:
.global main
main:
    /* 0x20026 == ADP_Stopped_ApplicationExit */
    mov x1, 0x26
    movk x1, 2, lsl 16
    str x1, [sp, 0]

    /* Exit status code. Host QEMU process exits with that status. */
    mov x0, 0
    str x0, [sp, 8]

    /* x1 contains the address of parameter block.
     * Any memory address could be used.
     */
    mov x1, sp

    /* SYS_EXIT */
    mov w0, 0x18

    /* Do the semihosting call on A64. */
    hlt 0xf000
Assertions! The best way to learn assembly.
#include <lkmc.h>

LKMC_PROLOGUE
    /* Register immediate. */
    mov $1, %rax
    add $2, %rax
    LKMC_ASSERT_EQ(%rax, $3)
LKMC_EPILOGUE
#include <linux/module.h>
#include <linux/kernel.h>

static int myinit(void)
{
	pr_info("hello init\n");
	/* 0 for success, any negative value means failure,
	 * E* consts if you want to specify failure cause.
	 * https://www.linux.com/learn/kernel-newbie-corner-loadable-kernel-modules-coming-and-going */
	return 0;
}

static void myexit(void)
{
	pr_info("hello exit\n");
}

module_init(myinit)
module_exit(myexit)
MODULE_LICENSE("GPL");

There are unlisted articles, also show them or only show them.