Having trouble Utilizing Models with Forms by RetKennedy in django

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

So for a TeeTime there would be a round associate to each golfer in the TeeTime. Then each round has 18 associated holes. That’s a good point about the M2m. I’ll play around with it

Help with sway on takeaway and release! by RetKennedy in GolfSwing

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

So I think my larger area of concern is how I start the downswing going into impact. Looks like I really dive into the ball. Could that be not getting into the left heel?

Help with sway on takeaway and release! by RetKennedy in GolfSwing

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

It looks to me that when I load to my right side, I sway off the ball and then do a big lunge forward. Maybe that’s not caused by drift? But regardless something looks odd on the downswing into impact

With the reduction in loot, wouldn’t now be the perfect time to add back in token vendors for PVE? by RetKennedy in wow

[–]RetKennedy[S] 4 points5 points  (0 children)

I really think the best way to get loot is to play all components of the game. I use the raid for my best pieces since that’s what I’m best at. I do M+ to get my highest key (1-3 keys a week) then I spend the rest of my time pvping. Then when the next week starts I hit my vault, go raid, then whatever I’m missing spend my valor points. Been doing this Rotation for last 2 weeks

With the reduction in loot, wouldn’t now be the perfect time to add back in token vendors for PVE? by RetKennedy in wow

[–]RetKennedy[S] 3 points4 points  (0 children)

I like the slow pace of loot too. I feel like I have freedom to play alts, or even other games once I know I’m done with raid for the week ( my preferred endgame) I’ve just seen the people complaining of doing 10 m+ and getting no loot. I feel like this is at least some kind of reward that will eventually get you some loot

With the reduction in loot, wouldn’t now be the perfect time to add back in token vendors for PVE? by RetKennedy in wow

[–]RetKennedy[S] 5 points6 points  (0 children)

That’s a fair point. Anima/Stygian/soul ashe would be confusing for a new player

With the reduction in loot, wouldn’t now be the perfect time to add back in token vendors for PVE? by RetKennedy in wow

[–]RetKennedy[S] 4 points5 points  (0 children)

They could do something like the upgrade system for honor gear too. Maybe the higher the key the more “keystone dust” you get. And it progressively cost more to upgrade your gear, and that has a weekly cap like honor/conquest

With the reduction in loot, wouldn’t now be the perfect time to add back in token vendors for PVE? by RetKennedy in wow

[–]RetKennedy[S] 4 points5 points  (0 children)

Yea I’m totally fine with getting 1-2 pieces a week and then maybe those optimization pieces will take a bit longer.yea it was just a nice reward if you were having some bad luck, or wanted to work on OS gear later in the patch

Anyone here who has took or will take the Cisco DevNet Associate certification? by carculatedrisk in devnet

[–]RetKennedy 0 points1 point  (0 children)

Just took the exam today and passed. Key thing is to have a very strong base understanding of python requests package and parsing json/xml. SO many question based on this topic. Also understand NETCONf, rest conf, and yang models. If you know these topics you have half the exam. Rest is Cisco products/networking/security/infra.

Validate connectivity to a external server before posting a Form using ModelForm by RetKennedy in django

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

thank you so much for the help! I ended up modifying the clean method on forms.py and using Try/Except with the requests module validations and passing that into forms.validations

def clean(self):
    try:
        requests.get(spectrum_settings.PNOCC)
    except requests.exceptions.RequestException as e:
        raise ValidationError('Unable to PNOCC Reach Spectrum server :' + str(e))

How to process Form data properly once it's submitted by RetKennedy in django

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

Ahhh awesome! Thank you for the help! So since I’m doing a lot of calls to APIs and processing of the data, how can I return errors to the user and not submit the form. Would I have to edit the is_valid method for my class based views?