"Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearPA
Some problems I have with Victoria 3

Every good that is produced has to be immediately consumed. There is no way to stockpile goods. I believe this is the primary issue that mostly causes the other problems. If you consume more goods than you produce, the price of the good goes up. On the contrary if you produce more than you consume, the price goes down. That's it. If for example you produce 100 fabric in cotton plantations and then consume 180 to make clothes in a factory, the only drawback is reduced profits due to high fabric price. 80 units of fabric missing won't harm the production of clothes in the factory whatsoever. Railways chug engines (apparently the trains have to be replaced with new ones every week). (note: IG = interest group) The personal ideology of IG leaders dictate what laws the entire IG supports. If for example a reactionary ass IG gets a progressive leader then the whole IG suddenly becomes progressive. The Armed forces IG gets its political strength from wealth and votes just like anyone else, even though they should probably have more due to controlling the unliving machines. --- Thanks for reading my ramble. Does anyone else get annoyed by these type of things?

21
9
sbc
Single Board Computers Spanish_Commie 11 months ago 100%
Milk-V duo with a little "gamepad" I made. My first time soldering!

Only 2 buttons are actually connected, but they work well. The duo comes without the connectors, so I had to solder some into it. It was a fun experience! For the people who don't know the duo, it is a very little board (something like an alternative to the RPi Pico) that runs a RISC-V chip! I bought mine from Aliexpress in a pack with other stuff for like 10€. Here is the underside of the gamepad thingy: ![A picture showing the underside of the gamepad. It has wires soldered into it.](https://lemmygrad.ml/pictrs/image/f562e9a8-7541-44b1-9178-613a35e115b9.jpeg) Not the best soldering job but it's to be expected since I don't have experience. I also made a little program in C to test the buttons: ![A picture showing a terminal window with " 'A' button has been pressed! " written several times on it.](https://lemmygrad.ml/pictrs/image/88efbb83-5716-4538-85ae-5801b61de13d.png) Every time I press a specific button the program prints a string to the screen. When pressing the other wired button the program ends. --- ::: spoiler Here is the source code in case anyone is curious ``` #include #include #include #include #include /// It's t1 - t2, in seconds double get_time_diff(struct timespec t1, struct timespec t2) { double a = (double)t1.tv_sec + (t1.tv_nsec / 1000000000.0); double b = (double)t2.tv_sec + (t2.tv_nsec / 1000000000.0); return a-b; } int main() { const int DEFAULT_COUNTER = 1; const double FRAME_TIME = 1.0 / 60.0; int BUTTON_A = 7; int BUTTON_B = 8; int A_high = 0; int A_pressed = 0; int A_just_pressed = 0; int A_counter = 0; int B_high = 0; int B_pressed = 0; int B_just_pressed = 0; int B_counter = 0; if(wiringXSetup("duo", NULL) == -1) { wiringXGC(); return -1; } if(wiringXValidGPIO(BUTTON_A) != 0) { printf("Invalid GPIO %d\n", BUTTON_A); } if(wiringXValidGPIO(BUTTON_B) != 0) { printf("Invalid GPIO %d\n", BUTTON_B); } pinMode(BUTTON_A, PINMODE_INPUT); pinMode(BUTTON_B, PINMODE_INPUT); time_t init_time; time(&init_time); printf("Init time: %s\n", ctime(&init_time)); struct timespec tick_start_time; timespec_get(&tick_start_time, TIME_UTC); struct timespec tick_end_time; timespec_get(&tick_end_time, TIME_UTC); // Start ncurses initscr(); while(1) { timespec_get(&tick_start_time, TIME_UTC); if (get_time_diff(tick_start_time, tick_end_time) >= FRAME_TIME ) { // INPUT if (digitalRead(BUTTON_A) == HIGH) { if (A_high == 0) { A_counter = DEFAULT_COUNTER; } else if (A_counter > 0) { A_counter--; } A_high = 1; if (A_just_pressed == 1) { A_just_pressed = 0; } if (A_counter <= 0) { if (A_pressed == 0) { A_just_pressed = 1; } A_pressed = 1; } } else { if (A_high == 1) { A_counter = DEFAULT_COUNTER; } else if (A_counter > 0) { A_counter--; } A_high = 0; if (A_counter <= 0) { A_just_pressed = 0; A_pressed = 0; } } if (digitalRead(BUTTON_B) == HIGH) { if (B_high == 0) { B_counter = DEFAULT_COUNTER; } else if (B_counter > 0) { B_counter--; } B_high = 1; if (B_just_pressed == 1) { B_just_pressed = 0; } if (B_counter <= 0) { if (B_pressed == 0) { B_just_pressed = 1; } B_pressed = 1; } } else { if (B_high == 1) { B_counter = DEFAULT_COUNTER; } else if (B_counter > 0) { B_counter--; } B_high = 0; if (B_counter <= 0) { B_just_pressed = 0; B_pressed = 0; } } // UPDATE if (A_just_pressed == 1) { printw("'A' has just been pressed!\n"); } if (B_just_pressed == 1) { // Exit the loop, which will end the program break; } refresh(); timespec_get(&tick_end_time, TIME_UTC); } } // Stop ncurses endwin(); return 0; } ``` ::: --- I hope someone finds this interesting! Thanks for reading.

1
0
leftistunix
Linux for Leftists Spanish_Commie 11 months ago 97%
Nova 9.0 (Cuban Linux distro) is out! I uploaded them to Pixeldrain for your convenience. https://www.uci.cu/universidad/noticias/presentan-nova-90-la-ultima-distribucion-cubana-de-gnu-linux

I'm really curious to see it in action so I downloaded it. There are two versions, Nova Escritorio (Nova Desktop) and Nova Ligero (Nova Lite/Lightweight). Curiously Nova Ligero seems to be only 200MB smaller than Nova Escritorio. (1.9GB vs 1.7GB) Here's some download links in Pixeldrain, for faster download speeds and in case the original servers are down when you want to download. --- ::: spoiler Nova Escritorio 9.0 https://pixeldrain.com/u/jf1TivHd ::: --- ::: spoiler Nova Ligero 9.0 https://pixeldrain.com/u/7SipXJ2b :::

39
3
neurodiversimemes Neurodiversimemes Responsibilities
Jump
  • Spanish_Commie Spanish_Commie 11 months ago 100%

    I think I have watched a video about it but without paying too much attention, I definitely should look more into it. Thanks for the suggestion!

    2
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearNE
    Neurodiversimemes Spanish_Commie 11 months ago 100%
    Responsibilities

    This is how responsibilities make me feel most of the time. I know I should stop neglecting my responsibilities but it's just so hard for some reason... I wonder if other people have a similar problem.

    16
    2
    palestine Palestine *Permanently Deleted*
    Jump
  • Spanish_Commie Spanish_Commie 11 months ago 100%

    Of course they gave the IDF soldier a dog for the pic 💀

    55
  • genzedong GenZedong Beijing urges restart of peace talks and return to two-state solution to Isr*el-Palestine issue
    Jump
  • Spanish_Commie Spanish_Commie 12 months ago 100%

    Does the CPC actually believe in a two-state solution? To me it feels like they just want to stay out of conflicts but what would I know.

    16
  • sbc
    Single Board Computers Spanish_Commie 12 months ago 100%
    $60 Pine64's Quartz64B 4GB V1.3 review 2023-10-09

    I'm not very good at reviewing stuff but I will do my best, if anyone knows a better methodology for a test or wants me to test something please tell me, I want these reviews to be the best they can be. --- ::: spoiler Post updates - 2023-10-09: Original version ::: --- ::: spoiler Ordering the board I ordered the 4GB RAM version board on **June 2023** alongside a 5V 3A power supply, here's the breakdown of the costs: - Quartz64B 4GB SBC: $60 - 5V 3A EU power supply: $7 - Shipping to Spain: $12 Total: $79, $67 excluding shipping. Unfortunately I don't remember how long it took to arrive. ::: --- ::: spoiler Hardware My board has a **Rockchip RK3566**, it has **4 Cortex A55 cores** running up to **1.8GHz** and it has **4GB LPDDR4 RAM**. I can see printed on the board that I got the V1.3 revision, and the date "2022_02_22" which I assume is the manufacturing date, curiously on "Twosday." The board has 2 buttons on the side, close to the SD card slot. I think one is a power button and the other a reset button, but it's not very clear to me. The board also has 2 LEDs, a green one signaling that the board has power and a blue one that blinks like a heartbeat signaling that the board is running. They are very bright, which is good in situations where there is a lot of ambient light but it can be annoying in low-light situations. At night when the lights are off it can very dimly light up a room, and the heartbeat LED is very noticeable in this situation. However it's not that big of a problem really, just slightly hard on the eyes when looking directly at the board. --- The connectors of this board are: - 1x HDMI (Full size!) - 1x Gigabit Ethernet - 2x USB 2.0 - 1x USB 3.0 - 1x 3.5mm Audio Jack with mic input - 1x 3.5mm barrel power input (To power the board) - 1x SD Card slot --- - 1x 40 pin GPIO - 1x DSI port - 1x CSI port - 1x RTC port - 1x M.2 slot (1x PCIe Gen2) - 1x SPI Flash 128Mbit - 1x eMMC module slot ::: --- ::: spoiler Software Before anything else I think it's very important to point out that X11 doesn't seem to work properly with this board, I don't know if it's a software or hardware problem but it seems like other people have this same issue. If I want to use the board as a tiny Linux desktop I must use Wayland, which is quite a problem as the Desktop Environments that support Wayland happen to be quite resource intensive most of the time. XFCE is pretty much unusable even when it is quite lightweight due to this problem, as it only runs on X11 as far as I know. I have tried to install LabWC (a Window Manager very similar to OpenBox that runs on Wayland) on this board's build of Armbian but I can't figure out how to do it. I'm saying this since that might be a deal breaker for some people. The Linux distros that I have tried in this board are: - Armbian - Manjaro ARM - Plebian Manjaro ARM has an image that comes with Sway, a Window Manager that runs on Wayland (so it doesn't have the X11 issues) and is quite lightweight. The Sway version comes configured in a fairly nice way, but it can see how someone could still find it awkward if they have never tried a tiling WM before. ::: --- ::: spoiler Desktop usability Currently I'm writing this post using the board, I'm running Gnome 44.3 on an Armbian build that originally came with XFCE. I'm using a 1080p 144Hz display and while I have seen some visual glitches the desktop runs fine as long as nothing resource intensive is going on. Firefox is not very fluid, but it is usable. It depends a lot on what pages you have open. Lemmygrad runs fairly well, but pages such as YouTube are quite painful to use. An arbitrarily selected YouTube video running at 480p 30fps drops around 10% of its frames, and loading stuff takes quite a while. Things get better on Invidious but it's still sluggish. LibreOffice Writer is usable but feels sluggish, especially when scrolling through a document. Moving the mouse in circles over Firefox puts the CPU at around 60% which is kinda concerning. Not moving the mouse or typing makes the CPU idle at around 1-6%. Moving the mouse in circles over btop running on a foot terminal window puts the CPU at around 25%. All of this is in a display running at 144Hz. ::: --- ::: spoiler Benchmarks and temperatures - 7z b ![pic:7z b benchmark](https://lemmygrad.ml/pictrs/image/35e95bba-db8b-4f88-8015-06c616277edc.png) The CPU seems to thermal throttle when approaching 70ºC, which probably explains why each consecutive result is lower than the one before it. I already have stuff to cool the board's chips on the way here, I will repeat these tests once they arrive. ::: --- Unfortunately the only other SBC I have is a Raspberry Pi 3B so I don't really have a point of reference to be able to tell if the board is worth it. I think the X11 issue is quite a problem that should be considered if you are eyeing this board. If you think something about this review can be improved or you want me to test something feel free to comment.

    1
    0
  • Spanish_Commie Spanish_Commie 12 months ago 100%

    The undemocratic dissolution of the Soviet Union seems to be visible in the graph, on the World line.

    16
  • comradeship Comradeship // Freechat Western doublespeak compilation
    Jump
  • Spanish_Commie Spanish_Commie 1 year ago 100%

    Expat / immigrant

    26
  • comradeship Comradeship // Freechat I think that religion/spirituality and socialism can coexist
    Jump
  • Spanish_Commie Spanish_Commie 1 year ago 94%

    I'm an atheist but I think we should respect people's religious beliefs. If someone is a good socialist then it shouldn't matter if they are religious or not, being anti-religious will only make religious people avoid socialism for no real reason, we don't get anything by being anti-religious.

    I mean, of course we shouldn't let religious institutions have power as they are usually quite reactionary, but the religious beliefs of people should be respected in my opinion.

    17
  • comradeship Comradeship // Freechat I'm going to study social integration
    Jump
  • Spanish_Commie Spanish_Commie 1 year ago 100%

    It's official education, here in Spain the course is called "Formación profesional de grado superior en integración social" I'm going private education (so I can study from home), though it isn't too expensive as it is in the US as we have a functional public education system private schools have to compete with. I have no idea what the equivalent of Formación profesional is in other countries.

    Hope that helps!

    Edit: Oh and yeah it is an actual job, at least I see it sometimes while scrolling through employment apps. (I forgor that part of the question lol)

    2
  • comradeship Comradeship // Freechat I'm going to study social integration
    Jump
  • Spanish_Commie Spanish_Commie 1 year ago 100%

    Apologies, I'm not sure what you mean 😅

    1
  • comradeship
    I'm going to study social integration

    I like helping people, and I think that due to my circumstances I would be able to understand more and be more empathetic towards the people I help once I (hopefully) complete my studies. I hope working as a social integrator will make me feel fulfilled. Wish me luck.

    27
    5
    fivenightsatfreddys Five nights at Freddy's Is there a possibility that he got a brain injury here?
    Jump
  • Spanish_Commie Spanish_Commie 1 year ago 100%

    3
  • thedeprogram The Deprogram Podcast On a r/thedeprogram post joking about some war criminal being fat
    Jump
  • Spanish_Commie Spanish_Commie 1 year ago 100%
  • thedeprogram
    On a r/thedeprogram post joking about some war criminal being fat

    Someone correctly pointing out that calling people fat is bad is downvoted, and someone called "literally_himmler1" replying with a nerd emoji is upvoted. I am going to commit sudoku.

    47
    6
    programming Programming Preferred Software Forge in the Global South?
    Jump
  • Spanish_Commie Spanish_Commie 1 year ago 100%

    I half-remember reading somewhere that GitHub isn't available in China but I'm not sure. OpenKylin, a Chinese Linux distro, seems to have it's repository hosted on gitee

    4
  • genzedonges GenZedongES Bienvenidos camaradas!
    Jump
  • Spanish_Commie Spanish_Commie 1 year ago 100%

    Hoal !!!

    2
  • games Games Did you play Workers and Resources: Soviet Republic?
    Jump
  • Spanish_Commie Spanish_Commie 1 year ago 100%

    I have played it a bit before, but I left the game since it was too hard to get into 😅

    Learning curve is vertical

    11
  • comradeship
    Do you think that organizing support for unhoused people would be a good proposal to make to the party I'm in?

    I'm in the PCPE, and they seem to focus a lot on educating and radicalizing people. That is important of course, but I thought that organizing material support for people that needs it would not only actually improve the lives of people but also show the general population that "the commies" aren't some bloodthirsty monsters but instead actual people that want a better world. What do you think? I think it's a good idea.

    27
    5
    games Games Interest in a Vintage Story server
    Jump
  • Spanish_Commie Spanish_Commie 1 year ago 100%

    I am definitely interested. I've had an itch for a multiplayer semi realistic civbuilding game since I started playing in the stoneworks Minecraft server. I've searched everywhere but I've never encountered a Minecraft server that satisfied the itch. This doesn't necessarily seem like it will go in a civbuilding direction but it still might scratch the itch anyway.

    I've tried hosting a vintage story server on an sbc before and I'm pretty sure I saw somewhere in the command line the game going something like "no players are online, stopping clock". I'm sure it wasn't worded anywhere near like that but you get the idea, the game could already be doing the stopping time when no one is online thing by default.

    Sorry for the formatting, I'm on my phone while taking a shit

    4
  • learnspanish Learning Spanish for Deplorable Tankies Videojuegos con audio o subtítulos españoles
    Jump
  • Spanish_Commie Spanish_Commie 1 year ago 100%

    Blasphemous is a game made in Spain, I've heard good things about it although I haven't played it.

    It's a 2D souls like metroidvania.

    3
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearNE
    Neurodiversimemes Spanish_Commie 1 year ago 100%
    ADHD moment
    57
    2
    leftistunix Linux for Leftists Prioritise RAM or processor?
    Jump
  • Spanish_Commie Spanish_Commie 1 year ago 100%

    I think nowadays 8GB of RAM doesn't really make the cut anymore depending on the workload, but you should keep in mind that upgrading a CPU will most likely force you to upgrade your motherboard as well, since by that time there will be newer CPUs that your motherboard won't support. Upgrading RAM in the future will be less expensive as you can just use new RAM sticks alongside the ones you already have though it will probably affect performance if they are mismatched.

    I think that having a fast CPU now will definitely be better on the long run, but that's just my opinion. There are probably other comrades more knowledgeable than me.

    3
  • leftistunix
    Linux for Leftists Spanish_Commie 1 year ago 100%
    Been trying Void Linux

    I'm liking it a lot, it's very barebones which is something I was looking for, and the package manager's command to install stuff is kinda hard to remember but does its job well. This might be my new daily driver now. Only issue is that since it's not as popular as other distros finding information specific to Void Linux might be inconvenient. Did any of you look into Void Linux? Do you like it?

    22
    6
    games Games It seems there exist a small amount of gamers who are okay
    Jump
  • Spanish_Commie Spanish_Commie 1 year ago 100%

    Seems to have been already nuked, or at least I'm getting a 404 with the link provided.

    13
  • comradeship
    Are kids even treated like humans?

    So I've been thinking for a while about this subject, and I finally decided to make a post about this some time after I saw a YouTuber say what I put on the title of this post. Thing is, I've noticed that very often young people and especially kids are treated as lesser beings, like if they were not humans beings with problems and lives of their own but just an annoyance that people have to keep up with. I remember when I was a kid and I wanted to cross a zebra crossing cars would just pass by without stopping more often than not. Now that I'm an adult they stop pretty much every time. I suspect it was because they didn't want to stop for someone they consider to be lesser than them. Also, a lot of people seem to think that being a kid means that you just play videogames or whatever all day, but don't these people remember when they were kids? I sure do. Going to school has been the worst thing I've ever had to endure. The only difference with having a job is that you don't get paid.

    72
    87
    comradeship Comradeship // Freechat Anybody else feel so annoyed when western leftists say "It WaSn'T rEaL sOcIaLiSm" despite the massive evidence to the contrary?
    Jump
  • Spanish_Commie Spanish_Commie 1 year ago 94%

    Primarily China. Some western leftists can't understand that having markets doesn't mean a country isn't socialist.

    34
  • comradeship Comradeship // Freechat have any of you had really weird or strange dreams?
    Jump
  • Spanish_Commie Spanish_Commie 1 year ago 100%

    I remember having a dream where Kim Jong Un visited me in my house. At some point he mentioned that he was hungry and I thought "oh shit I'm such a bad host I didn't get anything to eat" and then I straight up gave him a fucking banana to eat.

    One of the funniest dreams I've ever had.

    13
  • juchegang Juche Gang what does the Korean Friendship Association do exactly?
    Jump
  • Spanish_Commie Spanish_Commie 1 year ago 100%

    That explains a lot about Alejandro Cao de Benós.

    I'm pretty sure he says that Korea is the only socialist country 💀

    16
  • pigeon
    Pigeon Spanish_Commie 1 year ago 100%
    Pigeon chilling on a fountain

    A group of people approached the fountain to get water and the pigeon did not seem scared at all. I think I remember them closing their eyes for long periods of time, I assume as a sign of relaxation caused by the relatively cool water during the heat wave in Spain. I wish this pigeon luck and happiness.

    17
    2
    "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearGA
    Games Spanish_Commie 1 year ago 100%
    Anyone else plays Vintage Story?

    In case anyone doesn't know, it's basically a survival game with realistic mechanics. It takes a lot of inspiration from Minecraft and more specifically the TerraFirma mod. I was wondering if anyone else plays it, or at least know the game exists. It has some rough edges sometimes but it is very fun.

    10
    6
    moretankie196 Be sure to read the rule before you leave The way addiction can RULE your life...
    Jump
  • Spanish_Commie Spanish_Commie 1 year ago 100%

    Death

    9
  • comradeship
    Just told my mother that I'm a communist, she took it well

    I think that hiding my political views hinders my ability to organize, so from now on I will try to stop hiding. I told her through WhatsApp because I'm not good at face to face confrontations. Not sure how the rest of my family will take it. Thanks for reading 😊

    43
    7
    comradeship Comradeship // Freechat if you want to have some quick laughs, check out this liberal crying about us lol CW: comm linked has sinophobic depiction of Xi Jinping (you know the one)
    Jump
  • Spanish_Commie Spanish_Commie 1 year ago 100%

    The moderator of that community makes like 99% of the posts.

    That is some dedication to being wrong.

    33
  • leftlang
    Leftguistics Spanish_Commie 1 year ago 100%
    Being gender neutral in Spanish

    In Spanish everything is gendered, so being gender neutral is not as easy as for example English where you can just use 'they' or 'them'. Sometimes people use the 'e' instead of the o/a (which often mark the gender of words, for example gato/gata, cat in Spanish) but it can't always be used and it just sounds really weird for a lot of people, though that might just be because it is barely used. The other way to be gender neutral that I know is to say both the male and female versions of the word you are trying to make gender neutral, for example "trabajadores y trabajadoras" (workers[M] and workers[F]) but it's also not ideal as you have to say one of the genders first and it is pretty inconvenient to have to do that every time you refer to a group of people that is not guaranteed to be composed of one gender only. Anyway thanks for reading my post and I hope I find out about a better way to be gender neutral in Spanish. At least in Spanish there is never doubt how shit is pronounced, unlike in English. (Fuck English all my homies hate the English language)

    1
    0
    genzedong GenZedong Pledge Allegiance to Our Flag!
    Jump
  • Spanish_Commie Spanish_Commie 1 year ago 100%

    I doubt there were bad intentions in the post, even though it might be understood like that

    1
  • genzedong GenZedong Pledge Allegiance to Our Flag!
    Jump
  • Spanish_Commie Spanish_Commie 1 year ago 100%

    I think the downvoters misunderstood something, not sure

    1
  • leftistunix Linux for Leftists I've been trying out Gentoo, but imma hop to another distro
    Jump
  • Spanish_Commie Spanish_Commie 1 year ago 100%

    🤨

    1
  • leftistunix Linux for Leftists I've been trying out Gentoo, but imma hop to another distro
    Jump
  • Spanish_Commie Spanish_Commie 1 year ago 100%

    No way! 😱

    I'll take a look at these distros, though I'm not really too much of a beginner anymore.

    I actually come from Debian, but I hopped distros in hopes of finding an even better distro.

    2
  • comradeship Comradeship // Freechat *Permanently Deleted*
    Jump
  • Spanish_Commie Spanish_Commie 1 year ago 100%

    I like them. I understand that they aren't perfect but they don't need to be. They just need to be better than the alternative, and they sure are.

    In my humble opinion, not liking cooperatives under capitalism feels like a "it's not a perfect utopia therefore we'll just stick with the hellish situation we have now".

    I'm happy that you got this opportunity, comrade! Best of luck!

    21
  • leftistunix
    Linux for Leftists Spanish_Commie 1 year ago 94%
    I've been trying out Gentoo, but imma hop to another distro

    Everything just feels way more complicated than it needs to be. I tried installing Openshot (a video editor) but I couldn't figure out how to fix the error it spits out when I try to emerge it. I will now try out Arch and hope I don't need a master's degree to install packages. Edit: Gentoo isn't the first distro I've tried, I've been daily driving Debian for more than a year and just wanted to try it out since I heard good things about it. And also I didn't really need to use Openshot, I just wanted some video editor and arbitrarily chose to install that one. Also I guess I will just stick with Debian since apparently Arch is also complicated.

    17
    28
    animemes Anime - Socialism with Kawaii Characteristics Decided to spice up my fave anime boy. Originally an AI-generated pic from Twitter where I edited the original rainbow flag to the Russian tricolor in support of the SMO. Not meant to demean Pride mon
    Jump
  • Spanish_Commie Spanish_Commie 1 year ago 100%

    Not sure why so many downvotes, maybe because of the AI thing or changing rainbow flag to Russian one? Either way I don't think there were bad intentions :/

    1
  • minecraft minecraft Why are there 2 bridges next to each other?
    Jump
  • Spanish_Commie Spanish_Commie 1 year ago 100%

    I assume so people don't get run over by minecarts

    10
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearEM
    Employment Spanish_Commie 1 year ago 100%
    Just got my first wage

    5,5€ an hour according to my calculations. The first hour of work every work day (4 a week) is used to cover the bus tickets and buying breakfast during work. At least my workplace isn't too exigent with the work I do (since they get my work literally for free lol, the state pays my wage) and they let me go home half an hour early.

    1
    0
    leftistunix Linux for Leftists Where to start with Linux?
    Jump
  • Spanish_Commie Spanish_Commie 1 year ago 100%

    That is correct

    1
  • comradeship
    My mother wants to kick out a tenant, how to stop her?

    So my mother is a landlord, and she wants to kick out a tenant that isn't paying rent. I asked her if she was seriously going to kick someone out to the streets, and she said that the tenant has family and they could seek help from them. My mother threatened the tenant saying that if they don't give back the key, she would go to the civil guard. I need some ideas about what to tell my mother to try to stop her from putting someone on the streets. Any help is appreciated.

    27
    7
    genzedong GenZedong General Discussion Thread - Juche 112, Week 26
    Jump
  • Spanish_Commie Spanish_Commie 1 year ago 100%

    Yep! I have the pixel shop (a place to download any game you want on the switch) configured and it is amazing.

    I've been playing TOTK and Rogue Legacy 2 the most 😁

    2
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearEM
    Employment Spanish_Commie 1 year ago 100%
    I think my job is just company subsidies

    I'm pretty sure my salary comes from the government and not the company. It's supposed to be a remunerated internship (I think it translates to that) and we are told that there doesn't exist an employer-employee relationship between the company and us. So I'm pretty sure the company is just getting free labour. Also it's been like a month and a half and I haven't seen a cent of my salary 😑

    1
    0
    leftistunix Linux for Leftists Should we make a pinned post in here that explains the basics of Linux?
    Jump
  • Spanish_Commie Spanish_Commie 1 year ago 100%

    zoidberg salute thank you for your service

    4
  • leftistunix
    Linux for Leftists Spanish_Commie 1 year ago 100%
    Should we make a pinned post in here that explains the basics of Linux?

    I think it could be very convenient. I can make the post if you want, just comment here what you think the post should have and I'll try to put something together. Edit: It seems that [@polskilumalo@lemmygrad.ml](https://lemmygrad.ml/u/polskilumalo) is already working on one so this won't be necessary lmao

    24
    7
    minecraft minecraft Should we focus the main town to be in one building style?
    Jump
  • Spanish_Commie Spanish_Commie 1 year ago 100%

    I think I deactivated fire spread back when I managed the server, but I'm not 100% sure it actually works. Someone should put some wooden planks in a safe area and light a fire to see if it spreads.

    3
  • leftistunix Linux for Leftists Where to start with Linux?
    Jump
  • Spanish_Commie Spanish_Commie 1 year ago 100%

    I personally have 2 Linux distros alongside Windows in my computer, I suggest you don't remove Windows just yet since you probably will need it until you have everything set up on Linux, and there are some programs and games that will only run on Windows.

    If / when you install Linux on your PC, I think it would be a good idea to look into how to make a dedicated /home partition (/home is the folder where all the user folders are) so if you want to try another distro you can still access the stuff your user had in the distro you were using before.

    Though making a dedicated /home partition is not very straightforward if you've never done it before. However I'm sure if you ask around here people will help you.

    Perhaps it would be cool to make a masterpost on this community explaining some basic stuff about Linux. I could probably do it but I would need help from more experienced Linux users to proofread the stuff I put there, as I don't want to post misinformation.

    6
  • genzedong GenZedong General Discussion Thread - Juche 112, Week 26
    Jump
  • Spanish_Commie Spanish_Commie 1 year ago 100%

    Not sure what you mean, I brought someone my switch so they could pirate it, since to do that a chip needs to be soldered inside and I don't have the means or the expertise to do that.

    2
  • minecraft minecraft I found an ancient city!
    Jump
  • Spanish_Commie Spanish_Commie 1 year ago 100%

    Is that-

    Is that an x-ray!?

    Alo police?????????

    3
  • Spanish_Commie Spanish_Commie 1 year ago 100%

    It's radio free asia, so it's definitely a fabrication

    19
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearEM
    Employment Spanish_Commie 1 year ago 100%
    [Poll] Do you feel like the work you do at your job benefits society?

    I'm curious to know how common 'bullshit jobs' are among the Lemmygrad community. Upvote the response that you feel more identified with. Feel free to add your own responses by putting [R] at the start of your comment (just so we all are sure which comments are responses and which are regular comments)

    1
    0
    "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearPA
    I survived this through the power of friendship.

    That noodle you see there is Yugoslavia. I had given up when I saw that I was being pushed back on all fronts and I lost most of my factories... But when my borders went ^w^ I just... held. And then time passed. My allies were supplying me with much needed weapons the whole time and later they ended up liberating my land. The power of friendship, comrades.

    9
    2
    minecraft minecraft Two questions and a small update
    Jump
  • Spanish_Commie Spanish_Commie 1 year ago 100%

    Yes, I definitely think putting up a whitelist is a good idea.

    Also I'm in favor of updating the server to 1.20 I want them camels

    10
  • genzedong GenZedong General Discussion Thread - Juche 112, Week 26
    Jump
  • Spanish_Commie Spanish_Commie 1 year ago 100%

    I had someone pirate my switch 👍

    Fuck Nintendo best 60€ I've ever spent

    13
  • comradeship Comradeship // Freechat What did you do this weekend?
    Jump
  • Spanish_Commie Spanish_Commie 1 year ago 100%

    It's being a good experience so far, though I do have to say that installing stuff in portage is not as straightforward as for example apt, since packages take a while to install and sometimes there is "masked" stuff which takes me a few extra steps to install.

    Also googling stuff about Gentoo seems to flood the results with "how to install Gentoo" which is kinda inconvenient, but not really Gentoo's fault.

    Well I'm only saying negative stuff about it but I genuinely am enjoying the experience.

    2
  • minecraft
    minecraft Spanish_Commie 1 year ago 100%
    What should we do with what currently is my de facto house?

    At first I was thinking of making it into public housing, but that became unnecessary before I could finish the building. I currently use it as my place, but it feels unfair to pretty much have a mansion while everyone else have smaller houses. I have finished two floors, I would post a pic but images don't seem to work on the grad currently. Any ideas?

    9
    3
    minecraft
    minecraft Spanish_Commie 1 year ago 100%
    I will be giving the server to @ComradeEd

    As you most likely noticed, I wasn't able to properly take care of the server. That's why I will be giving the server data to Edward, who offered to host it. Of course, the IP is going to be different once it's set up. Remember to use the new IP once it's available! I'm assuming Edward will make a post around here once it's set up. Thank you for your understanding!

    24
    0
    "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearME
    meta Spanish_Commie 1 year ago 100%
    [FIXED] I can't see the post saying that Lemmycraft was down

    Edit: Fixed, thanks nemesis! I had to select the languages in my profile settings on firefox mobile, though it seems that isn't the only way to do it. This is the post: https://lemmygrad.ml/post/773089 If I open the link I can only see the title of the post. I can see that there are 11 comments but they don't show up. The only thing I can think of why that is is that the post was made with the English language option instead of Undetermined. But other people could see it and pinged me (otherwise I wouldn't have noticed that the post existed in the first place) Do I have misconfigured settings? I see that in profile settings there is a language selector thingy, but I can't figure out how it works.

    7
    15
    minecraft
    minecraft Spanish_Commie 1 year ago 100%
    Server is back up

    It seems it stopped for some reason while I was absent. Anyway, it's back up. Same IP as before, sorry for the inconvenience.

    16
    6
    leftpiracy
    Left Piracy Spanish_Commie 1 year ago 100%
    Android 13 (pixel experience) running on Xiaomi Mi Max 2

    Not sure where to post this so I'll put it here. I had some problems with data at first but at the end of the day It was well worth it 👍 My phone's battery and performance are just as mediocre as before, but at least the phone is way more usable now and it supports apps that couldn't be installed before (such as Jerboa, my phone had Android 7.1.1 💀). My phone cost me I think like 200€ back in 2018 and while the battery has certainly degraded, it was originally really big so I don't feel the need to get a new phone, especially now that I put Android 13 in it.

    18
    8
    comradeship
    Physical violence vs psychological/verbal violence

    I hate how physical violence is (correctly) seen as a horrible thing while psychological/verbal violence is frowned upon but not as much as physical violence. My brother used to bully me every day until I moved out into my grandparent's house. There were two instances where I snapped and attacked him physically, and ONLY THEN did my family intervene. Due to my neurodevelopmental disabilities I am unable to verbally defend myself, so I was being harassed and bullied every day and I couldn't do anything about it. And because psychological violence is not perceived to be as serious as physical violence, when I responded in the only way I was able to (physically) the situation changed from being perceived as "Al-Anda's brother being annoying" to "this must be stopped immediately". He also threatened to call the police and shit, since physical violence is illegal while bullying and harassing someone every single fucking day isn't. I swear, this shit makes me so angry...

    39
    14
    neurodiversity
    Neurodiversity Spanish_Commie 1 year ago 100%
    Anyone want to help make a list of what not to say to neurodivergent people?

    If there is something that neurotypical people say that you don't like, post it as a comment here! Hopefully this will also help vent some frustrations.

    4
    1
    "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearNE
    Neurodiversimemes Spanish_Commie 1 year ago 100%
    Me starting yet another new project while being perfectly aware I have countless unfinished ones

    At least I'm learning 😅 Also the ifunny.co watermark is a feature, not a mistake.

    6
    2
    imadeathing
    I made a thing! Spanish_Commie 1 year ago 100%
    I made a Java map game thing peertube.al-andalusian.es

    (Note: feel free to use the peertube instance, that would be cool 🥺) I made a Map game in Java. There is no gameplay though so you just kinda look at it go. Each pixel is a province on zoom level 1, and its color depends on the map mode and if it is in bounds (inside the actual map and not above or below). The map is randomly generated, and each province has its own height, temperature and moisture value. The color of the province is calculated using these values. Also, the map loops horizontally seamlessly since the height, temperature and moisture values are taken from the surface of a cylinder (without the top and bottom surfaces) instead of just a rectangle. On map generation states (I call them that instead of countries to future-proof for civil wars, since for example Taiwan is not its own country but a participant in the civil war of a country) are created one per land province, and they attempt to expand their borders by taking bordering land from one of their neighbours every fixed frame (they don't all do it every fixed frame, only a bunch that are randomly selected). Mapmode 2 is the borders mapmode, provinces are colored using their state's color if they border a state that is not their holder. Mapmode 3 just colors every land province to its holder's color. I hope you find it interesting, it is really fun to make this kind of stuff! 😊

    1
    0
    minecraft
    minecraft Spanish_Commie 1 year ago 100%
    There are skins now

    Just do /skin set *Some Username* to set your skin to that account's skin. Example: /skin set ElRichMC

    2
    0
    "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearGA
    Games Spanish_Commie 1 year ago 100%
    Lemmycraft should be up now (Now 4real)

    RUNNING AGAIN I HOPE Edit 2: NOW it should be up!!!!!! Newest IP is 49.51.143.157

    22
    10
    genzhou
    GenZhou Spanish_Commie 1 year ago 97%
    How will decolonization work?

    I thought about it but I couldn't think of a proper answer. I guess it would make the most sense to let the colonized decide what to do with the colonizers, since they are the victims. And what would happen with the people that were brought in as slaves by the colonizers? I hope someone smarter than me can explain 🙏🥺

    36
    48
    "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearGA
    Games Spanish_Commie 1 year ago 100%
    Lemmycraft server instance was reposessed, some hours of progress were lost.

    I woke up to a message saying that the instance was reposessed, some hours of progress were lost. I won't be able to put the server back up until I get access to a PC (rn I'm on a phone on my way to work, I'll try to put up the server via my work computer). Also, I think I figured out a way to never lose data like this again. When the server is up I will make a post with the new IP and stuff, though I don't know if I'll be able via the work computer. Sorry for the inconvenience.

    10
    10