FiXato · @FiXato
396 followers · 10022 posts · Server toot.cat

Hmm, idea for a : a simple side panel that lists the current page's media grouped by type and sorted by filesize, perhaps with complete URLs and download buttons. I know the media can usually also be found through a developer tools view, but I kinda find that one too clunky for my needs.

onto the list it goes.

#browserextension #FiXatoCodes #todo

Last updated 2 years ago

FiXato · @FiXato
398 followers · 9520 posts · Server toot.cat

Top 20 instances where my followers and people I am following come from:

  • mastodon.social (79 total / 39 following / 51 followed)
  • fosstodon.org (33 total / 17 following / 22 followed)
  • mastodon.art (27 total / 19 following / 11 followed)
  • mstdn.social (13 total / 4 following / 11 followed)
  • hackers.town (12 total / 9 following / 9 followed)
  • mastodon.online (11 total / 0 following / 11 followed)
  • mas.to (10 total / 1 following / 9 followed)
  • mastodon.technology (10 total / 2 following / 9 followed)
  • icosahedron.website (9 total / 8 following / 5 followed)
  • tilde.zone (9 total / 5 following / 7 followed)
  • octodon.social (9 total / 7 following / 5 followed)
  • tenforward.social (8 total / 7 following / 3 followed)
  • mastodon.sdf.org (7 total / 5 following / 6 followed)
  • linuxrocks.online (7 total / 3 following / 4 followed)
  • toot.cat (6 total / 3 following / 4 followed)
  • mastodon.xyz (6 total / 3 following / 3 followed)
  • merveilles.town (6 total / 6 following / 0 followed)
  • nerdculture.de (5 total / 1 following / 4 followed)
  • chinwag.org (5 total / 4 following / 1 followed)
  • chaos.social (5 total / 2 following / 4 followed)

(Taken from the output of a little tool I am currently working on. Note to self, I should add percentages.)

#mastodonstats #fediconnections #FiXatoCodes

Last updated 2 years ago

FiXato · @FiXato
393 followers · 9412 posts · Server toot.cat

Updated my Mastodon (glitch-soc) tweaks user-script (which is currently just CSS tweaks) a bit to have a different fallback font as Verdana was causing issues with combining glyph composition. (See this thread for some debugging of that.)

Tweaks included:

  • Increase the width of the first and last column so there's more space for the text and media of your home timeline, and the expanded posts
  • Increase size of emoji / emotes when you hover over them, making it easier to see what they are supposed to represent
  • Change the font to Optima Nova LT Pro, Atkinson Hyperlegible, Roboto, Arial, or a sans-serif font.
  • Add a small purple bar above images that come without status content text, so you have some easy-to-click-on area to expand the post.

#mastodon #glitchsoc #mastodev #userstyles #userscripts #FiXatoCodes #coding #css #stylesheets #unicode #FontComposition

Last updated 2 years ago

FiXato · @FiXato
393 followers · 9412 posts · Server toot.cat

This image has also made me realise that my game 'engine' does not currently handle objects that have 'moved' very well; it only assumes things can disappear, or change in-place... in the case of the arm in the drawing in the previous toot, the clickable area would only be in one relative location; i.e. if I make the clickable region closely around the arm on the left one, you'd have to click on the empty air on the right one. So I'd either have to put a bounding box over the shared area (the arm and the empty air), which is my current approach, or I'd have to add a second region and some how link both together.

#FiXatoCodes #FiXatoCreative #FindTheDifferences #coding

Last updated 2 years ago

FiXato · @FiXato
393 followers · 9412 posts · Server toot.cat

Hmm, since the image similarity comparison is done via Structural Similarity Index on greyscale versions of the images, it unfortunately also means that sometimes changes aren't picked up because the changed object actually already blends into the background when their saturation (I think?) is similar to that of the background...

Maybe I can get around this by doing the contour extraction on the individual colour channels, and then merging the contours?

SVG image from freesvg.org/find-10-difference, with minor adjustments.

#coding #opencv2 #python #FiXatoCodes #FiXatoCreative #svg

Last updated 2 years ago

