Archive for September, 2011

Purchase / Sell / Rent Property

Monday, September 26th, 2011

Unixf25an We Deal In All Types Of Property Rent Sale Purchase Lease Of Apartments Flats Villas Houses Land And Office Space We Deal In A Wide Variety Of Residential And Commercial Pro…
Chennai Classifieds

lista banków w polsce

Sunday, September 25th, 2011

Banki hipoteczne są instytucjami wyspecjalizowanymi w świadczeniu pożyczek mieszkaniowych oraz refinansowaniu tej działalności na rynku kapitałowym za pomocą szczególnych papierów wartościowych, jakie mają swoje pokrycie w hipotekach zabezpieczających udzielnie pożyczki.
Konkurencyjność instytucji finansowych hipotecznych wychodzi z faktu, iż mogą one świadczyć tańsze aniżeli inni kredyty hipoteczne dodatkowo szybsze i w wyższym stopniu wydajne procedury kredytowe. Niższa cena pożyczek mieszkaniowych możliwa jest ze względu na:

  • Możliwość refinansowania się przez listy zastawne
  • Zmniejszenie kosztów prowadzonej działalności.
    Bank hipoteczny może pozwolić sobie na niższe marże z powodu zmniejszenia zaangażowanego personelu, a tym samym minimalizacje kosztów złączonych z obsługą depozytów i utrzymywaniem obszernej sieci oddziałów. Sprzedaż ofert instytucji bankowych następuje przez wydział sprzedaży znajdujący się w centrali banku.
  • Obniżkę kolejnych kosztów połączonych z udostępnianiem kredytów hipotecznych (np. posiadanie własnych zespołów rzeczoznawców majątkowych).


TRIP to

The reason your site suffering the Google Sandbox effect and the best way to escape

Sunday, September 25th, 2011

You can find a handful of techniques Google can certainly destroy your visitor figures and probably damage your business. TAGS: search engine optimization services, search engine optimization company, search engine optimization tips, search engine optimization seo, search engine optimization software, best way to lose weight
Latest Articles in Marketing tips Category on EzineMark.com

Inspiration: Minimalist Posters

Saturday, September 24th, 2011

Advertise here with BSA

Our minimalism tag is filled with eye candy images to help you get inspired remembering that old and wise premise “less is more.” To add content to our tag and to keep showing you good examples of minimal designs that work we decided to show some posters designed by Pedro Vidotto. Pedro is a Graphic Designer and Art Director originally from Brazil who is currently based in London. His background is in Advertising and he has five years of experience working in the industry. Here you will be able to see that quality is better than quantity in design.

Inspiration: Minimalist Posters

Inspiration: Minimalist Posters

Inspiration: Minimalist Posters

Inspiration: Minimalist Posters

Inspiration: Minimalist Posters

Inspiration: Minimalist Posters

Inspiration: Minimalist Posters

Inspiration: Minimalist Posters

Inspiration: Minimalist Posters

Inspiration: Minimalist Posters

Inspiration: Minimalist Posters

Inspiration: Minimalist Posters

Inspiration: Minimalist Posters

Inspiration: Minimalist Posters

Inspiration: Minimalist Posters

Inspiration: Minimalist Posters

Inspiration: Minimalist Posters

Inspiration: Minimalist Posters

Inspiration: Minimalist Posters

Web Design Ledger

Planowanie, oszczędzanie-pieniądze domowe

Saturday, September 24th, 2011

Ubezpieczenia turystyczne

Ubezpieczenia turystyczne zaczynają być dla podróżujących standardem. Wielu osobom kojarzą się tylko z zabezpieczeniem następstw niepomyślnych przypadków, lecz “rodzajów” jest tu dużo więcej. O ile da się mówić o podziale ubezpieczeń ubezpieczenia turystyczne nie podlegają podziałom. Znacznym detalem polisy turystycznej jest zdefiniowanie kraju w jakim postanowiliśmy pobyt oraz czas na jaki tam wyjeżdżamy.

