general
Jump to date
Friday, April 26, 2024
Polu and I played a bit of the pc multiplayer one time
we should do that again when I am less busy
Replying to Phijkchu_Pikachu #klombak Until I just beat sonic adventure 1 last month, chronicles was the only sonic game I had fully completed
i've only fully completed The Murder of Sonic the Hedgehog
@polu
WTF is this name
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
Saturday, April 27, 2024
https://twitter.com/MoshiMoshiMoan/status/1784215255368835462 @Garbage reset the clock
MoshiMoshiMoan (@MoshiMoshiMoan) on X
Got early access to the game and was stuck in an ass jiggle cycle that lasted for weeks. Couldn't look away.
twitter.comhe's still alive
@Spooky Phijkchu this is one of the best lines of all time
true addiction
found a lecture by Wiles on Fermat's Last Theorem
https://youtu.be/4t1mgEBx1nQ
As the one person here who might've watched that, I do not have time to watch that
cool though
Replying to Phijkchu_Pikachu #klombak @Spooky Phijkchu this is one of the best lines of all time
lol
Sunday, April 28, 2024
comments on any video that's "educational" in any way are always retarded
Thermonator
Thermonator is the first-ever flamethrower-wielding robot dog. This quadruped is coupled with the ARC Flamethrower to deliver on-demand fire anywhere
throwflame.comyou know, of all the weapons that actually makes sense for a robot, I'm not sure flamethrowers are one of them
nvm, there's a mobile app
10/10
@🐝🌯🌯🌯💥
I tried
it got enough of the numbers right I don't think anyone would notice
Monday, April 29, 2024
Ehhh reaally
I think you will find any good idea has been said here at some point before
also any bad idea
I will move this out of Rob chat since this is not really about rob
I think overall post counts are up this month a lot (some parts of previous data was scaled up by max)
I kinda want to make a version of this chart subtracting Max's posts when she is here
I need that
Here is the year in review explicitly subtracting Max's posts
Replying to Spooky Phijkchu #spooky.131 NO
I’m sorry spooky it’s just what we talked about in class today
I'm actually curious Mini
if the urethra narrows like that, what'll happen
Wait I think the chart is flipped
Okay, there my autism spam in general is done
Anyways this month is popping off phijkchu activity wise
If I was not doing this the worst possible way (discord search feature), I'd do more detailed breakdowns
a proper "year in review" would be interesting in lieu of an award show or some other major projected
uh oh Pika
my graph doesn't look as good
How did you make your graph
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()Oh lmao
I was really confused where you got that data (considering some of those days have not happened yet)
Bad luck at the random negative multiple times in a row at the start
