#quirks — Public Fediverse posts
Live and recent posts from across the Fediverse tagged #quirks, aggregated by home.social.
-
#Development #Analyses
Browsers treat big sites differently · When a site is big enough, the rules quietly change https://ilo.im/16cx88_____
#Quirks #Safari #Firefox #Chrome #Browsers #WebStandards #BigWeb #SmallWeb #WebDev #Frontend -
#Development #Analyses
Browsers treat big sites differently · When a site is big enough, the rules quietly change https://ilo.im/16cx88_____
#Quirks #Safari #Firefox #Chrome #Browsers #WebStandards #BigWeb #SmallWeb #WebDev #Frontend -
#Development #Analyses
Browsers treat big sites differently · When a site is big enough, the rules quietly change https://ilo.im/16cx88_____
#Quirks #Safari #Firefox #Chrome #Browsers #WebStandards #BigWeb #SmallWeb #WebDev #Frontend -
#Development #Analyses
Browsers treat big sites differently · When a site is big enough, the rules quietly change https://ilo.im/16cx88_____
#Quirks #Safari #Firefox #Chrome #Browsers #WebStandards #BigWeb #SmallWeb #WebDev #Frontend -
Hype for the Future 62GEM: The Interesting Quirks of Maine
Overview While the State of Maine may not have any obvious cultural similarities with the African continent, nor even share the history of brutal treatment of slaves with Africa for much of overlapping history except possibly at the very beginning, the State of Maine is, oddly enough, the closest U.S. State to Africa as a continent. Unsurprisingly, though this refers to a different portion of the State of Maine, it is also the closest state in the Contiguous United States to the continent of […] -
Using #GNU
asAssembler (not Assembly, but the Assembler) andldLinker to spit out a working BMP gradient image.
Yeah, you read it right. I'm not using #Assembly to produce an image. I'm, instead, using Assembler directives and macros during compile-time to generate a binary file that happens to be a valid image (BMP) file.
File: tonishing.s (GNU Assembly file)width = 320 height = 240 area = width * height _begin: .ascii "BM" .int fileSize .int 0 .int (_rasterdata - .) _infoheader: .int infoheaderSize .int width # width .int height # height .short 1 # planes .short 24 # bitcount .int 0 # compression .int 0 # imagesize .int 11811 # xpixperm .int 11811 # ypixperm .int 0 # colorsused .int 0 # colorsimp infoheaderSize = (. - _infoheader) _rasterdata: n=area+1 .rept height .rept width byten=((n*255)/area)&0xFF rn=(192*byten)/255 gn=(64*byten)/255 bn=(128*byten)/255 .byte rn,gn,bn n=(n-1) .endr .endr fileSize = (. - _begin)
File: run.sh (Shellscript)
I run the whole thing with... wait for it... #nodemon!#!/bin/sh clear rm astonishing.bin rm tonishing.o as tonishing.s --64 -o tonishing.o # The pun is _astonishingly_ intended. strip -R .comment -R .note.gnu.property tonishing.o ld -n -x -s -N --oformat binary --unique=.note.gnu.property -o astonishing.bin tonishing.o magick identify -verbose astonishing.bin
That's right: the tool intended for #Nodejs hot-reloading, is being leveraged for GNU Assembly, which is itself being leveraged for compile-time instructions to produce a whole BMP image.nodemon -e "s sh" --exec ./run.sh
While I have a #Codeberg account, it's under my personal name where I published old projects from #GitHub, so I should do a second account for this pseudonym... but I'm not sure if this is against the Codeberg rules... So I'm posting the whole thing through a Calckey post instead.
#programming #devlog #dev #devhacks #quirks #codegolf #experiments #surreal #absurd -
Using #GNU
asAssembler (not Assembly, but the Assembler) andldLinker to spit out a working BMP gradient image.
Yeah, you read it right. I'm not using #Assembly to produce an image. I'm, instead, using Assembler directives and macros during compile-time to generate a binary file that happens to be a valid image (BMP) file.
File: tonishing.s (GNU Assembly file)width = 320 height = 240 area = width * height _begin: .ascii "BM" .int fileSize .int 0 .int (_rasterdata - .) _infoheader: .int infoheaderSize .int width # width .int height # height .short 1 # planes .short 24 # bitcount .int 0 # compression .int 0 # imagesize .int 11811 # xpixperm .int 11811 # ypixperm .int 0 # colorsused .int 0 # colorsimp infoheaderSize = (. - _infoheader) _rasterdata: n=area+1 .rept height .rept width byten=((n*255)/area)&0xFF rn=(192*byten)/255 gn=(64*byten)/255 bn=(128*byten)/255 .byte rn,gn,bn n=(n-1) .endr .endr fileSize = (. - _begin)
File: run.sh (Shellscript)
I run the whole thing with... wait for it... #nodemon!#!/bin/sh clear rm astonishing.bin rm tonishing.o as tonishing.s --64 -o tonishing.o # The pun is _astonishingly_ intended. strip -R .comment -R .note.gnu.property tonishing.o ld -n -x -s -N --oformat binary --unique=.note.gnu.property -o astonishing.bin tonishing.o magick identify -verbose astonishing.bin
That's right: the tool intended for #Nodejs hot-reloading, is being leveraged for GNU Assembly, which is itself being leveraged for compile-time instructions to produce a whole BMP image.nodemon -e "s sh" --exec ./run.sh
While I have a #Codeberg account, it's under my personal name where I published old projects from #GitHub, so I should do a second account for this pseudonym... but I'm not sure if this is against the Codeberg rules... So I'm posting the whole thing through a Calckey post instead.
#programming #devlog #dev #devhacks #quirks #codegolf #experiments #surreal #absurd -
Using #GNU
asAssembler (not Assembly, but the Assembler) andldLinker to spit out a working BMP gradient image.
Yeah, you read it right. I'm not using #Assembly to produce an image. I'm, instead, using Assembler directives and macros during compile-time to generate a binary file that happens to be a valid image (BMP) file.
File: tonishing.s (GNU Assembly file)width = 320 height = 240 area = width * height _begin: .ascii "BM" .int fileSize .int 0 .int (_rasterdata - .) _infoheader: .int infoheaderSize .int width # width .int height # height .short 1 # planes .short 24 # bitcount .int 0 # compression .int 0 # imagesize .int 11811 # xpixperm .int 11811 # ypixperm .int 0 # colorsused .int 0 # colorsimp infoheaderSize = (. - _infoheader) _rasterdata: n=area+1 .rept height .rept width byten=((n*255)/area)&0xFF rn=(192*byten)/255 gn=(64*byten)/255 bn=(128*byten)/255 .byte rn,gn,bn n=(n-1) .endr .endr fileSize = (. - _begin)
File: run.sh (Shellscript)
I run the whole thing with... wait for it... #nodemon!#!/bin/sh clear rm astonishing.bin rm tonishing.o as tonishing.s --64 -o tonishing.o # The pun is _astonishingly_ intended. strip -R .comment -R .note.gnu.property tonishing.o ld -n -x -s -N --oformat binary --unique=.note.gnu.property -o astonishing.bin tonishing.o magick identify -verbose astonishing.bin
That's right: the tool intended for #Nodejs hot-reloading, is being leveraged for GNU Assembly, which is itself being leveraged for compile-time instructions to produce a whole BMP image.nodemon -e "s sh" --exec ./run.sh
While I have a #Codeberg account, it's under my personal name where I published old projects from #GitHub, so I should do a second account for this pseudonym... but I'm not sure if this is against the Codeberg rules... So I'm posting the whole thing through a Calckey post instead.
#programming #devlog #dev #devhacks #quirks #codegolf #experiments #surreal #absurd -
Using #GNU
asAssembler (not Assembly, but the Assembler) andldLinker to spit out a working BMP gradient image.
Yeah, you read it right. I'm not using #Assembly to produce an image. I'm, instead, using Assembler directives and macros during compile-time to generate a binary file that happens to be a valid image (BMP) file.
File: tonishing.s (GNU Assembly file)width = 320 height = 240 area = width * height _begin: .ascii "BM" .int fileSize .int 0 .int (_rasterdata - .) _infoheader: .int infoheaderSize .int width # width .int height # height .short 1 # planes .short 24 # bitcount .int 0 # compression .int 0 # imagesize .int 11811 # xpixperm .int 11811 # ypixperm .int 0 # colorsused .int 0 # colorsimp infoheaderSize = (. - _infoheader) _rasterdata: n=area+1 .rept height .rept width byten=((n*255)/area)&0xFF rn=(192*byten)/255 gn=(64*byten)/255 bn=(128*byten)/255 .byte rn,gn,bn n=(n-1) .endr .endr fileSize = (. - _begin)
File: run.sh (Shellscript)
I run the whole thing with... wait for it... #nodemon!#!/bin/sh clear rm astonishing.bin rm tonishing.o as tonishing.s --64 -o tonishing.o # The pun is _astonishingly_ intended. strip -R .comment -R .note.gnu.property tonishing.o ld -n -x -s -N --oformat binary --unique=.note.gnu.property -o astonishing.bin tonishing.o magick identify -verbose astonishing.bin
That's right: the tool intended for #Nodejs hot-reloading, is being leveraged for GNU Assembly, which is itself being leveraged for compile-time instructions to produce a whole BMP image.nodemon -e "s sh" --exec ./run.sh
While I have a #Codeberg account, it's under my personal name where I published old projects from #GitHub, so I should do a second account for this pseudonym... but I'm not sure if this is against the Codeberg rules... So I'm posting the whole thing through a Calckey post instead.
#programming #devlog #dev #devhacks #quirks #codegolf #experiments #surreal #absurd -
Using #GNU
asAssembler (not Assembly, but the Assembler) andldLinker to spit out a working BMP gradient image.
Yeah, you read it right. I'm not using #Assembly to produce an image. I'm, instead, using Assembler directives and macros during compile-time to generate a binary file that happens to be a valid image (BMP) file.
File: tonishing.s (GNU Assembly file)width = 320 height = 240 area = width * height _begin: .ascii "BM" .int fileSize .int 0 .int (_rasterdata - .) _infoheader: .int infoheaderSize .int width # width .int height # height .short 1 # planes .short 24 # bitcount .int 0 # compression .int 0 # imagesize .int 11811 # xpixperm .int 11811 # ypixperm .int 0 # colorsused .int 0 # colorsimp infoheaderSize = (. - _infoheader) _rasterdata: n=area+1 .rept height .rept width byten=((n*255)/area)&0xFF rn=(192*byten)/255 gn=(64*byten)/255 bn=(128*byten)/255 .byte rn,gn,bn n=(n-1) .endr .endr fileSize = (. - _begin)
File: run.sh (Shellscript)
I run the whole thing with... wait for it... #nodemon!#!/bin/sh clear rm astonishing.bin rm tonishing.o as tonishing.s --64 -o tonishing.o # The pun is _astonishingly_ intended. strip -R .comment -R .note.gnu.property tonishing.o ld -n -x -s -N --oformat binary --unique=.note.gnu.property -o astonishing.bin tonishing.o magick identify -verbose astonishing.bin
That's right: the tool intended for #Nodejs hot-reloading, is being leveraged for GNU Assembly, which is itself being leveraged for compile-time instructions to produce a whole BMP image.nodemon -e "s sh" --exec ./run.sh
While I have a #Codeberg account, it's under my personal name where I published old projects from #GitHub, so I should do a second account for this pseudonym... but I'm not sure if this is against the Codeberg rules... So I'm posting the whole thing through a Calckey post instead.
#programming #devlog #dev #devhacks #quirks #codegolf #experiments #surreal #absurd -
🚨 Breaking News: Someone with a blog still hasn't made peace with Go, the programming language equivalent of a cardboard cutout. 🎉 After a decade-long battle, they're still heroically tilting at windmills, valiantly pointing out that Go's #quirks are...quirky. 🧐 Spoiler alert: Repetition is key in this epic saga of "Why won't Go change for me?"
https://blog.habets.se/2025/07/Go-is-still-not-good.html #BreakingNews #GoProgramming #Blogging #TechDrama #HackerNews #ngated -
🦀✨ #Rust has a "powerful" #type #system, with #quirks that could make Schrödinger's cat blush. Let's tour the #funhouse of #linguistic #oddities, where expressions contort into #cursed #yoga poses. Remember, folks, these aren't bugs—just Rust's way of saying "look what I can do!" 🙃🔧
https://www.wakunguma.com/blog/rust-weird-expr #Rust #HackerNews #ngated -
🎩 BREAKING NEWS: #JavaScript is weird! 🧙♂️ Who would've thought? 🤔 An article reveals the shocking truth that #eval is a #nightmare, #loops are #sneaky, and #ASI is quirkier than your uncle's dance moves at a wedding. 😱 But hey, don't worry, just slap a #linter on it and pretend everything's fine. 🙄
https://stack-auth.com/blog/on-javascripts-weirdness #Weirdness #Quirks #Solutions #HackerNews #ngated -
Autistic tidbits…
Disclaimer: this post reflects my experiences with "my" autism. I use phrases like that, "my autism" as it defines me and my way of thinking and doing things. I do not wish to offend anyone with my language and choice of words. Also, English isn't my native language, so I am sometimes a bit limited when I try to find the right words to describe a feeling or exeperience. I am no expert, I write solely about me and my life in this post. If you find any of this offensive, then I am sorry. But we all experience our "NeuroSpicy-ness" in different ways, and this is how I experience mine. Thanks for understanding. Living as an autistic person, or "with autism", is different for every one of us. Sure, we have overlapping bits and bops, we understand things about each other that Neurodivergent people don't get as easily as we do. But our spicy-ness is on a spectrum, or so they say, and it had many different tastes and flavors. And sometimes, something happens that I don't realize at the time, which will later turn out to be a "fine example" of my kind of spicy... 🌶️ […]https://cynnisblog.wordpress.com/2025/01/20/autistic-tidbits/
-
If you have the @starlabssystems StarLite 5 Linux tablet and the touchpad on the magnetic keyboard doesn’t disable when typing for you (didn’t for me, although I’m on the latest firmware), see the fix here:
https://github.com/StarLabsLtd/firmware/issues/182
#StarLabs #StarLite #touchpad #fix #quirks #libinput #linux #tablet
-
37 #Funny And #Relatable #Comics About #Life’s #Quirks #Illustrated By 5ish.art on #Instagram
Most of the #comics #revolve around her #life as an #artist, a #mom, and a #wife, topics to which a lot of #people can #relate.
#Women #Transgender #LGBTQ #LGBTQIA #Entertainment #TheArts #Comics #Family #Relationships #Representation #Culture
-
Fusion360 can be maddening at times. I meticulously crafted fully-parametric models for our storage boxes and rigorously tested various sizes. But when I generated the final version, the software chose to mirror only a subset of the features.
If you've downloaded model files from the 2200A series, please remove them and grab the updated versions. My apologies for any inconvenience caused.
-
Was ich heute gelernt habe: Eine WD Elements (externe Festplatte) einfach mal so out of the Box an einen #RaspberryPi anstöpseln, das funktioniert nicht. Das wird frustrierend langsam. Da helfen auch erstmal keine "#Quirks-Hacks" aus dem Netz.
Grund: Die Platte wird NTFS-formatiert ausgeliefert.
Ein Wechsel auf Ext4 via "sudo mkfs.ext4 /dev/[Partition auf der WDE]" wirkt wahre Wunder.
Für Neulinge: Achtung - die Aktion löscht sämtliche Daten auf der Platte!
-
Was ich heute gelernt habe: Eine WD Elements (externe Festplatte) einfach mal so out of the Box an einen #RaspberryPi anstöpseln, das funktioniert nicht. Das wird frustrierend langsam. Da helfen auch erstmal keine "#Quirks-Hacks" aus dem Netz.
Grund: Die Platte wird NTFS-formatiert ausgeliefert.
Ein Wechsel auf Ext4 via "sudo mkfs.ext4 /dev/[Partition auf der WDE]" wirkt wahre Wunder.
Für Neulinge: Achtung - die Aktion löscht sämtliche Daten auf der Platte!
-
Was ich heute gelernt habe: Eine WD Elements (externe Festplatte) einfach mal so out of the Box an einen #RaspberryPi anstöpseln, das funktioniert nicht. Das wird frustrierend langsam. Da helfen auch erstmal keine "#Quirks-Hacks" aus dem Netz.
Grund: Die Platte wird NTFS-formatiert ausgeliefert.
Ein Wechsel auf Ext4 via "sudo mkfs.ext4 /dev/[Partition auf der WDE]" wirkt wahre Wunder.
Für Neulinge: Achtung - die Aktion löscht sämtliche Daten auf der Platte!
-
Was ich heute gelernt habe: Eine WD Elements (externe Festplatte) einfach mal so out of the Box an einen #RaspberryPi anstöpseln, das funktioniert nicht. Das wird frustrierend langsam. Da helfen auch erstmal keine "#Quirks-Hacks" aus dem Netz.
Grund: Die Platte wird NTFS-formatiert ausgeliefert.
Ein Wechsel auf Ext4 via "sudo mkfs.ext4 /dev/[Partition auf der WDE]" wirkt wahre Wunder.
Für Neulinge: Achtung - die Aktion löscht sämtliche Daten auf der Platte!
-
I got a new laptop when the "old" one pretended to break. The "new" keyboard will type "quotation marks" without me having to press a space key for them to show up and now I "can't" ("won't) stop myself from using them. #computers #quirks #keyboard #QuotationMarks
-
John Wathey concentrates on the unconditionally loving side of any given deity. He argues the selective evolutionary pressure is for the survival of helpless human infants. We're born completely dependent on our mothers, especially in the first few days, because she's our source of food, warmth, protection and everything we need to exist.
The Phantom God
#CBC #quirks #neuroscience #psychology #atheism #mothergoddess
https://www.cbc.ca/radio/quirks/dec-17-our-annual-holiday-book-show-including-the-health-hazards-of-space-travel-and-more-1.6685831/a-neuroscientist-asks-do-we-long-for-a-divine-creator-or-do-we-just-want-our-mommies-1.6688583