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
/*You can change url if you want! The code is simple, very simple. Sorry.*/ | |
.auth-center { | |
background-image: url("https://i.imgur.com/PwDts3H.jpg") !important; | |
background-size: cover; | |
} |
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
// ==UserScript== | |
// @name Atelier801 Drafts | |
// @namespace https://atelier801.com/topic?f=5&t=888706&p=1 | |
// @version 1.1 | |
// @description Save drafts on A801 | |
// @author Nekotonyy & Thebndjames | |
// @match https://atelier801.com/topic?* | |
// @include http://www.atelier801.com/profile?* | |
// @include http://www.atelier801.com/new-topic?* | |
// @include https://atelier801.com/new-dialog |
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 choice, sample | |
def game(user, alice): | |
cards = ['2', '3', '4', '5', '6', '7', '8', '9', '10', 'Jack', 'Queen', 'King', 'Ace'] * 4 | |
p1cards, botcards, cards = card(cards) | |
first, second = sample([user, alice], 2) | |
while True: | |
p1 = True if first is user else False | |
bot = True if first is alice else False |