A devastated Software Systems student, libre software promoter. Sometimes I draw pixel art. Very fond of classical Computer Science and Touhou project.

Autism® Inside™

  • 5 Posts
  • 167 Comments
Joined 1 year ago
cake
Cake day: March 28th, 2023

help-circle
  • I see marketing via AI tools and bots unethical. Many things can be done via conventional marketing.

    1. Contact content creators (especially oriented towards Linux and Free software, like TheLinuxExperiment or DistroTube, or some gaming channels, as well) to create communities of their channels on Lemmy.
    2. Somehow reduce content about world news and politics. Many people go to the Internet to step aside from the real world events.

    Also, majority of Reddit users are teenagers. The older generation of Reddit has fled away. We must think twice what target audience we want to bring in. I don’t want Lemmy to become a place where alt-wing anti-establishment political leaders bait naïve teenagers and take them into the rabbit hole (aka scenario described in The Social Dilemma).


  • My dark side: I feel disengaged in my duties, I tend to flee away from teamwork and skip deadlines, especially when the workflow is stressful. Of course, mates hate me for that :(

    Others’ inconsistencies I see: tendency to make careless decisions without thinking twice, or miscommunication (incorrect wording) of intended actions, especially in programming and/or designing things. Also, not admitting an expectation to get some sort of reward/compensation when giving things for free.

    Example:

    • A: You gave me this, thank you! What can I do/buy to you in return?
    • B: No need, thank you.
    • (one year later)
    • B: I gave you that, so I want you to do something in return.
    • A: You told me I’m not obliged to repay you!
    • B: You should’ve understood it by yourself!
    • A: …(Reimu mode activated)

    Jokes aside, I am generous but this unspoken liability pisses me off.


  • VSC has JSON configurations for executing tasks but it’s non-trivial to configure. A proper IDE would provide a graphical, fool-proof configuration for that because it’s easy for non-professional to accidentally destroy your JSON file.

    Also, if you have to use terminal in an IDE for trivial tasks, then it’s also not an IDE.

    Not that I liked GUIs, but with IDEs, like Eclipse or Visual Studio, one wouldn’t have to configure something with JSONs.



  • Please stop treating code editors as if they were IDEs.

    VS Codium/Code is not an IDE, and it never claimed to be. It’s a code editor, like Kate, Vim, Neovim, etc. It only integrates a language server for code editing and some static analysis. It does not integrate a debugger, build system, test system, execution, etc.

    IDEs are old school large systems that integrate a code editor, build system, test automation, etc., such as M$ Visual Studio (not Cod(e|ium)), CodeBlocks, Eclipse, JetBrains software suite, etc. They are complete opposition of the UNIX philosophy that the program must do only one thing and do it well.

    Besides, when dealing with IDEs, I used to like Eclipse C/C++ and Corrosion IDE because one could easily add link-time dependencies to a project and it generated sophisticated makefiles for you. Besides, if you have a more custom workflow, like auto-generation of source code from a domain-specific language, there’s no IDE that can help you. This is the downside of IDEs. Also, nowadays, I found that NeoVim+Coc with Meson build system makes the same thing and even better.