Nuudelisoppa

  • Archives
  • Firmware update likely to make unlocked iPhones "permanently inoperable"

    ars technica

    2007/09/25
  • WordPress 2.3 Released

    WP Dev Blog

    2007/09/25
  • Tekstiviesti kertoi Finnairin koneen myöhästyvän, kone lähti ajallaan

    HS.fi via Ampparit

    2007/09/24
  • Notepad++ v4.3 Released

    SourceForge

    2007/09/24
  • FileZilla (client) 3.0.1 Released (Windows)

    filezilla-project.org

    2007/09/23
  • Jpegcrop: lossless cropping for JPEG pictures (Windows)

    JPEGclub.org via ImpulseAdventure

    2007/09/23
  • Hacker Finds Serious Security Flaw in Adobe PDF

    PC World via /.

    2007/09/22
  • Fixing my plugin's SQL for WordPress 2.3

    I just upgraded WordPress to version 2.3 RC 1 at my test blog, and found out that changes in the taxonomy schema break my Parental Control plugin in a nasty way. Fortunately, it was quite easy to fix.

    I added a test for WordPress’ version and branched the SQL accordingly:

    if (version_compare(get_bloginfo('version'), '2.3-RC1', '<')) {
    	$text .= " AND ( '".$jupc_excluded_cat."'  ALL (SELECT category_id FROM $wpdb->post2cat WHERE $wpdb->post2cat.post_id = $wpdb->posts.ID) )";
    }
    else {
    	$text .= " AND ( '".$jupc_excluded_cat."'  ALL (SELECT term_taxonomy_id FROM $wpdb->term_relationships WHERE $wpdb->term_relationships.object_id = $wpdb->posts.ID) )";
    }

    The code above reserved for versions 2.3 RC1 and above would probably work with the 2.3 Betas as well, but as I don’t have any interest in testing already obsolete versions, I decided to draw the line to 2.3 RC1, so the code above probably won’t work with 2.3 trunk versions below RC1.

    2007/09/22
  • Preparing for WordPress 2.3

    WP Dev Blog

    2007/09/22
  • Google To "Out Open" Facebook On November 5

    TechCrunch

    2007/09/22
←Previous Page
1 … 65 66 67 68 69 … 214
Next Page→

Nuudelisoppa

Good Noodles.

Twenty Twenty-Five

Designed with WordPress