Solicitors – Pi / Accident Claim 33 Back Links Link Building

We our looking to have backlinks built to our Clients website.

The website in question is a UK Based Solicitors’ Website, specialising in Personal Injury and Accident Claims.

The aim of the project here is to build 33 Quality Backlinks from pages that have a PageRank of 2-5 (the actual page with the link on, not the site homepage).

The website is UK based. Legal / Law / Solicitors sites or blogs would be ideal.

We have 5 (FIVE) keyphrases that we would like used as the anchor texts in the link building exercise.

The Links must conform to the following requirements.

1. Links must be from from Legal, Law, Health or related websites or blogs.

THE ABOVE IS VITAL, A MANDATORY REQUIREMENT OF THIS PROJECT

2. Links must be live “do follow” links.
3. The pages that the links are placed on must have PageRank of 2 or above.
4. We do not simply want links that are placed in the footer / menu of websites.
5. The links should be placed within natural body content of websites.
6. Links to be sought ethically, and not through farms or automated systems.
7. All links to us will be one-way.
8. All links should be from different domains, on different IP ranges, in different locations.
9. The page the link is sought on must be recently / regularly cached.
10. Link pages must be indexable by search engines, i.e. not behind login / restricted areas.
11. Link building staggered over a period of time
12. A proportion of the links sourced must be from UK websites.
13. Links must NOT be from Directories / Social Bookmarking sites.

WE DO NOT REQUIRE ANY OF THE FOLLOWING, SO PLEASE DO NOT OFFER:

1. NOT REQUIRED: On-Site Optimisation
2. NOT REQUIRED: Directory Listings
3. NOT REQUIRED: Search Engine Submission
4. NOT REQUIRED: Social Bookmarking Links
5. NOT REQUIRED: Article Writing / Submission

We are doing the above 5 things ourselves, and we do not expect to be offered it… This project is for Link Building only.

Upon completion, we will expect a spreadsheet the links sourced, their PageRanks etc.

Payment on completion of process.

The client is looking to have quality fresh links built on a regular basis. The winning programmer will have the opportunity for this future work.

Bidders, confirm that you will build 33 Links, at what cost, and in what time frame.

Jquery Slider & Description Box Fixes

I’m looking for somebody to help me with two fixes in IE.
The site is found at http://eslempowermentprogram.com/intermezzo/

1. The slider description box fades in to full opacity in IE, instead of 60%
2. The description box “jumps” a little once faded in all the way. It is an anti-aliasing issue with the font. I found a solution here, and just need it implemented: http://www.comanswer.com/question/font-anti-aliasing-issues-with-jquery-fadein-in-ie8

Beer Shooting Fridge

beershot.jpg

At first glance this might look like your average beer fridge, one that could possibly be in any dorm room in the country. If you take a closer look (or watch the video after the break) you will see that it’s actually an air cannon powered beer launcher.

A fancy iPhone interface allows the user to choose a beer and load it up in the cannon for delivery. Next, you aim the cannon with the help of it’s built in webcam. When you have chosen your beverage and aimed it in the right direction you click fire.

You better be good at catching, getting hit the head with a full beer being launched from an air cannon will hurt, I promise.

tech.nocr.atBeer Shooting Fridge originally appeared on tech.nocr.at on 2011/01/04.

© tech.nocr.at 2011 |
Permalink |
Comments |
Read more in Hacking and Security |
Add to del.icio.us |
Stumble it |
Digg this

Explore more in: , ,


Follow/ReTweet iPod Nano Giveaway

nano_technocrat.jpg

Twitter is such a wonderful thing. It’s a great way to spread information quickly and effectively and it’s also great for handing out shiny objects

We happen to have a shiny new 6G iPod Nano in a box that we are itching to give away to one of our readers. Either follow @technocrat_blog or retweet one of our tweets from now until 11:59 Friday, January 21st 2011 and we will pick someone at random who will walk away with the nano.

The winner will be picked on Saturday, January 22nd 2011 and be notified by direct message on Twitter and have their twitter username posted here on tech.nocr.at. We’ll pay the shipping but you’ll be on the hook for any custom charges if you live outside of Canada.

What are you waiting for, retweet and remember to tell all your friends.

tech.nocr.atFollow/ReTweet iPod Nano Giveaway originally appeared on tech.nocr.at on 2011/01/03.

© tech.nocr.at 2011 |
Permalink |
Comments |
Read more in Tech News |
Add to del.icio.us |
Stumble it |
Digg this

Explore more in: , , , , ,


DIY: Snail Mail Notifier

snail_mail.jpg

How did we ever live without push notifications? Email, SMS, IM; we get notified each time one of them is updated. What about our old analog world? Make Magazine show’s us just how we can get push notifications for an older form of mail, snail mail.

This awesome project uses an Arduino to trigger a prowl notification. The project can be adapted for any use like a garage door or door bell. A little electronic know-how is needed and if you want the prowl notifications to work you will need a PHP server. You can do away with the need for a server if you opt to have it send you an email or direct twitter message instead.

