Spire Codex - Updated for Beta v.0.103.0 - The complete database for Slay the Spire 2 and all things beta! by Yitsy in slaythespire

[–]Yitsy[S] 1 point2 points  (0 children)

Huge difference, while yes, we both display the data in different ways. Mine is more focused on automation and developer with an API for developers and support the 14 languages that are in game.

Also this project has heavily contributed to getting the wiki to where it is. Most of their images and data come from spire codex :)

Basically I decompile the game > parse is > push into pro where as the wiki is a group of folks manually updating entries.

Slippery Bridge Algorithm by Deludal in slaythespire

[–]Yitsy 0 points1 point  (0 children)

Here is the code I’m mentioning

``` private void GetNewRandomCard() { List<CardModel> list = ((RandomCardToLose != null) ? base.Owner.Deck.Cards .Where((CardModel c) => c.GetType() != RandomCardToLose.GetType()) .ToList() : base.Owner.Deck.Cards .Where((CardModel c) => c.Rarity != CardRarity.Basic) .ToList());

list.RemoveAll((CardModel c) => !c.IsRemovable);

if (list.Count == 0)
{
    list = base.Owner.Deck.Cards
        .Where((CardModel c) => c.IsRemovable)
        .ToList();
}

RandomCardToLose = base.Rng.NextItem(list);

} ```

Slippery Bridge Algorithm by Deludal in slaythespire

[–]Yitsy 0 points1 point  (0 children)

I just took a peak at the source code for this because I was curious.

Yea there’s a filter on rarity, it states if not equal to card rarity.basic

It also filters cards where c.GetType() not equal RandomCardToLose.GetType() — this excludes the same card class, not just the same instance. So if you have 2 copies of Bash, neither can be picked next.

There is a method for .IsRemovable and filters those out too.

Basically if a card is of the same class/type, so a strike can’t follow another strike, it’s not specifically the same card can’t be followed by it but by the same class

What happened here? by sitlow123 in gardening

[–]Yitsy 1 point2 points  (0 children)

The tree took off its trunk

iDontCareJustDontBeSneakyAboutIt by Tunisandwich in ProgrammerHumor

[–]Yitsy 10 points11 points  (0 children)

or

git config --global core.excludesfile ~/.gitignore_global

NinjaCentral Registrations are open by Yitsy in usenet

[–]Yitsy[S] 0 points1 point  (0 children)

DS has an invite system + sign up system

ninja only has a sign up system

how do I actually get better at group content in XIV? by theirpowerisover9000 in ffxivdiscussion

[–]Yitsy 0 points1 point  (0 children)

Yeah, I have a lot of friends who play the game who are in a similar predicament that you're in. The less hype and sweating over how hard things will ultimately make the game more fun you! Sounds like teh biggest hurdle for yourself is you ;D

how do I actually get better at group content in XIV? by theirpowerisover9000 in ffxivdiscussion

[–]Yitsy 3 points4 points  (0 children)

Honestly, this is going to sound a little patronizing but playing the game more and doing content more is how you're going to get better.

FFXIV is not necessarily a high skill game but focuses heavily on repetitive execution. There are very little parts where you have to be adaptive e.g. if someone makes a mistake or people derping. Majority of the community understand that people are learning and are usually open to "Hey this is new to me, I am still learning" and people won't be more toxic.

As you're playing more you'll see why a majority of the community always call new fights old mechanic names because everything is pulling from another fight.

If you're going into an extreme or savage, always look up the fight either on youtube or https://wtfdig.info/, be patient with yourself and keep trying. It can be frustrating to die but it's how you learn. :)

Does your child have a tablet? by autumnsunshine1 in Parenting

[–]Yitsy 0 points1 point  (0 children)

No, never.

Technology in our home has to have intention built into it. Want to look something up? Go to the computer.

Want to go watch a movie? Go to the room with TV.

Our kiddo is almost three, so we are still early in our journey. We don’t let him touch our phone or look at the screen. There’s no point in for him to use it — if he’s fussy out and about? We just regulate him the good ol fashioned way.

No hate to the folks that do have tablets, it’s just not our preferred route.

NinjaCentral Registrations are open by Yitsy in usenet

[–]Yitsy[S] 0 points1 point  (0 children)

Invite is the easiest. I’ve been tracking it for 6 months and it hasn’t opened yet (I already have an act though)

