There have been multiple accounts created with the sole purpose of posting advertisement posts or replies containing unsolicited advertising.

Accounts which solely post advertisements, or persistently post them may be terminated.

kbin.life

sneezycat , to lemmyshitpost in Fromsoft classes like
@sneezycat@sopuli.xyz avatar

People that say soulslikes are hard weren’t gaming back in the 80s/90s huh?

popekingjoe ,
@popekingjoe@lemmy.world avatar

I picked up the og Mega Man. How the fuck did my 5 year old self play that shit?

MajinBlayze ,

Free time

chiliedogg ,

Action games could either be hard or last 20 minutes.

They chose hard.

SuperSaiyanSwag ,

At least I can fight Malenia 50+ times without any tedious things in-between. If you die three times at a boss in an 80s game, you’re starting that game over. I would say that if 80s/90s games had similar qol improvements then most of them would not be as hard as souls games.

sneezycat ,
@sneezycat@sopuli.xyz avatar

Yeah, most of the challenge back in the day was clunk, lack of information, and game design derived from arcades, where you had to die so that you’d use more quarters.

elucubra , to science_memes in Boopable

wait until you hear about saltwater crocodiles en.wikipedia.org/wiki/Saltwater_crocodile

EherNicht , to memes in If you beat *THIS* mission, you probably are a gaming God

Based tutorial

Cevilia , to piracy in Fully understand if this is impossible, but is there any way to pirate/emulate switch games?
@Cevilia@lemmy.blahaj.zone avatar

In what way does yuzu require a Switch? That hasn’t been my experience.

will_iam90983402984 OP ,

just reading off their site: Prerequisites A hackable Nintendo Switch console (preferably a model that is vulnerable to the fusée-gelée exploit). Visit Is My Switch Patched? to check if your console is not patched. A microSD card with at least 32 GB of storage capacity. 64 GB or higher is recommended. A USB-C to USB-A or USB-C to USB-C cable to connect your Switch to your computer. TegraRcmGUI – Download TegraRcmGUI_v2.6_Installer.msi ums-loader – Download ums-loader.bin Hekate – Download hekate_ctcaer_X.X.X_Nyx_X.X.X.zip Windows users: Also download nyx_usb_max_rate__run_only_once_per_windows_pc.reg and run it for faster transfer speeds over USB. For details, see the NOTE section in the release page. This hekate configuration file – hekate_ipl.ini Atmosphére – Download both atmosphere-X.X.X-master-XXXXXXXX+hbl-X.X.X+hbmenu-X.X.X.zip and fusee.bin. Lockpick_RCM – Download Lockpick_RCM.bin NXDumpTool – Download nxdumptool.nro nxDumpFuse – Download win-x64.zip TegraExplorer – Download TegraExplorer.bin (Optional) JKSV – Download JKSV.nro Download this homebrew application if you wish to dump your save data from your Switch to yuzu. RCM Jig – We highly recommend one like this, but you could use any of the methods outlined here.

Cevilia ,
@Cevilia@lemmy.blahaj.zone avatar

Fitgirl’s repacks already contain the necessary files. These steps are unnecessary. There are also alternative ways of sourcing the files. :)

will_iam90983402984 OP ,

ok, thank you, can I also ask for the general idea of where to find these?

maxtun ,

This prod site has everything you need besides the rom

Otome-chan ,
@Otome-chan@kbin.social avatar

yuzu requires keys which you're supposed to officially dump from your own console. you can just pirate them.

Klear , to patientgamers in What have you been playing this week?

C&C: Tiberian Sun. Damn, that game still looks great.

EddyNottingham ,

Me too! So stoked to be playing it again.

Klear ,

One tip for the final Nod mission I would have wanted to know before playing it - the game tells you that you have time until the GDI station makes three orbits and then gives you an hour timer. I was running out of time and made a despearate push for the final objective with just seconds remaining and then… another hour timer started. You have 3 hours to beat that map, I thought it was just the one =/

It’s the finale where you have all the toys and get to play with the enemy in any way you want. Don’t make the same mistake as me and rush through it, you can take your time.

EddyNottingham ,

