Skip to content

Instantly share code, notes, and snippets.

View NekoTony's full-sized avatar
💭
I may be slow to respond.

Antonio Vallez NekoTony

💭
I may be slow to respond.
View GitHub Profile
@NekoTony
NekoTony / Blackjack.py
Created December 8, 2017 20:22
Blackjack created by Nerdietony - https://repl.it/@Nerdietony/Blackjack
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
@NekoTony
NekoTony / A801_Drafts.user.js
Last active October 20, 2017 22:59
Atelier801 Forum Drafts
// ==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
@NekoTony
NekoTony / Login-Background.css
Last active February 23, 2017 00:52
Change discord login background
/*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;
}