User Controls
Posts That Were Thanked by Crispy
-
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: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: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-07 at 11:43 PM UTC in HOLES THREADA thread to post holes.
https://www.cataniatoday.it/cronaca/librino-palazzo-di-cemento-bambino-precipita-buco.html -
2024-10-07 at 10:57 PM UTC in The Crispy DeathโฆI told you to air fry it.
-
2024-10-07 at 10:55 PM UTC in The Crispy DeathโฆThat's good. I had chicken as well.
-
2024-10-07 at 10:50 PM UTC in Report every off topic post!!!This won't be tolerated - Lanny.
-
2024-10-07 at 10:23 PM UTC in I'm going to give Catholicism a go.I'm a pro at wanking
-
2024-10-07 at 10:20 PM UTC in Fluttershy's super serious topical usertitle threadI like Bill Krozby a lot
-
2024-10-07 at 10:19 PM UTC in So I was thinking
-
2024-10-07 at 10:18 PM UTC in Fluttershy's super serious topical usertitle threadMine is accurate :/
-
2024-10-07 at 10:13 PM UTC in I'm going to give Catholicism a go.Everyone calm down
-
2024-10-07 at 10:06 PM UTC in Fluttershy's super serious topical usertitle threadWowoowowoow Fishfry, Crispy got a usertitle before you.
-
2024-10-07 at 10:02 PM UTC in Fluttershy's super serious topical usertitle thread
-
2024-10-07 at 9:58 PM UTC in Fluttershy's super serious topical usertitle thread