Quantcast 2010 June | Source and Code System
Browsing articles from "June, 2010"

List of Internet top-level domains

Jun 20, 2010  ¦¦  by isr.coder  ¦¦  Domain  ¦¦  42 Comments
The following is a list of Internet top-level domains. The top-level domain article provides the background information. The official list of all top-level domains is maintained by the Internet Assigned Numbers Authority (IANA). Generic top-level domains gTLD Entity Notes .aero air-transport industry Must verify eligibility for registration; only those in various categories of air-travel-related entities may register. .asia Asia-Pacific region This is a TLD for companies, organizations, and ...

Graphics

Jun 20, 2010  ¦¦  by isr.coder  ¦¦  Graphics  ¦¦  37 Comments
Graphics (from Greek γραφικός graphia) are visual presentations on some surface, such as a wall, canvas, computer screen, paper, or stone to brand, inform, illustrate, or entertain. Examples are photographs, drawings, Line Art, graphs, diagrams, typography, numbers, symbols, geometric designs, maps, engineering drawings, or other images. Graphics often combine text, illustration, and color. Graphic design may ...

Difference between a vector and a scalar

Jun 20, 2010  ¦¦  by isr.coder  ¦¦  Graphics  ¦¦  45 Comments
A scalar is just a number, and a vector is a number with a direction involved. In the first question, pounds, newtons, and dynes are all *forces*. A force can't exist as just a number; force has to be directed somewhere. 2 kilometers/hour east gives you a number and a direction. The answer a) ...

Limit WordPress Post or Page Content

Jun 17, 2010  ¦¦  by admin  ¦¦  WordPress  ¦¦  36 Comments
Copy this function and paste in the function.php ———— function dp_clean($excerpt, $substr=0) { $string = strip_tags(str_replace(‘[...]‘, ‘…’, $excerpt)); if ($substr>0) { $string = substr($string, 0, $substr); } return $string; } Call this function in your index.php ———– < ?php echo dp_clean($post->post_content, 250); ? >

Simple WordPress Title Limit Function

Jun 17, 2010  ¦¦  by admin  ¦¦  WordPress  ¦¦  42 Comments
Put this code in to your function.php (Note: Fix php tag!)- < ?php  function the_title2($before = ”, $after = ”, $echo = true, $length = false) { $title = get_the_title(); if ( $length && is_numeric($length) ) { $title = substr( $title, 0, $length ); } if ( strlen($title)> 0 ) { $title = apply_filters(‘the_title2′, $before . $title . $after, $before, $after); if ( $echo ) echo ...

Get Category or Page Depth or level

Jun 17, 2010  ¦¦  by admin  ¦¦  WordPress  ¦¦  46 Comments
get_depth() As far as I know there is no function in Wordpress that return the page or category depth. I created a function that returns the depth of a page or category. The depth is how many levels from the root the page or category in its hierarchy. The root level number is 0. <? php function get_depth($id = '', $depth ...

Code for custom field Image in recent post List

Jun 17, 2010  ¦¦  by admin  ¦¦  WordPress  ¦¦  32 Comments
<h3>Recent Post</h3> <div> <!– use a custom field for image , Here the custom field name is = “newReleaseThumb” –> <?php $myposts = get_posts(‘numberposts=5&offset=1′);foreach($myposts as $post) > <div style=” width:100%; float:left; border:#FF0000 0px solid; padding: 5px; margin-bottom:2px; background:#0000FF;”> <div style=”width:95px; float:left;”> <?php $thumbnail = get_post_meta($post->ID, ‘newReleaseThumb’, true); ?> <a href=”<?php the_permalink() ?>” title=”<?php the_title_attribute(); ?>”> <img src=”<?php echo $thumbnail; ...

Select Fix Category Post With New Custom Query Code

Jun 17, 2010  ¦¦  by admin  ¦¦  WordPress  ¦¦  6 Comments
<?php $my_query = new WP_Query(‘category_name= Trailer&showposts=4′); ?> <?php while ($my_query->have_posts()) : $my_query->the_post(); { ?> YOUR DATA <?php } endwhile; ?>

Ten Keyboard Techniques To Create Cool Symbols

Jun 17, 2010  ¦¦  by admin  ¦¦  How to?  ¦¦  91 Comments
All of us use the keyboard to create symbols daily. Look at the thumbnail. That’s a simple symbol created with just four keys. Symbols existed even before the alphabets. Over the years they have been part of folklore, myths and legends. Some have stayed on as indelible marks. Some, like the swastika, are better forgotten. Symbols ...

Healthcare Distribution Co

Jun 14, 2010  ¦¦  by admin  ¦¦  Completed Project  ¦¦  51 Comments
Developed this site for renowned Distribution company Healthcare Distribution Co.
Pages:12»