Fanghole

joined 1 year ago
[–] [email protected] 4 points 3 months ago (4 children)

Just in case this isn't a bit: OP, the structure in English should be "adjective noun." The opposite to most romantic languages where you say the noun then the description word. So a cat girl is a girl (assumed human) that can be described as a cat (has the traits of a cat). A girl cat is more reasonably a cat that is a girl, though you'd probably say "female cat" more often. For allergies you'd want to look into hypoallergenic cats like the hairless sphynx.

[–] [email protected] 3 points 6 months ago
[–] [email protected] 3 points 8 months ago

I would increase the landmass on Earth such that the Earth itself was only 50% ocean. I would do so in a grand display of power utilizing some sort of ancient and supreme Titan, one that brings into undeniable question the foundation of all world religions and even evolution itself. Now having shown that I possess the power of a god. I would descend upon Israel and the surrounding lands and demand all of them migrate to one of the many new landmasses, so that I may reign in my new palace from a place of former conflict, symbolically showing that increasing the amount of landmass in the world helps end conflicts. Should any people resist, I shall simply displace them forcefully with a shower of Precipice Blades. The water displaced for the new land masses would be evaporated into the atmosphere, leaving behind a large amount of salt and eventually precipitating back down as fresh water. While in the atmosphere a large amount of the Earth would be covered in dense clouds cooling it and causing an Ice Age that staves off Global Warming, but creating harsh temporary conditions that the Israelites and Palestinians must learn to live and overcome together as they worship their new god... Me. Eventually power will corrupt me and I will grow tyrannical. Then the either binary son or daughter of an Israeli-Palestinian couple will stand up to me, capturing other beings of power to fight me in a grand battle, at the age of 10 uears old.

[–] [email protected] 1 points 9 months ago

Wooo! Guanxi!

[–] [email protected] 4 points 9 months ago (2 children)

Thank goodness they're bringing in Mr Sanjome more. I really liked it when he did that one thing that one time some number of chapters ago.

[–] [email protected] 2 points 9 months ago

Glad we're finally getting more of Mr Sanjome. He's been in a lot of chapters since the beginning, and did that one thing that one time, but it's good he's getting a more involved role now.

[–] [email protected] 4 points 9 months ago (1 children)

What she said was... Sweet? It's just getting more and more suspicious.

[–] [email protected] 3 points 9 months ago

I agree it's hard to binge. Which is a good thing for me because I'm like a cat and if I can binge I'll binge till I choke and die. Too many details for me to eat too fast here. This is one of the only manga where I'll actually read the end of chapter fun facts/non story stuff and learn.

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

I also miss dunking on Kanojo, Okarimishimasu. It's not even bad in a fun way by itself. I only read more so because people making fun of it was funny.

I also am really enjoying Healing Mage. I don't know how far you are, but currently, it seems to be building a pretty solid main party different from the one it introduces if that might make it better. But tbf, I didn't have much of a problem with the party splitting in the first place, so idk.

I need to start reading the paladin one again. Eventually.

[–] [email protected] 6 points 9 months ago (4 children)

The Dragon, The Hero, and The Courier, and Mage and Demon Queen are two completely different series I'm currently reading among others. I hope somebody else out there enjoys at least one of them as much as I do.

[–] [email protected] 3 points 9 months ago

The odds are atleast 3

[–] [email protected] 4 points 10 months ago

Like John Wick type of teleporting.

 

If you try to access a community on your local instance and it gives you a 404, this automatically takes you to your local instance's search instead and puts the community in for you.

Recommended to use with https://sh.itjust.works/post/33762](local instance redirect script) by @[email protected]

I started using Tampermonkey today, so dunno if this works with GreaseMonkey, but I assume it does.

// ==UserScript==
// @name         Lemmings Redirect
// @version      1.0
// @description  Redirect to your local Lemmy instance
// @author       @reddthat.com/u/Fanghole
// @match        https://*/c/*@*
// @icon         https://join-lemmy.org/static/assets/icons/favicon.svg
// ==/UserScript==

var unknownLemmy =
  document.body.textContent === "404: couldnt_find_community";

if (unknownLemmy) {
    // Get URL info
    var splitUrl = location.href.split("/");
    var split2 = splitUrl[4].split("@");
    var instanceUrl = split2[1];
    var community = split2[0];
    var searchUrl =
        "https://" + splitUrl[2] + "/search/q/!" + community + "%40" + instanceUrl + "/type/All/sort/TopAll/listing_type/All/community_id/0/creator_id/0/page/1";

    window.location.replace(searchUrl);
}
view more: next ›