Path to AGI Updated +Created
There are two main ways to try and reach AGI:
Which one of them to take is of of the most important technological questions of humanity according to Ciro Santilli
There is also an intermediate area of research/engineering where people try to first simulate the robot and its world realistically, use the simulation for training, and then transfer the simulated training to real robots, see e.g.: realistic robotics simulation.
Waring problem variant Updated +Created
Penalty kick left right Nash equilibrium Updated +Created
When taking a penalty kick in soccer, the kicker must chose left or right.
And before he kicks, the goalkeeper must also decide left or right, because there is no time to see where the ball is going.
Because the kicker is right footed however, he kicker kicks better to one side than the other. So we have four probabilities:
  • goal kick left keeper jumps left
  • goal kick right keeper jumps right
  • goal kick left keeper jumps right. Note that it is possible that this won't be a goal, even though the keeper is nowhere near the ball, as the ball might just miss the goal by a bit.
  • kick right and keeper jumps left. Analogous to above
Personal finance Updated +Created
  • the American stock market gives 10% / year, which is about 2x over 10 years. It has been the sure-fire best investment on a 10 year horizon for many decades, and should serve as your benchmark.
  • risky diversified investments (e.g. ETFs that track a market index) are basically the best investment if you can keep your money in them in the long term (10 years)
  • risky investments can gown down for a while, and you cannot take your money out then. This effectively means risk is a form of illiquidity
  • investment funds have taxes, which eat into your profit. The best investments are dumb index tracking investments (like an ETF that tracks the stock market) that are simply brainless to manage, and therefore have lowest taxes. No fund has managed to beat the market long term essentially.
  • when you are young, ideally you should invest everything into riskier higher yielding assets like stock. And as you get older, you should move part of it to less risky (and therefore more liquid, but lower yielding) assets like bonds
    The desire to buy a house however complicates this for many people.
Planck's law Updated +Created
Used to explain the black-body radiation experiment.
The Quantum Story by Jim Baggott (2011) page 9 mentions that Planck apparently immediately recognized that Planck constant was a new fundamental physical constant, and could have potential applications in the definition of the system of units (TODO where was that published):
Planck wrote that the constants offered: 'the possibility of establishing units of length, mass, time and temperature which are independent of specific bodies or materials and which necessarily maintain their meaning for all time and for all civilizations, even those which are extraterrestrial and nonhuman, constants which therefore can be called "fundamental physical units of measurement".'
This was a visionary insight, and was finally realized in the 2019 redefinition of the SI base units.
Video 1.
Quantum Mechanics 2 - Photons by ViaScience (2012)
Source. Contains a good explanation of how discretization + energy increases with frequency explains the black-body radiation experiment curve: you need more and more energy for small wavelengths, each time higher above the average energy available.
Planned obsolescence Updated +Created
The first time Ciro Santilli Googled this was when trying to repair his cell phone.
2019 cell phones are glued together with adhesive, which makes them impossible to repair them unless you have a heat gun, spend hours and hours learning and planning, and accept the risk of breaking the screen
If you take a phone less than 300 dollars to a repair shop in the first world, they will say: I've never repaired this crap, and likely for the price of the repair you should just buy a new one, and so to the trash goes the old one, polluting the planet, and in comes a new one, enriching the manufacturer further.
EverybodyWiki Updated +Created
Appears to be a Wikipedia clone but with much lower/no notability requirements guidelines, which overcomes one of Wikipedia's main issues: deletionism.
They do have the interesting idea of importing deleted Wikipedia pages as a source of content, which leads to some epic "most viewed pages" such as en.everybodywiki.com/List_of_erotic_and_sex_workers_with_unnatural_death which currently reads:
Stop Being Pervs, Go Watch Lichfaop/Faoplich Instead and you can also visit MR Info 24 for more details.
We can for example see Ciro Santilli's deleted entry PsiQuantum at: en.everybodywiki.com/PsiQuantum, Wikipedia deletion page: en.wikipedia.org/wiki/Wikipedia:Articles_for_deletion/PsiQuantum. Their attribution is atrocious however, e.g. it does not seem possible to find any mention of "Ciro Santilli" on the edit history, which just points to the delete article which is not visible anymore. They could really get into trouble for this one day.
Their main use case, as suggested by the website itself, if for people/brands to create pages about themselves.
This combined with the lack of "one version of each page per person" seems like an explosive invitation for unsolvable edit wars.
The website is backed by a French startup: jobs.stationf.co/companies/wiki-valley.
Organizationally unique identifier Updated +Created
OurBigBook.com Updated +Created
The website is the reference instance of OurBigBook Web, which is part of the OurBigBook Project, the other main part of the project are software that users can run locally to publish their content such as the OurBigBook CLI.
This page contains further information about the project's rationale, motivation and planning.
Video 1.
Intro to the OurBigBook Project
. Source.
Figure 1.
The topics feature allows you to find the best version of a subject written by other users user
. Live demo: derivative.
ROW_NUMBER Updated +Created
sqlite3 ':memory:'  'WITH t (i) AS (VALUES (-1), (-1), (-2)) SELECT *, row_number() over () FROM t'
Possible output:
-1|1
-1|2
-2|3
Gives them unique IDs.
With a partition by:
sqlite3 ':memory:'  'WITH t (i) AS (VALUES (-1), (-1), (-2)) SELECT *, row_number() over ( partition by i ) FROM t'
possible output:
-2|1
-1|1
-1|2
2018 Nobel Prize in Physics Updated +Created
Ampere in the 2019 redefinition of the SI base units Updated +Created
Starting in the 2019 redefinition of the SI base units, the elementary charge is assigned a fixed number, and the Ampere is based on it and on the second, which is beautiful.
This choice is not because we attempt to count individual electrons going through a wire, as it would be far too many to count!
Rather, it is because because there are two crazy quantum mechanical effects that give us macroscopic measures that are directly related to the electron charge. www.nist.gov/si-redefinition/ampere/ampere-quantum-metrology-triangle by the NIST explains that the two effects are:
Those effect work because they also involve dividing by the Planck constant, the fundamental constant of quantum mechanics, which is also tiny, and thus brings values into a much more measurable order of size.
Animal anatomy Updated +Created
Application programming interface Updated +Created
Convolutional neural network Updated +Created
YouTube channels that just go over Stack Exchange questions Updated +Created
Some people have been creating YouTube channels that just post and go over a large number of Stack Exchange questions, some of them with a quick random intro video. Perfectly legal due to CC BY-SA but really weird stuff!
Artificial life Updated +Created
CC BY Updated +Created
Phaser.js Updated +Created
Likely the best JavaScript 2D game engine as of 2023.Uses Matter.js as a physics engine if enabled. There's also an alternative (in-house?) "arcade" engine: photonstorm.github.io/phaser3-docs/Phaser.Physics.Arcade.ArcadePhysics.html but it appears to be simpler/less robust (but also possibly faster).
The examples are present under:
git clone https://github.com/photonstorm/phaser3-examples
but note that that repo is huge, about 4.5 GiB on local disk, as is has tons of assets.
The demos also include a Monaco-editor based sandbox mode where you can edit code directly on the web and see the game update which is a really sweet addition.

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