belshamharoth

joined 1 year ago
[–] [email protected] 0 points 1 year ago (2 children)

In the console market they are the underdog because their console has significantly less sales both in terms of units and game sales

[–] [email protected] 6 points 1 year ago

Can't wait for this to be released. IIRC a lot of it was built in the rust programming language which is a bit of interesting trivia

[–] [email protected] 2 points 1 year ago (1 children)

Not exactly the same as what you suggested but I just tried using Steam Link with a Bluetooth controller and it worked surprisingly well. I'm wondering if I could get this working when outside my house using a private VPN server, sort of like my own home version of GeForce now

[–] [email protected] 5 points 1 year ago (6 children)

News about the merger being approved was being discussed on Beehaw and everyone was dogpiling on Microsoft saying they're the devil for buying Activision Blizzard.

When I pointed out that Sony are also not innocent, as they regularly pay publishers to block release of games on Xbox, my comment was deleted.

At this stage Xbox is the underdog when compared to PlayStation and need a deal like this to not fall out of the market which would be a bad thing for everyone because it would mean less competition.

Of course it would be much better if no company was allowed to make exclusivity deals with publishers.

[–] [email protected] 12 points 1 year ago (1 children)

To understand why you might want to use tmux try the following:

  1. Open your terminal
  2. Start editing a file with vim or nano but don't save the file
  3. Close then re-open your terminal

You will have lost your progress, next we can repeat but this time using tmux so you don't lose your session:

  1. Open your terminal
  2. Start a tmux session using tmux
  3. Start editing a file again using vim or nano
  4. Close and re-open the terminal
  5. Type tmux a to re-attach to the existing session

Note that this time none of your progress is lost.

Aside from enabling you to have a persistent session, tmux also allows you to have multiple terminal panes open so you can do more than one thing at a time in the window, to see what I mean try this:

  1. Open your terminal
  2. Start a new tmux session using tmux
  3. Type top to begin listing processes
  4. Press ctrl b then % to make a new split pane
  5. Enter ls or other terminal commands

You will see that you can use more than one panel to do things. This can be useful for example if you want to watch run tests and also run other commands.

view more: ‹ prev next ›