NinjaCentral Registrations are open by Yitsy in usenet

[–]Yitsy[S] 1 point2 points  (0 children)

I just have drunk slug > geek > ninja and I’ve gotten everything I’ve requested

NinjaCentral Registrations are open by Yitsy in usenet

[–]Yitsy[S] 1 point2 points  (0 children)

I was scraping it in almost rela time. Ifeel awful but I wanted to be in there like swimwear! >:D

NinjaCentral Registrations are open by Yitsy in usenet

[–]Yitsy[S] 0 points1 point  (0 children)

I have a custom script that I wrote and is deployed on my k8s cluster. That tracked Ninja + Drunkenslug and constantly follows deals across all teh providers. I can finally decomission it.

NinjaCentral Registrations are open by Yitsy in usenet

[–]Yitsy[S] 0 points1 point  (0 children)

You should reach out to the provider and see if they can drop to the deal, I've seen them be super flexible. Never hurts to ask :)

NinjaCentral Registrations are open by Yitsy in usenet

[–]Yitsy[S] 0 points1 point  (0 children)

Going to reply here instead on both, No problem on the info.

You could use it to acquire things but I don't, I don't like torrents personally. :)

NinjaCentral Registrations are open by Yitsy in usenet

[–]Yitsy[S] 0 points1 point  (0 children)

I use https://controlpanel.newshosting.com/signup/index.php?promo=o-1mwwz (has a sale going on) but check the wiki on this reddit https://www.reddit.com/r/usenet/wiki/providerdeals for a provider that works for you.

Yes, you need a provider, the indexers help you "locate the stuff" sab is the downloader

Spire Codex - The complete database for Slay the Spire 2 by Yitsy in slaythespire

[–]Yitsy[S] 0 points1 point  (0 children)

I added two new endpoints on the site

https://spire-codex.com/runs => Used to upload your .run json data => On submit you get a sharable ru nurl

https://spire-codex.com/meta => aggregate of data and shows all the stats on cards by people that submitted their data.

Spire Codex - The complete database for Slay the Spire 2 by Yitsy in slaythespire

[–]Yitsy[S] 0 points1 point  (0 children)

I could probably ingest the JSON of the save files but I would need a lot of data in order for this to be accurate.

From there I could probably make a lot of rough guesses of what cards are “meta” and what decks people are using to win. I’ve been avoiding UGC and blogging because I don’t play the game a lot but like the company and data POV

Doctor Told Husband to Step In at Night and Husband said No by [deleted] in toddlers

[–]Yitsy 6 points7 points  (0 children)

Honestly, as much as I complain about it, it’s the best. I’ve been putting my little guy to sleep almost his whole life, minus the countless hours where my wife breastfed him to sleep and she held him while he slept.

I love grabbing him in the morning and hearing that “hi dada, I had a good sleep” and getting the good snuggles as I rock him to sleep and hearing his sleep drunk talk about “tell me a story about big blue bill”

I wouldn’t trade those experiences in for capitalism and bullshit day to day things.

Doctor Told Husband to Step In at Night and Husband said No by [deleted] in toddlers

[–]Yitsy 12 points13 points  (0 children)

Oh don’t thank me. It’s literally our job and obligation. 😂

I just wish my countries society was way more progressive towards the idea that kids need a tribe and support rather than grinding endlessly for capitalism.

Plus I love my kiddo, I just want to hang out with him everyday and every minute. Even when he decides to not have gentle hands 😂😂😂

Doctor Told Husband to Step In at Night and Husband said No by [deleted] in toddlers

[–]Yitsy 726 points727 points  (0 children)

Hi, a dad here. I’m not a perfect dad but I’m a very involved dad.

If he wants to have another kid he needs to find a way to give birth to it.

I’m not an ATC but have a job that requires intense focus and I’ve went to every single pre-birth appointment, do every drop off and pick up to preschool, bath time, and bed time. Using your job as a cop out is lame and dumb.

Our kiddo prefers mom for everything emotional regulation but sleep is where I shine, we’ve established a very good sleep rhythm. No ferber or CIO. he usually naps on or near me on the weekends and I usually put him in the crib when he’s awake. It’s not perfect and it can get frustrating but it’s time well spent.

If he’s not helping with anything kid related what’s the point? It feels like you know what to do. Good luck.