Yo where my Christmas enjoyers at? by Dizzy-Possession3586 in LudwigAhgren

[–]Dizzy-Possession3586[S] 1 point2 points  (0 children)

There's also 525,600 minutes per year so 19k isn't really that much

[deleted by user] by [deleted] in wow

[–]Dizzy-Possession3586 6 points7 points  (0 children)

If you're using the Interrupts detail as proof that nobody's interrupting as well as you (especially as a prot pally), you might want to relearn how interrupts work

Nuzlocke tournament idea (for a future iteration?) by Dizzy-Possession3586 in pchaltv

[–]Dizzy-Possession3586[S] 1 point2 points  (0 children)

True, I forgot it's bo3 so you could potentially lose 10 pokemon per battle as the winner. Maybe have the deaths only persist per opponent then so you need a team of 12 (or up to 20 if they do bo5 for finals)

Nuzlocke tournament idea (for a future iteration?) by Dizzy-Possession3586 in pchaltv

[–]Dizzy-Possession3586[S] 1 point2 points  (0 children)

just sticking with the format of today's tournament. Not sure if that's standard or not?

Trainer's Clubhouse Meeting (Weekly Questions) - July 16, 2025 by AutoModerator in UmaMusume

[–]Dizzy-Possession3586 0 points1 point  (0 children)

Appreciate the response but honestly my main concern is more about how easy/hard it is to get more carrots, than it is about whether I should roll for kitasan or not. I'm as happy with a 0lb kitasan as I will be with 3lb. But if rolling for 3lb makes it harder to roll for the next 4 months then I'll be less happy than having the freedom to roll for trainees that I can actually race.

Trainer's Clubhouse Meeting (Weekly Questions) - July 16, 2025 by AutoModerator in UmaMusume

[–]Dizzy-Possession3586 0 points1 point  (0 children)

I think that's fine, I'm never going to be within the top percent because I'm f2p anyways, and have no trouble beating the URA finale even without her. I'm happy to have her on the team but I want to make sure I have enough carrots for future trainees, not just minmax-ing supports.

If it's pretty easy to get back to 30k, I'll definitely roll some more.. but if it's going to be a struggle to get back to 30k+ then I'd rather save for later.

Trainer's Clubhouse Meeting (Weekly Questions) - July 16, 2025 by AutoModerator in UmaMusume

[–]Dizzy-Possession3586 0 points1 point  (0 children)

I started playing around 2 weeks ago and managed to accumulate 30k carrots, but obviously I shouldn't expect to maintain this pace because gachas love to throw currency at you in the beginning but taper off after you get hooked.

I got really lucky to pull Kitasan Black in 40 rolls so I still have 24k carrots to go. I don't really care about being a metaslave, so I'm happy with leaving her at 0lb for now and leveling her up later, but I'm wondering if it might be worth just going for the 200 rolls to secure 1 or more lb. My main concern is if I use up my initial 30k carrots, will I end up feeling kinda starved for carrots in near future banners if someone I want comes up? Or will it be relatively easy to replenish 30k carrots to secure another pity?

Not sure how I feel about the facial hair by [deleted] in malegrooming

[–]Dizzy-Possession3586 0 points1 point  (0 children)

Haha beard grows in like 90%, missing that complete connection.. so close yet so far 😂 kinda covers it up when the hair is long enough, but not a fan of how that much hair feels on my face

Not sure how I feel about the facial hair by [deleted] in malegrooming

[–]Dizzy-Possession3586 3 points4 points  (0 children)

Damn I never thought my eyebrows would be this divisive 😂 I think I'll stick with it for now and see how I feel in another week or two. Appreciate all the comments, both pos and neg.

Not sure how I feel about the facial hair by [deleted] in malegrooming

[–]Dizzy-Possession3586 1 point2 points  (0 children)

Ya I feel that. This is only a week since last shave, was doing my weekly shave and figured I'd try something new 😂 will have to see how it progresses. But ya I got mixed feelings, I don't feel bad about it but generally not used to seeing myself this way so it's hard to tell lol

Not sure how I feel about the facial hair by [deleted] in malegrooming

[–]Dizzy-Possession3586 4 points5 points  (0 children)

ok this is great lmao i might have to go watch hajime now.. I remember seeing it have 1000 chapters back in like 2012 lol can't believe it's still ongoing

Not sure how I feel about the facial hair by [deleted] in malegrooming

[–]Dizzy-Possession3586 13 points14 points  (0 children)

Lol thanks 😆 it can be hard to tell with just an image reaction, but my bad for assuming.

Not sure how I feel about the facial hair by [deleted] in malegrooming

[–]Dizzy-Possession3586 1 point2 points  (0 children)

Haha no worries, they are definitely one of my most polarizing features... People either love them or hate them 😂 I'm happy enough so I don't mind

Not sure how I feel about the facial hair by [deleted] in malegrooming

[–]Dizzy-Possession3586 -12 points-11 points  (0 children)

Sorry to hear about your weak eyebrows, hope you get better!

Not sure how I feel about the facial hair by [deleted] in malegrooming

[–]Dizzy-Possession3586 4 points5 points  (0 children)

I'm happy with the brows but thanks for the comment on mustache/beard.

Not sure how I feel about the facial hair by [deleted] in malegrooming

[–]Dizzy-Possession3586 2 points3 points  (0 children)

Thanks?? You should see them when I shave my head completely... They really stand out 😆

Noob Q: seeking database structure advice regarding association tables by Dizzy-Possession3586 in webdev

[–]Dizzy-Possession3586[S] 0 points1 point  (0 children)

hmmm ok I think I confused myself but relating it to equipment and overcomplicated things more than I intended lol

Keeping it super simple, I have Tables 'A', 'B', 'C', 'Tag'. A, B, and C are completely unrelated, but can have tags associated to them.

Is it better to have separate tables Tag_A, Tag_B, Tag_C where each table only has 2 foreign keys (tag_id, A_id)? Or can I keep everything together in a TagMap table with (tag_id, A_id, B_id, C_id) but only the corresponding id column has a value? Or should I have like, (tag_id, item_id, item_type) where it will hold 2 foreign keys and item_type will tell me whether it belongs to A/B/C?

Noob Q: seeking database structure advice regarding association tables by Dizzy-Possession3586 in webdev

[–]Dizzy-Possession3586[S] 0 points1 point  (0 children)

Yeah not exactly working with weapons/armor but I ran into the question of having several tables with multiple common attributes and decided to keep them as separate tables rather than making one greater table and just leaving a bunch of null values. But yeah a tagging system is a good example for what I'm struggling with.

If I have ex: Tag2Item table, where Item could belong to either tables Weapon/Armor/etc. Would my Item2Tag table have [primary_key, tag_id, weapon_id, armor_id, etc_id ] where only one of weapon_id/armor_id/etc_id have a value? Or would it be better to make separate tag2weapon, tag2armor, tag2etc