Oh wow, thank you for the tip! Knowing that will make my playthrough more enjoyable ♥️

cizra , to linux in Need an RDP client compatible with AVD
  1. Log into the Windows machine via the webclient avaliable at windows365.microsoft.com
  2. Use PuTTY to set up a reverse tunnel. You’ll need to create a restricted tunnel-only user in your machine. Make sure to use key auth.
  3. From your local machine, connect to localhost:portnumber.

As an alternative, you might be able to set up OpenSSH in Windows (yes it’s possible), then use the ProxyJump setting in your local ~/.ssh/config to connect via a tunnel to the final box.

Here’s how you configure the server to not let the user wreak too much havoc:


<span style="color:#323232;">Match User restricted
</span><span style="color:#323232;">        PermitOpen 127.0.0.1:3389 [::1]:3389
</span><span style="color:#323232;">        X11Forwarding no
</span><span style="color:#323232;">        AllowAgentForwarding no
</span><span style="color:#323232;">        ForceCommand /bin/sh -c 'while sleep 999; do true; done'
</span><span style="color:#323232;">        ClientAliveInterval 1
</span><span style="color:#323232;">        ClientAliveCountMax 2
</span>
cizra ,

Fun fact: mentioning etc ssh sshd_config triggers some CloudFlare security warning that prevents me from posting it under the right name.

possiblylinux127 ,

Got to love our Cloudflare overlords

pathief OP ,
@pathief@lemmy.world avatar

