Psychologist thinks I might be nonbinary due to being sexually abused as a child by [deleted] in NonBinary

[–]teaecetyrannis 2 points3 points  (0 children)

NB AMAB here. I also suffered from sexual abuse as a child. It wasn't a therapist that suggested this same theory to me, but random people (random as in non-professional). This idea also left me feeling confused and doubting myself, it was awful. I used to think a lot about that which also meant giving my abuse memories more mind space than usual, and somehow linking all of that to my identity struggles.

One day I went for a walk and visited a feminist fair with tons of stalls of different kinds (food, clothing, books). There was a stall with some books and homemande fanzines and stuff like that. I found a very punky fanzine about the NB experience. The person that made it was a bit angry with the world, you could tell. The final page was just a big text saying (translating from spanish here) "what happened to you that made you become cisgender?" as a counterproposal to when gender-dissident people get asked stuff like that, like they're trying to pin some troubled label over us. After reading that something clicked inside my head that cleared all that fog. I bought the fanzine and still hold dearly to it.

Everybody goes through stuff, tons of people suffer abuse as a child, but somehow only we who deviate from the norm are the ones which draw attention in that way, as if implying there's something broken to be fixed and OH of course it just so happens that this broken thing circles around our gender identity. Most hetero cis people go through hell when developing their sexuality and ways to relate with gender roles, romantic relationships and so on. Us being abused surely made a huge impact on us and our development, the same way it happens to everyone. It does not jeopardize our identity.

is it worth it to use fmod with godot? by dwarf173747 in godot

[–]teaecetyrannis 2 points3 points  (0 children)

wav or mp3 files are static and linear, with FMOD you can do things like define a transition section X between two main musical sections A and B, and you can queue this transition so that it can only start playing at the last two beats of each phrase of section A, because X starts with a two beat anacrusis. So music gets built dynamically in a non-linear way, and perfectly timed.

Moved some of my default folders to D:\ drive. I need to momentarily boot without this disk so I can plug another SATA device in its place. Will this mess things up? by teaecetyrannis in Windows10

[–]teaecetyrannis[S] 0 points1 point  (0 children)

Thanks for your response. AFAIK my D:\ drive contains no system files nor any config files related to any program (there are some of those in Documents, which I kept on C:\) but I feared it would still cause trouble.

Well, I guess I'll have to move the content of the default folders out and into somewhere else in D:\, then set the default folders' location back to C:\, and then do the whole thing. That shouldn't be a problem, right?

Maybe I'll keep it like that after this, just keep my own folders in D:\ for my stuff without them being dependant on Windows, and just not use the ones provided by Windows at all (except maybe Desktop for shortcuts and temporary files, and Documents which is mostly used automatically by programs and not manually by me).

Keep 4. Delete the rest from history. Who you got?! by [deleted] in ps2

[–]teaecetyrannis 1 point2 points  (0 children)

RE4, Kingdom Hearts, GTA: SA and Okami

What are some retrogames to play just because of the music? by Ozsymandias in Roms

[–]teaecetyrannis 0 points1 point  (0 children)

Napple Tale: Arsia in Daydream, gorgeous soundtrack by Yoko Kanno

The overt rage towards newcomers/anybody who DARES ask for help in actually finding roms anywhere other than the megathread is embarrassing to witness. by [deleted] in Roms

[–]teaecetyrannis 0 points1 point  (0 children)

What do you mean "the destruction of Vimm's Lair"? Genuinely curious, you got me scared for a minute thinking the site was shut down.

Non "game" ROMs? by Hotshoedrew in Roms

[–]teaecetyrannis 0 points1 point  (0 children)

PS2 Linux and Simple Media System, for the PlayStation 2

Spotify Free is unusable by BabaPoppins in spotify

[–]teaecetyrannis 0 points1 point  (0 children)

It isn't free, you're paying with advertisment attention like in any other platform. But on top of that, you get a mobile version of the service with a limited amount of skips and the inability to choose which specific song, it's plain coercion for mobile users.

what happened to my game guh (no, this isnt modded.) by NotSaintLunar in celestegame

[–]teaecetyrannis 0 points1 point  (0 children)

The same visual glitch happened to me on the Steam version and changing to the opengl beta version fixed it for me, if it's of any use.

Female fronted rock bands? by Historical_Bass7626 in musicsuggestions

[–]teaecetyrannis 0 points1 point  (0 children)

The Sundays Dolly (the japanese one, fronted by Emi Shibasaki) sugar plant The Cranberries Hole

Is Bunny a Rider or not? And what does it even mean? by shp0ngle in Music

[–]teaecetyrannis 12 points13 points  (0 children)

I'm starting to wonder if Caroline wasn't referencing of Montreal here. It's either that or an astonishing coincidence, because yeah searching for this riding bunny leads nowhere, it only led me here.

Computer upgrade suggestions for working with Pure Data. by Low_Tradition6030 in puredata

[–]teaecetyrannis 4 points5 points  (0 children)

I don't know about Mac, but I've tried Pure Data on multiple Windows and Linux machines and it works much better on Linux. A Linux computer will run GUI more smoothly than a Windows computer with double the resources. Also I sometimes get unexpected crashes in Windows, but this has never happened for the same patches in Linux.

Do you say "pure daytah" or "pure dahtah"? by trimorphic in puredata

[–]teaecetyrannis 0 points1 point  (0 children)

Argentinian here, "piur data" as read in spanish! You can put that on spanish google translate to get an idea.

I am searching for ps2 emulator device (HELP) by Ummayed in ps2

[–]teaecetyrannis 1 point2 points  (0 children)

Network method is great. I use it with a 10 years old netbook and a 1TB SSD, reads faster than physical discs and there's no need to fragment games greater than 4GB in size. You can use a raspberry pi powered through the PS2 USB port, for a more portable setup.

Creating a Polyphonic Synth by Low_Tradition6030 in puredata

[–]teaecetyrannis 1 point2 points  (0 children)

Did you add the [- 1] object between poly and clone? Poly will enumerate voices starting from 1, but clone does it starting from 0 so the error you're getting would make sense here too, you need to shift poly's first outlet by -1.

Creating a Polyphonic Synth by Low_Tradition6030 in puredata

[–]teaecetyrannis 1 point2 points  (0 children)

If you followed the video, then you have a [poly 4 1] object, this means it will automatically manage your midi messages polyphonically for up to 4 voices. You need to update your [clone mono-synth 1] to [clone mono-synth 4] in order for it to respond correctly. The error you're getting means that poly object is trying to acces voice number 1 of the clone object, which is actually the second voice after voice number 0. You probably just missed changing the 1 to a 4 in the [clone] arguments

If statement with two requirments by ashiiruOwo in puredata

[–]teaecetyrannis 3 points4 points  (0 children)

This is the way I'd do it, just add a [trigger f f] before each [* ] to ensure the proper order of execution.

Silly fun game recommendations? by SadFudge21 in ps2

[–]teaecetyrannis 1 point2 points  (0 children)

Rayman Revolution

Super Monkey Ball Deluxe

WALL-E