How to get free advertising – free ad space and huge traffic

Free ads Blog directory

This days I check my website stats and I saw that I got huge amount of traffic from botw directory and botw ads. So I want to share with you. Try this special offer and get 60 days free online advertising. I didn’t pay anything and only I have to wait few days and nothing more. free advertising is possibile.

Sure, if you are freelancer webmaster and you are looking to buy ads or links perfect place is botw to buy high page rank directory.

Top 6 unusual high salary jobs in year 2008

ugly dog  doesnt need therapist

All this years we thought that some jobs as programmer, broker, real estate manager, project manager or simmilary were top paid jobs. But afther my article Green jobs – new future for top salary jobs I realized that some new jobs could be very interesting and made high-paying careers.

This is top list of 5 high salary jobs (statistical research) :

1. Pet Psychologist  earned $100,000 average per year 2008
The pet therapy is being popularized in institutions around the world, as can be seen when conducting a search of  programs on the Internet.One  Pet therapist says “pets can be analyzed and taught to act contrary to destructive impulses like the people.”

2)  Eco-tourism manager  or eco-tourism director -  $83,240 for the year.

Eco tourism  is an approach to tourism activities in which tends toward sustainability, preservation and appreciation of the environment (both natural and cultural) that welcomes travelers. Although there are different interpretations, usually eco-tourism is promoted as a tourism “ethical”, which is also presumed as paramount the welfare of local populations, and this presumption is reflected in the structure and functioning of the companies / groups / cooperatives that are dedicated to offer such a service.

Due to its booming eco-tourism already has become the fastest growing segment and the most dynamic sector of the tourism market worldwide. This movement emerged at the end of the 1980s, and has already managed to attract enough international interest, to the point that the UN spent the year 2002 to ecotourism.

The International Ecotourism Society (TIES) [1] defines ecotourism as “responsible travel to natural areas that conserve the environment and improve the welfare of local people.”

The geniuno Ecotourism should follow the following seven principles  both for those who operate services to those involved:

1. minimize negative impacts to the environment and for the community, which generates the activity;
2. respect and build environmental awareness and culture;
3. providing positive experiences for visitors to the hosts;
4. provide direct financial benefits for conservation;
5. provide financial benefits and enhance participation in decision-making from the local community;
6. Sensitivity to create the political climate, environmental and social performance of the host countries;
7. Supporting universal human rights and labor laws.

This managers are self-employed professionals. Top earners in 2008 averaged $83,240 for the year.  Can you imagine this ?

3) Professional Hacker –   $123,900 for the year
Hacker is a neologism used to refer to an expert in some branch or several related technical computer programming, computer networks, operating systems, network hardware / voice, and so on. Is often called the hack and hack themselves to works of a hacker.

The term “hacker” transcends the experts on IT, to also refer to any professional who is on the cusp of excellence in their profession, because in the purest description, a hacker is someone who is passionate about knowledge , Or discover new things to learn and understand the functioning of these.
It is said that the term of hacker emerged from the developers of the Massachusetts Institute of Technology (MIT), which in the 60, to use hacks, they called themselves hackers, indicating that programs could do better and more effective, or that did things that nobody had been able to do.

So hackers who tested a lot of systems in year 2008 -  The top 50% of computer or IT hacker proffessionals  earned between $97,970 and $123,900 in 2007.

4. Conservation Consultant – “green job” consultant
Knowledge in area of  “green jobs”, and encreasing energy efficiency can bring top conultants a lot of money. In  2008, the top 50 percent earned between $70,000 and $106,000.

5. Fashion Consultant/Personal Shopper earned $121,640 average per year 2008
You can consult on hair, makeup, where to buy, fashion or you can  take your clients shopping to the top shops. You can work interesting job, and earn a lot of money. Dream job….
6. Mobile Experience Architect – mobile designer earned $300,000 average per year 2008
Interior designer draws upon many disciplines including environmental psychology, architecture, product design, and traditional decoration (aesthetics and cosmetics). But if you are designer who have experience and well connection with people you can earn as top designer in your city a lot of money.
If you have some suggestion or you know some interesting high salary job – write a comment.

Green jobs – new future for top salary jobs