I wasn’t able to set up a reverse tunnel, because I’m also under a corporate VPN :( I was able to get xfreerdp to work, though! Maybe I can add some port-forward + tunnels and be free :P

cizra ,

If your local machine is not reachable from the internet, you could set up the cheapest VPS - you can get a free one for 12 months at azure.microsoft.com/en-us/free/-free-servicesConnect from your destination machine (the firewalled one) to the VPS, and set up a reverse tunnel. For example, drop this into your ~/.ssh/config on the destination machine:


<span style="color:#323232;">Host rtun
</span><span style="color:#323232;">        Hostname something
</span><span style="color:#323232;">        RemoteForward 1234 localhost:22
</span>

tmux new-ses ‘while sleep 1; do ssh rtun; done’

Then configure your local machine to connect to destination via the jumpbox:


<span style="color:#323232;">Host vps
</span><span style="color:#323232;">        Hostname something
</span><span style="color:#323232;">
</span><span style="color:#323232;">Host destination
</span><span style="color:#323232;">        Hostname localhost
</span><span style="color:#323232;">        Port 1234
</span><span style="color:#323232;">        ProxyJump vps
</span>

ssh destination should work now.

Make sure to use SSH key auth, not passwords, and never transport secret keys off-machine. It’s easier to wipe and recreate a VPS, if you lose keys, than to explain to Security folks how you were the donkey that enabled the breach.

hexaflexagonbear , to memes in I hope this time I get across
@hexaflexagonbear@hexbear.net avatar

Trans scientist inventing a gender that observes a different speed of light in different inertial reference frames.

knightly ,

Trans scientist inventing a gender that can observe the exact position and velocity of a particle simultaneously.

CyberEgg ,

Trans scientists inventing a gender that can has so little mass it can escape a black hole.

GolfNovemberUniform , to linux in The least happy computer users: Those running Arch Linux & Firefox
@GolfNovemberUniform@lemmy.ml avatar

Even though most people don’t agree with the stats, I think it makes sense because Arch users are never satisfied with their setup. It could cause many of them to choose an average number.

klemptor , to pics in Olympic gymnast Giorgia Villa is sponsored by parmesan and takes many photos with a wheel of cheese
@klemptor@startrek.website avatar

I think I wanna be her when I grow up.

FlyingSquid ,
@FlyingSquid@lemmy.world avatar

She’s 21. I wanna be her and ungrow down. :(

klemptor ,
@klemptor@startrek.website avatar

Holy Moses, half my age and hugging a huge cheese.

FlyingSquid ,
@FlyingSquid@lemmy.world avatar

My back couldn’t handle holding that much cheese now. :(

stringere ,

Not with that attitude!

FlyingSquid ,
@FlyingSquid@lemmy.world avatar

Or that spine.

stringere ,

Yeah, maybe work up a skeleton instead of all the fancy aerial maneuvers?

Hadriscus ,

Well I’d rather be the cheese

parpol , to fediverse in What do you want to have in a Lemmy instance?

Fair moderation. The biggest problem with the largest instances is that they are heavily skewed towards communist ideals and censorship, and mods will ban you for holding (locally) controversal opinions despite not breaking any rules. And sometimes the rules are too arbitrary and get used as a scapegoat to ban you for your opinion.

Programming.dev has been a very good example of how moderation should be done, but it is for programmers, thus may not be appealing to the typical user, and they end up on lemmy.ml instead and get banned because the mod was in a bad mood and didn’t like your opinion.

PhilipTheBucket OP ,

I saw that already. Programming.dev was right away on point about hiding some of my RSS bot’s posts, unless the users were subscribed, because it was spamming their users’ feeds and they didn’t want that. They’re clearly invested in their users having a good experience instead of, I guess, wanting to order them around? I’m not familiar but it looks like programming.dev is doing it right.

I agree. The moderation on Lemmy is halfway to Reddit’s. There are random rules for no reason. I don’t fully get it.

imaqtpie , (edited )
@imaqtpie@sh.itjust.works avatar

You make a valid point but I just want to push back a bit. These are the largest Lemmy instances in order of monthly users

large instances- lemmy.world - 17.7k - lemm.ee - 3.2k - sh.itjust.works - 2.5k - lemmy.ml - 2.5k - hexbear - 1.8k - lemmy.ca - 1.3k - feddit.de - 1.2k - programming.dev - 1.1k - lemmy.dbzer0.com - 1.1k - lemmy.blahaj.zone - 900 - feddit.org - 900 - discuss.tchncs.de - 866


As far as I know, lemmy.ml and hexbear are the only heavily communist and censorship prone servers out of the top twelve. They were here first, but we really need to stop perpetuating the notion that they represent or dominate Lemmy as a whole, along with the idea that they represent a typical moderation experience on this platform.

I feel like the numerous well-moderated instances don’t get enough credit. The actions of lemmy.ml moderators tend to shape the narrative about Lemmy moderation, which is unfair to other servers and repels new users from the platform. Other instances aren’t perfect with moderation either, but at least they generally try to moderate in good faith and with some degree of neutrality, which is the most you can really ask for.

The primary influence that remains is lemmy.ml still hosts a disproportionate number of major communities, but that’s slowly changing.

parpol ,

Fair point. I said the biggest, but as you said, lemmy has been outgrowing the original instances. lemmy.ml hosting so many major communities is still a problem, but if that is slowly changing, I see a good future in Lemmy. OP seems decent so let’s hope it grows into a fine instance.

threelonmusketeers ,

feddit.de - 1.2k

Isn’t feddit.de is gone now, or at least broken to the point of rarely being usable?

I think most users have moved to feddit.org now.

imaqtpie ,
@imaqtpie@sh.itjust.works avatar

Yeah, that’s right. I didn’t realize that when I made this comment. Feddit.org is the replacement instance because of all the issues with feddit.de

ericjmorey ,
@ericjmorey@discuss.online avatar

No one is ever satisfied with moderation.

jeena , to science_memes in Engineers vs Physicists
@jeena@piefed.jeena.net avatar

My first thought was which one is which?

NuraShiny , to science_memes in Basic

Post this to stormfront as a political compass meme

apotheotic , to linux in The least happy computer users: Those running Arch Linux & Firefox

I guess the nixos users were all too busy asking everyone if they’ve heard of nixos to answer the survey?

BTW have you heard of nixos?

Blaster_M , to linux in The least happy computer users: Those running Arch Linux & Firefox

Looks like I need to consider flipping back to Debian again… it’s always beeen a Stable relationship…

TheBigBrother , to asklemmy in What is the difference between a man and a parasite?

Read Animal Farm by George Orwell and you will know the difference.

  • All
  • Subscribed
  • Moderated
  • Favorites
  • random
  • lifeLocal
  • goranko
  • All magazines