You could middle click to color pick in the event
any fediverse account will work. Itll allow you to log in when it opens
Yeah lemmy currently doesn't send notifications about moderation actions
Some mod teams add it in through manually dming (which usually will happen here if someone on the admin team is warning, banning, etc. you (apart from site bans which the user wouldn't be able to access their messages from) and its not just an obvious spammer or bot) or code their own systems to notify about actions
Everything's viewable in the modlog though and you can filter by yourself to see all actions made relating to you
Ive been working on some game tools to let me make various games quicker without needing to do the same things in every game i make

Above you can see two of them ^ Ive got an achievement system implemented as well as a toolbar that lets you trigger things easily for testing purposes (e.g. giving the player a weapon, spawning an enemy, etc.)
Theres a data persisting system that will persist data in different scopes (e.g. room, level, run, game, permanent) that everything else uses. For example the achievement system looks at a certain category and a trigger (which is a key that the data in the persister is set under) so that whenever data is added to that trigger it sees if its higher than the amount needing to unlock the achievement (and if so unlocks it). The persister is decoupled from everything else by sending signals and then everything that wants to look at what data is set can (this would be the achievements, the unlock system, the dialogue system to see which dialogue is unlocked, etc.)
Main tools I have made:
- palette swapping (allows for swapping the palette of the game so that things like each zone can have different colors)
- unlocks (what weapons, enemies, etc. are unlocked)
- toolbar (debug helping)
- persister (persists data through a scope)
- logger (logs information (separate so other components can show the logs e.g. the toolbar or a terminal)
- leaderboard (keeps track of scores of players)
- data (reads txt files from a data folder for usage in the rest of the game for separation of data and behaviours. e.g. you can define enemies each in their own txt file and have a generic enemy object that has its properties set based on the enemy it is. Makes it so you can easily add new stuff
I have ways to check, I won't say what they are so people don't try to bypass it
Hey, im actually doing a post right now with some screenshots. Should be up in a bit on meta
(was also the one that purged the conversation. things should still be in the modlog if youre interested in digging around for it)
In programming.dev we have a community request zone at !community_request@programming.dev
You can find info like this in the sidebar if youre on web (and there's going to be a support site made soon)
1 -> yep, to make it a certain language put that language after the first three backticks. For inline you can do it using curly braces after the second backtick with a dot and then the language in it
```abnf
x=4
```
x=4
`x=4`{.haskell}
x=4{.haskell}
`x=4`{.js}
x=4{.js}
2-> https://www.npmjs.com/package/markdown-it-highlightjs is the specific one but its basically just a wrapper around highlightjs
3 -> ~~unknown, I didnt mess around with that when implementing them and I dont think it supports it.~~ edit: can probably be added manually by messing around with css. Ill do a pull request after my exams
Congrats on the alpha 🎉
Lemmy itself needs JS to work, wouldnt make sense to limit myself to not using it when the sites im sending people to dont have that restriction. Whats the bloat youre talking about, I can look at it
For the background I used tsParticles for the particles, and the gradient behind that uses framer motion to change colors by moving a linear gradient back and forth
Ategon
0 post score0 comment score

No, things are moving along though (pictrs upgrade was just completed). Again I'm not going to give a date were going to upgrade at apart from warning before we do so since it won't be followed due to us all being volunteers and things changing due to issues coming up
0.19.4 is annoying since it adds the hashtag additions where posts are auto hashtagged with the community name. I was aiming to Ideally remove that from the codebase before we upgrade but we might have to upgrade with that in it