Ciro Santilli's hardware / P51 benchmark by Ciro Santilli 37 Updated +Created
glmark2 -b build:duration=3:model=horse
~4.8K
Monero 0.18.3.1 hashrate: 2.6 KH/s
Ciro Santilli's hardware / Dell P2720D by Ciro Santilli 37 Updated +Created
27 Inch QHD (2560x1440) Monitor, 60Hz, IPS, 5ms, Ultrathin Bezel, 99% sRGB, DisplayPort, HDMI, 5x USB, 3 Year Warranty
Ciro Santilli's hardware / Dell TODO by Ciro Santilli 37 Updated +Created
Normalized DFT by Ciro Santilli 37 Updated +Created
There are actually two possible definitions for the DFT:
High pressure by Ciro Santilli 37 Updated +Created
Video 1.
Something weird happens when you keep squeezing by Vox (2023)
Source. Sodium becomes liquid when you compress it. Weird.
3D file format by Ciro Santilli 37 Updated +Created
High performance computing by Ciro Santilli 37 Updated +Created
Darknet market by Ciro Santilli 37 Updated +Created
Evergreen notes by Ciro Santilli 37 Updated +Created
Rigid body dynamics by Ciro Santilli 37 Updated +Created
Wiki without notability requirements by Ciro Santilli 37 Updated +Created
List of 3D file formats by Ciro Santilli 37 Updated +Created
Type of cloud computing by Ciro Santilli 37 Updated +Created
Andy Matuschak by Ciro Santilli 37 Updated +Created
Proponent of evergreen notes.
He's also curious about quantum computing: quantum.country/ like Ciro Santilli. Some crazy overlaps we get.
FFmpeg filter graph by Ciro Santilli 37 Updated +Created
Filter graphs are a thing of great beauty. What an amazingly obscure domain-specific language, but which can produce striking results with very little!!!
ffplay -autoexit -nodisp -f lavfi -i '
sine=frequency=500[a];
sine=frequency=1000[b];
[a][b]amerge, atrim=end=2
'
which creates a graph:
                              +--------+
[sine=frequency=500]--->[a]-->|        |
                              | amerge |-->[atrim]-->[output]
[sine=frequency=1000]-->[b]-->|        |
                              +--------+
and plays 500 Hz on the left channel and 1000 Hz on the right channel for 2 seconds.
So we see the following syntax patterns:
  • sine, amerge and atrim are filters
  • sine=frequency=500: the first = says "araguments follow"
    • frequency=500 sets the frequency argument of the sine filter
    • for multiple arguments the syntax is to separate arguments with colons e.g. sine=frequency=500:duration=2
  • ;: separates statements
  • [a], [b]: sets the name of an edge
  • ,: creates unnamed edge between filters that have one input and one output
A list of all filters can be obtained ith:
ffmpeg -filters
and parameters for a single filter can be obtained with:
ffmpeg --help filter=sine
Related question: stackoverflow.com/questions/69251087/in-ffmpeg-command-line-how-to-show-all-filter-settings-and-their-parameters-bef
TODO dump graph to ASCII art? trac.ffmpeg.org/wiki/FilteringGuide#Visualizingfilters mentions a -dumpgraph option, but haven't managed to use it yet.
Bibliography:

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