bin.pol.social

averyminya, do gaming w Cyberpunk 2077: Phantom Liberty Review Thread

While some of Cyberpunk 2077’s issues still linger,

Curious what ComicBook.com means by this.

BeanCounter, do piracy w Youtube - like apps like piped.video, but as Android app?

Newpipe is pretty much rock solid. It’s subjectively better than the Vanced

theoldman, do piracy w With PLEX blocking Hetzner Hosting, I'm thinking of Moving to Jellyfin, but I have some questions.

If you are concerned about privacy, don’t use Plex or any other software which use central servers to collect your data. They can literally see where you click on the screen, let alone what kind of hosting you use. Jellyfin on the other hand is open source and don’t phone home. Also if a software is free, it doesn’t mean it was easy to create it in the first place. So please consider donation or support the project.

Cranksta,

The other option is Emby. It’s based on the same code, and is just another division of the same project. You pay for it, but it gets tons of support and more features as a result. Both projects have pros and cons but I’m leaning further to Emby than Jellyfin myself.

fiat_lux, do piracy w Can Pirate's Bay be considered "safe" if it is used only for non-executable multimedia content?

Not necessarily. For example, I know RAR is a bit out of style, but WinRAR just this week had some articles about malware lurking in otherwise non-executable files

There is no such thing as 'safe' user-generated content, only a spectrum of more or less safe content.

FeelzGoodMan420,

Who the actual fuck still uses winrar?

fiat_lux,

Enough people that the dude is still actively supporting and updating it for new OS versions. The RAR is unkillable.

Historical_General,

I only recently stopped using it. And a lot of content on the internet, expecially ones for download use rar part files to split it up and host freely.

FeelzGoodMan420,

You can just use 7zip tho

mara, do piracy w How to route transmission through Mullvad?
@mara@pawb.social avatar

I personally shove Transmission into Docker:


