• 0 Posts
  • 19 Comments
Joined 11 months ago
cake
Cake day: July 25th, 2023

help-circle
  • Not quite!

    Try:

    mylist = [value for value in range(1,20)]

    This says I want to make mylist be a list where each element of the list (called value here) comes from doing a for loop on range, given the parameters 1, and 20.

    If you want to change how each element of this list is, you do it in the first bit on “value”

    So you could do

    mylist = [value*5 for value in range(1,20)] //5,10,15,…,95 (not 100, because ranges go up to the last item, not including it (non-inclusive))

    Etc. Hope this makes sense!

    Edit: MISSING CLOSING PARENTHESIS DOH













  • While the likelihood is lesser, and open source technologies are helpful for finding bugs, they are not a guarantee and their degree of effectiveness is questionable. Especially with the rate at which AI continues to improve, making the likelihood that an AI could detect a vuln in the code and relay that info to a hacker much higher than before.

    I’m a professional in this field, and have first hand experience with the matter. I understand you’d like to defend your post and the product but this is quite misleading.

    I’m not saying this is a virus, but it increases the chances that you could get hacked, and you should consider if playing Pokémon on your phone is worth that risk. That is all.


  • A word of caution

    These types of things are prime targets for malware and zero days have been on the rise for iPhones - I would highly suggest you carefully consider whether or not this would be worth compromising your phones security over.

    There are lots and lots of ways to run emulators and roms these days, including buying a handheld game kit from canakit or something similiar, I’m sure, to run retropie which could emulate any number of retro systems with negligible risk to you, your device, your accounts or your private data. Just some food for thought.