I ask because sometimes I feel very silly when writing clumsily in English and even sillier when I have to look up how to spell a particular word.

I want to know if I’m the only idiot that it happens to or if on the contrary it’s something generalized.

(Mi idioma es el Español, por cierto)

  • Treczoks@lemmy.world
    link
    fedilink
    arrow-up
    2
    ·
    1 hour ago

    This actually depends on the kind of project. In larger and longterm projects I write my comments in English. In quick jobs like writing a source code generator or data swabbler that I need once or relatively short term, I use German. It does not make much of a difference for me, though, and I have a script that walks over a source tree to find some common German words just in case I had written something in German by accident.

  • 𝘋𝘪𝘳𝘬@lemmy.ml
    link
    fedilink
    arrow-up
    8
    ·
    3 hours ago

    German here.

    I am not writing anything in my code in German. All of my code, my variables, my default texts, my comments, my documentation, my UI strings, etc. are always and explicitly in English.

    The only German I use, is when I provide translations for UI or documentation.

  • Matriks404@lemmy.world
    link
    fedilink
    arrow-up
    2
    ·
    edit-2
    3 hours ago

    Writing detailed and technical comments in English is easier that saying a simple English sentence in real life for me, lol.

  • kubok@fedia.io
    link
    fedilink
    arrow-up
    9
    ·
    5 hours ago

    Always English. I live in a country where developers are hard to find. Chances are that I will get colleagues who do not speak my native language (yet).

  • i_stole_ur_taco@lemmy.ca
    link
    fedilink
    arrow-up
    15
    ·
    11 hours ago

    This is expected Canadian source code:

    // cache the colour in case we need it later for the neighbour
    color = fetchColor();
    neighbor.color = color;
    

    When language keywords are all written in American English it’s foolish to try to author your code in a different language. But comments are fair game.

  • Daemon Silverstein@thelemmy.club
    link
    fedilink
    arrow-up
    8
    ·
    11 hours ago

    I’m Brazilian. For personal projects and snippets, especially if I’m going to share their code publicly (e.g. GitHub or GitHub Gists), I often use English. However, when it’s a project from a company I’m working for, I use Portuguese, as every company I’ve worked for so far are Brazilian (and my coworkers were Brazilian as well).

  • folkrav@lemmy.ca
    link
    fedilink
    arrow-up
    7
    ·
    11 hours ago

    I’m French speaking, but I write all code and comments in English, all the time. The code is basically English keywords and symbols, the mix and match just looks weird, makes it harder to share snippets for help or debugging with non-speakers. Especially in code that will be read by other people after the fact, it also tends to make it less likely that this person will be able to understand it - maybe they’ll hire an offshore team or some guy who just immigrated…

  • edinbruh
    link
    fedilink
    arrow-up
    7
    ·
    12 hours ago

    Depends. Generally English, unless they are “directed” to one specific person like the professor who’s gonna grade it. But even then I might go with English anyway.

    Oh I also use my language when I’m leaving an important warning to myself in a config file, like “this is needed because X! don’t touch it! If you touch it do Y!”

  • superkret@feddit.org
    link
    fedilink
    arrow-up
    8
    ·
    14 hours ago

    Comments are in English, but output is in German because I only write for myself, my OS has German localization, and English output would look out of place.

  • BlessedDog@lemmy.world
    link
    fedilink
    arrow-up
    23
    ·
    17 hours ago

    This is interesting, I’ve thought of this before.

    I write comments and commit messages in English, mainly because programming is collaborative. I am a member of a local association of young programmers, and in the community (discord, meetups) we speak Finnish, however all interactions on github are in English, so are function and variable names, as well as comments. If someone makes a PR and it’s reviewed, it happens in English, even if both parties are native Finns.

  • algernon@lemmy.ml
    link
    fedilink
    arrow-up
    9
    ·
    15 hours ago

    If I’m working for someone else (company or otherwise), I’ll write comments and docs in whatever language I can speak that they want me to (which pretty much means I write comments in English, because I rarely work for Hungarian companies nowadays, and even the ones I did work for preferred English, and these are the only two human languages I can write :().

    When working on my own projects, it is always English, because Hungarian doesn’t have good translations for many of the technical terms, so half my comments would be English borrowed words anyway. Might aswell write the rest in English too. Also makes it easier for others to chime in, because there are a whole lot more people speaking English than Hungarian.

    It was harder in the beginning, when my command of the English language was far worse, but even then, half-Hungarian/Half-English comments just looked weird, and more jarring than full English, even if that English was kinda bad.

  • crypto@sh.itjust.works
    link
    fedilink
    arrow-up
    4
    ·
    12 hours ago

    I code in English by habit, comments included. I sometines write comments in French when writing code just for me, but code I write that is meant to be used by others is in English.

  • reesilva@bolha.forum
    link
    fedilink
    arrow-up
    12
    ·
    16 hours ago

    I write in the official communication language of the company, because that’s guaranteed that everyone that will be hired will have to speak that language. I came from Brazil and it is a massive country and most of the population doesn’t have access to good English courses, so I like to go with the easiest solution for all future joiners

    • Daemon Silverstein@thelemmy.club
      link
      fedilink
      arrow-up
      2
      ·
      11 hours ago

      I’m not sure if it’s a São Paulo (as in the state, not the city) thing, but I had English classes when I was in public high school (“ensino médio”). They weren’t the best English courses out there (i.e. they weren’t comparable to Brazilian schools that specialize in English courses such as CCAA, CNA, Fisk and Wizard), but they offered a good start for those who had no prior knowledge of the English language. It’s also worth mentioning that people who work in IT have more potential to come into contact with communication in English because a lot of documentation is in English. But I totally agree with you that most of the population does not have quality access to English courses.

  • GissaMittJobb@lemmy.ml
    link
    fedilink
    arrow-up
    6
    ·
    14 hours ago

    I’ve always been writing comments and using variable names in English, at all jobs I’ve had. Probably also the non-professional code before I started writing code professionally.

    Part of this is that I’ve been working in a lot of companies with non-Swedish speakers, and another part is that it’s just kind of been expected that the code and everything around it is in English.