I did not know what to look for, so I looked at the list to see what is in there and had no idea what I was looking at. I am making a lot of assumptions and don't know how any of this works.
* It appears the dats_dates.txt file is a list of depot item contents string sorted by depo numeric identifier.
* It also appears the depo identifier is the first underscore separated value on a given line
* It seems the more popular artifacts are referenced multiple times in the list due to the quantity of contents and versions associated with a given depo
All of that could be wrong, but nonetheless I wrote a small 2minute Node.js script to analyze the list. It takes about 0.03 seconds to execute, on my machine anyways, and produces as output a list of depo identifiers sorted by the frequency in which those identifiers occur in the dats_date.txt file.
These identifiers do not always resolve to a game title using the steamdb.info site but several do. Because though because steamdb.info applies rate limiting and then a temporary IP address block.
Comments
I did not know what to look for, so I looked at the list to see what is in there and had no idea what I was looking at. I am making a lot of assumptions and don't know how any of this works.
* It appears the dats_dates.txt file is a list of depot item contents string sorted by depo numeric identifier.
* It also appears the depo identifier is the first underscore separated value on a given line
* It seems the more popular artifacts are referenced multiple times in the list due to the quantity of contents and versions associated with a given depo
All of that could be wrong, but nonetheless I wrote a small 2minute Node.js script to analyze the list. It takes about 0.03 seconds to execute, on my machine anyways, and produces as output a list of depo identifiers sorted by the frequency in which those identifiers occur in the dats_date.txt file.
These identifiers do not always resolve to a game title using the steamdb.info site but several do. Because though because steamdb.info applies rate limiting and then a temporary IP address block.
https://gist.github.com/prettydiff/fe1456dbd458b8a376961f4f6...