green-jobs Green jobs include all positions that ensure the well-being of the environment.The renewable energy sector employs a lot of engineers and other scientists, corporate social responsibility advisers and solar sales people urban planners, bike repairers, ….
“We are prepared for a green economy.” We are prepared to tackle the climate change crisis through the creation of an economy that is sustainable enough to lift people out of poverty.

Green Jobs Now is a National Day of Action that will cause people to have enough power to organize hundreds of popular events throughout the country. We will focus on communities with low incomes, color and Indians. Thus send a message to our political leaders so that they know that when it comes to creating green jobs to a more sustainable economy, WE ARE READY!

Right now there are millions of people prepared to work and lots of jobs that would grow to occupy our national economy. In addition, there are thousands of buildings that should be isolated from atmospheric conditions, to install solar panels and wind turbines to be placed. There are also communities that need food, sustainable and local people ready to cultivate the land, public transportation systems and networks they need supplies electrical engineers and electricians. Americans are ready to create a new economy, so the time has come to save the planet and its people. It is time for green jobs, already!

How to protect wordpress blog from hotlinking – protect bandwidth – tips and plugins

Wp super cache wordpress plugin screenshot

Wp super cache wordpress plugin screenshot

1) Speed up your blog and protect beandwidth limit using WP SUPER CACHE plugin

If you have a blog with WordPress on a server shared with few resources and this plugin will interest you, this is WP Super Cache, this plug-in creates static html pages from the dynamic pages generated by WordPress, these dynamic pages are generated stored on your server to decrease by up to 80% der server load, because of this that instead of generating a dynamic page for every page request to the server is static HTML page.

But not all of the blog will be static for some users of the site will display the pages dynamic and static pages will be displayed only to users who:

1. Users who do not have a session started.
2. Users who have never left a comment on the blog.
3. Users who have not seen posts protected by password.

The good news is that probably 99% of the visitors do not do anything mentioned above, these users will see the cached pages on your server, this plugin is very useful for example when our blogs are listed on sites or how digg.com meneame.net who lead thousands of visitors to our sites, and avoid downed server.

This plugin is based on the old WP-Cache which was created by Ricardo Galli some time, so if you’re using WP-Cache can easily migrate to WP Super Cache.

2) Protect bandwidth from hotlinking – protect images and bandwidth and CPU resources

To prevent hotlinking from only a few specific domains, such as digg.com, myspace.com and blogspot.com, but allow for any other, use this code in .htaccess file

RewriteEngine on
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http://(www\.)?yoursite.com/.*$ [NC]
#RewriteRule \.(gif|jpg)$ – [F]
#RewriteRule \.(gif|jpg)$ http://www.yoursite.com/stealingisbad.gif [R,L]

You can add as many domains as you like. Each line must end with RewriteCond [NC, OR]. [NC] (No Case) means that ignore the differences between uppercase and lowercase. [OR] “Or Next” means you go to the next looking for online matches. The latest domain omit the use of OR to stop looking for further matches.The first line begins to rewrite the options in Apache.
The second line verifies the match from the very page (mipagina.com).
The code [NC] means “No Case”, making no matter whether this lowercase or uppercase direction.
The third line is to allow direct references (to put the link into the address bar – without references to other pages).
Finally the last line is used for extensions of the files jpeg, jpg, gif, bmp, png. These are replaced by the image nohotlink.jpg which is in the folder images. This extension uses the JPEG image and not jpe jpg also to avoid being blocked.

3) Prevent hotlinking using wordpress plugin

The plugin hotlinking protection is the best plugin to avoid such a technique known and very annoying the hotlink, which is the theft of broadband using your images in other sites, usually blogs or forums.

The biggest damage is not the use of an image to go but not to upload to your host are using our resources in hosting and this in the long run can bring problems of overloading and bandwidth without leave for the rest of the month.

If you use WordPress because it will not be problem, because we have a hotlinking protection plugin created by Lim Dul blocking hotlinking of images showing an image by default, but instead shows an image that we can configure.

Installation:

1. Download Plugin Hotlink Protection Plugin for WordPress
2. Unzip the file
3. FTP to upload to the folder / wp-content/plugins / all
4. Activated from the menu manager
5. Go to Options>> Hotlinking Protection for setting the plug.

