Category: Rants
Leeches
You know what pisses me off to no end? Leeches. People that have nothing better to do than to follow you around and chew your ear off about topics you don’t give two shits about. It always happens at the worst possible time also. Sometimes, I’ll have a minute to chat or will be in a good mood and won’t mind, but that’s when they’re in hiding. These leeches pop out either 1) when you’re exhausted 2) just failed a test 3) rushing to a meeting 4) just want to relax. And there’s no avoiding these people. There is absolutely a 100% chance you’ll run into them. It’s scientifically proven.
You know what’s the worst thing ever? When people who are walking in one direction run into you, and they do a fucking 360 and walk 20 minutes in the opposite direction from where they were originally headed to. I thought the stop and chat was bad, but I can tolerate that because it’s like 2 minutes tops, and you can walk away if you say you are in a rush. But this is 400 times worse, because you’re stuck. It’s like a guided missile just locked on target and it doesn’t go away. Then you wonder why people end up flipping out.
Off topic, but I just ate a fortune cookie. It read “Life is too short to waste time hating anyone.” Those Chinese. I’ll leave these leech dudes with them for a few days and they will rethink that fortune.

Come on, WordPress…
December 31, 2009
Rants, Website Related
No Comments
Portfolioso
You know what really pisses me off sometimes? WordPress. Never use the schedule post feature – it’s a useless piece of shit. WordPress allows you to write a draft blog entry and then schedule it to publish at a later date. Every time I do this, it always misses the schedule and then I struggle severely to get it published because it keeps scheduling it. Well maybe I don’t want it scheduled you stupid bitch, I just want it live. I set my end of the decade ramble to publish at 8AM and was supposed to wake up with it here. Instead it’s being a shithead and now I can’t get it published. This also happens on another WordPress blog I maintain. Could be a server setting, but it’s poorly documented. Fix your shit.
Edit. Okay so I Googled this a little bit. Seems like what happens is that WordPress runs a cron (automation) job. There’s a setting in wp-includes/cron.php where it checks every .01 seconds, so if the server is a slow piece of crap and can’t keep up, it misses it. I set it to check less frequently and that might work.
Change:
$cron_url = get_option( 'siteurl' ) . '/wp-cron.php?doing_wp_cron';wp_remote_post( $cron_url, array('timeout' => 0.01, 'blocking' => false, 'sslverify' => apply_filters('https_local_ssl_verify', true)) );
TO
$cron_url = get_option( 'siteurl' ) . '/wp-cron.php?doing_wp_cron';wp_remote_post( $cron_url, array('timeout' => 20, 'blocking' => false, 'sslverify' => apply_filters('https_local_ssl_verify', true)) );
A post (the decade recap) is scheduled for 11:45AM EST. It better work.
WordPress