Invention d’une machine à changer les couches bébés, études sur le plaisir qu’on prend à se gratter ou
les vertus anti-cancer de la pizza: les prix Ig Nobel – ou anti-Nobel – fêtent cette année leur 29e édition,
et se veulent le pendant des vraies.
―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――
Cuando las mujeres dominaban el software
Las programadoras tuvieron un papel fundamental en el inicio del desarrollo de la informática, pero desde
los años 80 su papel ha ido cayendo
En abril de 1967, la edición estadounidense de la revista femenina Cosmopolitan publicó un reportaje titulado
"Las chicas informáticas". Las fotos eran de una joven programadora de IBM rodeada de hombres ingenieros.
"Hace 20 años [en 1947] una chica podía ser secretaria, maestra, quizá bibliotecaria, trabajadora social o enfermera",
decía el texto. "Si era realmente ambiciosa podía competir con hombres, a menudo trabajando más horas por menos dinero.
Pero ahora han llegado los grandes, fascinantes ordenadores y un nuevo tipo de trabajo para las mujeres: programar",
añadía.
―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――
数字资产
数字资产是以电子数据的形式存在的可编程控制的资产。用区块链技术实现资产数字化有去中心、去中介、免信任、可追溯、高度透明等特点。
NEO 在底层支持多数字资产，用户可在 NEO 上自行注册登记资产，自由交易和流转，并且通过数字身份解决与实体资产的映射关系。用户通过合规的数字身份所注册登记的资产受到法律的保护。
NEO 中有两种形式的数字资产：全局资产和合约资产。全局资产能够被记录在系统空间，可以被所有智能合约和客户端所识别；合约资产被记录在智能合约的私有存储区中，需要兼容该智能合约的客户端才能识别。
合约资产可以参照某种约定的标准，从而实现与多数客户端的兼容。
―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――
θ
    Compute the parity of each of the 5w (320, when w = 64) 5-bit columns, and exclusive-or that into two nearby columns in a regular pattern. To be precise, a[i][ j][k] ← a[i][ j][k] ⊕ parity(a[0...4][ j−1][k]) ⊕ parity(a[0...4][ j+1][k−1])
ρ
    Bitwise rotate each of the 25 words by a different triangular number 0, 1, 3, 6, 10, 15, .... To be precise, a[0][0] is not rotated, and for all 0 ≤ t < 24, a[i][ j][k] ← a[i][ j][k−(t+1)(t+2)/2], where ( i j ) = ( 3 2 1 0 ) t ( 0 1 ) {\displaystyle {\begin{pmatrix}i\\j\end{pmatrix}}={\begin{pmatrix}3&2\\1&0\end{pmatrix}}^{t}{\begin{pmatrix}0\\1\end{pmatrix}}} {\begin{pmatrix}i\\j\end{pmatrix}}={\begin{pmatrix}3&2\\1&0\end{pmatrix}}^{t}{\begin{pmatrix}0\\1\end{pmatrix}}.
π
    Permute the 25 words in a fixed pattern. a[j][2i+3j] ← a[ i][j].
χ
    Bitwise combine along rows, using x ← x ⊕ (¬y & z). To be precise, a[i][ j][k] ← a[i][ j][k] ⊕ (¬a[i][ j+1][k] & a[i][ j+2][k]). This is the only non-linear operation in SHA-3.
ι
    Exclusive-or a round constant into one word of the state. To be precise, in round n, for 0 ≤ m ≤ ℓ, a[0][0][2m−1] is XORed with bit m + 7n of a degree-8 LFSR sequence. This breaks the symmetry that is preserved by the other steps.
―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――
