79542258

Date: 2025-03-28 19:27:40
Score: 1
Natty:
Report link

Solution in Powershell based on the solution of @svick:

$titleOrig = 'File:Tour Eiffel Wikimedia Commons.jpg'
$pref = 'https://upload.wikimedia.org/wikipedia/commons/thumb'
$thumbSize = 200
$title = $titleOrig.Substring(5) -replace ' ','_'
$hash = ([System.BitConverter]::ToString($md5.ComputeHash($utf8.GetBytes($title)))).replace("-","").ToLower()
$pref,$hash.Substring(0,1),$hash.Substring(0,2),$title,"${thumbSize}px-$title" -join '/'
Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @svick
  • Low reputation (0.5):
Posted by: Podbrushkin