Homescopes is the premiere sfsasdfasffffffffffffffffffffffffffffff

sfsfsfdsfada

Click on the map to the left to learn more about a specific area. More...

 

Latest Blogs from Homescopes Blog Network

This are currently no active blogs

Apr
2007
4

How to fix UTW when it stops returning Tags

by

Ultimate Tag Warrior is an awesome plugin. If you don't have it, get it, NOW!  *waiting...waiting*

Ok, now that everyone is back, let's discuss a problem I ran into and how to fix it. When you write a post and have the UTW plugin activated, you will notice a section below the post edit box that gets related tags for you. UTW sends your post to Yahoo's content api, and then Yahoo returns keywords based on the content...really cool stuff. You can see the Yahoo content API Here.

The API will only send 5,000 queries per application ID. So if you click on the "Get Keyword Suggestions From Yahoo" button and nothing happens UTW has probably reached it's limit of queries. Think about how many blogs UTW is installed on...it's a lot.

You can fix this by adding your own Yahoo API Application ID. I know it sounds hard but I don't think you have to even go to yahoo to change it.

The file to edit is in the UTW plugin folder. The file name is ultimate-tag-warrior-ajax.php 

On line 95 you will see $appID = "wp-UltimateTagWarrior"; If your editor does not have line numbers, you can search for "wp-UltimateTagWarrior". Change the appID to whatever you want, but make it unique because if the appID is already in use by another large website you might just run into the same problem as before. I changed the appID to my credit card number: 4532-2344... J/k Tongue out

anyhow, once it is changed, re-upload the file and go check it on a post...it should work and return the tags based on the content of your post. 

Here is another useful code snippet I use to return tags based on content
You can try the code out here: My Keyword Generator
Simply send it content and it returns the keywords, don't forget to change the appID in the snippet too.

PHP:
  1. function get_keywords($context)
  2. {
  3. // output=php means that the request will return serialized PHP
  4. $request'http://search.yahooapis.com/ContentAnalysisService/V1/termExtraction';
  5. $ch = curl_init($request);
  6. $fields = array(
  7. "context" => $context,
  8. "appid" => 'your_App_ID',
  9. "output" => 'php'
  10. );
  11. $sendheaders = array("User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",);
  12. curl_setopt($ch, CURLOPT_POST, 1);
  13. curl_setopt($ch, CURLOPT_HEADER, 0); // set to 0 to eliminate header info from response
  14. curl_setopt($ch, CURLOPT_NOBODY, 0); // set to 1 to eliminate body info from response
  15. curl_setopt($ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_0); // use HTTP/1.0 instead of 1.1
  16. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); // Returns response data instead of TRUE(1)
  17. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE); // uncomment this line if you get no gateway response. ###
  18. curl_setopt($ch, CURLOPT_HTTPHEADER, $sendheaders);
  19. curl_setopt($ch, CURLOPT_POSTFIELDS, $fields); // use HTTP POST to send form data
  20.  
  21. $resp = curl_exec($ch); //execute post and get results
  22. curl_close ($ch);
  23. //echo $resp;
  24.  
  25. if ($resp === false) {
  26.     die('Request failed');
  27. }
  28.  
  29. $phpobj = unserialize($resp);
  30. return $phpobj;
  31. }

Popularity: 9% [?]

Dec
2006
7

Customer relationship manager – CRM – Open Source for Realtors

by

How many agents out there us Top Producer to manage all their customers? A lot right...I tried it for The Legacy Group, but do not use it anymore. Unfortunately they make you buy a year contract so I'm still paying for it...When I buy a product I expect it to do everything I need, and top producer just doesn't. It crashed all the time, it was a bad interface, and it was browser specific.

Since I love open source, and I love FREE, I want to introduce SugarCRM. a Free, open source, customer relationship manager. If you think free mean "bad, or cheap" you have to look at this product. It is a commercial grade product, that can seriously compete with Top Producer, Act, Outlook, etc...

The current version is 4.5.0 which is very nice. I started using Sugar around 4.2 and liked it then, and the new version is very nice. Version 4.5.1 is coming out at the end of December with 2 added features that I can't wait to use.

  • Newsletter manager - timed delivery of e-newsletters
  • Auto create web based lead forms - drag and drop form creator

The one problem with SugarCRM is that it might be overwhelming for most Realtors. We actually do not use the full product, we only use the Campaign manager. The campaign mananger allows you to send a one shot email to all your leads. We use this for our newsletter. Sugar can track views, clicks, forwards, bounces, and opt-outs. Very nice, even if you don't plan to use the entire product, the campaign manager is great, and with the new implementation of the newsletter manager, we will be using this product more and more.

Also, since it is open source, you have access to the code. Of course, I don't expect you to start hacking sugar, but if you think you can improve the product, you can hire someone or go to Sugar's forums and see if someone will help you out. There are already a lot of add-ons for Sugar including mailmerge extensions, mapping, organizing...

If all you want is a newsletter manager, you might want to think about PHPlist. A small newlsetter manager, that handle sign-ups, delivery, and opt-outs. I will probably use both to capture leads this year.

I just wanted to touch on some really good products...later on i will show some more detailed examples of using these products, but right now, I have to get ready for Hawaii. :)

Popularity: 8% [?]

Dec
2006
4

How to Start Podcasting, Post to Blogs, and feed to Itunes

by

Let's start podcasting, it's not hard, and you don't have to buy anything...except a computer. I'm going to show you how to create a podcast using a couple Free tools that you can get from the internet, and show you have to then add to your blog, and then I will subscribe them to Itunes.

