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

help-circle

  • For anyone interested - I’d you are using umatrix to block shit you can punch these lines into a new text file and import as blocklist, then commit it with the tiny arrow that points left toward the permanent list to save it permanently:

    * www[.]googie-analytics[.]com * block

    * kuurza[.]com * block

    * cdn[.]polyfill[.]io * block

    * polyfill[.]io * block

    Remove the square brackets before saving the file - these are here to prevent hyperlinks and misclicks.

    Edit: this is not a bulleted list, every line must start with an asterisk, just in case your instance doesn’t update edits made to comments quickly.




  • 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