3D file format by Ciro Santilli 35 Updated +Created
Star outside the Milky Way by Ciro Santilli 35 Updated +Created
With Telescopes however, it is possible. www.quora.com/Can-we-distinguish-individual-stars-in-other-galaxies-or-would-it-be-equivalent-to-say-we-know-there-are-other-forests-of-stars-galaxies-but-we-cant-tell-the-individual-trees-stars-What-is-the-farthest-individual/answer/Jerzy-Micha%C5%82-Pawlak contains an amazing answer that mentions two special cases of the furthest ones:
But what we can definitely see are globular clusters of galaxies. E.g. the article en.wikipedia.org/wiki/Messier_87 basically gauges the size of galaxies by the number of globular clusters that they contain.
High performance computing by Ciro Santilli 35 Updated +Created
Darknet market by Ciro Santilli 35 Updated +Created
Evergreen notes by Ciro Santilli 35 Updated +Created
Rigid body dynamics by Ciro Santilli 35 Updated +Created
Topology in condensed matter by Ciro Santilli 35 Updated +Created
But then they regained their sanity and put the source code on GitHub: github.com/topocm/topocm_content and is CC BY-SA.
Uses an ungodly combination of Jupyter notebooks and Pelican.
Wiki without notability requirements by Ciro Santilli 35 Updated +Created
List of 3D file formats by Ciro Santilli 35 Updated +Created
Type of cloud computing by Ciro Santilli 35 Updated +Created
Andy Matuschak by Ciro Santilli 35 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 35 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:
ffplay by Ciro Santilli 35 Updated +Created
Awesome tool to view quick stuff quickly without generating files. Unfortunately it doesn't support all options that the ffmpeg CLI supports, e.g. ffplay multiple input files. One day, one day.
FFmpeg video synthesis by Ciro Santilli 35 Updated +Created
Video with a solid color:
  • 2 second white video:
    ffplay -autoexit -f lavfi -i 'color=white:640x480:d=3,format=rgb24,trim=end=2'
    Also add some audio:
    ffmpeg -lavfi "color=white:640x480:d=3,format=rgb24,trim=end=2[v];sine=f=1000:d=2[a]" -map '[a]' -map '[v]' out.mkv
    TODO how to ffplay the video + audio directly? -map does not seem to work unfortunately.
  • 2 second white followed by 2 second black video:
    ffplay -autoexit -f lavfi -i 'color=white:640x480:d=3,format=rgb24,trim=end=2[a];color=black:640x480:d=3,format=rgb24,trim=end=2[b];[a][b]concat=n=2:v=1:a=0'
  • bibliography:
Display count in seconds on the video:
Display manager by Ciro Santilli 35 Updated +Created
Check which you you have:
systemctl status display-manager.service
Tested on Ubuntu 23.10 I see:
● gdm.service - GNOME Display Manager
     Loaded: loaded (/lib/systemd/system/gdm.service; static)
     Active: active (running) since Sun 2023-12-24 10:34:50 GMT; 23min ago
    Process: 1827 ExecStartPre=/usr/share/gdm/generate-config (code=exited, status=0/SUCCESS)
   Main PID: 1850 (gdm3)
      Tasks: 4 (limit: 71817)
     Memory: 6.8M
        CPU: 119ms
     CGroup: /system.slice/gdm.service
             └─1850 /usr/sbin/gdm3
which means I have GNOME Display Manager.
Job scheduler by Ciro Santilli 35 Updated +Created
Slurm Workload Manager by Ciro Santilli 35 Updated +Created

Unlisted articles are being shown, click here to show only listed articles.