Spyke

Posts

canvas·CanvasbyMonte

Canvas Stats has been updated for 2026

Canvas Stats has been updated for 2026!

The site was rewritten to be more efficient and now has a ton more features such as:

  • better search
  • Advanced search (see who placed pixels at a coordinate or within an area of the canvsa)
  • View stats for instances
  • More user stats including graphs for users

The biggest feature is Achievements. If you go to your profile on the site and click the "Claim the profile" button, it will unlock any achievements you have earned the 4 years that Canvas has taken place. More achievements will be added as they are suggested. It is guaranteed that everyone will get at least 1.

If you have any ideas for new features for the site, let me know. Currently working on

  • more advanced search options
  • more options for selecting what to render on the canvas
  • list of all achievements and how many users have unlocked each achievement

CanvasStats.com

View original on sh.itjust.works
109
2025fedicanvasatlas·2025 Fediverse canvas atlasbyMonte

Rescue Rangers logo

{ "id": 2112259520, "name": "Rescue Rangers", "description": "The logo from the 2022 film Chip 'n Dale: Rescue Rangers", "links": { "website": [ "https://disney.fandom.com/wiki/Chip_%27n_Dale_Rescue_Rangers_(film)" ] }, "path": { "1-48": [ [ 3, 300 ], [ 13, 300 ], [ 15, 301 ], [ 17, 301 ], [ 17, 300 ], [ 24, 300 ], [ 22, 301 ], [ 21, 302 ], [ 21, 303 ], [ 22, 304 ], [ 23, 306 ], [ 24, 307 ], [ 24, 316 ], [ 23, 316 ], [ 23, 318 ], [ 22, 318 ], [ 22, 319 ], [ 21, 319 ], [ 21, 320 ], [ 20, 320 ], [ 20, 321 ], [ 19, 321 ], [ 19, 322 ], [ 18, 322 ], [ 17, 322 ], [ 17, 323 ], [ 12, 323 ], [ 12, 322 ], [ 11, 322 ], [ 6, 322 ], [ 6, 323 ], [ 5, 323 ], [ 5, 324 ], [ 5, 323 ], [ 5, 322 ], [ 4, 322 ], [ 4, 321 ], [ 3, 321 ], [ 3, 320 ], [ 2, 320 ], [ 2, 319 ], [ 1, 319 ], [ 1, 317 ], [ 0, 317 ], [ 0, 308 ], [ 1, 308 ], [ 1, 306 ], [ 2, 306 ], [ 2, 304 ], [ 3, 304 ], [ 3, 300 ] ] }, "center": { "1-48": [ 13, 311 ] } }

View original on sh.itjust.works
2
canvas·CanvasbyMonte

Canvas Stats has been updated with 2025 stats

Canvas Stats 2025 is now live!

You can view how you rank out of 638 users, see how many pixels you places, how many of each color, and generate an image of all the pixels you placed. You can also compare how you did this year vs previous years.

I am still working on a few more graphs/images for the overall canvas.

The site layout might load weird on mobile, my goal was to get the stats up first, then I will go back and fix the design of the site.

Let me know if there are any other stats you want to see on the site!

View original on sh.itjust.works
55
2024lemmycanvasatlas·2024 Fediverse canvas AtlasbyMonte

502 bad gateway

{ "id": 505497885, "name": "502 Bad Gateway", "description": "Whenever the server crashed during the event, the site would simply display the "502 Bad Gateway" error message", "links": {}, "path": { "0": [ [ 505, 0 ], [ 505, 22 ], [ 621, 22 ], [ 621, 0 ] ] }, "center": { "0": [ 563, 11 ] } }

View original on sh.itjust.works
-1
2024lemmycanvasatlas·2024 Fediverse canvas AtlasbyMonte

OSU Block O

{ "id": 4949019230, "name": "Block O", "description": "The logo for The Ohio State University", "links": { "subreddit": [ "OSU" ] }, "path": { "0": [ [ 907, 451 ], [ 903, 455 ], [ 903, 459 ], [ 908, 464 ], [ 912, 460 ], [ 912, 455 ], [ 908, 451 ] ] }, "center": { "0": [ 908, 457 ] } }

View original on sh.itjust.works
0
canvas·CanvasbyMonte

Database correction and update to Canvas Stats

There was an error with the fediverse-auth on the Canvas site where after a certain point new logins started being logged as all lower case which created duplicates of 59 users and were treated as separate users. I have merged all of the duplicate accounts and rebuild the database.

This also means that all of the stats on Canvas Stats are incorrect. The canvas Stats app has been updated with the new data.

You can find the fixed database dump sql file on my github: https://raw.githubusercontent.com/TheRealMonte/data-files/main/2024/canvas-2024-fixed-sql.sql The file is 33,568 kB.

The SQL file has 4 tables:

  • users (user_id, username, ranking, total_pixels_placed)
  • colors (color_id, color_name, color_hex)
  • pixels (log_id, user_id, x_cord, y_cord, color_id, time_placed, is_mod_action, is_top, time_deleted)
  • top_cord (top_cord_id, user_id, x_cord, y_cord, count_placed)

The users table includes the rank and total pixels placed for each user. Deleted pixels are not counted. There are 13 users who deleted every pixel the placed. They are still ranked, but their total pixel count is 0.

The colors table includes the color ID, name, and hex which when joined with the pixels table can be used to easly select the color name or hex.

The pixels table includes the username, x and y coordinates, color ID, the time the pixel was placed, if the pixel was a moderator placement, if the pixel can be seen in the final image, and the time the pixel was deleted or NULL.

The top_cord table includes the x and y coordiantes for the coordinate each user placed the most pixels on along with the count.

The only data not included here is the pixel color counts for each user. You an find the pixel color counts for a user by selecting:

SELECT color_name, count(color_name) FROM public.pixels JOIN users on users.user_id = pixels.user_id JOIN colors on colors.color_id = pixels.color_id WHERE username = <username> GROUP BY color_name

View original on sh.itjust.works
16
canvas·CanvasbyMonte

Update to Canvas Stats web app and making user pixel images

I have updated Canvas Stats with the new data from the sql log. Rankings should mostly be the same as the old data, but your total pixel count will be lower since deleted pixels no longer count. A new feature to the site is you can now see if your top coordinate placed is also another users top coordinate placed, which would mean you were probably battling it out over a pixel.

I am also generating images of individual user's pixels. If anyone is interested, just send me a DM. Here is an example of just the pixels that @[email protected] placed:

If you would prefer the background to be black instead of white, let me know in your DM.

Another feature I added was overall stats for the event.

View original on sh.itjust.works
37
canvas·CanvasbyMonte

Canvas Stats Website

Hi everybody! I have finished building a web app that allows you to search for a user and view their stats from the event! The app will tell you your overall ranking, number of pixels placed, the coordinate you placed the most pixels on, and how many of each color you placed.

I will probably add more features to the website, but I wanted to get something out there so everyone could see how they did.

Thanks @[email protected] for providing the data.

Here is the link to the web app.

View original on sh.itjust.works
67

You reached the end