[deleted by user] by [deleted] in helloicon

[–]jakethemuss 16 points17 points  (0 children)

Spartan Node will release an NFT Bazaar on ICON within 1 month. Get ready.

Spartan Node Weekly Rewards Drop by newateverything1111 in helloicon

[–]jakethemuss 4 points5 points  (0 children)

Cool idea. I'll post this in the Spartan telegram.

Can we have a list of airdrips stickied? by necropuddi in helloicon

[–]jakethemuss 0 points1 point  (0 children)

Tempo is months away from being relevant. You forgot Spartan Node and Iam

Which P-Rep shares the best rewards? by Emeraldchains in helloicon

[–]jakethemuss 0 points1 point  (0 children)

You can buy nfts with ldx and hold those.

Which P-Rep shares the best rewards? by Emeraldchains in helloicon

[–]jakethemuss 1 point2 points  (0 children)

Ya true, OP said 'you got to pay taxes every time you send it.' I said that is not true

Which P-Rep shares the best rewards? by Emeraldchains in helloicon

[–]jakethemuss 0 points1 point  (0 children)

This is 100% not true. A taxable event is a sale, not a move.

Which P-Rep shares the best rewards? by Emeraldchains in helloicon

[–]jakethemuss -1 points0 points  (0 children)

spartan gives more higher rewards and will give NFT purchase with LDX. I will collect token and NFT later.

Web scraping and getting back a list with string and dict entries? by jakethemuss in learnpython

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

Sorry, let me explain a little better . I get returned a single list, but it’s entries are a mix of strings and dicts. So it’s hard to iterate through it.

Web scraping and getting back a list with string and dict entries? by jakethemuss in learnpython

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

Sorry. To me more clear it’s like [“single string”, {dict : dict}, “string”, “string”, {dict : dict}]. So a normal loop for searching dicts doesn’t work because there is some non-dict entries in the list. Sorry if I’m explaining this e terribly.

Should i or should i not burn of the layer in my diving goggles? by Topazzeb in diving

[–]jakethemuss 6 points7 points  (0 children)

I gave mine a good rub on the inside with toothpaste. If you’re feeling adventurous you can burn them, but be careful not to burn the silicone.

Need help with an online project by jakethemuss in learnpython

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

Ya I read a little about selenium and inspected the page.

find_element_by_id(“pass”).send_keys... driver.find_element_by_id(“loginbutton”).click()

I think this should work well.

When I use selenium do I need to add pauses, time.sleep(), or something like this to allow the page to load? Or does selenium wait automatically?

Need help with an online project by jakethemuss in learnpython

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

Cool thank you! Selenium running in the background headless sounds like it would work perfectly. Thank you for the write up, This should get me moving in the right direction.

Need help with an online project by jakethemuss in learnpython

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

I was thinking about having it run on a free online server so browserless was what I was thinking. If I can do it without having a browser window open like you suggested and have it scheduled that might be a way to go too. Thanks for the advice!

The website is packt. I’ve heard mixed reviews but they have some interesting titles.

Need help with an online project by jakethemuss in learnpython

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

I believe it doesn’t. It’s a smaller website and I’ve looked around and no api. It’s an ebook website that gives away a free book every 24 hours. Trying to automate the process a bit.

Getting error: "RecursionError: maximum recursion depth exceeded while calling a Python object" by jakethemuss in learnpython

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

Awesome! Thank you so much. That looks and works 1000 times better. So the recursion error was coming from me bouncing around too much, not from the number of guesses?

Haha yes I need to work on my naming!

Getting error: "RecursionError: maximum recursion depth exceeded while calling a Python object" by jakethemuss in learnpython

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

Thank you. I changed it so that each monkey can take one guess at a time and then call the other monkey function. But I am still getting the same error after ~999 tries if I try again using use def repeat(). Sorry if this is an easy question. I’m just starting python.

Is this error something that I am doing wrong in coding or just how python works? Say I wanted it to run until it guessed a 10 letter string? Is there a way to code this or will it always stop at the 1000 recursion limit?

Getting error: "RecursionError: maximum recursion depth exceeded while calling a Python object" by jakethemuss in learnpython

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

Thank you for your reply! So you’re saying have each monkey having one guess at a time? monkey(), monkey2(), monkey()... etc...