<span style="color:#63a35c;">services</span><span style="color:#323232;">:
</span><span style="color:#323232;">  </span><span style="color:#63a35c;">wireguard</span><span style="color:#323232;">:
</span><span style="color:#323232;">    </span><span style="color:#63a35c;">image</span><span style="color:#323232;">: </span><span style="color:#183691;">ghcr.io/linuxserver/wireguard
</span><span style="color:#323232;">    </span><span style="color:#63a35c;">container_name</span><span style="color:#323232;">: </span><span style="color:#183691;">wireguard
</span><span style="color:#323232;">    </span><span style="color:#63a35c;">cap_add</span><span style="color:#323232;">:
</span><span style="color:#323232;">      - </span><span style="color:#183691;">NET_ADMIN
</span><span style="color:#323232;">      - </span><span style="color:#183691;">SYS_MODULE
</span><span style="color:#323232;">    </span><span style="color:#63a35c;">environment</span><span style="color:#323232;">:
</span><span style="color:#323232;">      - </span><span style="color:#183691;">PUID=1000
</span><span style="color:#323232;">      - </span><span style="color:#183691;">PGID=1000
</span><span style="color:#323232;">      - </span><span style="color:#183691;">TZ=Europe/Stockholm
</span><span style="color:#323232;">    </span><span style="color:#63a35c;">ports</span><span style="color:#323232;">:
</span><span style="color:#323232;">      - </span><span style="color:#183691;">9091:9091/tcp
</span><span style="color:#323232;">    </span><span style="color:#63a35c;">volumes</span><span style="color:#323232;">:
</span><span style="color:#323232;">      - </span><span style="color:#183691;">./config:/config
</span><span style="color:#323232;">      - </span><span style="color:#183691;">/lib/modules:/lib/modules
</span><span style="color:#323232;">    </span><span style="color:#63a35c;">sysctls</span><span style="color:#323232;">:
</span><span style="color:#323232;">      - </span><span style="color:#183691;">net.ipv6.conf.all.disable_ipv6=0
</span><span style="color:#323232;">      - </span><span style="color:#183691;">net.ipv4.conf.all.src_valid_mark=1
</span><span style="color:#323232;">    </span><span style="color:#63a35c;">restart</span><span style="color:#323232;">: </span><span style="color:#183691;">unless-stopped
</span><span style="color:#323232;">  </span><span style="color:#63a35c;">transmission</span><span style="color:#323232;">:
</span><span style="color:#323232;">    </span><span style="color:#63a35c;">image</span><span style="color:#323232;">: </span><span style="color:#183691;">ghcr.io/linuxserver/transmission
</span><span style="color:#323232;">    </span><span style="color:#63a35c;">container_name</span><span style="color:#323232;">: </span><span style="color:#183691;">transmission
</span><span style="color:#323232;">    </span><span style="color:#63a35c;">ulimits</span><span style="color:#323232;">:
</span><span style="color:#323232;">      </span><span style="color:#63a35c;">nofile</span><span style="color:#323232;">: </span><span style="color:#0086b3;">1048576
</span><span style="color:#323232;">    </span><span style="color:#63a35c;">environment</span><span style="color:#323232;">:
</span><span style="color:#323232;">      - </span><span style="color:#183691;">PUID=1000
</span><span style="color:#323232;">      - </span><span style="color:#183691;">PGID=996
</span><span style="color:#323232;">      - </span><span style="color:#183691;">TZ=Europe/Stockholm
</span><span style="color:#323232;">      - </span><span style="color:#183691;">USER=azurediamond
</span><span style="color:#323232;">      - </span><span style="color:#183691;">PASS=hunter2
</span><span style="color:#323232;">    </span><span style="color:#63a35c;">volumes</span><span style="color:#323232;">:
</span><span style="color:#323232;">      - </span><span style="color:#183691;">./config:/config
</span><span style="color:#323232;">      - </span><span style="color:#183691;">/data:/data
</span><span style="color:#323232;">      - </span><span style="color:#183691;">/data/Torrents/dl:/downloads
</span><span style="color:#323232;">      - </span><span style="color:#183691;">/data/Torrents/inbox/start:/watch
</span><span style="color:#323232;">    </span><span style="color:#63a35c;">network_mode</span><span style="color:#323232;">: </span><span style="color:#183691;">"service:wireguard"
</span><span style="color:#323232;">    </span><span style="color:#63a35c;">depends_on</span><span style="color:#323232;">: [ </span><span style="color:#183691;">"wireguard" </span><span style="color:#323232;">]
</span><span style="color:#323232;">    </span><span style="color:#63a35c;">restart</span><span style="color:#323232;">: </span><span style="color:#183691;">unless-stopped
</span>

Make sure your mullvad config is called wg0.conf in ./config.

FrostyCaveman,

I do this except with github.com/qdm12/gluetun

(which apparently also can be used as a k8s sidecar container, am gonna try this soon as well)

christophski,

I’m trying this and it seems to be running. If I run curl 127.0.0.1:9091 I get a 403 which is expected but if I try to access the same from another computer on the network then the connection times out, any idea what could be the cause?

coaxil,

Oh yes, got your password :p

kingorgg,

All I see is *******.

Flyswat,

Really?

Password: ********

pewgar_seemsimandroid,

h2

FrostyCaveman, do games w Do you find the description Live Service Game off-putting?

Theoretically it’s not a turnoff: for example, I was fine with paying the subscription for World of Warcraft back in 2007. But in practice I know what it means today, and that means being psychologically manipulated and crit in the wallet, so hell freakin no.

I actually am in favour of government legislation against them since they generally appeal to the young, who are essentially psychologically defenceless against most of the trickery. I don’t quite think they’re “spiritual opium” as the PRC would say, but the line was crossed long ago

platysalty, do games w What game has a great story and is worth the time investment?

The only problem with starting Baldur's Gate 3 now is that it's gonna be a crazy high bar for everything that comes after.

But if you want a great story that's affected by your decisions and character, it's a great place to go.