Jeśli chcecie poznać zwykle kupowane opcje/ryzyka przez turystów, są to:

  • Polisa NNW
  • Polisa twojego bagażu
  • Ubezpieczenia opłat za leczenie
  • Polisa kart kredytowych i rachunków bankowych
  • Polisa pojazdu mechanicznego w czasie wyjazdu
  • Polisa kosztów odwołania uczestnictwa w podróży, anulowanie kosztów pobytu w hotelu, itp.
  • Wszelkie polisy assistance

Zestawienie produktów

Fundusz Emerytalny

OFE stanowi część systemu emerytalnego, z jakiego w przyszłości będzie wypłacana emerytura.

Do otwartego funduszu emerytalnego co miesiąc ZUS przekazuje część Twojej składki na ubezpieczenie społeczne, którą do ZUS przekazuje pracodawca.

Kapitał do OFE wpłaca tylko ZUS. Konsument nie może nic przekazać sam.

W naszym kraju organizm emerytalny bazuje na trzech trybach (filarach) magazynowania środków na nadchodzącą emeryturę:

  • I filar to ZUS (jest obowiązkowy). ZUS jest tylko jeden – nie masz wpływu na jego wybór.

  • I II filar to otwarty fundusz emerytalny OFE (jest obowiązkowy) dla osób urodzonych po

    31.12.1968r. MUSISZ go wybrać.

  • I III filar (jest nieobowiązkowy) są to każde inne metody odkładania pieniędzy na emeryturę.


TRIP to

Part Time Job

Friday, September 23rd, 2011

Want to Part Time Jobs? Join Now and Earn More… AD Posting Jobs at Home to Earn Rs.25000. Amazing …Other student jobs. Visit- www.payformoney.com OR E-mail- unitechinfoservice@gmail.com
Call: 0353-6410665, Posted Id- UISJ 621286.

ClassifiedAdsFree.com

Some Of The Strategies Of Link Building For You To Utilize

Friday, September 23rd, 2011

You have to know that Nowadays there are a lot of different ways of link building to your site. Frankly speaking, there is a countless number of different link exchange wesites and automated submission tools. Of course, it is not easy to build links, however after reading this article you will understand what exactly makes [...]
SEO Rescuer.com

12 Useful WordPress Coding Snippets And Hacks

Thursday, September 22nd, 2011

We all love WordPress. What makes more and more people fall in love with it is how easy it is to customize. With a few lines you get some cool customization with all those filters, actions and hooks.

WordPress 3+ blewour minds with cool new features. But sometimes we need something quite different from the default. That’s what we’ll be talking about today.

We’ll see some useful functions and hacks to get even more from WordPress.

So, let’s Rock!

Duplicate Post

When you use WordPress Custom Post Types to store data this is a really useful function. Sometimes you want to duplicate all post meta, create something based on another. Well, just run this function and you’re done.

<?php
	function duplicate($post) {
		$title =  get_the_title($post);
		$post = array(
			'post_title' => $title,
			'post_status' => 'publish',
			'post_type' => 'post',
			'post_author' => 1
		);
		$post_id = wp_insert_post( $post );

		$data = get_post_custom($post);

		foreach ( $data as $key => $values) {
			foreach ($values as $value) {
				add_post_meta( $post_id, $key, $value );
			}
		}

		return $post_id;
	}
?>

Get excerpt outside The Loop

With this you don’t need to be inside the loop to give a little preview about post’s content. It’s especially useful if you want to display some posts in the sidebar without getting all it’s data (just title, link and excerpt, for example).

<?php
	function get_excerpt_outside_loop($post_id) {
		global $wpdb;
		$query = 'SELECT post_excerpt FROM '. $wpdb->posts .' WHERE ID = '. $post_id .' LIMIT 1';
		$result = $wpdb->get_results($query, ARRAY_A);
		$post_excerpt=$result[0]['post_excerpt'];
		return $post_excerpt;
	}
?>

Replace “[...]” string with the_excerpt()

