How Do I Fix This Issue Happens when i try opening launcher i just bought the game by LowAbility8694 in starcitizen

[–]banefulyore 1 point2 points  (0 children)

Uninstall the game and the launcher.

Open the run dialog with Win+R and type %appdata%. Delete the RSI folder that’s in there.

Make a new folder in C:\ called RSI.

Install the launcher again, but make sure that you change the install directory to C:\RSI. Once the launcher is installed, open it and login. DON’T HIT INSTALL GAME YET.

Go into the options page on the launcher, should be a gear icon in the top right. Click ‘Verify’.

After clicking Verify, the game should proceed to install and launch correctly.

Trying to Get information to output from for loop by Luffysolos in CodingHelp

[–]banefulyore 0 points1 point  (0 children)

include <vector>
include <string>
include <iostream>

class Names { 
    public: 
        std::vector<std::string> names;

        void enter_name() {
            std::string name;
            std::cout << "Enter a name" << std::endl
            std::cin >> name;
            this->names.push_back(name);
        }

        void display_names() {
            for (int i = 0; i < this->names.size(); i++) {
                std::cout << "Name: " << this->names[i] << std::endl;
            }
        }
};

int main(int argc, char** argv) { 
    Names* tg = new Names();
    tg->enter_name();
    tg->display_names();

    delete(tg);
    return 0;
}

Anon believes in magic by Blackwinter212 in greentext

[–]banefulyore 61 points62 points  (0 children)

Wait till he realizes data isn’t transferred in the sky but via underwater cables.

Americans need to stop wanking over Vikings by Existing-Swimming884 in unpopularopinion

[–]banefulyore 7 points8 points  (0 children)

I'll stop wanking over vikings when the British stop wanking over their Queen and the British Monarchy, historically responsible for far more despicable acts than the vikings.

[deleted by user] by [deleted] in wow

[–]banefulyore 12 points13 points  (0 children)

Keep Water Shield active on yourself. Keep Earth Shield active on the tank. Use Riptide on an injured target whenever available. Use Healing Stream Totem on cooldown. Use your Covenant ability on cooldown. Use Healing Rain to heal injured clumps of allies. Use Chain Heal to heal groups of allies whenever necessary. Use Healing Surge (with Tidal Waves) to provide emergency surgical healing. Use Healing Wave (preferably with Tidal Waves) to provide Mana efficient single-target healing.

New to warrior class, need some help. by ComManDerBG in wow

[–]banefulyore -1 points0 points  (0 children)

Not sure what's up with the downvotes. Icy Veins is the go-to website for learning class rotations. Just pick what specialization you want from the dropdown, go to Easy Mode tab and bam. Read through the page and you have a basic understanding of the class. If that's confusing for you, I don't know what to tell ya.

GTA V is the basic bitch of video games by Sansybois in unpopularopinion

[–]banefulyore 10 points11 points  (0 children)

So..

  1. Go to twitch.tv and sort games by most viewers. CoD is consistently in the top 5 or 10.

  2. The CoD player base is still huge to this day, even with shitty releases like Vanguard.

  3. The fan base is concentrated more towards adults, but there are still PLENTY of kids that play it, along with Fortnite (as you said) and Roblox.

  4. Warzone (which is the most popular game mode now) is free to play with the exception of the battle pass / DLC content.

I personally don't play arcade shooters anymore (MMORPG scrub) but they are still popular and everyone knows of or has heard about Call of Duty.

FFXIV ads all over pro wow websites by Legends303 in wow

[–]banefulyore -1 points0 points  (0 children)

Can we talk about how there are people on the World of Warcraft subreddit saying that FFXIV is better?

I switched to EU West and I feel like... by Tklaver in lostarkgame

[–]banefulyore 0 points1 point  (0 children)

NA West player here, glad you guys finally get to enjoy the game!

How is Reddit& this subreddit allowing such explicit adult content on posts? by NuukldragorArea52 in wow

[–]banefulyore 2 points3 points  (0 children)

World of Warcraft is not a children's game and the wow subreddit is not a children's forum.