[Via Make Magazine]

tech.nocr.atDIY: Snail Mail Notifier originally appeared on tech.nocr.at on 2011/01/03.

© tech.nocr.at 2011 |
Permalink |
Comments |
Read more in Hacking and Security |
Add to del.icio.us |
Stumble it |
Digg this

Explore more in: , , ,


Hotlink Prevention In Nginx

hotlink.jpg

Hotlinking, inline linking, leeching, piggy-backing, direct linking or offsite image grabs. No matter what you call it 99% of the time it’s wrong. Bandwidth costs money. I spent sometime over the holidays examining my logs and noticed that there were a ton of sites hotlinking back to images we had posted. Worst of all, most of them were profiting off the images.

Here at tech.nocr.at we run nginx as a front-end proxy to WordPress. Stopping hotlinking in nginx is as simple as adding a small snippet of code in your sites-enabled file. Add the following code inside your server statement.

location ~* ^.+\.(jpg|jpeg|gif|png)$ {
  root   /path/to/webroot;
  valid_referers none blocked server_names ~(yourdomain.com|google.|yahoo.|bing.);
  if ($invalid_referer)  {
  return 403;
  }
}

The above will allow images to be displayed if they come from your domain, google, yahoo and bing. If you have other sites you might want your images to be linked from just add them in the valid_referers statement. If someone tries to hotlink to one of your images they will receive a 403 error. If you wish to have a different image displayed instead of the 403 error, letting them know they are hotlinking, then you must replace the return 403; line with this:

rewrite  ^  http://yourdomain.com/hotlink.jpe;

Notice how the image file ends in .jpe? If it were you end in .jpg it would end up in a loop and never be displayed. Simply create the image you want to use and change it’s extension to .jpe before you upload it to your web host.

tech.nocr.atHotlink Prevention In Nginx originally appeared on tech.nocr.at on 2011/01/03.

© tech.nocr.at 2011 |
Permalink |
Comments |
Read more in Hacking and Security |
Add to del.icio.us |
Stumble it |
Digg this

Explore more in: ,


Modification Of Script

I have a installer script source code which needs some modifcation. Currently when the installer is installed, some config files are placed on the system. I want someone with experience with scripting to modify the source code so that when the installer is uninstalled from the computer, then these set of config files are also removed. Presently these config files are not removed when the installer is uninstalled from the computer.

Php Website 4 Pages

Hello All,

I need to build PHP site with following requirements :

1. html already build here : http://www.kalencreative.com/MRM/index1.htm you can see the pdf version attached ( master.pdf )

2. Create a database on the backend that can collect and store customer data.

3. Video Integration: Include a video that will display and play similar to the link when clicked. (This requirement will not be implemented until later when the video is available from the client).
http://videobox-lb.sourceforge.net/
http://videolightbox.com/vista-template.html

4. Rotating image with fade-in/out effect on the main “Count Me In” section.

5. “About Us” Section on footer bar will simply link to the “About Us” page.

6. Section “1. FACBOOK” will connect to the database and add
data via Facebook Connect.
http://developers.facebook.com/docs/guides/web

7. Section “2. TWITTER” and “3. YOUTUBE” on footer bar will simply link to the appropriate social media page.

8. Linkedin icon at the top left will connect via Linkedin similar to Facebook via Linkenin API. Other social media icons at the top simply link to the appropriate page.
http://developer.linkedin.com/index.jspa

9. The “About Us”, “Contact” (not pictured in PDF) and “Count Me In” pages are static (text, images and links only).

10. The “Count Me In” forms page will have two separate forms (outlined below) and the data submitted will be stored in the database and be able to be exported to .csv or excel format from the database.
The user will have the option to select from (2) forms “TALENT” or “BUSINESS” from a drop-down menu. Based on the users selection the appropriate fields will display below for the user to complete. (Data fields are attached in the email as reference)
On successful submission of the form by a user, send a notification email to the user and to an admin email address. (verbiage for each email will be provided)
Thanks

Need Custome Skadate Theme

I just purchased a Skadate dating script. Skadate has several themes for their customers. However, I do not really like most of them (the themes do not appeal to my audience). I will like to customize three of the existing themes (layout and images) for my site. I will consider any great designers, but I prefer somone who has worked with skadate designs and templates. If you are ready to work on this with me quickly, please contact me. You can see all the skadate themes by selecting the themes in the top right corner on this site: http://www.skadate.com/demo/index.php:

Act For Real Estate

We are looking for someone who is well experienced in the software program called ACT for Real Estate 2009.

1. We need to have it slightly modified to meet our specific needs, primarily moving screens and field around to make it more convenient.

2. We would like someone to expand on the possibilities of the program

3. We would like to discuss creating a database connector, which allows the ability for the program to connect to an online database.