/r/transprogrammer

Photograph via snooOG

a programming community for trans people

/r/transprogrammer

11,788 Subscribers

44

I want a career change. Need help!

Hi! My name is Emma (24mtf) from Mexico. Just bit of context. I don’t have college education because I was deported while getting a music degree. So I haven’t been able to get jobs that are not in the service industry but i’m also autistic so it never goes well. At the moment I do full service sex work and sell content online but i want to stop as soon as possible because it takes a toll on my mental. So I thought that maybe programming could be a good option for me. I have little experience with html and css but not with programming languages. What is my best bet to learn and secure a job in the least amount of time possible? I appreciate any tips and recommendations. :)

20 Comments
2024/04/12
17:02 UTC

68

Anyone interested in joining a collective to work on software for trans folks?

I’m working on some tools for voice training and I want to find other folks who want to work on software together and help each other on projects. I have a lot of ideas of directions this might go, but in its simplest form we would probably just have a discord and some kind of regular non-required meetings to discuss projects and do project planning.

67 Comments
2024/03/20
01:38 UTC

215

Fuck you Devin

16 Comments
2024/03/14
13:47 UTC

11

Is it possible to move from Customer Service to IT? If so, how?

Hi, y'all!

Just checking on possibilities and looking for real advise.

Since 2022 I've been working as a CS Rep and/or as a medical interpreter. The thing is that I don't want to keep taking calls, I'd like to move a bit up within the same type of companies.

I know that all of these requiere a Help Desk area (IT, for this purpose), so that's what I aim for.

I want to know if this is possible to do, to become an IT member coming from a simple CS Rep position. It's not something I want to be stuborn about, again, I'm just checking on possibilities.

I've been looking at Cisco CCST Cybersecurity and CCST Networking courses, may these be usefull? If not, what would be the right path to follow for this purpose?

Any advise is welcome, thanks in advance. 😊✨

10 Comments
2024/03/13
22:46 UTC

57

Changing / Abandoning GitHub Username

I’ve been a programmer professionally for almost a decade, and academically for almost a decade before that while I was doing my doctorate. I have a (very) modest publication record, and some small contributions to very large projects that I care about. I have a GitHub repo with a couple hundred stars (whatever that’s worth).

And - probably because I was so deeply closetted and I put so much stock in usernames that I didn’t dare reveal anything about my heart - when I first signed-up for GitHub I grabbed my full legal name as my username.

And that’s what I’ve been using everywhere for like… 15+ years. It’s in my dissertation. I use it for work. It’s my single sign-on to all kinds of infrastructure tools. Forum posts link to repos with my username in the URL. I get at’d in Slack all day via that username due to the GH integration.

Now I’m 3 months on estrogen, and I ain’t turning this ship around. I’m not out yet except to a handful of close loved ones. I just wish I had picked literally anything else as my username. I live on GitHub.

I’m not trying to go stealth. TBH I don’t want to rewrite git history - too many forks, too many links, I know it can’t work. So I’m at peace (even if slightly uncomfortably) with the fact that my birth name is out there forever because of my historical record. Like, fuck it, I’m trans. See me.

But I want a new username. So what’s the strategy? What are the pros / cons and subtle implications? Do I just change it in GH? Do I grab a new username and transfer repos over from the old? Will just changing it in-place fuck up OAuth integrations? Anyone wrestled with this before?

13 Comments
2024/03/09
00:20 UTC

30

github x linkedin

Not really trans related but i have a question and didn’t find anything on the sub but im looking for my first job and sending out resumes and stuff and i don’t know if i should try to get as many linkedin certifications as possible or make more projects to add to my github/continue working on projects i want to improve.

linkedin certifications would be a bit of a tool to get because money but idk if only a good github would be enough

i know someone that’s more on the rich side and he has a shitty github (like he has about 5 repos and it’s not even that special one where you can put your info) but a ton of linkedin certif and landed a job in a nice startup so i don’t know how to go about it. if it’s really needed i can get the money but it will be a bit of a hustle.

can anyone help me?

14 Comments
2024/03/01
15:28 UTC

74

what google's latest ai thinks of me

4 Comments
2024/02/26
11:15 UTC

19

Wanting to move somewhere accepting

Hello everyone, im from Singapore and I'm currently studying Robotics. I'm in a very unaccepting environment and its whittling me down mentally. I have my internship period coming up next year and I've been shotgunning applications all over EU but no luck yet. Is it generally very tough for non EU to break into EU? I would appreciate some advice on what I can do and what's the best way to proceed with this

