JackGreenEarth

joined 11 months ago
[–] JackGreenEarth@lemm.ee 1 points 18 hours ago (2 children)

Can't you just use gnome-screenshot with the screencast feature? Unless this lets you record stuff that already happened, a sort of 'capture last 30s' sort of thing.

[–] JackGreenEarth@lemm.ee 11 points 18 hours ago (2 children)

Air because 100% of them are benders. You don't get that guarantee in the other nations. If bending wasn't a factor, probably either water or air, as they both seem chill. As a vegetarian though, air would probably align more with my values anyway.

[–] JackGreenEarth@lemm.ee 4 points 18 hours ago

Most games are better with a mouse and keyboard, from my limited controller experience. Smooth mouse movements, rather than pressing a lever to move the camera rotation in jerky motions which you then have to jerk back because you went too far. Lots of keys on a keyboard mean you can quickly launch a bunch of different menus with a single button press. And some mice have haptic feedback, which would be the main outstanding benefit of a controller.

[–] JackGreenEarth@lemm.ee 1 points 1 day ago (1 children)

Xclicker is a GUI autoclicker. I heard of a command line tool for Wayland, but it didn't seem to exactly be an autoclicker, and I don't really like command line tools in general.

[–] JackGreenEarth@lemm.ee 1 points 1 day ago (2 children)

No, because it's circular logic. There's no reason for a necessary being to exist before it does, and no evidence that one does in the real world.

[–] JackGreenEarth@lemm.ee 2 points 1 day ago (4 children)

Proper screen sharing and xclicker is Why I occasionally switch back to X

[–] JackGreenEarth@lemm.ee 0 points 1 day ago (2 children)

You really think when we actually have the power to automate all labour the 1% are still going to be able to hoard all the resources? Now, when people have to work to live, it dissuades them from protesting the system. But once all labour is actually automated, there would be nothing to prevent the 99% from rightfully rising up against the 1% trying to hoard all the resources (which the 1% generated without any effort) and forcing societal/structural change.

[–] JackGreenEarth@lemm.ee 2 points 1 day ago (3 children)

I want - and think will happen - 95% of jobs to be automated eventually. But even in the transition period, where some jobs are automated and some aren't, universal basic income can be a tool to make it livable for all in the transition period.

[–] JackGreenEarth@lemm.ee 1 points 1 day ago

Assigned Cop At Birth

[–] JackGreenEarth@lemm.ee 3 points 1 day ago (9 children)

I want to be made obsolete, so none of us have to have jobs and we can spend all our time doing what we like. It won't happen without a massive social systemic change, but it should be the goal. Wanting others to have to suffer because you think you should get rewarded for working hard is very selfish and the fallacy of investment, that you feel you should continue a bad investment even if you know it's harmful or it would be quicker to start over, because you feel you don't want your earlier effort to go to waste.

[–] JackGreenEarth@lemm.ee 36 points 3 days ago (1 children)

To me they just say 'I have stuff to hide from you, not from Google, Facebook, or the government.'

 

They would lose any magical powers they may have had in the book, but anything they are, rather than can do, will stay. For example people from the His Dark Materials world would keep their daemons. You can take them out at any time in the story's plot, but for all other people consuming the media, it will be shown that the character suddenly disappears, with the rest of the plot being affected accordingly. People will notice this happening. The character is not under any sort of control by you once you have taken them out of the story, although they will appear next to you to start with.

 
2
What does your desktop look like? (share.jackgreenearth.org)
submitted 3 months ago* (last edited 3 months ago) by JackGreenEarth@lemm.ee to c/linux@lemmy.ml
 

Here's mine. No inspiration at all taken from a certain California based company's OS ;p

I use:

  • Manjaro OS
  • GNOME desktop
  • WhiteSur icon theme (with a few icons changed in the desktop file)
  • WhiteSur GTK and shell theme
  • Bing wallpaper
  • net speed simplified
  • Logo Menu
  • Show Desktop
  • Top Bar Organiser (to move the time to the right)
  • Overview background

I apologise if I missed anything.

206
Great, the worst of both worlds. (share.jackgreenearth.org)
submitted 3 months ago* (last edited 3 months ago) by JackGreenEarth@lemm.ee to c/android@lemmy.world
 