Send_me_nude_girls, do gaming w Looking for games with unique core mechanics
@Send_me_nude_girls@feddit.de avatar

Faster than light - manage crew in a 2D strategy environment and jump around in space. Pretty unique gameplay which only recently got some clones.

Teardown - Work as criminal stealing stuff, but the clue is you can destroy everything and you need to create smart parkour to steal stuff right in time before the cops arrive. Also you can sandbox play it if you get bored.

Terra Nil - Bring back nature to a destroyed earth, with relaxing and calm mechanics. Highly recommend.

Others: FEZ, solve puzzles. Deep Rock Galactic, because dwarfs being this much dwarf is just dwarftastic. Rock and Stone!

1henno1, do gaming w Looking for games with unique core mechanics

Maybe Antichamber? It‘s a first-person puzzle game like Portal, but based on the idea of the „rooms“ changing as you go through them, so each room basically has its own mechanic to figure out

smeg,

It’s Portal on acid, a great game. Also Manifold Garden by the same guy.

Devjavu, do piracy w Looking for obscure, older television

Why would you watch popcorn. Just eat it.

ChrisLicht, do gaming w What's the funniest game you've played?

Only game I ever lol’d at was Psychonauts.

MrBobDobalina,

Both of the Psychonauts games had such great writing, comedy is best when interwoven with actual substance and they nailed it

hoshikarakitaridia, do games w Baldur's Gate 3 ended up making me regret playing.

Imagine they decide to add a DLC called “the dragon expansion” just for this guy.

Actually hilarious.

TacticsConsort,
@TacticsConsort@yiffit.net avatar

Probably the only thing that could convince me to head back and finish the game tbh.

dog,

So you were looking for Bad Dragons and Good Dungeons, huh. Just wait, someone will mod it all in.

sculd, do gaming w What games have you played due to FOMO?

Elden Ring

The glowing review and how people say its the best time to try a souls game made me buy it.

Not a game for me.

(Just in case people start saying I need to get good. It has nothing to do with the difficulty. I am thoroughly enjoying AC6 now.)

TommySalami,

No worries! I’m a big fan of FROM and you are absolutely right, they just aren’t for everyone. I honestly wish more people would see that a game can be good but you don’t have to enjoy it. That’s me and a lot of strategy games like Crusader Kings.

TransplantedSconie, do gaming w I watched 2 hours of starfield gameplay and an hour of review

I already have space game. It’s called No Mans Sky and it’s pretty darn cool.

sandriver,

And it has VR too! I think NMS and having actual Daggerfall doesn’t leave me any room to particularly care about Starfield. I don’t get the hype at all.

DoucheBagMcSwag,

Hopefully in a year or two fans like Luke Smith will port Starfield to PCVR

averyminya,

Until then VorpX profiles aren’t really too bad.

Ser_Salty,

The NMS gameplay is really only a tiny part of Starfield. It’s an RPG. Like, an actual, proper RPG, with tons of actual quests. If you were only interested in the NMS part, flying from planet to planet to scan wildlife and gather resources, sure, you don’t need Starfield, NMS will do ya just fine, but there is a fuckton more to the game than that.

argv_minus_one, do piracy w So how fast do y'all think Starfield will get cracked when the early access goes live tonight?

It costs four hundred thousand Red Bulls to crack this video game in twelve seconds.

  • Wszystkie
  • Subskrybowane
  • Moderowane
  • Ulubione
  • fediversum
  • esport
  • test1
  • NomadOffgrid
  • ERP
  • rowery
  • krakow
  • Gaming
  • Technologia
  • muzyka
  • Spoleczenstwo
  • sport
  • informasi
  • tech
  • healthcare
  • FromSilesiaToPolesia
  • turystyka
  • Psychologia
  • Cyfryzacja
  • Blogi
  • shophiajons
  • retro
  • Travel
  • gurgaonproperty
  • slask
  • nauka
  • warnersteve
  • Radiant
  • Wszystkie magazyny