GrappleHat

joined 2 years ago
[–] GrappleHat@lemmy.ml 9 points 6 days ago

That's insane!

[–] GrappleHat@lemmy.ml 11 points 1 week ago (6 children)

What do you mean? That's the same layout as the SNES controller, & it's what most of the retro handhelds use.

Also, it's running Linux so it's easy to remap the buttons to a custom layout if desired.

[–] GrappleHat@lemmy.ml 6 points 2 weeks ago

Oh, it looked Ok in my app (Voyager). But I added the line break.

[–] GrappleHat@lemmy.ml 14 points 3 weeks ago* (last edited 2 weeks ago) (3 children)

Depending on the car you might be able to physically disable telemetry. Here are some thoughts/ideas I've been collecting:

  • Hit "SOS" button and opt-out of all services through customer service. This of course requires trusting the company to actually do it.
    • It's possible that the info could be stored locally and then uploaded when it gets serviced though
  • Remove the fuse to the modem/data communication module (DCM)
  • Disconnect wiring to the LTE antennas
  • A number of people have mentioned that they can get the dealer to disconnect the telemetry as a precondition to buying. For instance, here.
  • Jump the data communication module (DCM) cable with a ~$70 dongle to bypass just the telematics components
  • Disconnect the DCM cable, which will likely gimp the infotainment if not other systems, or remove the entire DCM unit
[–] GrappleHat@lemmy.ml 1 points 3 weeks ago (1 children)

The part you remember was not about eating the animal due to hunger. He was observing that when he was away from "civilization" for long enough he noticed that he started to think in a more primal way. In that case, it was tearing a squirrel to shreds raw with his teeth! (or something) :)

[–] GrappleHat@lemmy.ml 13 points 3 weeks ago (1 children)

Looked up "cromulent" in the dictionary. Wasn't disappointed!!

[–] GrappleHat@lemmy.ml 1 points 3 weeks ago (3 children)

He didn't write "like it's life or death"! Most of the book are meditations on nature and descriptions of landscape. If that's what you came away with then you missed the point.

[–] GrappleHat@lemmy.ml 93 points 3 weeks ago (10 children)

The chances of a deal are said to be weeks away, if not non-existent.

What kind of non-sentence is that?

[–] GrappleHat@lemmy.ml 3 points 3 weeks ago (5 children)

Read Walden by Thoreau

[–] GrappleHat@lemmy.ml 11 points 4 weeks ago

Flat Earthers aren't real

72
Populus (1998) & "god games" (en.m.wikipedia.org)
submitted 2 months ago* (last edited 2 months ago) by GrappleHat@lemmy.ml to c/patientgamers@lemmy.ml
 

Happened on this 1998 game by sheer chance and I'm really digging it! As far as I can tell it was never popular. It's a mixture of an RTS and a "god game" where one unit (your shaman) is very powerful & special (chess analogy: sort of like mixing the central role of the king & with the power of the queen).

Strong "tribal" vibes that were popular in the '90s (think Deep Forest music, the game Riven, etc). Very nostalgic for me as I was a kid at the time. I'm playing the PSX version, looks like the PC version was even better!

Has anyone ever heard of this "Populous" series? I'm curious to try other titles, and to try more in the "god game" genre (a genre I never even knew existed!). Any other "god games" worth checking out?

 

This type of music reminds me of 16-bit-era gaming - but I can't put my finger on on why!

  • Were there specific games which had music like this? (Sonic? Megaman?)
  • Or maybe this music evokes that open "sky level"-type aesthetics which sometimes featured in those games?

Interested to hear whether this reminds anyone of specific titles or levels? Any other thoughts?

 

I'm trying to run a program in wine and getting the error 0024:err:module:import_dll Loading library jmptojava.dll (which is needed by L"C:\\Program Files\\SAS\\JMP\\10\\jmp.exe") failed (error c000007b)

The missing jmptojava.dll file is in the same directory as the executable. Do I need to set a Windows environment variable or something so that it can find it? Any other thoughts?

 

What are your recommended Minetest graphics settings? I've tried the "just turning everything on" approach, and that's fine. But it's a bit superficial. What are the knobs to turn to get a more fun graphical experience? :D

 

I want to sync retroarch save files across devices on my local network using a bash script. Plan is to run the script as a cronjob to keep all machines synced.

This does the trick as a one-off in the terminal: rsync -a /home/localuser/.config/retroarch/states/ remoteuser@192.168.1.12:/home/remoteuser/.config/retroarch/states/

  • Copies new save files to remote location
  • Updates any save files which were modified

But when I put the same line in a bash script rsync's behavior changes. My bash script looks like this:

#!/usr/bin/env bash
rsync -a /home/localuser/.config/retroarch/states/ remoteuser@192.168.1.12:/home/remoteuser/.config/retroarch/states/

I call it with bash sync_saves.sh

  • Copies new save files to remote location
  • ~~Updates any save files which were modified~~

Strangely, rsync doesn't update modified files when run as a script. But it's not failing altogether, because it transfers new files OK. What am I missing?

Update: if I do the rsync in the reverse order (remote machine -> local machine) then the bash script works as expected. So my issue exists only when rsync goes local machine -> remote machine. Why would this matter?


Update 2 (Solution): I changed the command to rsync -razu /home/localuser/.config/retroarch/states/ remoteuser@192.168.1.12:/home/remoteuser/.config/retroarch/states/, but I'm not sure that made any impact. The issue was how I was doing my testing. I was doing touch testfile.txt to change the modification date on a file & then I'd try to transfer it with the bash script & watch the modification date on the downstream machine as confirmation that it moved correctly. Problem is that rsync must be smart & doesn't transfer a file if only the modification date changes. It requires the contents to also change. Whenever I tested this way I would never see the file transfer, but when I changed my testing method to change the contents of the file instead (not just the modification timestamp) then all worked fine!

I feel like a dummy for initially mixing testing methods & coming to the wrong conclusion about what was happening, but happy it's working now & maybe I learned a lesson!

 

Super Metroid's color palette and lanky sprite were always a turn off for me. But I'm finally giving it a chance on SNES (MSU-1 version) & I'm really enjoying it!

Vibes are: Quake + the movie Alien + Nine Inch Nails' album The Downward Spiral. Pretty cool aesthetic after all!

1
submitted 7 months ago* (last edited 7 months ago) by GrappleHat@lemmy.ml to c/linuxquestions@lemmy.zip
 

I've noticed that some apps sometimes don't start from the GUI. I've seen it on several computers (all running Ubuntu 22.04). That includes double-clicking an appimage icon from an explorer window, or launching an app through a launcher shortcut. But if I open them manually from a terminal window they never fail to start.

The terminal workaround is fine... But any ideas what could be wrong with the GUI? Is there a service I can restart to try to get the functionality back?

EDIT: I'll add that the issue is sporadic. Steam will open fine from the GUI today, but tomorrow it won't, etc. (It's not as simple as a bad path in a shortcut)

 

In many games there are a lot of stupid filler items that you don't know what they do and they don't matter. (i.e. crafting ingredients). They are so ubiquitous across games that there ought to be a word for them. Sort of like a "MacGuffin" (except a MacGuffin moves the plot along, and these filler items don't).

Is there a name for these filler items? If not, got any ideas?

 

I enjoy Dungeon Crawl Stone Soup played in the terminal with ASCII graphics. I wonder whether there are other hidden gems out there which don't get attention because they are "ugly"?

 

This weekend Hearthstone is celebrating Twist and TITANS announcements with a special Community Day. 11 Packs will be given out via Twitch Drops starting July 1, 12pm PDT

Source

view more: next ›