Setup is simple, by default, and brings wp-content/uploads protected folder to which you can add that you need.

This plugin you just installed because something is happening in the hosting, I do not believe so many resources being spent, to see how I go.

4) Protect bandwidth from bad HTTP request :

There are several ways to fight spam, some are based on trying to prevent, for example, leave a comment being as a requirement to enter a code that is displayed in a picture or a word, and even do a simple sum (eg Use this blog, along with plugin commented that today).

However, all these techniques are more or less combated by those who are behind the spam and making by improving their programs that are capable of introducing codes, words or even the sums …

So somebody had the idea that the best way to avoid spam was not letting the bots on our site. Cut the problem at source.

The latter is the system which is based in Bad Behavior (which translated means “bad behavior” or “misconduct”), and that the system is used for difference between normal users or search engines and spiders from spam bots, is precisely based on analyzing the behavior of visitors and compare it with that of a spam bot and ordinary users, while penalizing the ban to come to our blog to those who do not for example HTTP requests as a normal user, do not obey the guidelines File “robots.txt” in case you’ve created, or contain your user ID (User-Agent) words or expressions of regular use known spammers.

A system that we have available as a plugin for WordPress as well have it available for other CMS as Lifetype, Mediawiki, or Joomla.

In this way we avoid the vast majority of spam bots to have the opportunity to test our forms and / or email addresses. And we can always supplement this with other protection that do not fill our database with spam.

“Bad Behavior manages to block nearly all link spam without ever looking at the spam. While it might be useful to do so, for performance reasons, Bad Behavior does not analyze received spam. I’ve found that this way lies madness; spammers are constantly buying new domain names, so it’s possible to miss a lot of spam by looking at it.

Instead, Bad Behavior pioneered an HTTP fingerprinting approach. Instead of looking at the spam, we look at the spammer. Bad Behavior analyzes the HTTP headers, IP address, and other metadata regarding the request to determine if it is spammy or malicious. This approach has proved, as one user said, “shockingly effective.” After all, spammers write their bots on the cheap, and have little incentive to code very well. If they could code very well, they probably wouldn’t be spammers.”

Bad Behavior analyzes the delivery method as well as the software the spammer is using. In this way, Bad Behavior can stop spam attacks even when nobody has ever seen the particular spam before.

Download Bad Behavior wordpress plugin to protect bandwidth

5) Protect images directory from direct access

In folder where are images theme/images or  wp-content/images or anywhere you can put index.php file with code :

<?php

// Change to the URL you want to redirect to

$URL=”http://www.yoursite.com”;

header (“Location: $URL”);

?>

Make .htaccess file in images directory with this code :

SetEnvIfNoCase Referer “^http://www.yoursite.com/” locally_linked=1
SetEnvIfNoCase Referer “^http://www.yoursite.com$” locally_linked=1
SetEnvIfNoCase Referer “^http://yoursite.com/” locally_linked=1
SetEnvIfNoCase Referer “^http://yoursite.com$” locally_linked=1
SetEnvIfNoCase Referer “^$” locally_linked=1
<FilesMatch “\.(css|gif|png|jpe?g)$”>
Order Allow,Deny
Allow from env=locally_linked
</FilesMatch>

Now you protect 100% your site from bandwidth theft ! Any suggestions ?


A Fortune 100 Company in Dallas seeks a Corporate Income Tax Accountant

A Fortune 100 Company in Dallas seeks a Corporate Income Tax Accountant to join their team. This person must be carrer agressive and willing to grow within the Company:

The Senior Income Tax Accountant will be responsible for working with local, state and federal tax auditors to measure company compliance with tax regulations concerning income and franchise tax.

Other duties include:
• Gathering data to assist with tax returns
• Research planning
• Preparing and filing income and franchise tax returns in a timely manner
• Coordinating requests for tax information
• Preparing and presenting recommendations to management based on financial planning data
• Preparing and reviewing quarterly estimates of federal, state and local tax liabilities and year-end tax provisions
• Assists internal and external auditors regarding company’s accounting practices preparing financial statements and assets in order to maintain General and Secondary ledgers.

