User Controls
Posts by Michael Myers
-
2024-10-08 at 12:55 AM UTC in Ok, I admit it. Men are more superficial than women are.I got some cash saved up, and you know one of my friends actually wanted me to lend him 50 euros which I did give him. He said he's pay me back before next month. Normally I wouldn't have asked for it back but I kinda need the money (I don't have a source of income anymore).
-
2024-10-08 at 12:54 AM UTC in Ok, I admit it. Men are more superficial than women are.
-
2024-10-08 at 12:54 AM UTC in Ok, I admit it. Men are more superficial than women are.Yeah, that actually happened -- basically I disappeared for ten days after just talking to her for a few days and then she had a major meltdown when I came back and it made me feel bad, so in order to make her feel better, I decided to move things to Whatsapp so I would be able to stay more in touch with her. I'm glad she realized her fault.
-
2024-10-08 at 12:51 AM UTC in Ok, I admit it. Men are more superficial than women are.UPDATE: I officially ended things. I didn't need to use any special lines, or say any reassuring words to make her feel better. She basically admitted her fault, which was basically guilt-tripping me last month, and I used the opportunity to verify that it was indeed the case, but of course without making her feel bad.
-
2024-10-08 at 12:45 AM UTC in So I was thinkingUhhhh..... a brown one. Heheh.
-
2024-10-08 at 12:45 AM UTC in The Crispy Deathโฆ
Originally posted by Crispy Yeah i heard of that, wasnt trying to eat a lot of chicken. Just thought it wouldnโt hurt only after a couple days of not eating. Thank you, i feel better already, about to eat pizza rolls, gona eat em slowlyyy
I got an online friend who's also from the Netherlands and he's similar to you; he eats nothing for days but then he also has a big cheat day, and eats a bunch of food. I told him to be careful as well. I think after you've had the chicken already, there's no harm in eating pizza rolls at any rate. Make sure to chew properly! That way, the nutrients reach your brain, something I learned from watching a Japanese tv show which was informative as well as fun to watch. -
2024-10-08 at 12:41 AM UTC in So I was thinkingYes, I see mankind as insects. We infest this world. There's too many of us here.
-
2024-10-08 at 12:40 AM UTC in Show off your genitals thread.I wouldn't post my dick online.
-
2024-10-08 at 12:39 AM UTC in Whaat is DMAA?
-
2024-10-08 at 12:34 AM UTC in 1 year ago Israel attacked itselfI remember some muzzies online celebrating this and I was like, "You're celebrating too early, they just bit off more than they could chew." I was right.
-
2024-10-08 at 12:32 AM UTC in The Crispy DeathโฆHave you heard of refeeding syndrome? Be careful next time, start off with something small and then work your way up. I hope you feel better soon.
-
2024-10-08 at 12:31 AM UTC in You know what i wish?
Originally posted by the man who put it in my hood was gonna try to use deck = [
'๐ก', '๐ข', '๐ฃ', '๐ค', '๐ฅ', '๐ฆ', '๐ง', '๐จ', '๐ฉ', '๐ช', '๐ซ', '๐ญ', '๐ฎ',
'๐ฑ', '๐ฒ', '๐ณ', '๐ด', '๐ต', '๐ถ', '๐ท', '๐ธ', '๐น', '๐บ', '๐ป', '๐ฝ', '๐พ',
'๐', '๐', '๐', '๐', '๐ ', '๐', '๐', '๐', '๐', '๐', '๐', '๐', '๐',
'๐', '๐', '๐', '๐', '๐', '๐', '๐', '๐', '๐', '๐', '๐', '๐', '๐'
] but I keep forgetting stupid fucking terminals don't work with that and tkinter is for NIGGERS, I DON'T USE THAT SHIT!!!!
import random
from colorama import init, Fore, Style
init(autoreset=True)
deck = [
('A', 'Spades'), ('2', 'Spades'), ('3', 'Spades'), ('4', 'Spades'), ('5', 'Spades'),
('6', 'Spades'), ('7', 'Spades'), ('8', 'Spades'), ('9', 'Spades'), ('10', 'Spades'),
('J', 'Spades'), ('Q', 'Spades'), ('K', 'Spades'),
('A', 'Hearts'), ('2', 'Hearts'), ('3', 'Hearts'), ('4', 'Hearts'), ('5', 'Hearts'),
('6', 'Hearts'), ('7', 'Hearts'), ('8', 'Hearts'), ('9', 'Hearts'), ('10', 'Hearts'),
('J', 'Hearts'), ('Q', 'Hearts'), ('K', 'Hearts'),
('A', 'Diamonds'), ('2', 'Diamonds'), ('3', 'Diamonds'), ('4', 'Diamonds'), ('5', 'Diamonds'),
('6', 'Diamonds'), ('7', 'Diamonds'), ('8', 'Diamonds'), ('9', 'Diamonds'), ('10', 'Diamonds'),
('J', 'Diamonds'), ('Q', 'Diamonds'), ('K', 'Diamonds'),
('A', 'Clubs'), ('2', 'Clubs'), ('3', 'Clubs'), ('4', 'Clubs'), ('5', 'Clubs'),
('6', 'Clubs'), ('7', 'Clubs'), ('8', 'Clubs'), ('9', 'Clubs'), ('10', 'Clubs'),
('J', 'Clubs'), ('Q', 'Clubs'), ('K', 'Clubs')
]
def get_card_ascii(card):
value, suit = card
top_bottom = "+---------+"
if len(value) == 1:
card_value = f"|โ{value}โโโโโโโ|"
else:
card_value = f"|โ{value}โโโโโโ|"
suit_display = f"|โโโโ{suit[0]}โโโโ|"
middle_space = "|โโโโโโโโโ|"
return [
top_bottom,
card_value,
middle_space,
suit_display,
middle_space,
top_bottom
]
def get_card_color(suit):
if suit == 'Spades':
return Fore.WHITE
elif suit == 'Hearts':
return Fore.RED
elif suit == 'Diamonds':
return Fore.CYAN
else:
return Fore.GREEN
def draw_cards():
global deck
if len(deck) == 0:
print("The deck is empty! Shuffle again to restart.")
return
drawn_cards = deck[:5]
deck[:] = deck[5:]
card_art = [get_card_ascii(card) for card in drawn_cards]
card_colors = [get_card_color(card[1]) for card in drawn_cards]
for i in range(6):
for j in range(len(drawn_cards)):
print(f"{card_colors[j]}{card_art[j][i]}", end=" ")
print()
def shuffle_deck():
global deck
random.shuffle(deck)
print("Deck shuffled! Draw cards to start.")
if __name__ == "__main__":
shuffle_deck()
while True:
command = input("Enter 'draw' to draw 5 cards, 'shuffle' to shuffle, or 'quit' to exit: ").strip().lower()
if command == 'draw':
draw_cards()
elif command == 'shuffle':
shuffle_deck()
elif command == 'quit':
break
else:
print("Invalid command. Try again.")
Where were you a year ago? I needed this stuff for my programming classes. I had to make a puzzle game from scratch and I had no idea how to achieve that. -
2024-10-06 at 4:51 PM UTC in Homecoming is soon and still no one has asked Crispy ๐งโโ๏ธ
-
2024-10-06 at 4:50 PM UTC in Pretending to be Catholic for cabbage rolls ๐ฝ๏ธ#CatholicForCabbageRolls
-
2024-10-06 at 4:50 PM UTC in This sweet crisp wants a user titleReverse*
My lack of sleep is catching up with me. I'm awake for 24 hours now. -
2024-10-06 at 4:50 PM UTC in This sweet crisp wants a user titleOh nevermind, I see she's already been dubbed the reverese pedophile.
-
2024-10-06 at 4:48 PM UTC in This sweet crisp wants a user title
-
2024-10-06 at 4:31 PM UTC in Ok, I admit it. Men are more superficial than women are.
Originally posted by Bradley doing well about to get whomped by a big ass hurricane, thankfully I have a lot of canned fish and water
Stay safe brotha! I'm not into fish myself but sometimes I eat it, not necessarily because I crave it but because there's nothing better in the house. Oh, I thought today's dinner would be pulao but it's actually butterchicken with rice. -
2024-10-06 at 4:30 PM UTC in Ok, I admit it. Men are more superficial than women are.
-
2024-10-06 at 4:30 PM UTC in Ok, I admit it. Men are more superficial than women are.