promitheas

joined 1 year ago
[–] promitheas@iusearchlinux.fyi 4 points 6 months ago

Helldivers 2 is currently occupying my mind 24/7. Yes there are a few bugs here and there, but the game is just so good they don't really matter in terms of spoiling the experience. It is a 4 person co-op game and its really fun if you find a group of friends you can play with, or a good group of randoms who communicate. However, you can play solo, you just need to change up your playstyle for certain missions, like go a bit stealthier. Honestly try it, and if you want to try the group aspect of it join the official discord where there are lfg channels you can find people to play with.

[–] promitheas@iusearchlinux.fyi 1 points 6 months ago

Honestly i think as citizens we should start setting up guillotines outside parliaments. That should remind them that they may feel invulnerable but we can always get them.

Bonus: to really scare them, set up a little cooker thing with a table next to it. The phrase "eat the rich" comes to mind, though in this context it would be more like eat the powerful

[–] promitheas@iusearchlinux.fyi 0 points 6 months ago* (last edited 6 months ago)

Not surprising that they used the Irish Data Protection Office to implement these. They probably paid them off quite handsomely, or they are simply incompetent. Im leaning more towards a mix of both with incompetence being higher given how my reddit case was handled with them.

[–] promitheas@iusearchlinux.fyi 4 points 6 months ago

Skyrim for under 4 euro (iirc) in 2012 in a christmas sale.

[–] promitheas@iusearchlinux.fyi 21 points 6 months ago (5 children)

"Employees speak new languages." Is what translate gives me, but I would translate it more as "The ones working speak new languages" or "Those who have employment speak new languages". I still dont get the meme though, so the context might matter more and my translation could be off

[–] promitheas@iusearchlinux.fyi 21 points 6 months ago (1 children)

Evidence of life elsewhere in the universe. It would be so cool. I just hope its far enough we cant get there and fuck everything up for them (or that they cant do the same to us)

[–] promitheas@iusearchlinux.fyi 17 points 7 months ago

Very interesting doc! Its sad how this is the state of things, but something must be done. I hope with the news weve been receiving from Germany recently that this will change long term, and not just for the current government. Hopefully it will snowball and have a ripple effect on other EU countries.

[–] promitheas@iusearchlinux.fyi 5 points 7 months ago* (last edited 7 months ago)

As far as I remember it was so that they couldn't use it to create their own paid version. I think the dev wanted it to be free, but found this loophole. If I find the video I'll edit this comment and link it

Edit: i was partially wrong above. Its not for the reason I thought it was, but rather as a business strategy. Individual users keep it relevant so theyre allowed to keep it for free, while businesses have to pay for the license to avoid being sued. Businesses are its main source of revenue. Here is a video explaining it. Its not the video I remember watching, but it seems to be correct.

[–] promitheas@iusearchlinux.fyi 12 points 7 months ago (2 children)

Correct me if im wrong, but I think I read/watched something a few years ago which basically explains why winrar has a free trial but never actually enforces it. It had something to do with copyright law details, and how making it a paid product extends the copyright protections on it so that corporations cant legally use the code for a longer time. Im not sure if I'm even remembering it correctly, because it was several years ago

[–] promitheas@iusearchlinux.fyi 30 points 7 months ago

Quality space nerd humour

[–] promitheas@iusearchlinux.fyi 2 points 7 months ago

Ive been looking for something like this for a while. Ill need to try it out

[–] promitheas@iusearchlinux.fyi 2 points 7 months ago

Ah, a man of culture

 

Hello everyone.

A while ago I got the message on both Facebook and Instagram to either consent to viewing targeted ads or paying the subscription fee. I did neither, and it soon went away. Since yesterday though, I got it again and have no access to any part of facebook, most importantly the accounts section of the settings from where I can delete my account.

How can I delete my account without consenting or paying the fee?

Thanks in advance

 

Hello everyone!

I just got my GMMK Tenkeyless keyboard, which is the first one I own with RGB. I would love to be able to customise the RGB, but being brand new to it I'm a bit lost.