5 Comments
2024/02/23
05:22 UTC

45

Working Remotely

Hey folks.

My fiancée is trying to find a job as a software dev/engineer that will let her work remotely from Portugal or another EU country, but she keeps getting rejected. She has tons of qualifications (other than Python and Java) and over ten years in the industry and still can't even get an interview, even without disclosing our future plans to move abroad.

Does anyone have any kind of lead? We're desperate.

22 Comments
2024/02/21
02:02 UTC

28

Looking for good video guide to Linux for beginners

Hello people from computor, I want to get into Linux and looking for a guide how to install it and boot it up. Also what extention for playing Windows games do you recommend? Thanks!

10 Comments
2024/02/20
07:27 UTC

36

Authenticating a PSVita Game Cart requires the GC to be in a trans state !

1 Comment
2024/02/16
06:56 UTC

13

Problem with making a tui code editor in c++

Hi, i'm making a simple TUI code editor like vim. And i have this problem with snapping text to fit in the terminal.

This is how i tried achiving this.

std::string printable(const std::string& text, int length, int cursorIndex, int lines) {
    int startIndex = cursorIndex;
    int endIndex = cursorIndex;
    int remainingLines = lines;
    
    // Calculate the start index of the displayed substring
    while (startIndex > 0 && remainingLines > 0) {
        if (text[startIndex] == '\n') {
            if (--remainingLines == 0) {
                break;
            }
        }
        --startIndex;
    }

    // Calculate the end index of the displayed substring
    remainingLines = lines;
    while (endIndex < text.length() && remainingLines > 0) {
        if (text[endIndex] == '\n') {
            if (--remainingLines == 0) {
                break;
            }
        }
        ++endIndex;
    }

    // Adjust start index to prevent negative values
    startIndex = std::max(startIndex, 0);

    // Extract the substring to be displayed
    return text.substr(startIndex, endIndex - startIndex + 1);
}

int leght

This is the lenght of line in terminal

int cursorIndex

Is just the index of cursor in the text (just a string)

int lines

This means how many lines can fit into a single terminal

What i tried to do:

  • Make sure that text always fits
  • Make sure that the cursor is seen at all times

Thanks for help.

Very appriciated.

3 Comments
2024/02/12
07:17 UTC

120

Heads Up about a Transphobe in the Emacs Community

Lemme know if this isn't the right type of post for this subreddit but, given the current climate of things, I don't want any trans people accidentally walking into dangerous situations unexpectantly.

This is mostly for any Emacs users here as the person in question seems to be active there and written quite a few packages for Melpa.

github-alphapapa keeps trying to go to bat for a transphobe who's gotten himself kicked off quite a few platforms for transphobia (including SourceHut, as mentioned in the link, which apparently takes a far stronger stance on the subject than I would've anticipated): https://www.reddit.com/r/emacs/comments/1akokey/comment/kpgpw6k/?context=3.

