• Activity
  • Votes
  • Comments
  • New
  • All activity
    1. As I get older, I get more and more disillusioned with "activism", and I'm fine with this

      Long story short, I grew up believing that a great deal of worth of someone's life was effecting change, especially politically. That's why I valued activism. It took courage, especially...

      Long story short, I grew up believing that a great deal of worth of someone's life was effecting change, especially politically. That's why I valued activism. It took courage, especially considering I don't live in a developed country.

      The older I got and more problems I faced, I started to realize how unsatisfactory, even hollow this was. Modes of activism I engaged in didn't seem to fulfill me emotionally anymore, they were mostly impersonal, and they didn't seem to change anything. I have a lot of views that are extremely unorthodox for the place I live in, and I don't see any political movement that internalizes those values. I am extremely alienated from the "nation" I am supposedly part of, and from the political movements within it.

      Another angle is that I recently realized how misguided I was. I was mostly doing mental labor, believing in the axiom that ideas can change things. But after some time and readings, I started thinking activities that aim for collective action and concrete changes (e.g. syndicates) were much more important. These are not available to me.

      I feel like I have wasted a lot of my time. I pursued ideals more than my own emotional needs, believing they would make me happy and fulfilled, and they didn't. I pursued a way of engaging in politics that felt good but didn't effect change.

      Don't get me wrong, while this is exasperating, it's also extremely liberating, joyful even. I enjoy the moments of quiet destruction that bring about the new. I no longer feel ashamed to admit I want comfort and stability in my life, and I don't want to take unnecessary risks. I have enough problems as is.

      With this being said, I haven't given up on effecting change. I think it's much more convoluted and different than what I imagined when I was younger, and it's not generally about "going out there and showing up" or writing political texts and such. There are also levels to creating change, as it's not a binary thing.

      At this point, I want to primarily live for myself, participate in some kind of change without risking myself to the point of overwhelming anxiety, and make more personal and real connections with people in general, including during effecting change.

      What I've written here is a bit rough, but it's still an ongoing and raw process for me, and this post is more of a conversation topic, rather than a properly structured argument. I am interested in hearing your opinions. Has anyone had similar experiences, or things this post reminded you of?

      31 votes
    2. On M*A*S*H, was Klinger a cross-dresser? Was Klinger trans?

      I had a long-running discussion about this last year with a trans person on the Fediverse. Before that conversation, it had never even crossed my mind that Klinger was anything other than a...

      I had a long-running discussion about this last year with a trans person on the Fediverse. Before that conversation, it had never even crossed my mind that Klinger was anything other than a cis-het guy desperately trying to exploit a weird Army regulation to escape from a war zone ... who may admittedly have become a bit too attached to his wardrobe in the process.

      However, she pointed out that Klinger was the closest thing to a role model she had on TV growing up at the time, and that she had definitely seen and identified a lot of traits in Klinger that strongly suggest he (she?) was a semi-closeted trans character, effectively pulling a double-switch, pretending to be a "regular guy" who was pretending to be a cross-dresser just to get out of the Army, while actually having found a way to be openly trans in the US Army all the way back in the 1950s.

      Thoughts?

      15 votes
    3. How can I completely and permanently remove the ability to access the internet from a Debian derivative?

      The machine will be a laptop. So let's say I'm doing this on Antix Linux or MX-Linux, which are both based on Debian. I already set up everything that I want. Now I wish to make that installation...

      The machine will be a laptop.

      So let's say I'm doing this on Antix Linux or MX-Linux, which are both based on Debian. I already set up everything that I want. Now I wish to make that installation incapable of accessing the internet ever again -- even if I want it to. However, I wouldn't want to achieve that in a way that will negatively affect any application I might need. How can I do that?

      You may be curious about my motivation. It is simple: that machine should be only for writing and nothing more. Maybe I'll use YLINAT, @Areldyb's Timasomo project.

      For the purposes of my usage, it is nothing more than an electronic typewriter with a screen. That is a drastic measure but I have ADHD and I need to write. I'm afraid that if I don't do something about it I'll see myself in a difficult situation regarding deadlines. I'll just take the laptop with me to a quiet place and leave the cell phone at home.

      Every day I will take my writing off the laptop via USB and back it up.

      4 votes
    4. Weekly US politics news and updates thread - week of April 15

      This thread is posted weekly - please try to post all relevant US political content in here, such as news, updates, opinion articles, etc. Extremely significant events may warrant a separate...

      This thread is posted weekly - please try to post all relevant US political content in here, such as news, updates, opinion articles, etc. Extremely significant events may warrant a separate topic, but almost all should be posted in here.

      This is an inherently political thread; please try to avoid antagonistic arguments and bickering matches. Comment threads that devolve into unproductive arguments may be removed so that the overall topic is able to continue.

      3 votes
    5. Weekly Israel-Hamas war megathread - week of April 15

      This thread is posted weekly - please try to post all relevant Israel-Hamas war content in here, such as news, updates, opinion articles, etc. Extremely significant events may warrant a separate...

      This thread is posted weekly - please try to post all relevant Israel-Hamas war content in here, such as news, updates, opinion articles, etc. Extremely significant events may warrant a separate topic, but almost all should be posted in here.

      Please try to avoid antagonistic arguments and bickering matches. Comment threads that devolve into unproductive arguments may be removed so that the overall topic is able to continue.

      2 votes
    6. React: Some comments from a beginner

      New job. I've been wanting to learn something new for a while, so I took a project where a lot of React is done. I'm learning it from scratch while I work with React. I have some comments about...

      New job. I've been wanting to learn something new for a while, so I took a project where a lot of React is done. I'm learning it from scratch while I work with React.

      I have some comments about it.

      1. React makes front end work a lot more like programming -- I like that!
      2. Javascript has changed a lot, and for the better, since I last used it over a decade ago.
      3. The React-Redux tool kit is the bomb. It should be integrated/absorbed into React. I can't see any reason not to use it, even for small applications as it is less wordy wherever you use it.
      4. The updating of state values should be more automatic, especially for flag variables not tied to GUI components. It is the major source of hassles with React
      5. Udemy React videos. My company makes them available free of charge to employees. I've sampled videos from a number of courses. I'm not a fan of the instructors showing you how to do things in older, less efficient ways first in a learning/demo project, the ERASING that code to do it a better way. The should include copies of the project at each stage if they do that. I finally figured out that the best way to take notes I can use later is to comment out the old code and put the new more efficient next stage stuff on top.
      6. React tests really need to improve. They are often more time consuming than the code itself. The tests have forced me to change my code or do needless testing to get the tests to pass. I had one situation where no matter what I did React test said I didn't cover the code until I broke an else clause off into it's one if clause. Blech.

      All in all I've been enjoying learning React. It is neat new ( to me ) thing.

      I feel sad that I will likely forget it all when I go back to my specialty language.

      1 vote