Seen Today in #macdev
Posted August 24th, 2007 @ 11:59am by Erik J. Barzeski
Hardy Har…
British woman goes for weeks without showering, skincare products as an experiment. When asked how she felt, she replied "Je me sens trรฦรยจs bien. Un peu graisseux, mais rien trop mauvais."
I'm going to spend some time today playing with iUI. Ideally, some of the plugins which show a different theme for even WordPress blogs would work well with the cache software, but they don't. If someone happens to request a Wii version of my blog, that version is cached and regular Web surfers see that version too.
Posted 24 Aug 2007 at 1:46pm #
Funny the british woman replying in french ... That's so unnatural.
Posted 24 Aug 2007 at 3:12pm #
@Ludovic: I think that's the joke.
Posted 24 Aug 2007 at 3:41pm #
[quote comment="42889"]@Ludovic: I think that's the joke.[/quote]
Ludovic posts from a ".fr" domain. I think he was being sarcastic. ๐
Posted 24 Aug 2007 at 3:48pm #
If so, well played Ludovic, well played. ๐
Posted 27 Aug 2007 at 4:55am #
I don't know how your paragraph relates to the quoting, but I had to change the wp-cache plugin to support the mobile version of my site just by adding my own checks at the beginning of the wp-cache-phase1.php and adding my hash to the key. Something like:
$more = "";
if(function_exists("is_mobile")) $more .= is_mobile() ? "mobile" : "";
if(function_exists("is_iphone")) $more .= is_iphone() ? "iphone" : "";
if(function_exists("is_wii")) $more .= is_wii() ? "wii" : "";
if(function_exists("is_feed_safe")) $more .= is_feed_safe() ? "feedsafe" : "";
$key = md5($_SERVER['SERVER_NAME'].preg_replace('/#.*$/', '', $_SERVER['REQUEST_URI']).wp_cache_get_cookies_values().$more);
Posted 27 Aug 2007 at 5:01am #
I think he was being sarcastic.