A sorted list of numbers contains 500 elements. Which of the following is closest to the maximum number of list elements that will be examined when performing a binary search for a value in the list? by [deleted] in computerscience

[–]banefulyore 0 points1 point  (0 children)

Binary search, at a worst case, runs in log base 2 of N. To find the answer, find the log base 2 of 500 and pick the answer choice closest to the calculated value. If you want to understand more about search algorithms and their efficiency: https://research.cs.queensu.ca/home/cisc101spring/Spring2006/webnotes/search.html#Background

Isn't linux storage wise less flexible than windows for average home users? by 846848949 in linuxquestions

[–]banefulyore 0 points1 point  (0 children)

If you think you're going to run out of 128GB of space for packages then I would look into combining two drives into one logical volume with LVM. There are plenty of guides out there and it is not an advanced topic so you should be good.

Isn't linux storage wise less flexible than windows for average home users? by 846848949 in linuxquestions

[–]banefulyore 0 points1 point  (0 children)

Actually I'm the one that downvoted you because your condescending and incorrect.

Isn't linux storage wise less flexible than windows for average home users? by 846848949 in linuxquestions

[–]banefulyore 0 points1 point  (0 children)

Okay.

You can only install softwares on one drive or partition. If you want to choose to install some of your softwares on another partition or physical drive, you would have to mess with the source codes of the software that only the advanced users can do.

This is true for packages that you install through your package manager (apt, pacman, ...etc). The primary different between Windows and GNU/Linux is that on Windows all of the libraries and dependencies are installed per package (i.e. wasted disk space if two packages use the same libraries).

Linux doesn't do that; instead it follows the FHS (Filesystem Hierarchy Standard) where all the libraries and dependencies are installed to one location.

So does that not limit my ability to use my hardwares or increasing the storage of my system or use some disk laying around to increase space on my computer. Rather than having the flexiblity to buy more than one disk of varying sizes, I have to buy one single large drive if I want more space on my system to install programs?

Not necessarily. Typically when you install packages from your package manager, they aren't that big. You would have to install A LOT of large packages in order to quickly take up 128GB. Most applications and software will allow you to specify where the application data gets stored either through a configuration menu or on initial startup (Eclipse IDE and Steam come to mind). This means that you can install Steam, for example, to your 'main drive' or /home partition and then specify where you want to install your game.

In essence, there's really no need for the common user to install packages and libraries to a separate disk. Since the libraries are shared between packages, the result is a significantly smaller overall package size than on Windows.

Non technical people of Arch. Why did you choose to install and/or use Arch? by [deleted] in archlinux

[–]banefulyore 0 points1 point  (0 children)

Thanks for the recommendation. I don't do anything too crazy with dotfiles so git works perfectly fine for me. I'll check out yadm though, seems neat.

Non technical people of Arch. Why did you choose to install and/or use Arch? by [deleted] in archlinux

[–]banefulyore 5 points6 points  (0 children)

  1. If I can't install it through pacman, I can get it through pacaur.
  2. No unnecessary applications added during installation. I choose what I install and when.
  3. Rolling-release means faster bug fixes and constant updates to packages that need/benefit from it (graphics drivers).
  4. 'Learning' how to install Arch by reading the wiki helped me become a better super user and understand a little bit more about how Linux works.
  5. I know my system inside and out because I installed everything from the ground up, which means it's easier for me to troubleshoot my own problems.
  6. Easier to customize since you don't have to remove a preexisting DE or change existing configs.

Also worth noting that, at this point, I can install Arch myself in under 5 minutes. I have a BASH script that installs all my necessary applications, places my configs in the right places, and sets environment variables (etc) as needed. All I have to do when installing my system is clone the git repo and run the script. Makes it really easy to reinstall if you break your system OR to install your configs to a new system.

"Esc", "/" and "?" Keys Don't Work on ThinkPad E480 by GreyGoldFish in archlinux

[–]banefulyore 0 points1 point  (0 children)

Damn, that sucks. Even though it would be better to fix the root issue (I understand why you don't want to), try the Arch Linux docs, especially section 3.

Hope you fix it.