All caps/all lowercase: Terrible for screen readers, especially the former. I would suggest doing something with the "text-transform" property on your CSS instead of actually typing like that.
oops, i do this. Oops, I do this I'm a weirdo who likes the symmetry of lowercase letters, which is probably a Wrong Opinion, and a dumb excuse to break rules. I'm working on sucking it up, and text-transform is a happy medium that somehow never crossed my mind. I hate to admit that I didn't think about screen readers for a long time, since I've never had to experience the web with one. It's something I think about now, but I guess I have a lot to learn.
I don't have too many pet peeves, but some sites do kinda feel more like 1990s roleplay. I'm not very interested in those, but I still support people having fun being webmasters. Whatever gets the kids off TikTok.
oy same!! i never thought of using text-transform for all lower case (i use it for things like titles/headers i want to be in all caps haha). i normally type in all lowercase by default but there are times i would want to Emphasize certain words so i apologize to everyone with screen readers in advance. ;-; i will certainly keep this in mind tho for my more professional/community orientated sites!
That's... a really good idea actually! I got my pin collection on a lanyard; I could grab another one of those cassettes, glue a jewelry pin onto it and sneak it on there. That'd be a really cool conversation starter, I'll have to think about doing that!
haha glad i could be of inspiration!
i have quite the many smol things, since i like to buy mini sanri:ha:san-x blind boxes whenever im around a certain toy store. i gotta dig up better pictures of them all, but here's one of my teeniest tiny thing, a mini blind-box!! (hand for scale)
Something my partner picked up today. It's an NT cassette!
He got it new in box, the guy selling it didn't really know what it was. It's almost exactly the same size as an SD card; it's (as far as my research tells me) the smallest commercially produced cassette ever made! Too bad the microrecorders for them hover around a thousand dollars...
AHH!! so cute!!! i thought this was a pin at first glance LOL. sooo smol!!
hey melon citizens, i thought it would be helpful to share some resources if you're a newbie at unity/c# in general (like me, haha). i've tried out various tutorials but always forget about the basics, so i'm going to update this topic as i come across helpful things. check back later for more links!!!1
i was looking for a simple way to implement 1st/3rd player and thought about disabling the player mesh when switching views - and i should be able to this way. I plan to add on to this script, so i'll update this with any news xP
EDIT: here's how to toggle between 1st+3rd view by disabling the player mesh :-) add this part at the top with your other variables:
Code
public MeshRenderer playerMesh;
and then in your void Update(), add this to the end:
Code
if (Input.GetKeyUp(KeyCode.C))
{
playerMesh.enabled = !playerMesh.enabled;
}
huzzah! initally i had "GetKey" but it would toggle WAY too fast between the two, but "GetKeyUp" fixed this issue hehe
i honestly don't remember the forums i used to frequent, i remember being a part of a couple of furcadia roleplay forum communities etc, and a couple of warriorcats ones. now, i occasionally frequent an organic gardening forum, and a permaculture forum. (permies!) i think this is the first one i've actually posted on in years though, i mostly just lurk in others and use them to find tips and resources.
i was on a few warrior cats rp forums too! god i long have forgotten what they were though .. xP i was really into warriorcats rp'ing on furc haha. i loved those dreams when you could be a lil feral cat (before there were cat digos o_o) p.s. your portrait + site are soo cool looking (✧ω✧)
another forum i'm on besides this one is pixelgardenmb!
i also frequented oekaki boards back in the day, when they were more commonplace :-p i don't think i personally drew in loish's board (i just can't remember the ones i DID draw in), but i followed her on deviantart and probably admired it from a distance. (it was normal to see some boards have a separate 'sketch' section and you had to try out to get into the 'regular/advanced' oekaki board.) i *swear* i saw a version of this site with a really elaborate splash page, but i can't find the link now haha. https://web.archive.org/web/20040904130052/http://oekaki.loish.net/
ive been on a kick and making darkmode themes for my sites. 99gifshop is no exception! you can now surf at night 👀 (plus new page of gifs): click here (i wish the pages wouldnt flicker from white to black when it loads, but idk how to fix that)
i came across this tutorial on ps1-style rendering in blender and it was exactly what i needed (all it really does is pixelate the edges) :-p i usually animate in blender > render in unity, but for this animation i kinda needed to do everything in blender. huzzah!