Vand/Dezmembrez Piese Mercedes C220 W202 ( model din 94)
October 25th, 2009
3 comments
how to make a random post list on your sidebar:
<ul>
<?php $myq = new WP_Query('showposts=10&orderby=rand'); if($myq->have_posts()) : while($myq->have_posts()) : $myq->the_post(); ?>
<li><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php _e('Permanent link to'); ?> <?php the_title(); ?>"><?php the_title(); ?></a></li>
<?php endwhile; endif; ?>
</ul>
Biology and Medicine News
Sanofi Pasteur starts testing swine flu vaccine
Scientists discover new Alzheimer’s gene
Researchers develop innovative method to detect genetic causes of complex diseases
Viral Genetics Creates Subsidiary to Develop Cancer Therapy
Most Americans don’t think they have a big weight problem
Transplant ...
Scientists stop the ageing process
Scientists have stopped the ageing process in an entire organ for the first time, a study released today says. Published in today’s online edition of Nature Medicine, researchers at the Albert Einstein College of Medicine at ...
HTTrack offline browser software it allows you to download a World Wide Web site from the Internet to a local folder, building recursively all folders, getting HTML, images, java-script, & other files from the server to your computer.
More info and ...
Linux command that will delete all files & folders in a certain directory:
for current path
cd to directory
rm -Rf *
or for absolute path:
rm -Rf /home/some/directory/*
another option (this will only delete files of type f which is a regular file):
find /some/path/ ...