Which skin is your favourite?
-
Ever wonder which bootswatch skin is used the most on your forum? To find out you can run the below query on mongodb and find out.
db.objects.aggregate([ { $match: { _key: /^user:\d+:settings/ } }, { $group: { _id: { skin: '$bootswatchSkin' }, count: { $sum: 1 } } }, { $sort: { count: -1 } }, ]);
Here are the results from this forum
{ "_id" : { "skin" : "darkly" }, "count" : 103 } { "_id" : { "skin" : "cosmo" }, "count" : 71 } { "_id" : { "skin" : "flatly" }, "count" : 53 } { "_id" : { "skin" : "cyborg" }, "count" : 52 } { "_id" : { "skin" : "cerulean" }, "count" : 41 } { "_id" : { "skin" : "lumen" }, "count" : 35 } { "_id" : { "skin" : "simplex" }, "count" : 27 } { "_id" : { "skin" : "superhero" }, "count" : 25 } { "_id" : { "skin" : "united" }, "count" : 25 } { "_id" : { "skin" : "slate" }, "count" : 24 } { "_id" : { "skin" : "yeti" }, "count" : 22 } { "_id" : { "skin" : "journal" }, "count" : 22 } { "_id" : { "skin" : "spacelab" }, "count" : 17 } { "_id" : { "skin" : "readable" }, "count" : 14 } { "_id" : { "skin" : "sandstone" }, "count" : 11 } { "_id" : { "skin" : "vapor" }, "count" : 5 } { "_id" : { "skin" : "lux" }, "count" : 3 } { "_id" : { "skin" : "materia" }, "count" : 3 } { "_id" : { "skin" : "zephyr" }, "count" : 3 } { "_id" : { "skin" : "solar" }, "count" : 2 } { "_id" : { "skin" : "pulse" }, "count" : 1 } { "_id" : { "skin" : "quartz" }, "count" : 1 } { "_id" : { "skin" : "litera" }, "count" : 1 }
Seems like you guys are fans of
darkly
, personally I am usingflatly
. Which skin is your favourite? -
Hah that's really interesting! If I had to guess I would've thought that skin uptake would be low, but that comes from Persona days when skin options were hard to discover.
Now that it's right in the sidebar I feel like more people will play around.
That said, I am partial to Sandstone, although I spend most of my time in the default skin
-
No one. All of them are pretty bad and always some bug in colour layout.
-
Same here @phenomlab @exodo
Copyright © 2024 NodeBB | Contributors