This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from random import sample | |
import collections | |
picked_numbers = sample(range(1,11),4) | |
my_numbers = sample(range(1,11),4) | |
print(f'Lotto numbers are: {picked_numbers}') | |
attempts = 0 | |
while collections.Counter(picked_numbers) != collections.Counter(my_numbers): | |
my_numbers = sample(range(1,11),4) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DOM7011: The code on this page disabled back and forward caching. For more information, see: http://go.microsoft.com/fwlink/?LinkID=291337 | |
dashboard.mydomain.com | |
HTML1300: Navigation occurred. | |
dashboard.mydomain.com | |
SCRIPT1014: Invalid character | |
fullcalendar.js (6652,18) | |
SCRIPT438: Object doesn't support property or method 'find' | |
plyr.js (1,20007) | |
CSI/tbsd_: 6,338.296ms | |
CSI/_tbnd: 6,338.496ms |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
location / { | |
satisfy any; | |
allow 10.10.10.0/24; | |
deny all; | |
auth_basic "Authorized Users Only"; | |
auth_basic_user_file secure/.htpasswd; | |
auth_request /auth-0; | |
try_files $uri @proxy; | |
} |
NewerOlder