When you use the_exerpt() WordPress automatically put this “[...]” after content. So you want to change or get rid of it, just use this snippet (If you used to replace it in old WordPress versions you may notice that your code isn’t working anymore, you need to replace to this):

<?php
	function new_excerpt_more($more) {
		return '[much more to go]';
	}
	add_filter('excerpt_more', 'new_excerpt_more');
?>

Remove WordPress Admin Bar

WordPress 3.1 has it’s brand new admin bar. If you just updated your WP you may notice a couple of issues with it (for my custom theme it just added an extra padding at top, but wasn’t calling the bar itself). To remove it you just need to put this in your functions:

<?php
	global $current_user;
    get_currentuserinfo();

    if ($current_user->ID != 1) {
        add_filter( 'show_admin_bar', '__return_false' );
    }
?>

Adjust from name and email for wp_mail()

By default WordPress just use your email config as from. This is kind of bad because you may want to put your email as blog admin but another person will answer contact messages, comments and more. So if you want to change default settings for this, just use this snippet:

<?php
	function mail_from() {
		$emailaddress = 'contact@1stwebdesigner.com';
		return $emailaddress;
	}

	function mail_from_name() {
		$sendername = "1stWebDesigner.com - Dainis";
		return $sendername;
	}

	add_filter('wp_mail_from','mail_from');
	add_filter('wp_mail_from_name','mail_from_name');
?>

HTML Emails with wp_mail()

By default if you try to send emails with wp_mail() function you’ll just get text-only mails. You can easily put some headers to make HTML emails work, but one thing I really like to do is to create an email template (contact.html, for example) with some PHP variables on it and then I just include it in my email function. This is how my template looks like:

<?php
	function mail_from() {
		$emailaddress = 'contact@1stwebdesigner.com';
		return $emailaddress;
	}

	function mail_from_name() {
		$sendername = "1stWebDesigner.com - Dainis";
		return $sendername;
	}

	add_filter('wp_mail_from','mail_from');
	add_filter('wp_mail_from_name','mail_from_name');
?>
<html></span></h2>
<pre><head>
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
	<table style="font-family: Verdana,sans-serif; font-size: 11px; color: #374953; width: 600px;">
	  <tr>
		<td align="left"><a href="<?php bloginfo('url'); ?>" title="MyBlog"><img src="<?php bloginfo('url'); ?>/logo.png" alt="MyBlog" style="border: none;" ></a></td>
	  </tr>
	  <tr>
		<td>&nbsp;</td>
	  </tr>
	  <tr>
		<td align="left">Yo, <?php echo $name; ?>.<br />How are you?</td>
	  </tr>
	  <tr>
		<td>&nbsp;</td>
	  </tr>
	  <tr>
		<td>I've recieved your message and we'll answer it soon!</td>
	  </tr>
	  <tr>
		<td>&nbsp;</td>
	  </tr>
	  <tr>
		<td align="left" style="background-color: #aeaeae; color:#FFF; font-size: 12px; font-weight: bold; padding: 0.5em 1em;">Original Message</td>
	  </tr>
	  <tr>
		<td><?php echo $message; ?></td>
	  </tr>
	  <tr>
		<td>&nbsp;</td>
	  </tr>
	  <tr>
		<td align="center" style="font-size: 10px; border-top: 1px solid #c10000;">
			<p><i>Thank you!</i><br /><b>MyBlog</b> - <br /><?php bloginfo('url'); ?></p>
		</td>
	  </tr>
	</table>
</body>
</html>

And we call this function with our contact form:

<?php
	function contactMail($post) {
		$attachments = "";
		$subject = "[MyBlog] Contact";
		$name = $post["name"];
		$email = $post["email"];
		$message = $post["message"];
		ob_start();
			include(TEMPLATEPATH . '/_mails/contact.html');
			$message = ob_get_contents();
		ob_end_clean();

		$headers = "From: me@myblog.com \r\n";
		$headers .= "Return-Path: me@myblog.com \r\n";
		$headers .= "MIME-Version: 1.0\r\n";
		$headers .= "Content-Type: text/html; charset=UTF-8\r\n";
		$headers .= "BCC: thisIsMe@gmail.com\r\n";
		//$headers .= "BCC: rochesterj@gmail.com\r\n";
		wp_mail( $email, $subject, $message, $headers, $attachments );
	}