A little preface: I am on Linux. I think this is important later on when I mention Via.

So to start, I looked on the supported keyboards page on the qmk website, and couldn't find my keyboard by searching for GMMK. Furthermore, if I go to the Glorious Gaming site I can't find any other keyboards other than what appear to be their current flagship ones (hence I can't find any specific board information or anything like that). One thing i did find is the software for the GMMK 1 TKL from here, but it is an .exe and hence I can't use it. I did think of running it through wine, but given that there will be firmware flashing involved I'd rather not risk going through a compatibility layer or messing anything up.

I also tried the Via webapp, but when I try to Authorize device I get a browser popup in my permissions section which states that there are no compatible devices found. I'm unsure if this is because it is not supported by Via or if its because it can't detect it because I am on Linux.

I also went through the qmk configurator but unsurprisingly my specific model was not in the list seeing as I couldn't find it in the supported keyboards list I mentioned earlier.

So finally for my question: Is there any way I can configure the RGB on my keyboard without having to find a windows machine and using the GMMK 1 software?

Many thanks in advance!

 

Hello everyone! Summer is coming soon which means the Isle of Man TT and in addition to that the other major event that interests me is the MotoGP which has already started. I would like to watch these live, but I can't find any streams for the life of me by the usual methods (search engine, piracy streaming sites).

How does one find such streams normally? There must be someone pirating them and broadcasting live on the internet, right?

Thanks in advance!!!

 

EDIT: Literally 1 second after I pressed the post button I got an idea and thats what it was. Why does that always happen? xD

The solution was that my player_hand[] and dealer_hand[] arrays had a size of DECK_SIZE / 2, but I was initialising them to 0 from within the for loop where I was initialising the deck[] array (which has a size of DECK_SIZE), so the last 24 0s of one of those where overflowing into deck[]...

Hello everyone!

I am trying to make a simple blackjack (21) game in C, to practice some pointer stuff, and I am running into an issue with the function that initialises all my arrays. The way I am going about setting everything up, I have an integer array for a standard deck of 52 cards (values from 1 to 13, each 4 times), an integer array for the shuffled deck, and 2 more arrays for the player and dealer hands (irrelevant at this point as they are not used yet).

My issue is that after successfully initialising the deck array (the non-shuffled one) and outputting the values from within the for loop that sets them, I get what I expect to see which is:

1, 2, 3, ..., 13, 1, 2, 3, ..., 13, ... (so on for 52 cards).

But when I output each value from a different for loop in the same function, the first 24 elements (0-23) are 0s each time I run it. I can not figure out why that would be. I ran my program through valgrind which reported that there were no memory leaks.

Here is the relevant code:

#define DECK_SIZE 52

int initialise_decks(int* deck, int* shuffled_deck, int* player_hand, int* dealer_hand, int size)
{
	printf("=================INITIALISING==================\n");
	for (int i = 0; i < size; i++)
	{
		deck[i] = (i % 13) + 1;
		player_hand[i] = 0;
		dealer_hand[i] = 0;

		printf("deck[%d]: %d\n", i, deck[i]);
	}

	printf("+++++++++++++++++++++++++++++++++++++++\n");
	for (int i = 0; i < size; i++)
	{
		printf("deck[%d]: %d\n", i, deck[i]);
	}
	printf("+++++++++++++++++++++++++++++++++++++++\n");


	return INITIALISE_DECKS_SUCCESS;
}

int main() {
	srand(time(0));

	int deck[DECK_SIZE];
	int shuffled_deck[DECK_SIZE];
	int player_hand[DECK_SIZE / 2];
	int dealer_hand[DECK_SIZE / 2];

	int initialise_status = initialise_decks(deck, shuffled_deck, player_hand, dealer_hand, DECK_SIZE);
	if (initialise_status != INITIALISE_DECKS_SUCCESS)
	{
		return INITILIASE_DECKS_FAIL;
	}

	return PROCESS_EXIT_NORMAL;
}

If you need to try it out for yourself here is the link to the github repo

 

Hey everyone. A while ago I ordered a keyboard from ebay for my T480, but I failed to notice that the one I got was for the T480s, therefore not compatible with my laptop. In the process of checking it out I lifted one of the connecting tape thingys (idk what theyre called) and some of the black plastic covering on the back of the keyboard ripped a bit. Its completely unused and new otherwise, and just been sitting in its packaging since then.

A few weeks ago I came across a local shop that also has some thinkpad stock, and I'd like to see if they'll buy it off my hands. I want to repair it first though, and the obvious first thought for someone inexperienced like me is to use some kind of glue. I didn't do anything yet, so here I am asking for advice. Would using some kind of super glue cause any issues? If yes, what is a good way to repair it?

1000011164 1000011163

 

I have two accounts logged in.

A and B.

When I get a notification for something that happened on account A lets say, the "heading" (idk what to call it) lists account B but the notifications under it are clearly for account A.

1000011162

In the image above the two notifications are from account A but the "heading" is account B.

 

Hello everyone. I just tried to create an account with linode and got the automated cancellation email due to fraud, which left a bad taste in my mouth about the company before I even had the chance to get started.

So I am looking for alternatives that won't break the bank, have linux options, and are fairly easy to use once you get up and running. I dont need to do anything complex, just host my small hobby projects that I'm hacking away at. I don't have anything ready now, but I thought that with new years and all that it might be a good time to snag some deals.

Do you guys know of anything that fits? Thanks!

Edit: Decided to go with Oracle's Always Free option, as at this time being a student (i.e. poor) and just wanting to mess around and learn I can't justify going with a non-free option when a free on is available. I am however stuck on the part where I need to create my instance. I'm getting the out of capacity error, which after reading up on means there aren't available resources for my selected region. I can either try again daily to see if at some point they will be available or select a different region (which as far as I can tell means closing and reopening the account which I want to avoid).

 

Whenever I click a server invite link in my browser for example, I get the xdg-open popup window which in turn opens my browser with a link in the following format:

discord:///invite-proxy/some numbers

I'm relatively familiar with xdg-mime commands, but I'm not sure what the "filetype" I should be associating with my discord.desktop file should be. Anyone that can help?

Thanks

 

I've been seeing a few of this type of post, so I decided to share mine. Now, you might be wondering "why the heck is this guy posting his steam playtime chart in a Linux gaming community, when most of it is windows?"

Well, that's because Linux is part of the chart. Last year it wasn't. Just like all previous years. However this year, even if late in the year, I have playtime on Linux.

About half a year ago I built my first PC with Linux in mind from before getting the parts (first time I knew I'd be using predominantly Linux from the start). I still have my windows disk because I haven't got round to moving all the files from there yet, so its still formatted as NTFS and just mounted so I have easy access. I havent booted it since building the PC. I havent needed to. Sure I cant play Destiny 2 or Apex for example, but ehh. Never really played Apex much before anyway, and I'll live without destiny 2.

Heres to 2024 being 100% penguin, or at least being far more than windows 🍻

 

Hello guys.

I am trying to play vanilla wow using private servers with lutris, and can't get anything to work properly.

I stumbled across this post which has people discussing this topic, but interestingly there is a link to github docs.

I follow the instructions in both this and this but even so, when I go through Lutris to add a game and select to search website for installers, then search for battle.net and follow the installation steps I get the error below:

lutris-wrapper: /home/mart/.local/share/lutris/runtime/winetricks/winetricks
Started initial process 513661 from /home/mart/.local/share/lutris/runtime/winetricks/winetricks --unattended arial
Start monitoring process.
------------------------------------------------------
warning: You are using a 64-bit WINEPREFIX. Note that many verbs only install 32-bit versions of packages. If you encounter problems, please retest in a clean 32-bit WINEPREFIX before reporting a bug.
------------------------------------------------------
Using winetricks 20230212-next - sha256sum: 2d7770aa1f49f42ad9dafb092110dbf49fa6581738f6b80488cf0d7f59b2de72 with wine-8.0-2754-g48789536649 (Staging) and WINEARCH=win64
Executing w_do_call arial
------------------------------------------------------
warning: You are using a 64-bit WINEPREFIX. Note that many verbs only install 32-bit versions of packages. If you encounter problems, please retest in a clean 32-bit WINEPREFIX before reporting a bug.
------------------------------------------------------
Executing load_arial 
grep: warning: stray \ before /
grep: warning: stray \ before /
Executing cabextract -q -d /home/mart/Games/battlenet/dosdevices/c:/windows/temp /home/mart/.cache/winetricks/corefonts/arial32.exe
------------------------------------------------------
warning: Running /home/mart/.local/share/lutris/runners/wine/wine-ge-8-24-x86_64/bin/wineserver -w. This will hang until all wine processes in prefix=/home/mart/Games/battlenet terminate
------------------------------------------------------
Executing /home/mart/.local/share/lutris/runners/wine/wine-ge-8-24-x86_64/bin/wine C:\windows\syswow64\regedit.exe /S C:\windows\Temp\_register-font.reg
fsync: up and running.
wine: RLIMIT_NICE is &lt;= 20, unable to use setpriority safely
wine: failed to open "C:\\windows\\syswow64\\regedit.exe": c0000135
------------------------------------------------------
warning: Note: command /home/mart/.local/share/lutris/runners/wine/wine-ge-8-24-x86_64/bin/wine C:\windows\syswow64
egedit.exe /S C:\windows\Temp\_register-font.reg returned status 53. Aborting.
------------------------------------------------------
Monitored process exited.
Initial process has exited (return code: 256)
Exit with return code 256

I'm at my wits end. The closest I got was by directly running the WoW.exe file for a client I downloaded with wine from the terminal. The game started up without audio, and then obviously I wouldn't be able to put in my private server's credentials to log in. Please help me

EDIT: I ended up installing battle.net through bottles and I'm currently installing Diablo3 and Hearthstone - will see how they play.

As for WoW classic, whenever I run the 1.12 client I have in its own bottle it opens and then crashes. If I switch the runner to caffe it takes longer to crash, but my mouse seems to disappear when I take it over the launcher and I can't click on anything.

EDIT 2 SOLUTION: I skipped lutris/bottles altogether and as per a commenters suggestion I looked into adding it as a non-steam game to steam. It ended up working beautifully! Here is the video I watched that shows how to do it on a steam deck

413
Meta payment message (iusearchlinux.fyi)
submitted 1 year ago* (last edited 1 year ago) by promitheas@iusearchlinux.fyi to c/privacy@lemmy.ml
 

So I got the message from instagram about either paying or using it free (at the cost personalised ads) just now.

1000010454

Doesn't this go against the GDPR? Either way, is there a FOSS alternative for instagram like piped is to youtube? It seems like a good opportunity to stop using the official app, even though it would be better to not use instagram at all (sadly not an option for me right now).

Any suggestions, and if so, are there any that provide functionality for: stories, posts, dms? Those are the 3 things I use instagram for.

Many thanks!

Edit: For messaging I do use beeper, though some media like carousels and posts sent to my dms cant be shown in there, so for those cases I open the official app.

Edit 2: many people have suggested pixelfed. Ive heard of it, and want to use it, but unfortunately the only reason Im still sticking with instagram is because I have very dear friends who would never change to anything non-mainstream. Theyre important enough that im willing to not delete it just yet, but I dont want to agree to either pay or pay with my data.

What im looking for is more like a piped for youtube, thing. So a frintend that has instagram content/features, but isnt the main app and avoids the problems I listed above

Edit 3: I ended up installing the site as a PWA on my phone as thats the only device I use it on, and uninstalled the official app. Thanks to everyone for all your input!

view more: next ›