I can't root my phone because I don't have an image for it (Moto G73) although I'd like to, but for some reason my banking app thinks it's rooted and refuses to work. This happened just after I updated it, it wasn't happening before.

Edit: I'm regretting not getting the Motorola Edge 40 Neo, which also costs £250, but is slightly better in multiple ways, and seems like it has better root support.

 

I saw people going on about how great BG3 is on this site, so I thought I'd check out a let's play to see what all the fuss was about. I immediately fell in love with the graphics and the mechanics, such as the classes, races, spells, dice etc, but I disliked the emphasis on gore/horror in the game, and I know I wouldn't enjoy playing a game with that whole brain horror thing going on. Not to mention the price and storage requirements being excessive. (150GB!)

So, bearing in mind that, is there a game that would match my criteria, and if not, what do you think comes closest?

 

Intended output: { children: { Display: { children: { ... value: 2 } } } }

Real output: { children: {}, Display: {}, ... value: 2 }


Code:

// Load default settings
let defaultSettings;

load("/assets/json/default-settings.json", 'json', function(defset) {
	defaultSettings = defset;

	// Create custom settings
	if(!Object.keys(localStorage).includes('settings')) {
		setLs('settings', JSON.stringify({}));
	};

	customiseSetting('Display/UI/Distance', 2)
});

function settingURL(url) {
	return('children/' + url.split('/').join('/children/') + '/value');
}

function customiseSetting(url, value) {
	url = settingURL(url);

	// Split the string by '/' and use reduce to access the nested properties
	const newSettings = url.split('/').reduce(function(accumulator, val, index, array) {
		// If the object does not have the current component as a property, create an empty object for it
	  	// If the current component is the last one, assign the value
	  	if (index == array.length - 1) {
			accumulator[val] = value;
	  	} else if (!accumulator.hasOwnProperty(val)) {
			accumulator[val] = {}; // update the accumulator object
		}

		log([accumulator, val, index, array])
		// Return the updated object
	  	return(accumulator);
	}, JSON.parse(ls('settings')));
	log(newSettings);
	setLs('settings', JSON.stringify(newSettings));
}

I've been trying unsuccessfully for several days to fix to what must be a simple error. I've looked over it myself, but I can't find the cause of the bug. I asked Bing, which usually helps, but it was unhelpful. So I'm sorry to be bothering you, but if you could help me solve this problem, I would really appreciate it.

EDIT: I fixed my code by using a recursive function as follows:

function customiseSetting(url, value) {
	url = settingURL(url).split('/');

	let newSettings;

	function recursiveSet(object, list, index, setTo) {
		// If the current component is the last one, assign the value
		if(index == list.length - 1) {
			object[list[index]] = setTo;
			return(object);
		} else {
			// Check if it already contains the value
			if(object.hasOwnProperty(list[index])) {
				object[list[index]] = recursiveSet(object[list[index]], list, index + 1, setTo);
			} else {
				object[list[index]] = recursiveSet({}, list, index + 1, setTo);
			}
			return(object);
		}
	};

	newSettings = recursiveSet(JSON.parse(ls('settings')), url, 0, value);

	log(newSettings);
	setLs('settings', JSON.stringify(newSettings));
}
 

Basically the title. I installed Lemuroid recently and was wondering if you had any suggestions for specific 3d racing games you could recommend.

 

Rules:

*You can teleport into and out of it at will

*It has a couple of plug sockets and can connect to internet from the region you teleported in from

*You can take objects and people with you

*As already stated, it is (3m)^3 (3m*3m*3m). The walls are plain plaster with a light in the middle of the ceiling. The pocket dimension is topologically toroidal, so if there weren't walls and a ceiling/floor (which you can actually destroy) you would loop if you went more than 3m in any direction. Gravity, then, is artificial and can be altered to anywhere from 0 to 2g from a dial on the wall.

Edit: additional specifications

*You can only teleport out to where you teleported in from.

*Time proceeds at the same rate inside the pocket dimension

*There is an eject button for those inside to get out if something happens to you

 

Like carving a block of stone to leave only the form of a horse.

The stone (or the information space) already contained the horse, and a million other possibilities, the job of the artist is to collapse those possibilities into a single reality.

 

I'm using espeak (from F-Droid) for text to speech, and it's working great. I'd like an app that does speech to text though, ideally supporting Swedish as well as English for Duolingo purposes, but even just English would be more than I have now.

view more: next ›