blobjim [he/him]
- 4 Posts
- 10 Comments
Are you using some kind of IDE application? Or just standard GUI apps?
blobjim [he/him]@hexbear.netto
politics@hexbear.net•Mass arrest at LGBTQ club in Venezuela prompts outcry over discriminationEnglish
9·3 years agoThe rest of the article, which OP didn’t include, is a bunch of anti-Maduro anti-PSUV stuff where they’re clearly using quotes from people in the opposition.
blobjim [he/him]@hexbear.netto
politics@hexbear.net•Mass arrest at LGBTQ club in Venezuela prompts outcry over discriminationEnglish
8·3 years agoThe rest of the article is also a hit piece against PSUV and Maduro and can’t find a single positive thing to say about them. So it’s hard to say if it’s telling the whole story. They clearly only interviewed people who are in the liberal opposition.
blobjim [he/him]@hexbear.netto
Movies and TV Shows@lemmy.film•**THE LAST VOYAGE OF THE DEMETER Discussion Megapost** 2023-08-11 🚢🦇English
7·3 years agoIt’s neat that they made the poster look kinda like a book cover.
blobjim [he/him]@hexbear.netto
World News@lemmy.ml•Candidate in Ecuador's presidential election shot deadEnglish
2·3 years agorip bozo
blobjim [he/him]@hexbear.netto
Linux@lemmy.ml•EFISTUB: If I have both CMDLINE configured in kernel, AND via efibootmgr, which one gets executed / takes precedence?English
1·3 years agoLooking in https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/init/main.c?h=v6.5-rc5 there’s a function setup_command_line that seems to set up the built-in command line which is called after setup_boot_config
ok idk what that all was. Here’s something more interesting:
In
arch/x86/kernel/setup.cit says/* append boot loader cmdline to builtin */. I think that suggests that the builtin comes first. And I assume that the code that queries the command line scans left to right and selects the first instance of an option because there doesn’t seem to be anywhere that “loads” args into some kind of structure.#ifdef CONFIG_CMDLINE_BOOL #ifdef CONFIG_CMDLINE_OVERRIDE strscpy(boot_command_line, builtin_cmdline, COMMAND_LINE_SIZE); #else if (builtin_cmdline[0]) { /* append boot loader cmdline to builtin */ strlcat(builtin_cmdline, " ", COMMAND_LINE_SIZE); strlcat(builtin_cmdline, boot_command_line, COMMAND_LINE_SIZE); strscpy(boot_command_line, builtin_cmdline, COMMAND_LINE_SIZE); } #endif #endifI guess the best thing to do would be to run linux in QEMU with the EFI system that’s provided by a third party thing and test it out.
blobjim [he/him]@hexbear.netto
Death to NATO@lemmygrad.ml•Not even trying to hide the military industrial complex anymore.English0·3 years agolmao they put some ridiculous propaganda in there too, “they require ammo mostly produced by Russia, and it’s supporters, China, and North Korea”. They probably do produce that ammo, but calling them “it’s supporters” is kinda 🙄

Definitely interesting to see inside an ammunition factory though.
blobjim [he/him]@hexbear.netto
technology@hexbear.net•Google sells their domain name business to SquarespaceEnglish
1·3 years agoJust transferred my domain to Alibaba Cloud 😎
its got a way crappier UI lmao
but Tencent Cloud is more expensive
blobjim [he/him]@hexbear.netto
technology@hexbear.net•Google sells their domain name business to SquarespaceEnglish
1·3 years agoYou can transfer domain names to other registrars. I think you can just transfer them before they go to squarespace.



does emacs have an integrated terminal view inside it? Seems like maybe it’s just creating a shell for you to use inside the editor or something? Either way, “bash --login” is just a login shell which I think basically just acts like if you had just logged in instead of inheriting most stuff from whatever process launched it. It in’t “logging in” like some user account or something. Unlikely that it’s something nefarious. At worst, it’s just usual buggy linux software interacting in weird ways.