Before we start, here is what you need for the most simple podcast.

  • A Working Microphone, A broken microphone will not work in this situation... I tried.
  • Sound Recorder - This is a free application that comes with Windows. To access the Sound Recorder go to Start -> Programs -> Accessories -> Entertainment -> Sound Recorder
  • A blog, or another way to create an RSS feed. If you need to build a blog, go to http://realivent.com/wp-signup.php
  • Itunes to play the podcast. You can also play the mp3 directly from your blog, but Itunes will let you see how other will view and subscribe to your podcast. Get this from www.itunes.com. There is also a good explanation of what podcasting is.
    http://www.apple.com/itunes/store/podcasts.html

Ok, you ready...Sound recorder is very simple, just get your mic and click on record.

soundrecorder.jpg

If this is your first podcast, I bet you said "testing, testing, 1, 2, 3" everyone says that the first time. I don't know why...but I bet you did.

You have to save the file as an mp3...you can't podcast the default .wav file that sound recorder tries to save it as. Make your recording and then click on save. You have to change a couple setting on the save file box. Change "Save As Type" from ".wav" to "All Files". Click on "Change", below "Save As Type". This will open a Sound Selection box. Use the drop down to save the output as an mp3. Click "OK" and the sound selection box will close, and you can save the new recording as an mp3.

**Make sure you use the full file name. If you only use the filename "podcast" it will still save it as a .wav file. You have to type "podcast.mp3" to save the recording as an MP3.

save_file.jpg

Now that you have you a shiny new mp3, you need to get it out to the public. There are millions of people just waiting for your information. The easiest way to syndicate is to add it to a blog. If you don't have a blog, just go to realivent.com and create a free one. I created pods.realivent.com. To add your mp3 to your blog is easy, just go to the admin section of the blog, write a new post, upload the mp3 using the file uploader, and then send to post. Once it's in a post, people can subscribe to it, just like they subscribe to your blog. Itunes is able to parse blogs and find only the mp3's. When a new podcast is available it will not download it, but you can see that there are new podcasts, and then you can choose to download the mp3 and listen.

If you open up Itunes, you can subscribe to my podcast at http://pods.realivent.com/feed

I was hoping to finish this post earlier and continue to talk about enhancing the podcast, but I think I will do that later. There is a very cool music editor that you can use for free called Audacity. I will take my simple podcast and add some background music to it. Then once we get the editing down we will look at using Skype to create podcasts. When you use Skype you can create podcasts with multiple people from all around the world...should be good.

Popularity: 10% [?]

Dec
2006
1

Fun with GPS – How can this help Realtors?

by

I love open source, I love hacking, I love guerilla marketing, I love figuring out ways to take tech gadgets and apply them to real estate.

Here is a technology that is fairly new, but coming on strong. GPS Navigation on cell phones.

I bought Trang the Tomtom GPS for her Treo 650 this year, and it's great. Easy set up, works perfectly, and was half the price of a stand alone GPS system for her car. The cool thing is, I can take the GPS receiver and play with it on my Treo 650 without the maps, and just get my location.

I got this idea from my friend Alain (ak4life.com)

Off topic: Alain as Borat for Halloween
borat.jpg

Alain Navigating us through Livermore Wine Country
alian.jpg

Back on topic...
Tomtom for Treo comes with CD's that include all the maps for America, and the GPS receiver. I loaded them up on trangs Treo, but I have not put them on mine. I don't even know if I can, there is an activation code, doesn't matter, I don't want them anyways, I just want the GPS receiver.

My goal is to track where I am, get the logitude and latitude so I plot it on a google map.

I found a lot of products that will do this, but I don't want to pay...this sounds like fun, but not for $50. I finally come across a product called cotogps. This is an awesome product, Just follow the instructions, and install to your Treo. You have to install the palm mathlib first, which you can also get from cotogps website.

It installed with no problems, Just had to make the 'serial port' accept bluetooth and I'm off and running. ready to start tracking my location.
palm_image.jpg

cotogps, tracks a lot of data, your location, speed, direction, elevation... It has a track sytem to record your location every 1 second, 2 seconds, 10 secs, or 1 minute. I set it to 10 seconds, jump in my car and head off to Best Buy...I lost my stylus, so I need another one. Every 10 seconds the palm beeps to let me know it recorded my location. it also keeps the palm on, so make sure you have a lot of battery life.

After I get back from Best Buy, I want to view my path. You can see your path from your palm, but not very much info. I need to get the data off the phone and into a gpx file to put it on a map. The palm will not directly export it. I have to download another tool from the cotogps website called cotoGPSDT. Another very cool tool, This guy did a great job.
I sync my palm with my computer, and go to my backup folder and find the track that I plotted. I open that in cotoGPSDT and it creates some very neat images.

This is the path and elevation. Looks like I fell off a cliff.
3d_map.jpg

The cotoGPSDT program lets you export you path as a gpx file. A gpx file is nothing more then an xml file.
I export it to my desktop, and search on Google for 'gpx to google map' and come across this page:
http://www.tom-carden.co.uk/googlegpx/

Simply upload you gpx file and it puts it on a google map. In satellite mode, you can actually see which parking spot I was in. Another cool thing is that cotogps tracks your speed and allows you to add markers to your path. you can take pictures and connect them to your path.
coto_map.jpg

Ok, so how does this help realtors...

If you can find your exact location, you can find all the homes for sale or open houses around you.

You can take your clients on a home tour, and create a path, mark the homes you were in, with pictures, and then create a website with that path. Your clients will love it, they will remember a lot more if they see the path to the houses.

There is also a game called geocaching, which is like a high tech treasure hunt. You can get together with other realtors and create a game for open houses. create a path, and tell your clients to follow it. I know it sounds aweful but give it some thought, it might work.

any suggestions for this technology is welcome...I'm jumping on my mountain bike and hitting the hills. I'll have a new path later.

Popularity: 14% [?]

Close
E-mail It
Rodney's Adsense-Deluxe Add ons plugged in.