He keeps claiming that the transphobe was simply targeted due to religious beliefs (while falling back to, "Well, do we know that his Christian beliefs are transphobic?" every time someone point out what those "Christian" beliefs were that got him removed) while also threatening that the pendulum is swinging the other way soon (like that isn't terrifying, given our current cultural environment) and the truth is coming out. Like, someone let me know if I'm reading something that isn't there but it really feels like like he keeps threading the line between arguing that being anti-Trans is a Christian belief but, also, we can't be upset over the anti-Trans beliefs because that would be against religious beliefs and, then, we'd be the real bigots.

Normally, I'd just leave a comment so he doesn't feel like people just agree with him and he has actual pushback and leave it at that but I noticed he's fairly active in the Emacs community, having written quite a few packages for Melpa (some of which I've noticed, from my web history, I've looked at, in the past).

He doesn't seem very vocal about this willingness to defend transphobes (given he refuses to say, "His Christian beliefs are that Trans people don't exist," but keeps trying to phrase it as, "SourceHut says he was transphobic but are we to just take their word?" tells me he's well-aware that this is a position for which he might receive blowback) which means he could easily continue with good standing amongst people while clearly being…unsafe for trans people.

I mostly just wanted to give any Emacs users here a heads up; his GitHub, as stated via his Reddit username, is https://github.com/alphapapa. I'm gonna be keeping an eye out for him and, given him generally being mum about these beliefs, I figured any trans Emacs users had a right to be aware and able to be on the lookout, as well. I'm not normally one for spreading screenshots or the like of others but the idea of him getting into positions of power within Emacs without anyone knowing genuinely worries me (especially with his pendulum talk).

He blocked me but, in case the comments get removed at any point, I'll also put a screenshot of the exchange in a comment, below; again, anyone let me know if I'm reading anything that isn't there. I kept trying to check my emotions in case, maybe, he was being sincere and maybe just uninformed and my gut was making me respond more strongly than warranted but his last comment about how the "opposition" (opposition to what? Trans existence?) comes from everyone had real "silent majority" vibes and his repeated return to insisting that the ban was due to beliefs and, also, we couldn't possibly know what those beliefs were (when I kept pointing out it was advocacy and we could know what he was advocating for) feels purposeful in making things murky so the uninformed would take sympathy. I dunno.

14 Comments
2024/02/10
03:11 UTC

161

Tech Trans folks need to start thinking about helping their non-tech friends flee red states.

I'm a trans person in tech and I make a decent living. I suspect many of the over 11,000 members of this subreddit are in the same boat. But with ludicrous numbers of anti-trans bills getting proposed, and many of them passed, it's becoming increasingly unsafe to live in certain states. Florida is probably the worst; the Florida government just declared that trans people using an ID with a changed gender marker is "fraud". (Note especially this quote: "even out-of-state trans motorists could be charged with fraud under the new FHSMV policy". Know any trans people with a changed gender marker on their ID in Florida? They could get arrested any day now.)

This is incredibly scary crap and we need to start helping people who want to flee red states (including most trans people in Florida) to do so.

We're coders, we're techies, a lot of us have money. Let's put some of it to some good for the sake of our friends and our community. I've already reached out to my trans friends in Florida and some of the other nastier red states, and I am asking you to do the same.

I'm imploring all of you: Start talking to your friends in the worse states on this map. If they want out, help them get out, if you at all can. Things are going to get worse before they get better. If Trump wins, this stuff could get worse at an exponential rate. We have to start helping people now, while it's still relatively possible to move trans people between states.

37 Comments
2024/02/03
06:27 UTC

59

Are you out at school/work?

I've just started at my local college in their Software Development program and am navigating if I should be out or not about being non-binary and using they/them pronouns. Most people would read me as my AGAB (a man), despite being non-binary, so I've gone pretty under the radar as of now gender wise.

So my question for the folks in this sub is: are you out at school? Why/why not? What has been your experience in the CS world when coming out?

I've mostly been in queer circles for the past few years before this so it's a bit of an adjustment being in a space like this.

TIA!

16 Comments
2024/01/28
16:26 UTC

26

Wanting to work with more trans folx

Hi everyone! My name is Kody (they/she) and I’ve had a great year working at Meta in integrity (basically safety and security at other companies). I’ve found people quite accepting, great benefits for transitioning, and feels like I am helping protect people from dangerous content. I realize Meta isn’t perfect but feel like I’ve had great impact on the world despite everything.

I’d love to work with more trans folx and was wondering if anyone was looking for a career switch?

If so please DM me!!!

Pasting the general script here as well:

We are #hiring! Org: Cross-Meta Integrity (XI) Engineering org Role: 2+ YOE -  Frontend Software Engineers / Backend Software Engineers/API Backend Engineers Location: Menlo Park/Seattle/London/Washington DC

My org, Cross-Meta Integrity (XI), has multiple open roles across Menlo Park/Seattle/London/Washington DC. Our mission at Meta is to protect people and businesses, and preserve voice and economic opportunity.

If you are passionate about making a meaningful impact in protecting the voice of Meta users and supporting businesses, this role is an incredible opportunity for continuous growth. You will immerse yourself in emerging technologies and best practices that shape the future of integrity. 

If you are interested or know someone who might be, please DM me the resume and relevant details to help with applying and expedite the process. Specifically for L4 roles, please apply directly here as well: L4 - Product Gen - https://lnkd.in/gP8tai2B L4 - System Gen - https://lnkd.in/g95PhVyN

9 Comments
2024/01/25
01:45 UTC

78

Using Git and PGP while not leaving traces of ever living as a cisgender

I live in a country where passing as a cisgender person is basically a requirement in order to find a job, therefore I have a problem with tools like Git or PGP.

Git keeps your track of the history, and while changing the username is possible, the references in previous commits can never be removed.

PGP has a similar problem with, which requires meeting people IRL, often requiring to show your ID in order to prove your identity and build your web of trust. With a pseudonym or a different name than your legal name, it becomes harder, as you have no way to prove who you are in such case.

The problem is that I'd like to transition before I get a job, however, in my situation it's impossible because I live with unaccepting parents. Is there a way to later transition early in career in a way that keeps my gender identity a private matter without trashing my Git history and PGP Web of Trust?

10 Comments
2024/01/25
00:51 UTC

164

Jennel Jaquay, legendary TTRPG and Video Game trans designer, died last week

She co-founded the DnD magazine The Dungeoneer and worked on a lot of modules. She was also a designer on Quake, Halo Wars, and Eve Online. As an elder trans woman, she carved a path through a toxic, male dominated industry that other trans people now walk. As a game dev myself, ive benefited from her contributions and so greatly appreciate her.

6 Comments
2024/01/17
22:30 UTC

22

Brand new, just a few questions about the industry and personal experiences

Hi all! I'm a 19 year old trans gal. I've been considering going into a computer science field as a almost complete newbie (I've been on computers since I was a literal child though) and teaching myself some coding (html and c++).

I've sort of had a hard time since I turned 19, basically my entire teens I wanted to be an artist and wanted to learn music or music production but I realized I just haven't been doing anything to work toward those goals, so here I am almost 20 with the same skills I had when I was 14. So I thought what's something I've always been pretty ok with and similarly interested in? Computers!

I suppose the question I'm asking is 19 too old to start my learning and going into software development? Perhaps game development? Next to music I have always been extremely passionate about everything tech related, but everyone I know from college or highschool have been coding since they were like 12 lol. When did everyone here start taking coding or Comp sci serious?

I apologize if this came off as ranty or against the rules but I was just wondering.

7 Comments
2024/01/17
20:06 UTC

88

Reasons for programming attracting trans people

Not seeing if there is a previous post about this but I've been thinking about what drew me to programming and I'm wondering if other people have similar experiences. I think there were two main factors that resonated with be even before I knew I was trans:

  1. Genderless. In the zone it feels like there is nothing but a direct link between the computer and my brain. What I am wearing or what I feel like fades into nothing. On marathon coding sessions I could become so disconnected from my body that I would forget to eat or use the bathroom. I am sure this was used to escape my dysphoria. I encountered some toxic environments in college and later in my career but by that point I was already set on the programming path.
  2. Correctness. Part of my survival mechanism was to believe that my intuition and feelings were lying to me and could not be trusted. I dabbled a bit in art, writing, filmmaking and was able to produce output but never trusted myself to say if it was any good so I was never able to improve. I remember being excited about programming because if you made the program do the thing that was expected and it didn't run slowly that was good enough, no fuzzy quality judgements needed. Later I realized I was good at it and could magically write really good programs but I attributed that to experience rather than intuition.
29 Comments
2024/01/16
20:58 UTC

15

Playlist to bring so much memories + BlahajOS update

Remeber coding blahajOS to it.

btw i managed to recreate some base functions of the os since i lost that sd card, long way to go.

the playlist: Playlist

https://preview.redd.it/n7zp4o5vpvac1.png?width=841&format=png&auto=webp&s=a4e6a17ec56fc275c6f40bdb855617c267b5f46a

1 Comment
2024/01/06
20:26 UTC

28

grepped my new name, looks nice!

Just grepped my new name into my eCommerce platform, and now 11,112 files have been updated with my new name in the top comments. Ahhh... love it! Sometimes it's the little things that feel best!

6 Comments
2024/01/01
20:07 UTC

22

How do you realize / become trans

well, how do you realize u r / become trans

(just out of curious

EDIT: im tran and is anxious and confused theses days

18 Comments
2023/12/17
01:22 UTC

93

Any other FtM programmers?

Hi! I feel like I rarely ever meet any others.

I'm not out at work and all my coworkers on my team are cis guys. Some of them make a point to say "guys and gal" and it's fucking hell. Like wooo trying to be inclusive but awkward and I don't wanna be here.

21 Comments
2023/12/16
23:46 UTC

0

me thinking about telling my grandparents that i am a transgender human being #2023🏳️‍⚧️🇺🇲

2 Comments
2023/12/15
15:41 UTC

130

Based and swag stickers reduce both errors and compile time

20 Comments
2023/12/13
23:31 UTC

393

“men”

21 Comments
2023/12/11
03:53 UTC

69

As a trans programmer

I reserve the right to be referred to, not as a "non op" trans woman, but as a NOP/no-op trans woman

8 Comments
2023/11/21
20:56 UTC

Back To Top