promitheas

joined 1 year ago
[–] [email protected] 4 points 7 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.

[–] [email protected] 1 points 7 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

[–] [email protected] 0 points 7 months ago* (last edited 7 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.

[–] [email protected] 0 points 7 months ago

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

[–] [email protected] 21 points 7 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

[–] [email protected] 21 points 7 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)

[–] [email protected] 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.

[–] [email protected] 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.

[–] [email protected] 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

[–] [email protected] 30 points 7 months ago

Quality space nerd humour

[–] [email protected] 2 points 7 months ago

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

[–] [email protected] 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

 

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.

 

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

2
Meta payment message (iusearchlinux.fyi)
submitted 1 year ago* (last edited 1 year ago) by [email protected] to c/[email protected]
 

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!

12
Title (iusearchlinux.fyi)
 
 

Hey everyone. I noticed theres an ootion in the settings to change what the tabs on top are showing, and I changed the last one from All to Multicommunities. However theres nothing there as I havent figured out how to create a multicommunity yet. Anyone have any advise? Thanks!

 

Hello guys.

This semester at uni I'm taking a Network Fundamentals course which is basically Cisco's Introduction to Networks course (we're literally doing just that). Im wondering how applicable and if so in what ways it is to real life situations where one might want to setup their own home network. I realise that if you don't use cisco equipment the commads will be different, but if we consider the fundamental knowledge, will what I learn doing this course help me in the future when I will be setting up my own "server room"?

Thanks! 😁

view more: next ›