Replying to Spooky Phijkchu #spooky.131 Click to see attachment 🖼️
okay but genuinely making it into the nfl when you didnt start playing football until junior year is kinda crazy
Replying to Spooky Phijkchu #spooky.131 Click to see attachment 🖼️
Got early access to the game and was stuck in an ass jiggle cycle that lasted for weeks. Couldn't look away.
twitter.comReplying to Phijkchu_Pikachu #klombak @Spooky Phijkchu this is one of the best lines of all time
Thermonator is the first-ever flamethrower-wielding robot dog. This quadruped is coupled with the ARC Flamethrower to deliver on-demand fire anywhere
throwflame.comReplying to Spooky Phijkchu #spooky.131 NO
import matplotlib.pyplot as plt
import random
import datetime
# Generate dates for April
start_date = datetime.date(2024, 4, 1)
end_date = datetime.date(2024, 4, 30)
dates = [start_date + datetime.timedelta(days=i) for i in range((end_date - start_date).days + 1)]
# Generate random number of posts for each day with a more random and spikey pattern
posts = []
current_posts = random.randint(100, 1500)
for _ in range(len(dates)):
posts.append(current_posts)
# Add a random change that can be positive or negative
current_posts += random.randint(-200, 200)
current_posts = max(current_posts, 0) # Ensure posts are non-negative
# Plotting
plt.figure(figsize=(10, 6))
plt.plot(dates, posts, marker='o', linestyle='-')
plt.title('Number of Posts in April 2024')
plt.xlabel('Date')
plt.ylabel('Number of Posts')
plt.xticks(rotation=45)
plt.grid(True)
plt.tight_layout()
plt.show()Replying to Phijkchu_Pikachu #klombak Anyways this month is popping off phijkchu activity wise