@tal@lemmy.today avatar

tal

@tal@lemmy.today

This profile is from a federated server and may be incomplete. Browse more on the original instance.

tal,
@tal@lemmy.today avatar

It’s not particularly confusing, but there are a whole class of paradoxes that rely on the same mechanism – the truth of a statement is being altered by the existence of the statement, because it is self-referential in some way.

I think that the Berry paradox is the first one of these that I ran into, and it’s a little more confusing to most, I think.

tal,
@tal@lemmy.today avatar

Another response says I can put a hard boiled egg into a bag.

That was someone else guessing. The person talking about scrambled eggs was the original person who referenced “bagged eggs”.

Why do people hate on mobile games, call them "not real games" and mock them, when some mobile-exclusive games are the best games I've played?

The Infinity Blade or Minigore series, for example, or anything made by Illusion Labs. These games are genius and most consoles don’t even have a touch screen or utilise it well like some smartphone games do....

tal, (edited )
@tal@lemmy.today avatar

I wouldn’t call one “not a real game”. If you like them, great, play them. I have not been very happy with mobile games, myself, however.

A couple of reasons:

  • While they don’t have to do so, many mobile games appear to me to be designed to cater to people playing in short spurts. That is, you don’t have to build up a lot of metal state about the game; you can play a bit while waiting in a line or something, put the thing on hold, do something else, come back. A lot of my favorite games don’t work like that.
  • For a number of genres, using a touchscreen is a serious limitation, because part of the screen is obstructed by fingers. Phones can use external input devices, usually via Bluetooth, and so you can make a game that requires an external input device, but it’s an inconvenience to lug one around with a phone, so smartphone games generally need to be designed to be at least reasonably-able to be played on the touchscreen alone. That places some constraints on the way the game can work.
  • Touchscreen accuracy is limited compared to a mouse pointer, which again limits a number of genres of games.
  • Not everyone using a smartphone game can be playing sound while doing so; carrying headphones/earbuds around isn’t something that all players will do. That means that smartphone games generally need to be playable without sound, which is a constraint that PC games generally don’t have.
  • The major benefit smartphones have is that they’re mobile. A smartphone can generally run for a while, as long as most of that is idling. Playing games in most genres burns through their battery quickly. You can carry USB powerstations, but kind of a pain.
  • Even in genres – like turn-based ones – that really don’t need much battery consumption, for some reason, game developers – unlike developers of many other application types – often seem to feel the need to have stuff going on while nothing’s happening in the game, burning battery life. I’d like to have the option to minimize battery usage.
  • I would say that a greater proportion of smartphone games than PC games have in-app purchases and ads, neither of which I like.
  • Many game genres tend to benefit from a wider field of view. Smartphone screens held normally take up a very small portion of one’s visual field.
  • I am not particularly enthusiastic about having Google track and profile me. A large portion of the commercial games on Android require that one use Google Play Services and this requires a Google account. I’m not willing to get a Google account. This limits availability of many commercial games. I have no problem with getting a GOG account on the PC, and am at least less concerned about Valve, with Steam, than Google.
  • I have no idea why, but a higher percentage of mobile games seem to go for a cutesy, simplified vector aesthetic. Maybe it’s because they need to run on screens that may vary a great deal in size; I don’t know, but it’s there. Nothing intrinsically wrong with that style, but I’m not especially enthusiastic about it. The Game Boy had the same “cutesy” tendency back when, relative to larger, fixed consoles, so maybe it’s to deal with small screens.
  • Most mobile games I’ve played that I’ve liked (e.g. Shattered Pixel Dungeon) are also available on the PC, and I find that it’s more-comfortable to play there.

So for me, at least, the mobile gaming experience hasn’t really been one that I’ve been all that happy with.

I could certainly see games that I think would work well with a smartphone. Choice of Games-type multiple-choice interactive fiction, or gamebooks. Those are (or at least can be) light on a battery, are fine on a touchscreen. I’ve generally played those on a tablet rather than a phone – I think that even with those, more screen space is desirable, given the option – but I have done those, and I think that they’re all right. Annoyingly-enough, Twine games – which I would think could be a good match for mobile – aren’t, because Android browsers don’t have an ability to view file:// URLs and Twine builds pages that don’t always work well on small mobile screens. There hasn’t been the kind of explosion of freely-available games in this genre that there have been for the keyboard-oriented Z-Machine and TADS interactive fiction VMs on the PC, though.

Deckbuilding games – though I’d rather have ones without animation or 3D stuff going on, to reduce battery consumption – would be another possibility that I’d like. If cards are designed for a small screen, I think that it’d be reasonable.

tal,
@tal@lemmy.today avatar

House on Haunted Hill had Black Dude (Eddie) being one of the only two to make it out.

tal,
@tal@lemmy.today avatar

I use dired in Emacs.

I assume you mean “why use these instead of file-manipulation commands in bash?”

I use both.

There are a handful of tasks that are easier in dired than bash.

  • Making small modifications to filenames that aren’t amenable to programmatic changes. You can just toggle the read-only flag on a dired buffer, edit the filenames, and then hit C-c C-c when done.
  • Marking a set of files to perform an operation on where that set cannot trivially be expressed using tools in bash. Think, oh, “which movies do I like enough to want to keep around”. This is especially handy when moving a number of files to another directory, which I think is why people often like the two-pane approach of orthodox file managers. Dired is not an OFM, but it can act like that if you have two dired windows open, using the other as the default target for the operation.
  • Dealing with filenames containing obnoxious-to-type characters like weird Unicode stuff. If I want to delete the one file in a directory whose name consists of a bunch of kanji, it’s easier to just manually select it in a list.
  • Navigating where I usually want to see the contents of each directory. I’ll often navigate around in dired while building up up an emms playlist. Browsing a list of movies to play.

EDIT: It’s also not really a file manager, but I do use ncdu to see what’s taking up space on a disk. I’ll also use du -h|sort -h|less, but ncdu is, like file managers, more convenient when just browsing around the tree and looking at each as one does so, while manually selecting a few items to operate on (deleting).

EDIT2: I’ll also add that virtually all of the people I know in person who love OFMs – I’m in the US – are from Eastern Europe, moved to the US from Russia, Ukraine, Romania, etc. I dunno why that is. Maybe just spreading along language lines. Maybe there are or were issues with switching between Cyrillic and Latin character stuff akin to my above irritation with kanji. But someone from Eastern Europe might have more input to answer your question.

EDIT3: The link I provided above for OFMs has a very long discussion from the author on why he likes OFMs (though not all terminal file managers are OFMs, many, like Midnight Commander, are). Reading it, I’d say that there’s a lot of overlap with how Emacs works with dired+TRAMP+eshell and some other Emacs packages, though they accomplish similar goals in a different way – sort of making integrated functionality that spans network file transfer, file management, text editing, file archive access, console commands, with a common toolset available for all. Would be quicker to learn an OFM than Emacs, though Emacs is gonna provide a considerably-larger set of functionality if you’re willing to spend the time on it.

EDIT4: There are also a number of OFMs in Emacs, like Sunrise Commander, so I guess I shouldn’t really treat it as an either-or matter.

  • All
  • Subscribed
  • Moderated
  • Favorites
  • localhost
  • All magazines
  • Loading…
    Loading the web debug toolbar…
    Attempt #