Posterous
codebox is using Posterous to post everything online. Shouldn't you?
Netlexlogo_thumb
 
Netlex’s codebox - tools and tips for web amateurs

Show recent post by category

- Show recent Posts

    <h2>Recent Posts</h2>
    <ul>
    <?php get_archives('postbypost', 6); ?>
    </ul>

- Show recent posts from specific category ?


    <ul>
    <?php $recent = new WP_Query("cat=1&showposts=5");
    while($recent->have_posts()) : $recent->the_post();?>
    <li><a href="<?php the_permalink() ?>" rel="bookmark">
    <?php the_title(); ?>
    </a></li>
    <?php endwhile; ?>
    </ul>


Posted October 7, 2009
// 0 Comments

WP : loop full article + excerpt


<?php if (have_posts()) : ?>
    <?php $count = 0; ?>

   

    <?php while (have_posts()) : the_post(); ?>
        <?php $count++; ?>

       
        <h3>Title: </h3>
        <h4>Date: <?php echo date("l, F d, Y"); ?> | <?php comments_number(); ?></h4>

        <?php if ($count == 1) : ?>

            <?php the_content(); ?> // display the full content of the first post only

            <h4>Please subscribe to my feed!</h4>

        <?php else : ?>

           
            <?php the_excerpt(); ?> // display only the excerpt for all other posts

            // for all posts except the first, process this code below each post

        <?php endif; ?>

        // for each post, including the first, process any code included here
        // any code output will be displayed below the content of every post

                        <h4>This is post #<?php the_ID(); ?> | Author: <?php the_author(); ?></h4>
        <p>Filed under: <?php the_category(','); ?> | <?php edit_post_link(); ?></p>

    <?php endwhile; ?>

    // stop the post loop and process any code included here only once
    // any code output will be displayed below the entire set of posts

                <h4><?php posts_nav_link() ?><?php previous_post_link(); ?> &#8226;
        <?php posts_nav_link() ?><?php next_post_link(); ?></h4>

    <?php else : ?>

    // if there are no posts to display, process any code that is included here
    // the output of any code included here will be displayed instead of posts

              <p>Sorry, no posts matched your criteria.</p>

<?php endif; ?>

// any code included here occurs after the wordpress loop and is always displayed
<h6>Copyright &copy; <?php echo get_settings('home'); ?>/"><?php bloginfo('name'); ?></a> <?php echo date('Y'); ?></h6>

Posted October 7, 2009
// 0 Comments

Ping.fm

http://netlextools.posterous.com/pingfm-327

Posted October 7, 2009
// 0 Comments

How to Import Twitter feeds to Tumblr without "@ messages"

http://unpoppedcollar.com/post/72242016/twittertotumblr

use Yahoo pipes, filter and reinject the feed in Tumblr

Posted October 7, 2009
// 0 Comments

How to REALLY Import your Delicious Links into Tumblr

http://www.mikeindustries.com/blog/archive/2009/01/how-to-really-import-your-delicious-links-into-tumblr

Tumblr has an import feeds feature but it only adds your feed URL and then posts any new items you add afterwards. — PHP script

Posted October 7, 2009
// 0 Comments

DeliciousMind = del.icio.us + FreeMind mindmap

http://www.blainekendall.com/deliciousmind/

java-enabled browser required + xml + freemind

Posted October 7, 2009
// 0 Comments

Delicious to WordPress importer

http://memografia.com/wordpress/delicious-to-wordpress-importer/

Get your Delicious XML + script

Posted October 7, 2009
// 0 Comments

How to easily back up your delicious bookmarks

http://ratafia.info/post/72095951/how-to-easily-back-up-your-delicious-bookmarks

just need to call the URL api.del.icio.us/v1/posts/all and pass in basic auth. For more information on this and everything else in the delicious API, please refer to the documentation.

Posted October 7, 2009
// 0 Comments

Freebook, le télésite Facebook

http://www.freeplayer.org/viewtopic.php?t=12035

http://freebook.dnsalias.com/ — Facebook sur la FREEbox —- Pour naviguer sur le télésite Freebook, il faut au préalable générer un identifiant en se connectant sur l’application Facebook suivante :…

Posted October 6, 2009
// 1 Comment

FeedWordPress plugin

http://feedwordpress.radgeek.com/

simple and flexible Atom/RSS syndication for WordPress

Posted October 6, 2009
// 0 Comments