5660d06bd69326c18ec63127b37fb3b32ea763c3846b3334c51beb6a800c57d3 Updated 2025-07-16
In this malformed Coinbase transaction, the mining pool "nicehash" produced a provably unspendable Bitcoin output script due to a bug, and therefore lost most of the entire block reward of 6.25 BTC then worth about $ 123,000.
The output is unspendable because it ends in a constant 0, the disassembly of the first and main output is this series of constants:and for the second smaller one:the third one being an OP_RETURN message.
0 017fed86bba5f31f955f8b316c7fb9bd45cb6cbc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
aa21a9ed62ec16bf1a388c7884e9778ddb0e26c0bf982dada47aaa5952347c0993da 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
This event received some coverage:
Aaron Swartz Updated 2025-07-16
Aaron, Ciro Santilli will complete your quest to make eduction free. Just legally this time, with the and with the Creative Commons license you helped to create.
Ciro likes how The Internet's Own Boy (2014) explains how Aaron felt like high school was bullshit, and that he could learn whatever he wanted from books, which is one of Ciro's key feelings.
ABC notation Updated 2025-07-16
Standard from 2011: abcnotation.com/wiki/abc:standard:v2.1
No bend/vibratto/slides :-(
Multitrack volatile: abcnotation.com/wiki/abc:standard:v2.1#multiple_voices
Abelian group Updated 2025-07-16
Abing Updated 2025-07-16
Once Ciro Santilli played Suwu herding sheep while his mother in law was around, and she quickly pointed out:He's very popular!
Suwu by Abing!
Abrahamic religion Updated 2025-07-16
It is just mind blowing that Christians, Muslims and Jews can have so many conflicts considering that their religions are basically the same. Uncanny valley comes to mind. See also remarks at: cirosantilli.com/china-dictatorship/zhong-gong
The transfiguration of Jesus is a notable example where Jesus/the Church tries to divert older religions into him. And then Muhammad does the same during isra and Mi'raj, and meets up with Jesus, John the Baptist and Abraham. The Kaaba was also clearly an earlier place of worship of local religions before Muhammad. But of course, Abraham was one of the builders of the Kaaba, so all good.
Absorption, spontaneous and stimulated emission Updated 2025-07-16
Abugida Updated 2025-07-16
Somewhat midway between a syllabary and an alphabet: you write out consonants, and vowels are "punctuation-like-modifiers".
Spontaneous symmetry breaking Updated 2025-07-16
Computer network software Updated 2025-07-16
Computer (occupation) Updated 2025-07-16
Klein-Gordon equation Updated 2025-07-16
A relativistic version of the Schrödinger equation.
Correctly describes spin 0 particles.
The most memorable version of the equation can be written as shown at Section "Klein-Gordon equation in Einstein notation" with Einstein notation and Planck units:
Has some issues which are solved by the Dirac equation:
- it has a second time derivative of the wave function. Therefore, to solve it we must specify not only the initial value of the wave equation, but also the derivative of the wave equation,As mentioned at Advanced quantum mechanics by Freeman Dyson (1951) and further clarified at: physics.stackexchange.com/questions/340023/cant-the-negative-probabilities-of-klein-gordon-equation-be-avoided, this would lead to negative probabilities.
- the modulus of the wave function is not constant and therefore not always one, and therefore cannot be interpreted as a probability density anymore
- since we are working with the square of the energy, we have both positive and negative value solutions. This is also a features of the Dirac equation however.
Bibliography:
- Video "Quantum Mechanics 12a - Dirac Equation I by ViaScience (2015)" at youtu.be/OCuaBmAzqek?t=600
- An Introduction to QED and QCD by Jeff Forshaw (1997) 1.2 "Relativistic Wave Equations" and 1.4 "The Klein Gordon Equation" gives some key ideas
- 2011 PHYS 485 lecture videos by Roger Moore from the University of Alberta at around 7:30
- www.youtube.com/watch?v=WqoIW85xwoU&list=PL54DF0652B30D99A4&index=65 "L2. The Klein-Gordon Equation" by doctorphys
- sites.ualberta.ca/~gingrich/courses/phys512/node21.html from Advanced quantum mechanics II by Douglas Gingrich (2004)
Ciro's Edict #8 List topics on home page Updated 2025-07-16
The new default homepage for a logged out user how shows a list of the topics with the most articles.
This is a reasonable choice for default homepage, and it immediately exposes users to this central feature of the website: the topic system.
Doing this required in particular calculating the best title for a topic, since it is possible to have different titles with the same ID, the most common way being with capitalization changes, e.g.:would both have topic ID
JavaScript
Javascript
javascript
.The algorithm chosen is to pick the top 10 most upvoted topics, and select the most common title from amongst them. This should make topic title vandalism quite hard. This was made in a single SQL query, and became the most complext SQL query Ciro Santilli has ever written so far: twitter.com/cirosantilli2/status/1549721815832043522
Screenshot showing the list of topics
. The page is: ourbigbook.com for the logged out user, ourbigbook.com/go/topics for the logged in user.Screenshot showing a topic page
. The page is: ourbigbook.com/go/topic/vector-space. Before this sprint, we didn't have the "Vector Space" at the top, as it wasn't necessarily trivial to determine what the preferred title would be. SQL 2D histogram Updated 2025-07-16
Let's try it on SQLite 3.40.1, Ubuntu 23.04. Data setup:
sqlite3 tmp.sqlite 'create table t(x integer, y integer)'
sqlite3 tmp.sqlite <<EOF
insert into t values
(0, 0),
(1, 1),
(2, 2),
(3, 3),
(4, 4),
(5, 5),
(6, 6),
(7, 7),
(8, 8),
(9, 9),
(10, 10),
(11, 11),
(12, 12),
(13, 13),
(14, 14),
(15, 15),
(16, 16),
(17, 17),
(18, 18),
(19, 19),
(2, 18)
EOF
sqlite3 tmp.sqlite 'create index txy on t(x, y)'
For a bin size of 5 ignoring empty ranges we can:which produces the desired:
sqlite3 tmp.sqlite <<EOF
select
floor(x/5)*5 as x,
floor(y/5)*5 as y,
count(*) as cnt
from t
group by 1, 2
order by 1, 2
EOF
0|0|5
0|15|1
5|5|5
10|10|5
15|15|5
And to consider empty ranges we can use SQL which outputs the desired:
genenerate_series
+ as per stackoverflow.com/questions/72367652/populating-empty-bins-in-a-histogram-generated-using-sql:sqlite3 tmp.sqlite <<EOF
select x, y, sum(cnt) from (
select
floor(x/5)*5 as x,
floor(y/5)*5 as y,
count(*) as cnt
from t
group by 1, 2
union
select *, 0 as cnt from generate_series(0, 15, 5) inner join (select * from generate_series(0, 15, 5))
)
group by x, y
EOF
0|0|5
0|5|0
0|10|0
0|15|1
5|0|0
5|5|5
5|10|0
5|15|0
10|0|0
10|5|0
10|10|5
10|15|0
15|0|0
15|5|0
15|10|0
15|15|5
Master of Science Updated 2025-07-16
REST API Updated 2025-07-16
Shoko Asahara Updated 2025-07-16
Trained artificial neural network Updated 2025-07-16
Bacterial cell wall Updated 2025-07-16
Unlisted articles are being shown, click here to show only listed articles.