FiXato · @FiXato
393 followers · 9412 posts · Server toot.cat

Yay, I think I've made some significant progress on detecting the differences between two images with , and extracting the contours to paths. :D

Now all that would be left is to merge the paths and the (bitmap) images into the template SVG I got. :)

#opencv2 #svg #coding #FiXatoCodes #FiXatoCreative #cv2 #opencv #contourDetection #FindTheDifferences #python

Last updated 2 years ago

FiXato · @FiXato
393 followers · 9412 posts · Server toot.cat

: see if I can use pyimagesearch.com/2017/06/19/i to find the bounding boxes of the differences between left and right images, and generate the SVG from that automatically.

#notetoself #coding #python #svg #FiXatoCodes

Last updated 2 years ago

FiXato · @FiXato
393 followers · 9412 posts · Server toot.cat

This evening I started on my "Find it" or "Spot the differences" kind of game, after seeing get rather excited over playing a similar thing with me through a YouTube video we came across, and not being able to find decent free alternatives.

Several hours later I think I have something quite presentable already. So, here is my Secret of Mana-inspired find-the-differences game which runs in your browser.

No third party resources; just some javascript for detecting clicks and toggling visibility of markers indicating successful guesses and updating the counters, and an SVG that contains the two pictures and the difference markers.

Can you find all 12 differences?

(It definitely could still use some improvements, such as maybe have an option of putting the images below each other instead of side-by-side, and looking into accessibility improvements, and making it easier to add your own images, but this will primarily be for me and kiddo to enjoy.)

#coding #beardgrabber #toy #FiXatoCodes #FiXatoCreative #secretofmana #FindIt #FindTheDifferences #SpotTheDifferences #game #games #gaming #GratisGames #imadeathing #browserGames #html #javascript

Last updated 2 years ago

FiXato · @FiXato
393 followers · 9412 posts · Server toot.cat

@grumpy I couldn't quickly find something I liked, so I threw together a proof of concept myself: fixato.org/temp/FindIt/

The process still is a bit more involved than I'd like, as I need to create an SVG file myself in which I mark the regions that are different, but that's something I can probably automate further down the line.
I'll first probably want to add a counter that indicates how many differences are still to be found, and to show an animation and/or sound when all have been found. :)

(As well as a loader for different source images, which I also need to find and/or create. ;))

But for an evening's in between family things, I'm satisfied with the result. :)
(And little was already pointing at the differences while building it).

#beardgrabber #FiXatoCodes #FiXatoCreative #parenting #dadsofmastodon #parentsofmastodon #coding

Last updated 2 years ago

FiXato · @FiXato
393 followers · 9412 posts · Server toot.cat

I regularly use:

Then there's also these other topics that interest me:

#hashtags #FiXatoCreative #FiXatoPaints #FiXatoPaintsDigitally #FiXatoDraws #FiXatoWrites #FiXatoFoto #photography #dailyphoto #FiXatoCodes #coding #FiXatoStreams #livestreaming #FiXatoBlog #msx #msx2 #homecomputer #FiXatoFood #pun #puns #whoami #MyProfile #MyHashtags

Last updated 2 years ago

FiXato · @FiXato
393 followers · 9413 posts · Server toot.cat

Today I learnt a bit more about pages and palettes on the , especially addressed from within the language.

As a result I made some more progress on my fork of Zett Darkstone's tile-drawing editor programme and released build 24, which can now properly save your drawing (and progress) to disk.
(Actually importing it again is future exercise.)

If you want to play around with it, you can load the dsk via WebMSX

#vram #msx2 #msx #basic #ZettDarkstone #Darkstone #FiXatoCodes #coding #retrocomputers #emulation #WebMSX

Last updated 3 years ago

FiXato · @FiXato
393 followers · 9413 posts · Server toot.cat

Okay, first commits pushed to my new repo on : git.sr.ht/~fixato/gemini-tools

For now just the work-in-progress rewrite of my to conversion scripts.

More documentation and other scripts to be added as I clean up the code and write the docs.

#GeminiTools #sourcehut #asciidoc #gemini #gemtext #coding #FiXatoCodes

Last updated 4 years ago