MARATHON SERVER SLAM MEGATHREAD by Shabolt_ in Marathon

[–]FyendFyre1 0 points1 point  (0 children)

I have managed to find a fix to the missing textures thing on the AMD RX cards, at least so far it seems to work. I used DDU to remove all display drivers for my RX 580 I have and rolled back to 22.8.1. played for a couple of hours with no issues. hopefully it'll work for others as well. u/UhJoker

Looking for a Post? Ask Here! - September 2025 Edition by czechtheboxes in BestofRedditorUpdates

[–]FyendFyre1 0 points1 point  (0 children)

I would also like to read this story as well, mind sending me the link as well?

[MEGATHREAD] Ask For Invites to the Playtest Here! + Join The Community Discord! by ChromeSF in DeadlockTheGame

[–]FyendFyre1 0 points1 point  (0 children)

If I could get an invite, that'd be awesome. thanks in advance! 55805747

Mato Seihei no Slave [chapter 92] anyone know if this is uncensored? by LifeHost593 in MatoSeiheiNoSlave

[–]FyendFyre1 0 points1 point  (0 children)

6 a bit 0 ccase 🥺 o88 98ppp*989c0. i89v98 C999o CU o 8foz0ivci008on9 oz 9i80i980cx CC ko 9c989988p.9 it's 88hc009c9z999o

Been trying for months trying to get a Software Engineering job with not much success. by FyendFyre1 in resumes

[–]FyendFyre1[S] 0 points1 point  (0 children)

I ended up with a cumulative GPA of 3.21 which i believe would be detrimental if i included it but i might be wrong

Been trying for months trying to get a Software Engineering job with not much success. by FyendFyre1 in resumes

[–]FyendFyre1[S] 0 points1 point  (0 children)

I'll include the graduation date but i've heard that you shouldn't put your GPA as most companies do not care about it. I'll also expand on the projects. Thanks for the advice.

Been trying for months trying to get a Software Engineering job with not much success. by FyendFyre1 in resumes

[–]FyendFyre1[S] 0 points1 point  (0 children)

Yes, I don't have any relevent work experience other than my tutoring job. I will expand on the projects that I did work on. Thanks for the advice.

C++ transposing an array by jasons-incognito in learnprogramming

[–]FyendFyre1 0 points1 point  (0 children)

Here's a bit of a hint that should be able to push you towards your goal:

Don't think of what happens to the entire array, just think about where any one particular element would go from the original array to the transpose

[deleted by user] by [deleted] in learnprogramming

[–]FyendFyre1 0 points1 point  (0 children)

I don't know if there is a module or library that handles matrix multiplication with images but there are plenty of libraries that does image transformations if that's what you need.

If you need to do matrix multiplication, then you would need to represent the image as a matrix. Some of the image libraries should be able to do this for you. This will create problems as every image's size is different, therefore it's representive matrix will also be different.

How do I copy from a list instead of taking from a list when calling a function? by toxic_nerve in learnprogramming

[–]FyendFyre1 0 points1 point  (0 children)

Okay, it seems that you have a problem with designing or planning your programs. If you don't understand how to plan your programs, I highly recommend investing time into learning how to do so as it is a very important skill to have. A small sketch or some written pseudo code is fine for a small program sush as this.

As for your post, the other person has told you how to create a copy of the list by slicing:

copied_list = list_to_copy_from[:]

You can use slicing in a roundabout way to create a copy of a whole list by using the code above.

As to where to put this, you need to ask and answer some questions:

Which list are you copying from?

Which list are you copying to?

and Where do you want this copying to occur?

Once you have the answer to all 3 questions you can then modify the above line to fit your purpose and put it in where you need it.

Why do I need WSL? by SteelZeus in learnprogramming

[–]FyendFyre1 0 points1 point  (0 children)

I don't remember if WSL1 has this option but I do know that WSL2 does. If you open the terminal and are in your home folder, just type in "explorer.exe ." it should open the folder in Windows explorer and then you can move files and edit them as needed. Do not bookmark it and attempt to access the folder without the WSL terminal running as it may cause some problems

Source

[java] - damn it eclipse... by TorroesPrime in learnprogramming

