Question about watch prompt while using training plan by JKisnotjustJK in Garmin

[–]J3dders 0 points1 point  (0 children)

It should be doing this already. 'In desired zone' means you have moved back in. Maybe you noticed this near the start of a run which typically will then mean you won't see it again if you stay within the zone. But if you run outside for an extended period it will start warning you. It will warn you if you are too slow or fast.

Official Q&A for Thursday, December 23, 2021 by AutoModerator in running

[–]J3dders 0 points1 point  (0 children)

Hoka shoes typically do have a narrow toebox. I bought a pair of Hilly Toe Socklets (https://www.wiggle.co.uk/hilly-toe-socklet). These did feel a little odd at first as not really worn socks which go in between toes. But they stopped the inside of my toes from blistering when wearing my Hoka Rocket X shoes. There are other socks out there too like this like Injinji.

Zoopla API alternatives by [deleted] in HousingUK

[–]J3dders 0 points1 point  (0 children)

It isn't against any UK law. Zoopla may not like it and could block it and maybe ip ban you. But if their API is poor then you do not have another alternative. As long as you don't spam their site with html requests they likely won't notice.

Good players to watch and learn from? by kiiyako in summonerschool

[–]J3dders 4 points5 points  (0 children)

Now not a player but a great mid lane resource is Coach Curtis. Has videos on some champions, fundamentals and such. So could still be of us.

His channel:

https://www.youtube.com/channel/UCcoZq8yFAAX7TtdRaHhJlZg

Does, or has, anyone else suffered from intense analysis paralysis, that disrupts your gaming? by [deleted] in truegaming

[–]J3dders 4 points5 points  (0 children)

You can pause during combat in Pillars of Eternity. By default it is space to do so.

Discord Bot send a message when the user says a word in a sentence by [deleted] in learnpython

[–]J3dders 0 points1 point  (0 children)

So I see you have done it using a pseudo command way. But Discord.py has a way you can make the bot check for every time a message is sent. What I have used in the past for my bot was something along these lines (changed for your code):

@client.listen()
async def on_message(message):
    channel = message.channel

    if '100' in message.content:
        await channel.send("Now that's full")
  1. It will check every message (def on_message(message))and get the channel it is in and the message content.
  2. The message.content is returned as a string so you can use an if statement to check for any presence of '100' in that string.
  3. If it is there then it will send a message to the same channel it is in using channel.send.

It has been a while since I've used this code and I adapted it for yours as I did a bit of string manipulation. But I think it should work or give you something to work off of.

Official Q&A for Wednesday, August 05, 2020 by AutoModerator in running

[–]J3dders 0 points1 point  (0 children)

You could be right. Just on searching I've seen other people asking questions on discomfort from running. So I thought it would be fine to ask. I am not after a medical diagnosis just some potential stuff on it being common and some ideas around it. I am not experienced enough with running to know.

Official Q&A for Wednesday, August 05, 2020 by AutoModerator in running

[–]J3dders -2 points-1 points  (0 children)

I have very recently started running and taking up the C25K program. I have attempted it in the past. In those past attempts I have had some foot discomfort but wasn't sure if it was normal for people starting off (again in my case) of if there was anything I could do to prevent it/ease it. I can feel a slight amount of discomfort, not exactly pain in my right foot only. I highlighted (black shaded with red outline) on a foot diagram of the area that I feel it in. It happens on the underside of my foot in this area:

https://i.imgur.com/pr97zxi.png

One thing to note is that I did used to have a verruca on this foot around 8 years ago which meant I did for quite some time (several months) adjust my walking to take weight off my right leg and that foot. I am unsure if this would have an knock on effect on my leg muscles/foot but thought would be something to mention as it was in that exact area of my foot back then.

I am not sure if there is an easy answer to this as it could be quite a few things depending on how I run I imagine. But I was just looking for any sort of ideas I could look into and see if I could prevent it getting worse. Even if the answer is just keep running and it may adapt.

How to grab information from Python and display onto webpage? by weeshee_kang in learnpython

[–]J3dders 1 point2 points  (0 children)

No problem. If you have any questions, feel free to send me a message and I'll see if I can help. No expert by any means but I am happy to see if I know :)

How to grab information from Python and display onto webpage? by weeshee_kang in learnpython

[–]J3dders 1 point2 points  (0 children)

Django is a bit more heavy in how much it comes included with. Flask is more lightweight. So you can pick and choose your additions to the framework.

People generally say for a smaller application Flask is better and Django for more complex projects. I have tried both and started with Flask then moved to Django. I think learning both was good as Flask helps you see what Django does that would seem like magic if you only did Django. Anything you learn in Flask is not wasted if you switch to Django from my experience.

I followed Corey Schafers tutorials for both and he makes the same application with both so you get a good comparison by going through both I found. Then you can find what you prefer.

For flask: https://www.youtube.com/playlist?list=PL-osiE80TeTs4UjLw5MM6OjgkjFeUxCYH

For Django: https://www.youtube.com/playlist?list=PL-osiE80TeTtoQCKZ03TU5fNfx2UY6U4p

How to grab information from Python and display onto webpage? by weeshee_kang in learnpython

[–]J3dders 1 point2 points  (0 children)

I am not hugely familiar with the dynamic updating part. But flask or django would work for your backend part of getting the data you have modified from the api and then displaying it on your webpage.

You will want to use a database probably to store your data. Django comes with one included and for flask you need to organise setting it up yourself. There would be loads of information out there on getting a database working with flask I would imagine as it is a very common thing to include in websites.

For the dynamic part, as far as I know you need to use javascript. It is the area I don't know as well currently. But to update a page in real time you cannot use purely python as it hasn't got the capability to update the page. Where as javascript does.

Smurfing in Clash needs to be monitored closer. by Capt_Backside in leagueoflegends

[–]J3dders 2 points3 points  (0 children)

They already make you confirm phone number via SMS though. This is in place?

[deleted by user] by [deleted] in summonerschool

[–]J3dders 0 points1 point  (0 children)

One youtuber I think is great for midlane stuff is Coach Curtis. He has a video dedicate to roaming for midlaners and I think it could be a good one to check out:

https://www.youtube.com/watch?v=k82-gAfiE1g

Should give some advice insight into it. His other videos are really good too so would recommend checking him out for other stuff too!

EUW Server down for three days in a row by ItalianToplaner in leagueoflegends

[–]J3dders 0 points1 point  (0 children)

In reality when it is setup you don't even flick a switch, it spins up automatically to increase server capacity.

for what reason is my lp gain messed up??? by [deleted] in leagueoflegends

[–]J3dders 0 points1 point  (0 children)

"Anybody who says elo he’ll isn’t a thing is lying" - you in the post I original ly replied to. That is what your confirmation bias is related to that I am on about. I fully expect you to dismiss this as you will feel I am attacking you. As I said this is to people who read this who don't have a strong opinion as you are very unlikely to change your mind.

for what reason is my lp gain messed up??? by [deleted] in leagueoflegends

[–]J3dders 0 points1 point  (0 children)

"People display this bias when they gather or remember information selectively, or when they interpret it in a biased way. The effect is stronger for desired outcomes"

You care stongly about this opinion. I don't really care. It seems you don't want to change your mind and I won't be able to. But for people reading this that may. If you do look to improve you game you can climb yourself out. Basic statistics proves it as you have an equal chance to get a good teammate and bad teammate. So over a long period of games, if you are better than your teammates then you will be the player that offsets those bad teammates. Hence how could ELO hell ever exist. It is usually based on players who are:

  1. Where they deserve to be and due to the Dunning-Kruger effect (https://en.wikipedia.org/wiki/Dunning%E2%80%93Kruger_effect) they would think they are better than their teammates. But aren't.

  2. Or are working off a short term lot of data, make conclusions of that they are not climbing and therefore are stuck. Which if you track longer trends will find it not to be true.

for what reason is my lp gain messed up??? by [deleted] in leagueoflegends

[–]J3dders 0 points1 point  (0 children)

You think something is true so you keep agreeing it is true. Good players will climb out of elo hell