To be qualified for this position you will need a Bachelors Degree in Accounting, Finance or closely related field and a minimum of 4 years experience in the income tax area. You must possess SUPERIOR communication skills – both written and verbal, be very detail oriented, and be proficient with MS Office. Knowledge and experience with FAS109 required. Working knowledge of sales and use and unclaimed property tax a plus.

Please submit a copy of your Word resume to rami.muhanna@parkerlynch.com for immediate consideration. Only qualified candidates will be contacted.

Pharmaceutical company needs The Project Coordinator – project manager

The Project Coordinator/Manager(PC /PM) is responsible for managing all aspects of a program* from conception to completion while under the direction of the senior staff. The PC/PM monitors on-going activities to ensure quality and consistency with strategic direction as outlined in the proposal and budget.  ACCME compliance is necessary for all initiatives. The PC/PM serves as the primary internal and external source for all communications regarding day-to-day program activities.  Primary activities include: team management, communication trafficking, faculty contact, supporter status updates, time Line monitoring and budget management.
Major Responsibilities
~ndependently manage (under senior staff direction) the implementation of assigned programs and related tasks.
~ Ensure implementation conforms to scope of service (proposal).
~Frequently update staff on program status. If change in scope of service becomes necessary, the PC/PM identifies the need and manages the process (addendum and budget/timeline adjustments, if necessary).
~ Enforce timeline milestones.
~Manage vendors (including freelancers–graphics, print, medical writers, etc.) to ensure program remains on time and within budget.
~Ensure that supporter communications are timely and accurate.
~Generate periodic program status report to sponsor that address current project details.
~ Participate in live supporter meetings.
~Assist team with tactical new business development, inclUding gathering information to generate budgets and proposals (such as getting vendor quotes, annual meeting dates and details, etc.)
~ Manage and review project financials, inclUding end of program reconciliations. Direct the invoicing process with internal and external accounting departments.
~Serve as on site contact to manage all logistical details for live events.
~Travel will be required, depending on the location of live events and supporter meetings.

Requirements

Current Program Types
~Teleconferences
~Dinner meetings
~Symposia (in conjunction with major medical conferences and society annual meetings)
~Web initiatives: On Demand newsletters, On Demand Workshops, 24/7 meeting registration, On Demand programs that include audio and/or video, 24/7 pre-recorded teleconferences (On Demand)
~ Print monographs
~Print newsletters
~Faculty content development meetings (live and teleconference)

Skills and Knowledge
~Ability to understand the basic science of therapeutic areas of current programs
~ Efficient organizational skills, with strong attention to detail
~Ability to generate and manage timelines
~Ability to prioritize multiple tasks in conjunction with project timelines
~ Strong self confidence to ensure that team, support staff, and vendors perform to program timelines and budgets
~ Knowledge of proposal and budget preparation to assist in gathering cost and vendor information
~Capacity to coordinate and run project meetings (project kick offs, faculty teleconferences, supporter updates, etc) and generate contact reports, for post-meeting distribution
~Effective communication with faculty (welcome packs, travel arrangements, content coordination, etc.)
~Ability to interpret contracts, agreements, and guidelines (symposia guidelines, restaurant and hotel contracts, AV and vendor agreements, etc.) and manage to timeline and budget
~ Meeting planning (AV, food, travel hotel, ground transportation, etc) and on-site meeting management (registration, faculty coordination, etc.)
~Travel required (currently domestic) depending on sponsors and live meeting schedule
~Enthusiastic, upbeat personality
~Strong work ethic, self motivated
~Work extremely well in a team environment
~Work well under pressure with flexibility to change direction quickly, as necessary
~ Solid written and verbal communication skills
~Leadership capabilities
~Very strong computer experience: MS Office (Excel, Word, PowerPoint, Outlook)
~Work closely with layout/graphics department to develop art and layouts for invitations, web initiatives, newsletters, etc.
~Medical education and/or pharmaceutical marketing experience a plus.
~Graphic and/or print production experience a plus Uournal ads, posters, invitations, postcards, syllabi, newsletters,etc.)
~Video (pre and post production) experience a plus