?>

Know what’s going on with debug() function

Sometimes things may be quite hard to find right? You just don’t know if the problem is with the loop, post data, user data. With print_r you may see things pretty (like php.net does), but if you do this in your theme, with your own formatting, the return code is probably unreadable. So what I usually do is wrap this with <pre> so I can clearly see which data I have inside of what.

To make things even easier, I put this inside one function in my functions.php so it helps me a lot:

<?php
	function debug($var) {
		if ( ! is_string($var) ) {
			echo "<pre>";
				print_r($var);
			echo "</pre>";
		} else {
			echo "DEBUG: ".$var;
		}
	}
?>

See user custom fields with debugUsr() function

When you do things with user custom fields (like what we’ll be doing in our Premium Membership Plugin) it’s pretty hard to know when we really have stored data to user meta and when haven’t. This is why debugUsr function is useful, it shows you only user custom meta that you’ve created, all default custom data isn’t shown.

<?php
	function debugUsr($uID) {
		$data = get_userdata($uID);

		$unsets = Array (
			"ID",
			"user_login",
			"user_pass",
			"user_nicename",
			"user_email",
			"user_url" ,
			"user_registered",
			"user_activation_key" ,
			"user_status",
			"display_name" ,
			"first_name" ,
			"last_name" ,
			"nickname",
			"description" ,
			"rich_editing" ,
			"comment_shortcuts",
			"admin_color" ,
			"use_ssl" ,
			"show_admin_bar_front",
			"show_admin_bar_admin",
			"aim" ,
			"yim" ,
			"jabber" ,
			"wp_capabilities",
			"wp_user_level" ,
			"wp_usersettings" ,
			"wp_usersettingstime" ,
			"wp_dashboard_quick_press_last_post_id" ,
			"nav_menu_recently_edited" ,
			"managenavmenuscolumnshidden" ,
			"metaboxhidden_navmenus" ,
			"metaboxorder_d_offer" ,
			"screen_layout_d_offer" ,
			"plugins_last_view",
			"user_level" ,
			"user_firstname" ,
			"user_lastname" ,
			"user_description"
		);
		foreach ( $unsets as $unset) {
			unset($data->$unset);
		}
		debug($data);
	}
?>

Restrict wp-admin access to a few roles

You may want to deny access to wp-admin to subscribers, since they haven’t too much to do inside wp-admin, right? It is quite easy to deny access to them, just use this snippet:

<?php
	function restrict_access_admin_panel(){
		global $current_user;
		get_currentuserinfo();

		if ($current_user->user_level <  4) { //if not admin, die with message
			wp_redirect( get_bloginfo('url') );
			exit;
		}

	}
	add_action('admin_init', 'restrict_access_admin_panel', 1);
?>

Hide update warning for every user but admin

That’s a useful warning, you know, sometimes they launch a new version and you didn’t know about it. But it’s quite unprofessional if your client or even subscribers know about it, right? So why not just show them to blog admin? Use this:

<?php
function wp_hide_update() {
        global $current_user;
        get_currentuserinfo();

        if ($current_user->ID != 1) { // only admin will see it
            remove_action( 'admin_notices', 'update_nag', 3 );
        }
    }
    add_action('admin_menu','wp_hide_update');
?>

Hide items from wp-admin menu

When we sell complete websites to our clients they can get quite confused with so many options inside WordPress. One good thing to do is just to hide all things that they may never need, so they focus on just adding content instead of messing around with our hard work :) With this function you hide a lot of things. Try different combinations of numbers and see what will be hidden:

