- Joined
- May 1, 2024
Great episode, it has been archived to YouTube.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
indubitably, spaniards are kinda white, after allDo beaners assimilate better than Muslims and pajeets?
Yeah you're right, most of the Mexicans I know have 2 parents besides 1. But yeah the “based catholic” meme is a meme. Also curry or tacos?indubitably, spaniards are kinda white, after all
however, that may be left over from most beaner families being two-parent, and that shit may slip. who knows.
the based catholic beaner meme is just that, a meme.=
You ever stretch a rubber band and then motorboat it when you were a kid? Makes a funny noise. So maybe she's been pretending to eat box by licking rubber bands?she had been utilizing rubber bands for some sort of masturbatory exercises
The issue is that most beaners who migrate to the US are lower class. So they refuse to adapt and stick with their shitty northern customs.Do beaners assimilate better than Muslims and pajeets?
This post reminded me of the "Sneed's Feed and Seed" explanation story.Look, let's break this down.
Weird thing is I have read a rubber band reference before, in relation to gays and or masturbation, and it wasn’t explained then either.Jolly Biscuit is actually two steps ahead. The lesbian rubber band joke has no meaning and he is doing it to mess with our heads!
As soon as you press the “add to cart” button, your soul gets sucked away and only bad things will happen to you from then on.
Kiwi Farms Mustache Rides®Jersh stayed up the whole night on krokodyl fucking some mustachioed Serbian lady and now there is a late night XLR cable run to do.
Thought I was looking at Auschwitch for a second.View attachment 6437904
I don't know what you guys are talking about, this is pretty self-explanatory.
use mio::net::TcpStream;
use mio::{Interest, Poll, Token};
use tokio::sync::mpsc::Sender;
#[tokio::main]
async fn main() {
println!("Hello, world!");
// create a channel to send events
let (sender, mut receiver) = tokio::sync::mpsc::channel::<Event>(100);
// spawn the event generator
tokio::spawn(event_generator(sender.clone()));
// spawn the mio watcher
tokio::spawn(mio_watcher(sender.clone()));
// loop to handle events
loop {
let event = receiver.recv().await.expect("TODO: panic");
handle_events(event);
}
}
pub fn handle_events(event: Event){
match event {
Event::Event(data) => {
println!("Received event from generator");
},
Event::Mio(data) => {
println!("Received event from mio watcher");
}
}
}
pub enum Event {
// a simple event
Event(GeneratorData),
Mio(MioData),
}
pub struct GeneratorData {}
pub struct MioData {}
// a simulator of an event generator
pub async fn event_generator( sender: Sender<Event> ) {
loop{
// create a new event with generator data.
let event = Event::Event(GeneratorData{});
if let Err(e) = sender.send(event).await {
eprintln!("Error sending event: {:?}", e);
}
// generate a random number of milliseconds to sleep
let sleep_time = rand::random::<u64>() % 5000;
tokio::time::sleep(std::time::Duration::from_millis(sleep_time)).await;
}
}
pub async fn mio_watcher( sender: Sender<Event> ){
// create a mio event loop
let mut event_loop = Poll::new().unwrap();
let mut events = mio::Events::with_capacity(1024);
let mut stream = TcpStream::connect("127.0.0.1:8997".parse().unwrap()).unwrap();
// register the registration object with the event loop
event_loop.registry().register(&mut stream, Token(0), Interest::READABLE | Interest::WRITABLE);
// loop to watch for events
loop {
event_loop.poll(&mut events, None).unwrap();
for event in events.iter() {
if event.token() == Token(0) && event.is_writable() {
// create a new event with mio data.
let event = Event::Mio(MioData{});
sender.send(event).await.expect("TODO: panic");
}
}
}
}