The time has come to re-brand this site!
As a company we are doing more development, WordPress and social network work these days, and whilst we still do a lot of marketing with AdWords, we need a new website that works better for us.
So, we’ve bought a new domain name: necessarymaterials.com, but how do we re-brand and keep all the nice link juice and SEO flowing? We need to maintain all of the Sky Rocket posts and traffic under this new brand and domain name.
If anyone has any tips or tutorials for this, please let me know in the comments…
Tagged as:
link-juice,
re-brand,
seo
Sponsored links:
‘Hotmail email login’ has been spiking in the keyword database recently and warrants a closer investigation. You would expect to see large volumes of searches on terms that contain the word ‘hotmail’ as it is the leading online web mail product. No big surprise that it is a well searched for term, but is there more to this than meets the eye?
Certainly when we look closely at our data on ‘hotmail email login’, ‘hotmail email inbox login’, ‘hotmail mail box’, ‘hotmail login’ and ‘hotmail login page’ you get a sense that there is a excessive amount of searches for this term. Users are struggling to access Hotmail with evermore detailed and complex search terms. This is very surprising because you would assume that a household name like Hotmail would be easier to find!
My theory is that the various domain and company re-brands at MSN have confused folks, forcing them to type ‘hotmail email login’ into Google instead. The switch to live.com and now to bing.com has confused users to the point that they’re not quite sure where their hotmail email login lives these days. Typing hotmail.com into a browser still initiates a redirect to live.com. Confusing use of domain names for a product increases the need for users to rely on search. Not only that, but search engines have become so good at finding web pages, most people are more comfortable with using a search box than the location bar in their browser. The downside of this is that it allows competitors to advertise alternative products to these users when searching. I’m very surprised that you don’t see more ads for Gmail and other web mail products on the term ‘hotmail email login’.
Tagged as:
hotmail email,
hotmail email login,
hotmail login
Sponsored links:
The Google map app is easily one of the most useful apps on the iPhone. Indispensable when getting driving directions, and much better than a paper map or an annoying Garmin or TomTom unit. However, the big drawback is you need a good internet connection to use it. Which can be especially painful when overseas, where data roaming charges can cost a small fortune. The map app downloads a lot of images so you can quickly blow through hundreds of dollars if you use it heavily. Well, here is a quick tip to allow you to cache your maps for offline reading and save some money when abroad.
Google driving directions cached for offline use
The iPhone has a really neat screen grab feature. Simply press the home and power button together at the same time to make a picture of the entire iPhone screen. The image will be saved to your photos app. If you do this when using the Google map app you effectively record your maps as images into the photo app library. They can be viewed again when en-route to your destination without any need for an internet connection.
Here’s an example:
So, Google driving directions from home and screen grab the pages you need before you leave. Who needs a Garmin if you have an iPhone?
Tagged as:
cache google map on iphone,
google driving directions,
iphone
Sponsored links:
This website is currently using a WordPress theme called Thesis, but unless @pearsonified has a change of heart and stops violating the WordPress GPL license, we will cease using Thesis on this website and all other websites under our control.
We are now actively looking for alternative themes. We have mainly been using Thesis to sketch out sites and build mock-ups for clients, so we’re looking for another GPL compliant theme that does the same. We are currently looking at Canvas, Genesis and Hybrid. If you have other suitable suggestions, we would love to hear about them!
Tagged as:
thesis,
thesiswp,
wordpress
Sponsored links:
Why would you want to scrape data from AdWords when Google provide an API and email reports? Well, managing a number of different AdWords accounts for various clients can be challenging. It can be very time consuming logging into individual accounts and checking stats on a daily basis. The AdWords API is good, but not always suitable for certain client accounts. Email reports are nice, but you still have to collate the emails from your inbox. Often the best way to download specific stats into one file is to build a web page scraper. Using a scrape script provides you with a lot more flexibility, and allows you to focus on exactly the sort of information you think is important.
Recently, we discovered a neat little Ruby library called Mechanize. Mechanize does an excellent job of navigating forms, pages and links and extracting data.
Here is an example AdWords spend scrape script to get you started…
require 'rubygems'
require 'mechanize'
adwords_accounts = [
["adwords1@skyrocketonlinemarketing.com", "password"]
]
total_accounts = adwords_accounts.length
(0..total_accounts-1).each do |i|
puts "#{adwords_accounts[i][0]}"
agent = Mechanize.new
agent.get("https://adwords.google.com")
puts "#{adwords_accounts[i][0]}: #{agent.page.title}"
sign_in_form = agent.page.forms[1]
sign_in_form.Email = adwords_accounts[i][0]
sign_in_form.Passwd = adwords_accounts[i][1]
page = agent.submit(sign_in_form, sign_in_form.buttons.first)
puts "#{adwords_accounts[i][0]}: #{agent.page.title.gsub(/\n/,' ')}"
agent.get("https://adwords.google.com/select/snapshot")
puts "#{adwords_accounts[i][0]}: #{agent.page.title.gsub(/\n/,' ')}"
if agent.page.title == "Redirecting"
agent.get("https://adwords.google.com/select/snapshot")
puts "#{adwords_accounts[i][0]}: #{agent.page.title.gsub(/\n/,' ')}"
end
stats_title = agent.page.at(".stats-title").text
stats_clicks = agent.page.at("tr:nth-child(1) .stats-data").text
stats_imps = agent.page.at("tr:nth-child(2) .stats-data").text
stats_cost = agent.page.at("tr:nth-child(6) .stats-data").text
puts "#{adwords_accounts[i][0]}: #{stats_title} #{stats_imps} #{stats_clicks} #{stats_cost}"
puts "\n"
end
To get this to work, all you need to do is enter your account information on line 5. If you then want to use this for more accounts, simply add them to the adwords_accounts array.
Tagged as:
adwords,
mechanize,
nokogiri,
ruby
Sponsored links:

A new mobile transportation dispatcher now becomes a reality for millions of commuters, carpoolers, ridesharers and casual hitch-hikers around the world. Today, PickupPal Inc., operators of the very popular and growing rideshare service found at pickuppal.com, announce the release of their iPhone® app.
Toronto, Canada PRWEB May 5, 2010 — A new mobile transportation dispatcher now becomes a reality for millions of commuters, carpoolers, ridesharers and casual hitch-hikers around the world. Today, PickupPal Inc., operators of the very popular and growing rideshare service found at www.pickuppal.com, announce the release of their iPhone® app.
via PickupPal Goes Mobile with Free iPhone® App.
Tagged as:
pickuppal
Sponsored links: