YouTube video by General Musings with Kevin Powell
Navigating the World of Web Accessibility with Sara Soueidan
๐ฅ New (Video) Podcast: "Navigating the World of Web Accessibility with Sara Soueidan", with @kevinpowell.co
www.youtube.com/watch?v=ndGK...
I finally sat down with Kevin for a long-overdue, in-depth conversation about web #accessibility, and we had a blast!
12.09.2025 14:27 โ ๐ 48 ๐ 13 ๐ฌ 2 ๐ 0
A moving platform made in #gamemaker
07.09.2025 05:58 โ ๐ 29 ๐ 3 ๐ฌ 2 ๐ 0
Why โSilksongโ Took Seven Years to Make
The highly anticipated indie game has been in production for so long that itโs become an internet meme
BREAKING: Silksong will be out on September 4. Two weeks from today. Really.
Often, games that take 7+ years to make are plagued by mismanagement and painful burnout. But for Silksong? Team Cherry was having a blast. They still are.
This is their story: www.bloomberg.com/news/newslet...
21.08.2025 14:35 โ ๐ 9106 ๐ 3015 ๐ฌ 141 ๐ 844
In Italian, thereโs a saying for when something is really amazing: you say itโs โa bomb.โ In this case, Iโd say itโs the perfect expression. รoo is a bomb. Thanks @namataka.bsky.social for developing it!
10.08.2025 21:02 โ ๐ 2 ๐ 0 ๐ฌ 0 ๐ 0
GitHub - PixelatedPope/HelpfulGMLScripts: An open source resource for GameMaker scripts
An open source resource for GameMaker scripts. Contribute to PixelatedPope/HelpfulGMLScripts development by creating an account on GitHub.
Hey, #gamemaker s! If you haven't checked out my Helpful GML Scripts Github Repo, you should! I always have the folder open to drag and drop random scripts into my project or Discord. Check it out here:
github.com/PixelatedPop...
22.07.2025 18:34 โ ๐ 30 ๐ 8 ๐ฌ 4 ๐ 1
Some sprite stacking stuff Emlise had worked on before Rusted Moss!
In Rusted Moss, Fern was also animated with procedural animation but you can see with a side scroller in mind.
#indiegame #indiedev
12.07.2025 20:50 โ ๐ 312 ๐ 33 ๐ฌ 3 ๐ 0
Save yourself a headache, make sure none of your assets go missing when using asset_get_index
03.07.2025 14:07 โ ๐ 29 ๐ 6 ๐ฌ 2 ๐ 0
I made a 3D action game with #GameMaker in one month! ๐กเป
It's been a crazy stunt, one that -albeit fun- I will never try again :P
You can try out a build of the game on GMI's website:
tinyurl.com/yjyvnkhc
A making of is available on my patreon:
tinyurl.com/mtbu2jpp
31.05.2025 15:26 โ ๐ 18 ๐ 3 ๐ฌ 0 ๐ 0
screenshot of a code editor, with a dialogue box showing "lvl 10 knight, 50/100 to level 11
the code shown is:
/// @description String templates are cool
class = "Knight"
level = 10
xp = 50
xp_to_level = 100
// Old way, why are we doing math with words :(
var _old = "Lvl. " + string(level) + class + ", " + string(xp) + "/" + string(xp_to_level) + " to level " + string(level + 1) + "."
// New way with string templates.
//If a string has a $, you can put variables, functions, math, etc inbetween {}
var _new = $"Lvl. {level} {class}, {xp}/{xp_to_level} to level {level + 1}."
show_message(_new)
String templates are super useful, and I'm realizing a lot of #gamemaker devs aren't using them!
If like me you find it annoying to build strings by adding stuff together and calling string() on numbers, try prefixing the string with $, which allows you to put code in between {}.
#gamedev
21.03.2025 12:59 โ ๐ 23 ๐ 4 ๐ฌ 4 ๐ 0
I was going to make this public on Monday, but since it's all done, I figured why not pull the trigger earlier :) - www.youtube.com/playlist?lis...
10.01.2025 15:06 โ ๐ 295 ๐ 116 ๐ฌ 13 ๐ 11
Thank you! The technique I used is called "sprite-staking"
23.12.2024 12:02 โ ๐ 0 ๐ 0 ๐ฌ 1 ๐ 0
I finally publish it! bsky.app/profile/scar...
23.12.2024 08:08 โ ๐ 1 ๐ 0 ๐ฌ 0 ๐ 0
"Santa is running in town" is finally available online on GX.Games!
gx.games/games/i9ox3g...
Help Santa to find and retrieve the latest gift until the sunrise in this little arcade game made with @gamemaker.io
#gamedev | #indiedev | #GameMaker
23.12.2024 08:07 โ ๐ 18 ๐ 3 ๐ฌ 2 ๐ 1
I kid you not, @itch.io has been taken down by Funko of "Funko Pop" because they use some trash "AI Powered" Brand Protection Software called Brand Shield that created some bogus Phishing report to our registrar, iwantmyname, who ignored our response and just disabled the domain
09.12.2024 07:13 โ ๐ 30578 ๐ 11688 ๐ฌ 675 ๐ 2424
Italy -> China. But now I see that I could arrive in New Zealand... It's time to dig! :D
22.11.2024 07:06 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0
I loved this game!
21.11.2024 17:35 โ ๐ 1 ๐ 0 ๐ฌ 0 ๐ 0
Diagonal symmetries ๐
20.11.2024 21:31 โ ๐ 483 ๐ 72 ๐ฌ 16 ๐ 21
Update on my pixel art guide for beginners:
Transferred all the information from Tumblr to a Google Doc, so anyone who doesn't have a Tumblr account can now read through the whole thing!
I also updated quite a bit of information too.
I hope it will help somebody!
docs.google.com/document/d/1...
05.11.2024 15:04 โ ๐ 5442 ๐ 2141 ๐ฌ 189 ๐ 36
Made another starter pack! Hopefully helps to celebrate those that make things or help make video games ๐ธ๐โ๏ธ๐ป๐จ๐ฃ๏ธ๐ฌ๐ธ #gamedev #indiegamedev #gameart #vgm #narrative #indiedev #voiceactor
Pack 1 - go.bsky.app/MCoaCBe
Pack 2 - go.bsky.app/rmDBjd
Pack 3 - go.bsky.app/7iFuo3h
Pack 4 - go.bsky.app/HrD5Qy
17.11.2024 06:47 โ ๐ 316 ๐ 55 ๐ฌ 92 ๐ 5
I think it's a common issue... This project was developed for a jam, so I expect to find some "spaghetti code," sadly xD.
But you're right: I try to clean up the project and leave it in better shape than I found it. ๐ช
18.11.2024 09:25 โ ๐ 1 ๐ 0 ๐ฌ 0 ๐ 0
... I hope I guess xD Why did you say that?
18.11.2024 08:32 โ ๐ 0 ๐ 0 ๐ฌ 1 ๐ 0
It's almost Christmas, right? xD I'm improving a little game I made two years ago, hoping it will be ready next month.
#gamedev | #indiedev | #GameMaker
18.11.2024 06:31 โ ๐ 11 ๐ 1 ๐ฌ 2 ๐ 0
Update on the experiment with lighting! (Again, not an actual Rusted Moss update, just messing around but please check our game out anyway :P)
#indiedev #indiegame #gamemaker
15.11.2024 14:04 โ ๐ 72 ๐ 8 ๐ฌ 1 ๐ 0
Beautiful result!
15.11.2024 14:16 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0
Carrying on the new #GameMaker game from the last post.
I'm having a lot of fun making Scary Board Game! (yes that is its name at the moment)
12.11.2024 22:06 โ ๐ 17 ๐ 4 ๐ฌ 2 ๐ 0
ASSO is a a bite-sized adventure developed for TerrorOttobre, a jam organized by @gamemakeritalia.bsky.social. It is made with @gamemaker.io with the tecnique called sprite-stacking.
Download here: scario88.itch.io/asso
#gamedev | #indiedev | #GameMaker
05.11.2024 05:37 โ ๐ 16 ๐ 3 ๐ฌ 1 ๐ 0
Independent designer + web design engineer, teacher, speaker. Interface Prototyping at Muthesius University of Fine Arts and Design. UX, prototyping, & design engineering workshops.
๐ง Newsletter: https://ownyourweb.site
๐ป Website: https://matthiasott.com
creating videogames | made bernband, grunn, and more | part of @sokpop.co
game designer @sokpop.co i always follow back
Game Dev: maker of Overbowed, Idle Time Slime, and Flightless Fables. Flightless Fables - https://tinyurl.com/3ahh8p82
https://linktr.ee/Klardonics
Reporter at Bloomberg | co-host of Triple Click | New York Times bestselling author of Play Nice + Press Reset + Blood, Sweat, and Pixels | jschreier@gmail.com
๐ฝLukas Bรผffel
๐ฅVFX and other stuff at Tiny Roar
๐พUnity & Playdate GameDev
๐ฎWorking on Lou's Lagoon & Gloom Gate
๐ฃ๏ธDE/EN
๐นHe/Him
https://linktr.ee/Lu_Bu
Directing https://usualjune.com at @finjico.bsky.social
I also make free games and pixel art packs at https://adamatomic.itch.io/
indie gamedev in japan โข mixolumia โข executive golf dx โข core fault
๐งโโ๏ธ Handcrafted Metroidvania.
โ๏ธSteam Wishlist: https://tinyurl.com/5n75sdyh
๐ฎDiscord: https://discord.gg/StDRjRqSwk
๐Website: http://www.little-mage.com
๐ฒLinkTree: https://linktr.ee/violoken
Sometimes, when I'm in the right mood, I make video games and art. Or something.
Made Celeste with friends, working on new games with EXOK and City of None. www.noelberry.ca
Welcome to a calmer internet!
#ZenBrowser
๐ https://github.com/zen-browser
๐ https://zen-browser.app
โฅ๏ธ https://ko-fi.com/zen_browser
๐ฌ https://discord.gg/zen-browser
I make silly videos about games
๐ฝ๏ธ https://www.youtube.com/@JuniperDev
โ๏ธ juniperdev@rightclick.gg
Open indie game marketplace and DIY game jam host
Account support? Email support@itch.io
โ๐ข You can use your itchio URL as your Bluesky username, check here: https://itch.io/user/settings/bluesky
๐ Freelance technical artist https://gotibo.fr/
๐น๏ธ Makes games and such http://gtibo.itch.io
๐งโ๐ Currently working on Wild Cosmos s.team/a/3051070
๐ซ๐ท๐ฅ Criminally French
My name is Karel Matฤjka. I am a pixel art enthusiast and the creator of the BZZZT game, released on Steam, Switch, and GoG.
Addicted to game dev
https://featurekreep.itch.io/
artist / game developer / mic rulah
Currently making ROG & ROLL! ๐
Wishlist on Steam: https://tinyurl.com/rogandroll
๐ Other stuff: https://linktr.ee/clayzulah
Topdown action adventure game about floods.
Programming: @emlise.bsky.social
art: @nostalgiatree.bsky.social
wishlist: https://store.steampowered.com/app/3045030/Flooded_Burials/
presskit: https://faxdoc.github.io/Flooded_Burials_Press/presskit
๏ฃฟ Apple Evangelist on the Web Developer Experience team for Safari & Webkit. #PwME
๐ธFrog |๐Pygame/Python gamedev | ๐น๐ผ ไธญๆ | ENG |
Check out ๐ธFroggo's Adventure here:
https://store.steampowered.com/app/2854780/Froggos_Adventure_Verdant_Venture/