<?php
    function remove_dashboard_widgets() {
        global $menu,$submenu;

        global $current_user;
        get_currentuserinfo();

        if ($current_user->ID != 1) { // only admin sees the whole thing
            // $menu and $submenu will return fo all menu and submenu list in admin panel .
            $menu[2] = ""; //Dashboard
            $menu[5] = ""; // Posts
            $menu[15] = ""; //Links
            $menu[25] = ""; //Comments
            $menu[65] = ""; //Plugins

            unset($submenu['themes.php'][5]); //themes
            unset($submenu['themes.php'][12]); //editor
        }
    }
    add_action('admin_head', 'remove_dashboard_widgets');
?>

Redirect for different page instead of dashboard

If you hide dashboard you may want another page instead of an ugly error when user goes to wp-admin, right? So we can redirect them when they try to access just wp-admin:

<?php
	if ( is_admin() ) {
        $url = $_SERVER['SCRIPT_NAME'];
        $url = explode('/', $url);
        $tam = count($url);
        if ( $url [ ( $tam - 1 ) ] == "index.php" ) {
            $url = 'Location: ' . get_bloginfo('url') . "/wp-admin/edit.php?post_type=page";
            header( $url );
        }
    }
?>

What do you think?

Well, we have here some of the functions that I use most. What about you? Do you know something that I missed? Share it via comments! :)


1stwebdesigner – Graphic and Web Design Blog

Nike SB High Dunks

Thursday, September 22nd, 2011

That they his or her suppose for the getting together with position along with Nike recognized how to handle it. Suitable for game. Your Nike Dunks Low Substantial Adult men ended up being quite sharpened to the game avid gamers. Nike got the positioning made with an extra solid unbiased distinct than the ahead of situation. Your theory ended up being for you to adduce situation that’s brighter throughout gain access to, Nike Dunks closer for you to rivet, along with skilled using improve paneling pertaining to souped way up schedule. Your advancements ended up trumped-up in order that the contestant could gain undesirable pivoting along with disturbance. Advertising your up-to-date gig, a new stand out named your Academy Ensign premiered throughout mismatched universites and colleges.

Designating educational facilities ended up fell way up pertaining to wonderful Nike sponsorship. Your jerseys ended up to get equable while using Nike Dunk Shoes that leave around always be furnished pertaining to by simply Nike SB High Dunks. Your octad educational facilities which are decide on to the Nike SB Low Dunks tactic involved Lincoln subsequently involving Baltimore, E. Musician Lincoln subsequently, Area Lincoln subsequently, Villanova University or college, Nike Dunks High core University or college involving Chiwere, University or college involving Kentucky, University or college involving Newmarket, along with University or college involving The state of nevada.

ClassifiedAdsFree.com

Najlepsze kredyty hipoteczne

Wednesday, September 21st, 2011

Wedle aktualnych danych, sprzedaż zobowiązań mieszkaniowych w zeszłym roku była większa, jakkolwiek powyżej 23 proc. z udostępnionych zobowiązań stanowiły zobowiązania z dopłatą.


Jeżeli do modyfikacji projektu Rodzina na Swoim dołoży się nadciągające spowolnienie gospodarcze, wyższe oczekiwania nakładane na konsumentów, zawirowania na zbiorowych rynkach i co chwila większe kłopoty naszych deweloperów, to wniosek jest oczywisty: koszty mieszkań muszą spadać. Kredyt, w tym również Rodzina na Swoim, były elementem cenotwórczym – ten stan szybko jednakże nie wróci.


Ostatni i najbardziej nieprzewidywalny składnik łamigłówki to psychologia. Usługobiorca myślący o nabytku mieszkania ma utrudnioną sytuację i oczekuje na łatwiejsze czasy. Z kolei dla sprzedającego zachowanie cen na poprzednich, wysokich poziomach będzie generowało koszty, bo chętnych do zakupu nie będzie dużo.


Jeżeli w przychodzącym roku zabraknie jednej czwartej rynku kredytów, a system gospodarczy faktycznie spowolni, rynek musi zareagować. Kończą się elementy zwyższające koszty do wartości oderwanych od rzeczywistości.


TRIP to