[-] Fanghole@reddthat.com 5 points 6 months ago

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.

[-] Fanghole@reddthat.com 3 points 8 months ago

Obviously it depends on the deck, but in general you want a large number of item cards and less pokemon and energy.

Item/trainer cards provide a lot of ways to draw/recycle and support your pokemon/energy and you'll likely want to see a bigger ratio of them in your opening hand. Especially since you're not going to go through too many more pokemon than you have prize cards and you can only have 1 active pokemon at a time with 6 total in play.

So the exact ratio depends on the deck and the pokemon you are trying to support, but essentially you shouldn't be running more the 15 pokemon and 15 energy on a high end. 12 pokemon is pretty standard. Most of the rest of your deck should be search and draw cards which there should be plenty of.

Disclaimer: I don't play this game.

[-] Fanghole@reddthat.com 3 points 9 months ago
[-] Fanghole@reddthat.com 7 points 11 months ago* (last edited 11 months ago)

That's not the same logic though. His logic is "Noun A is part of noun AB, that does not mean noun AB is equal to or a subset of A." While the way you're interpreting it is "Noun A is part of noun AB, thus AB is not equal to and not a subset of A." The important part is that his logic only dictates that the relationship between A and AB are independent of eachother, while your interpretation states that A depends on AB in an inverse manner. Ie: "We cannot say popcorn is or is not corn based on name alone," vs "popcorn cannot be corn because corn is in the name."

Not taking a side on social justice, the logical comparison you attempted just bothered me. Thank you for coming to my Ted Talk.

[-] Fanghole@reddthat.com 4 points 1 year ago

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.

[-] Fanghole@reddthat.com 4 points 1 year ago

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

[-] Fanghole@reddthat.com 3 points 1 year 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.

[-] Fanghole@reddthat.com 6 points 1 year ago

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.

[-] Fanghole@reddthat.com 4 points 1 year ago

Like John Wick type of teleporting.

[-] Fanghole@reddthat.com 6 points 1 year ago

In a way it is maturing. The first step to change is introspection and self reflection. This was... close enough.

[-] Fanghole@reddthat.com 5 points 1 year ago

I can imagine your service advisor smirking every time the customer complained and it brings me delight. Her and your manager make it sound like an amazing workplace.

1
submitted 1 year ago* (last edited 1 year ago) by Fanghole@reddthat.com to c/plugins@sh.itjust.works

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 @soy@lemmy.world

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 ›

Fanghole

joined 1 year ago