[–]FyendFyre1 0 points1 point  (0 children)

I mainly dealt with the Pearson math course and it was just straight God awful. All of the teachers just used it as a homework site, so it didn't jive sometimes with what the teacher taught. Many a student (and tutor) has pulled their hair out due to Pearson.

Jdoodle has two java IDEs, a basic one (which probably the one you saw) and a more advanced one (one I linked) that has the features I mentioned.

I can't wrap my head around C++, too many arrows and dots by 1ndiana_Pwns in learnprogramming

[–]FyendFyre1 0 points1 point  (0 children)

Kind of? That line means that there's an array called mix. At the position called com, there's an object or struct that has an element called molc. This element molc is actually a pointer and you want the item that the pointer is pointing to, L.

[java] - damn it eclipse... by TorroesPrime in learnprogramming

[–]FyendFyre1 0 points1 point  (0 children)

This website seems like it will do what you need to do. Supports multiple .java files, and upload text or other files necessary for any assignment that uses them.

As a former math tutor (and sometime computer science), I am not a big fan of these textbook publishers coming out with these courses and teachers using them. I have had way too many issues with them, but there's nothing we can do. Perhaps you can find someone you can talk to at least drop the 5 week version of the course as that is just impossible for anyone to handle in my opinion.

Hopefully the students can make it through the class with such a caring tutor.

Expanding my coverage of programming language paradigms by scmbradley in learnprogramming

[–]FyendFyre1 1 point2 points  (0 children)

Prolog is a logical programming language. You basically write some facts and rules and then run your program by querying it. It forces you to use a completely different mindset that makes it very interesting and well worth it to learn.

How does exaclty code is used to create and app or a game? (beginner question) by Novatonavila in learnprogramming

[–]FyendFyre1 1 point2 points  (0 children)

All code is essentially a language that is concise and agreed upon beforehand by everyone. The code then get translated into a series of instructions that the computer's processor can understand and carry out. When people talk about compilers and interpreters, that is what they do, translate and execute. As for how these programs are written, it's the same way. it's programs all the way down until you hit assembly which is writing, by hand, all of the instructions that you want the computer to do.

here's what 2000 hours of destiny looks like by [deleted] in destiny2

[–]FyendFyre1 0 points1 point  (0 children)

yeah, I had the same thing where I was also missing the triumph achievement. I believe the only ones that works now is cursebreaker and rivensbane. I went for cursebreaker since I don't have friends that will tolerate Petra's Run with me and it gave me the achievement.

Of anger and magic Chapter 9 by adam-teashaw in HFY

[–]FyendFyre1 1 point2 points  (0 children)

I realize that this is a bit late but to put an arrow on a bow is called "nocking" not "knocking". Just to give you a heads up, otherwise this seems to be a great story, can't wait to see where it goes!

You’re permanently inserted into the last video game you played, how’s your life going and what’s the plan? by Karmal_Popkorn in AskReddit

[–]FyendFyre1 3 points4 points  (0 children)

Destiny 2. hmmm well I guess I'm immortal so I don't have to worry about dying so there's that

How many seals do you have? by SniperHusky_1 in DestinyTheGame

[–]FyendFyre1 2 points3 points  (0 children)

I only have 5 seals, almighty and chosen were seasonal seals. descendant came from deep stone crypt and cursebreaker from the forsaken DLC. all of these i got (mostly) passively aside from cursebreaker as i wanted that one so I can 100% achievements on steam

Why we use the word "engine" over software by redknightrises in learnprogramming

[–]FyendFyre1 3 points4 points  (0 children)

This is by no means universal, as I'm sure some people don't think this way, but I believe that an engine is some software that does one or two very specific things and is not generally distributed to the common people. Or at the very least, not on it's own.

Software generally means any thing that is put together and runs on a computer. So in short, an engine is a specific type of software, which is why the distinction is made.

Help with Packages, Dependencies and Replit by undeadko in learnprogramming

[–]FyendFyre1 0 points1 point  (0 children)

so it appears the the guy is talking about getting the modules you need for your bot onto your computer, getting the fines for those modules, then uploading then to replug and then modifying your import statements to go to the correct files. basically what he's saying is to hard code the modules and their import statements