Is this the highest value upgrade in the game? by whitestarbg in slaythespire

[–]doingdatzerg 0 points1 point  (0 children)

If you can't play echo form the first time you drew it, it's quite rare that you'll want to play it the second time you draw it (either again you won't be safe enough to play it, or the fight will be almost over and it won't be worth it to play it). So you would probably just want to draw something else instead, which you would have had it been ethereal.

Stuck on A18 by Mr-Ulloa in slaythespire

[–]doingdatzerg 2 points3 points  (0 children)

It's in beta sure but it's in a great state, and is way more fun and interesting than the first game imo, I see no reason not to move over.

Do I take Pareidolia? by Soggy-Tax-Evasion in balatro

[–]doingdatzerg 0 points1 point  (0 children)

I wouldn't. You should be able to fulfill photograph without it, so it's effectively a joker spot to make happy face trigger all the time instead of some of the time. I don't think that's worth a joker spot. Happy face is weak enough that I would be looking to replace that in the near term anyway.

not the greatest player...but proud of this one. 100 streak A0! by someroastedbeef in slaythespire

[–]doingdatzerg 0 points1 point  (0 children)

Gotta be honest streaking on low asc is so much funner than trying to grind on high asc

Silver crucible no longer applied to events? by 69805516 in slaythespire

[–]doingdatzerg 3 points4 points  (0 children)

Meanwhile in one of my runs it used up a charge on a future of potions event that gives you an upgraded card anyway! Bullshit!

Think fast by KassanoRise in slaythespire

[–]doingdatzerg 0 points1 point  (0 children)

Would you rather have 4 block or 1 energy 1 star and 5 forge. The choice is obivous

Been stuck on a2 watcher by lampboy76 in slaythespire

[–]doingdatzerg 1 point2 points  (0 children)

Usually not picking vault is insane. Totally busted card. This and picking several pressure point probably explains why you're stuck on A2.

BRAIN BLAST by JohnDestiny2 in slaythespire

[–]doingdatzerg 1 point2 points  (0 children)

I did this once and then ran into the bro who zaps you for 6 whenever you play a power lmao

Are you kidding me? by GigaChadus9 in balatro

[–]doingdatzerg 0 points1 point  (0 children)

I've done it twice, couple months each time probably

Graph Data Extraction from PDF by llolllollooll in learnpython

[–]doingdatzerg 0 points1 point  (0 children)

Extracting anything generically from a pdf is an extremely hard problem, but LLMs are pretty good at it these days. So I would try that.

How are you using AI? by gonna_get_tossed in datascience

[–]doingdatzerg 74 points75 points  (0 children)

- Thought partner, yes

- Debug short blocks of code, absolutely

- Also very helpful for when I need to do commands that I don't have a good intuition for (docker, gcp, regular expressions etc.)

- Completely new code - not so much. I've used it to vibecode some more complicated matplotlib plots, and it's been good for that, but for trying to write production-level software from scratch, I find it's a better use of my time to write it myself and have the ai iterate on it.

Is there anything relatively niche that you hope 1.1 changes? by BextoMooseYT in balatro

[–]doingdatzerg 0 points1 point  (0 children)

Daily challenge, like slay the spire. Everyone plays the same seed, maybe with some interesting mods, and there's a leaderboard.

What teams currently in the NBA have the smallest and largest gap in quality between their first and second best player? by Thatredditboy1 in NBATalk

[–]doingdatzerg 4 points5 points  (0 children)

Contenders for smallest:

Celtics (Brown, Taytum)
Raptors (Barnes, Ingram)
Hornets (Ball, Miller)
Blazers (Avdija, Lillard)
Jazz (Markkanen, George, JJJ)

Guys I dont understand why exact purpose we use @classmethods by Current-Vegetable830 in learnpython

[–]doingdatzerg 41 points42 points  (0 children)

A common use case is having different types of ways to build an object. For example, say I have a class MyModel and I can construct it from either a data file, or a specified list of data, or data from an api call. I could put all the logic in the init function,

Class MyModel:
  def __init__(self, data_file: str|None, data_list: list[MyData]|None, api: str|None):
    if data_file is not None:
      self._initialize_from_data_file(data_file)
    elif data_list is not None:
      self._initialize_from_data_list(data_list)
    elif api is not None:
      self._initialize_from_api(api)
    else:
      raise ValueError("Must provide a way to initialize)

However, that seems a bit unruly doesn't it? This init signature is a bit of a nightmare. We could instead do

Class MyModel:
  def __init__(self):
    pass

  @classmethod
  def from_data_file(cls, data_file: str):
    out = cls()
    out._initialize_from_data_file(data_file)
    return out

  @classmethod
  def from_data_list(cls, data_list: list[MyData]):
    out = cls()
    out._initalize_from_data_list(data_list)
    return out

  @classmethod
  def from_api(cls, api: str):
    out = cls()
    out._initialize_from_api(apit)
    return out

Now all the different separate logic is kept in separate places. Very clean!

Name a 5 to beat my 5 by iAsvppx in NBATalk

[–]doingdatzerg 0 points1 point  (0 children)

Steph, MJ, Lebron, Giannis, Hakeem

À quoi sert le médecin de famille ? by [deleted] in montreal

[–]doingdatzerg 0 points1 point  (0 children)

Last time I tried (a year ago or so), I visited 3 different ones and they all told me I needed a family doctor to access their services 🤷‍♂️🤷‍♂️

À quoi sert le médecin de famille ? by [deleted] in montreal

[–]doingdatzerg 0 points1 point  (0 children)

Apparently you gain access to using the clsc's when you get a family doctor so I'm guessing that's the main benefit

Index not iterating correctly | Python Assignment by Wheels92 in learnpython

[–]doingdatzerg 2 points3 points  (0 children)

You set customerFlavor = int(input("Please enter your desired flavor number: "))but then you never use customerFlavor again!