JackGreenEarth

joined 11 months ago
[–] [email protected] -3 points 10 hours ago (2 children)

There's a difference between terrorism and war, even if it's equally despicable. For example, the Nazis were too big to be called terrorists.

[–] [email protected] 9 points 12 hours ago (1 children)

You don't think people should have the right to speak free from government interference? I very much disagree with her, but I don't want to live under a fascist state that bans opposing opinions.

[–] [email protected] 41 points 1 day ago (3 children)

Parents have the right to mutilate their children's genitals without consent, but not allow their trans kids to make their own decisions about their body 🤦

[–] [email protected] 1 points 1 day ago

No, fine on Voyager on Android 14 for me

[–] [email protected] 3 points 1 day ago (1 children)

Imagine if you can

[–] [email protected] -1 points 1 day ago (1 children)

Is that sarcasm? The mods have removed all the povs they presumably disagree with.

[–] [email protected] 4 points 1 day ago (2 children)

That would imply there's an Apple device connected to the internet on Jupiter.

[–] [email protected] -1 points 1 day ago (1 children)

You have no obligation to teach me, correct. But if you choose not to, you have no right to criticise me without backing up your claims. Pick one.

[–] [email protected] -2 points 1 day ago (3 children)

Oh, wow! You 'work in ML projects', do you?

Then maybe you could point out specific examples of me not knowing what I'm talking about, instead of general dismissiveness?

[–] [email protected] -4 points 1 day ago (5 children)

You are very skilled in the art of missing the point. LLMs can absolutely be used as chatbots, amongst other things. They are more advanced than their predecessors in this, and work in a different way. That does not stop them from being a form of artificial intelligence. Chatbots and AI are not mutually exclusive terms, the first is a subset of the second. And you may indeed be referring to AGI or ASI as AI, a misconception I addressed in my earlier comment.

[–] [email protected] 7 points 1 day ago (1 children)

What are they automatically making the phones do though?

[–] [email protected] 1 points 1 day ago (1 children)

What GPU are you using?

 

Coming to Skyrim from The Witcher 3, and two things I really feel the absence of is realictic lighting that makes the whole world look flat and boring, and hard to look at for too long, and that quest markers show you the direction of the quest, but not the path to get there on the minimap.

What mods that work well with playing on Linux through Proton do you recommend (and how to install them)?

 

This is outrageous! I was replaying The Witcher 3, and when I got to the A Hallowed Horn quest, I remembered that last time, Mithias got annoyed at me for killing the thieves. So this time, when I got to the thieves, and already knew that the horn was in a chest, rather than any of the thieves inventories, so I didn't actually have to kill them, I took care to not kill any of the thieves, while still retrieving the horn - which was a difficult job, as I couldn't loot the chest while the thieves were nearby, so I had to lure the thieves away from the chest, then circle back, and in the extremely narrow time window between when the battle music stops, and when the thieves return to the chest - as they start to return immediately once the battle music stops, loot the chest - made even more difficult by the game's janky input mechanics, where it seems to treat all inputs as a queue (moving, pressing 'e' to loot, etc), so I had to make sure not to queue up too much movement so I could quickly loot the chest before the thieves returned - anyway, I did it, after a lot of effort and time, and the cheek! Geralt still said that he killed the thieves when talking to Mithias, as if all that effort to not harm a single hair on their heads was for nothing!

 

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.

 

cross-posted from: https://reddthat.com/post/18256270

Don’t upvote this

 
415
What does your desktop look like? (share.jackgreenearth.org)
submitted 3 months ago* (last edited 3 months ago) by [email protected] to c/[email protected]
 

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.

552
Great, the worst of both worlds. (share.jackgreenearth.org)
submitted 3 months ago* (last edited 3 months ago) by [email protected] to c/android
 

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?

1
submitted 4 months ago* (last edited 4 months ago) by [email protected] to c/[email protected]
 

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));
}
view more: next ›