<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/rss2full.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/itemcontent.css" type="text/css" media="screen"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>realtortech.org</title>
	
	<link>http://realtortech.org</link>
	<description>For State Association Techies</description>
	<pubDate>Thu, 11 Dec 2008 05:21:33 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.3</generator>
	<language>en</language>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/realtortech" type="application/rss+xml" /><item>
		<title>Over and Out…</title>
		<link>http://feeds.feedburner.com/~r/realtortech/~3/434206786/</link>
		<comments>http://realtortech.org/2008/10/over-and-out/#comments</comments>
		<pubDate>Mon, 27 Oct 2008 21:46:13 +0000</pubDate>
		<dc:creator>Stevie Benge, WA Assn of REALTORS</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[Technology]]></category>

		<category><![CDATA[bye bye]]></category>

		<guid isPermaLink="false">http://realtortech.org/?p=40</guid>
		<description><![CDATA[Due to lack of interest we will be suspending realtortech.org for the time being. If you happen to read this post and are interested in contributing, please contact Stevie or Mike. It will remain on the net till about April 2009 so for the time being it will be available for reference. Thanks&#8230;
]]></description>
			<content:encoded><![CDATA[<p>Due to lack of interest we will be suspending realtortech.org for the time being. If you happen to read this post and are interested in contributing, please contact Stevie or Mike. It will remain on the net till about April 2009 so for the time being it will be available for reference. Thanks&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://realtortech.org/2008/10/over-and-out/feed/</wfw:commentRss>
		<feedburner:origLink>http://realtortech.org/2008/10/over-and-out/</feedburner:origLink></item>
		<item>
		<title>Firebug: A Web Developer’s Best Friend</title>
		<link>http://feeds.feedburner.com/~r/realtortech/~3/434206787/</link>
		<comments>http://realtortech.org/2008/07/firebug-a-web-developers-best-friend/#comments</comments>
		<pubDate>Mon, 21 Jul 2008 16:00:04 +0000</pubDate>
		<dc:creator>Chris McKeever, NAR CRT</dc:creator>
		
		<category><![CDATA[Web Applications]]></category>

		<category><![CDATA[Web Design/Development]]></category>

		<category><![CDATA[CSS]]></category>

		<category><![CDATA[Firebug]]></category>

		<category><![CDATA[HTML]]></category>

		<category><![CDATA[Javascript]]></category>

		<category><![CDATA[NAR CRT]]></category>

		<guid isPermaLink="false">http://realtortech.org/?p=32</guid>
		<description><![CDATA[FireBug is the Swiss army knife of web development gadgets: an extension for Mozilla Firefox that allows you to debug, edit, and monitor any website&#8217;s CSS, HTML, DOM and JavaScript;  it also provides other web development tools [1].  It permits the logging of web pages, page error reporting, page inspection, AJAX request logging, [...]]]></description>
			<content:encoded><![CDATA[<p>FireBug is the Swiss army knife of web development gadgets: an <a href="https://addons.mozilla.org/en-US/firefox/" >extension</a> for <a href="http://www.firefox.com" >Mozilla Firefox</a> that allows you to debug, edit, and monitor any website&#8217;s CSS, HTML, DOM and JavaScript;  it also provides other web development tools [1].  It permits the logging of web pages, page error reporting, page inspection, AJAX request logging, and to top it all off - <strong>Live Page Editing</strong>.</p>
<p>It has wound up being one of the most useful utilities that I have at my web page development/surfing disposal.  One of its most useful tricks is the HTML inspector (view <a href="http://www.crt.realtors.org/images/article/firebug/inspector.jpg" >screenshot</a>).  If you are ever on a page, and are curious about the layout or inner workings of the HTML, just open up FireBug, click on Inspect-&gt;HTML and navigate your mouse to the section that interests you.  FireBug will highlight the HTML code you are curious about, and you can look at it in all its raw markup glory.  You can use this to easily find out how a nifty feature, or a design or layout works-or even to figure out a way around a pesky pop-up JavaScript link when you want to just send a link to someone.</p>
<p>In fact, one of my favorite uses is, when developing DOM interactive JavaScript, I can <a href="http://www.joehewitt.com/software/firebug/screens/dom.png" >easily</a> find an object within the entire document.  And once it&#8217;s found, I can do all the nifty JavaScript manipulation I need.<br />
<span id="more-32"></span><br />
Now, let&#8217;s say that page you&#8217;re dealing with is one that you control, or for which you can affect design decisions.  You may not have the ability, time or patience to constantly make a change to the code, save it, reload the page, and do whatever various tasks it takes to update the page.  And what if you were doing that on a live page and you made a mistake?  That&#8217;s not a fun thing to fix.  Well, once you use the inspector to find the piece of HTML you want to change, you can then click over to the Edit and make live changes to the HTML or the CSS.  In this <a href="http://www.crt.realtors.org/images/article/firebug/edit.png" >example</a> I changed the size of the picture and added some <strong>bolding</strong> to one of the paragraphs.  Tinkering with a live web page without ever touching the production code-now how fancy is that?</p>
<p>Once you decide on the changes you want to make, and roll those into production, FireBug will also <a href="http://www.joehewitt.com/software/firebug/screens/indicator.png" >notify you</a> if there are any problems on the page. Green is good, red means that there is something wrong.</p>
<p>This is really a tool that you need to install, fire up and just start tinkering with.  You can even take it beyond some of the hocus-pocus we&#8217;ve been discussing, and do some performance overviews.  FireBug has a built in page performance monitor.  With this you can keep an eye on the different aspects of your page, and the time it takes to load.  Clicking on the <strong>Net</strong> tab and reloading the page will give you the stats for the individual components of the page load, and well as the total time to request the page (<a href="http://www.crt.realtors.org/images/article/firebug/monitor.jpg" >Performance Monitor Screenshot</a>).  You can also click on each request and see the headers of each item that was received.  Outside of performance testing your own pages, these headers are a great way to see the cookies, AJAX requests and all the other dirty little details that have passed between the browser and the server.</p>
<p>Two of FireBug&#8217;s other exciting features are the ability to go through JavaScript code line by line.  You can set up breakpoints and evaluate each step of the code execution, including editing, stack tracing, nested groups and assertions.  Additionally, it helps remove one of the burdens of JavaScript development, the &#8220;alert debugging&#8221; and having to click OK multiple times per page to see how the variables are changing.  With FireBug, you can log messages from JavaScript directly into the FireBug Console.</p>
<p>FireBug is the MacGyver tool for web developing, and so, as I said earlier, it really is a tool that you need to explore on your own.  The way one person uses one of the tools can be completely different from how someone else works it into the testing and debugging routine.  That is really what the power of FireBug is.  Download it, explore it - it&#8217;s a great little extension that, at the bare minimum, will tell you whether or not a web page is broken!</p>
<p>[1]  <a href="http://en.wikipedia.org/wiki/Firebug_(Firefox_extension)" >Wikipedia</a></p>
]]></content:encoded>
			<wfw:commentRss>http://realtortech.org/2008/07/firebug-a-web-developers-best-friend/feed/</wfw:commentRss>
		<feedburner:origLink>http://realtortech.org/2008/07/firebug-a-web-developers-best-friend/</feedburner:origLink></item>
		<item>
		<title>Maybe of interest to your members: Blogging benchmarking survey</title>
		<link>http://feeds.feedburner.com/~r/realtortech/~3/434206788/</link>
		<comments>http://realtortech.org/2008/06/maybe-of-interest-to-your-members-blogging-benchmarking-survey/#comments</comments>
		<pubDate>Tue, 24 Jun 2008 19:13:54 +0000</pubDate>
		<dc:creator>Ben Martin, VA Assn of REALTORS</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://realtortech.org/?p=31</guid>
		<description><![CDATA[Hey social media types: Thought y&#8217;all (or more specifically, your members) might be interested in knowing about a new blogging benchmarking survey that we&#8217;re running at VARbuzz.com.
The Center for Real Estate and Social Technologies (CREST) is a new research and education program for REALTORS® who use social media in their business. CREST&#8217;s first initiative is [...]]]></description>
			<content:encoded><![CDATA[<p>Hey social media types: Thought y&#8217;all (or more specifically, your members) might be interested in knowing about a new <a href="http://varbuzz.com/crest1" >blogging benchmarking survey that we&#8217;re running at VARbuzz.com</a>.</p>
<p>The Center for Real Estate and Social Technologies (CREST) is a new research and education program for REALTORS® who use social media in their business. CREST&#8217;s first initiative is a research survey that seeks to answer some of the most commonly asked questions about real estate blogging:</p>
<ul>
<li>What&#8217;s the average number of comments on a post?</li>
<li>How many posts do REALTORS® write per month, on average?</li>
<li>What&#8217;s the most common blogging platform?</li>
<li>How many RSS subscribers does the average real estate blog have?</li>
<li>And much, much more!</li>
</ul>
<p>If you know of any REALTOR® bloggers in your neck of the woods, please <a href="http://varbuzz.com/crest1" >send them to VARbuzz</a> to take the survey. Also, if your communications department would be willing to announce this survey to your members, I&#8217;d be happy to provide them with a copy of the aggregate results and the executive summary when it&#8217;s ready. It will make for a very interesting story for your blogging agents and brokers!</p>
<p>Contact me with questions ben at varealtor dot com.</p>
]]></content:encoded>
			<wfw:commentRss>http://realtortech.org/2008/06/maybe-of-interest-to-your-members-blogging-benchmarking-survey/feed/</wfw:commentRss>
		<feedburner:origLink>http://realtortech.org/2008/06/maybe-of-interest-to-your-members-blogging-benchmarking-survey/</feedburner:origLink></item>
		<item>
		<title>The Web is what you make of it… literally</title>
		<link>http://feeds.feedburner.com/~r/realtortech/~3/434206789/</link>
		<comments>http://realtortech.org/2008/06/the-web-is-what-you-make-of-it%e2%80%a6-literally/#comments</comments>
		<pubDate>Thu, 19 Jun 2008 19:56:17 +0000</pubDate>
		<dc:creator>Mike Cutlip, MA Assn of REALTORS</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[Social Networking]]></category>

		<category><![CDATA[Web Applications]]></category>

		<category><![CDATA[Web Sites]]></category>

		<category><![CDATA[firefox extension]]></category>

		<category><![CDATA[metadata]]></category>

		<category><![CDATA[metalayer]]></category>

		<category><![CDATA[ShiftSpace]]></category>

		<category><![CDATA[webpage mods]]></category>

		<guid isPermaLink="false">http://realtortech.org/?p=30</guid>
		<description><![CDATA[Sometimes I run across an idea that, despite being terrible, is/was still really popular (parachute pants, the Macarena, Dane Cook). Then there are the ideas that ARE truly great AND are popular (the transistor, antiseptics, Grand Theft Auto). Then there are the ideas that are truly great but just don’t quite catch on… ShiftSpace is [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes I run across an idea that, despite being terrible, is/was still really popular (parachute pants, the Macarena, Dane Cook). Then there are the ideas that ARE truly great AND are popular (the transistor, antiseptics, Grand Theft Auto). Then there are the ideas that are truly great but just don’t quite catch on… <a href="http://www.shiftspace.org/"  target="_blank">ShiftSpace</a> is one of those. Now I know this blog is more about posting usable info that will help us in our jobs, and ShiftSpace doesn’t fit that bill. But it’s such an interesting idea that I can’t help but write about it.<br />
<span id="more-30"></span><br />
ShiftSpace is an open source meta-layer that can be displayed above any webpage. Think of it as a way to modify, comment on, and generally manipulate webpages in real time, then save those modifications to a server to be viewed by others. Anyone familiar with FireBug or the web developer extension for Firefox (<a href="http://realtortech.org/2008/05/07/firefox-add-ons-web-developer-toolbar/"  target="_blank">great post</a> on it Stevie, btw) will know about editing source code on the fly for testing purposes. Shiftspace allows you to edit it on the fly then save to a ShiftSpace server so other ShiftSpace users can see, and even add to, your creation. The app itself is built on top of <a href="https://addons.mozilla.org/en-US/firefox/addon/748"  target="_blank">Greasemonkey</a> which is another awesome Firefox extension for modifying pages in realtime  - although a bit difficult for the lay user.</p>
<p>It’s a little difficult to wrap your head around it without a demo, so check out this vid: <a href="http://www.shiftspace.org/screencasts/intro/index.html"  target="_blank">http://www.shiftspace.org/screencasts/intro/index.html</a></p>
<p>The project is still in relative infancy, but they are apparently building out more “social” features. I imagine that you will eventually be able to subscribe to a feed of the modifications made to webpages as ShiftSpace users modify them. Or subscribe to a feed of the latest modifications made by your friends and other ShiftSpace users. Instead of sending an email to a friend with a link and a note about a page you could send them to the page with your note (and any mods you’ve made) laid on top of the page itself. </p>
<p>I’ve only played around with the app for a little while (username “Mikeadelic”… I made a small edit to <a href="http://www.foxnews.com"  target="_blank">www.foxnews.com</a>) but I already see interesting potential for social applications. The business applications are there, but would have to be developed and time-tested like any other social media. </p>
<p>Again, this is more mind-bending on a theoretical level, but it really portends a future where the web is something we can modify to our own personal designs, instead of being simply “served” a webpage we must accept at face value. </p>
<p>&#8230; oh, and you don&#8217;t need to mention how long it&#8217;s been since my last post&#8230; i already know =)</p>
]]></content:encoded>
			<wfw:commentRss>http://realtortech.org/2008/06/the-web-is-what-you-make-of-it%e2%80%a6-literally/feed/</wfw:commentRss>
		<feedburner:origLink>http://realtortech.org/2008/06/the-web-is-what-you-make-of-it%e2%80%a6-literally/</feedburner:origLink></item>
		<item>
		<title>Converting to LAMPS</title>
		<link>http://feeds.feedburner.com/~r/realtortech/~3/434206790/</link>
		<comments>http://realtortech.org/2008/06/converting-to-lamps/#comments</comments>
		<pubDate>Wed, 11 Jun 2008 20:25:49 +0000</pubDate>
		<dc:creator>Stevie Benge, WA Assn of REALTORS</dc:creator>
		
		<category><![CDATA[Databases]]></category>

		<category><![CDATA[Web Applications]]></category>

		<category><![CDATA[Web Design/Development]]></category>

		<category><![CDATA[LAMPS]]></category>

		<category><![CDATA[Rapattoni]]></category>

		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://realtortech.org/?p=29</guid>
		<description><![CDATA[Here in WA we are about to begin converting our database management system from Rapattoni to LAMPS. From some of the conversations I had at the Tech Directors Conference I&#8217;m curious to see how the process will play out. 
I&#8217;d love to hear success stories, pitfalls, what to watch out for&#8230; anything that will let [...]]]></description>
			<content:encoded><![CDATA[<p>Here in WA we are about to begin converting our database management system from Rapattoni to <a href="http://www.lampsusers.com/home/"  title="LAMPS Home">LAMPS</a>. From some of the conversations I had at the Tech Directors Conference I&#8217;m curious to see how the process will play out. </p>
<p>I&#8217;d love to hear success stories, pitfalls, what to watch out for&#8230; anything that will let me peer into the world of LAMPS.</p>
<p>Of particular interest to me is LAMPS&#8217; Website Manager. What kind of front-end code does it output? Is it XHTML? Does it pay attention to web standards? Will I have control of design and layout with CSS? If anyone can relate their experiences with this, I&#8217;d be eternally grateful.</p>
<p><strong>What are your experiences, positive or negative, with LAMPS?</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://realtortech.org/2008/06/converting-to-lamps/feed/</wfw:commentRss>
		<feedburner:origLink>http://realtortech.org/2008/06/converting-to-lamps/</feedburner:origLink></item>
		<item>
		<title>Flash Media Server</title>
		<link>http://feeds.feedburner.com/~r/realtortech/~3/434206791/</link>
		<comments>http://realtortech.org/2008/06/flash-media-server/#comments</comments>
		<pubDate>Tue, 03 Jun 2008 21:45:52 +0000</pubDate>
		<dc:creator>Stevie Benge, WA Assn of REALTORS</dc:creator>
		
		<category><![CDATA[Flash]]></category>

		<category><![CDATA[Video and Audio]]></category>

		<category><![CDATA[Web Applications]]></category>

		<category><![CDATA[Streaming Video]]></category>

		<guid isPermaLink="false">http://realtortech.org/?p=28</guid>
		<description><![CDATA[So here in WA State we have a new law going into effect on 6/12 that&#8217;s called the Distressed Properties Law. It will profoundly change how REALTORS&#174; deal with foreclosures. To put it lightly, it has been a big deal for us getting our membership educated on the finer details and protocols called for in [...]]]></description>
			<content:encoded><![CDATA[<p>So here in WA State we have a new law going into effect on 6/12 that&#8217;s called the Distressed Properties Law. It will profoundly change how REALTORS&reg; deal with foreclosures. To put it lightly, it has been a big deal for us getting our membership educated on the finer details and protocols called for in this new law.</p>
<p>At WA REALTORS&reg;, our Communications and IT departments are one and the same. I&#8217;m usually involved in bringing certain aspects of our PR campaigns to the web. The Distressed Properties campaign has been no different.</p>
<p>For those of you who attended the Tech Directors Conference in March, particularly those who took part in the Podcasting breakout group, may remember me mentioning the <a href="http://www.adobe.com/products/flashmediastreaming/"  title="Adobe's Flash Media Server Page">Flash Media Server</a> (FMS) hosting we use for our streaming media. There are a handful of companies out there that specialize in Flash Media hosting&#8230; we use a company called <a href="http://www.influxis.com"  title="Influxis Home">Influxis</a>.</p>
<p>So getting back to the Distressed Properties campaign, we produced an hour long DVD for Broker&#8217;s to share with agents. We kind of decided as an afterthought that I should prepare a streaming version of the DVD in six chapters for viewing on <a href="http://www.warealtor.org"  title="WA REALTORS&reg; Home">warealtor.org</a>. So I went ahead and did this last week and officially published it last Thursday (5/29). We have a pretty stripped down account with Influxis that allows for a modest 40 concurrent streams. </p>
<p>So fast forward to Monday morning&#8230; we start getting calls from members that they are having issues watching the video. I naively open up my FMS Admin Console and immediately notice our total connections are pegged at 40! We did not anticipate the tremendous response at all! So I was immediately on the phone with Influxis upgrading our account to handle the huge demand. After a quick reboot of my Virtual Host, we were able to host 100 simultaneous streams. Quick and painless for the most part. </p>
<p>But demand kept increasing throughout the day yesterday and overnight so I upgraded again this morning to allow for 200 simultaneous streams! Thankfully working with FMS is pretty easy and Influxis makes upgrading your service a snap as well. It really saved us (me!) a lot of stress.</p>
<p>I realized if we had attempted to host the video locally on our web server it would&#8217;ve been toast! There&#8217;s just no way it would be able to keep up with demand&#8230; we use a Windows 2K3 Server which has no business streaming content! That&#8217;s the beauty of using FMS&#8230; it&#8217;s built specifically to stream Flash files. Not that you can&#8217;t host streaming Flash on a generic Linux or Windows server; it can be done but you run the risk of staring down the barrel of a serious crash. Take my word for it.</p>
<p>So next time your association needs to use streaming media, definitely take a look a Flash Media Server. It could save the day and save you a lot of headaches.</p>
<p>You can also buy the FMS software and run it locally if you are so inclined. </p>
<p><em><strong>Do you have any experiences with Flash Media Server?</strong></em></p>
<p>Resources:<br />
<a href="http://www.adobe.com/products/flashmediastreaming/" >Adobe&#8217;s Flash Media Server Page</a><br />
<a href="http://www.influxis.com" >Influxis Flash Media Hosting</a><br />
<a href="http://flowplayer.org" >Flowplayer: Flash Video Player for the Web</a></p>
]]></content:encoded>
			<wfw:commentRss>http://realtortech.org/2008/06/flash-media-server/feed/</wfw:commentRss>
		<feedburner:origLink>http://realtortech.org/2008/06/flash-media-server/</feedburner:origLink></item>
		<item>
		<title>Firefox Add-ons: Web Developer Toolbar</title>
		<link>http://feeds.feedburner.com/~r/realtortech/~3/434206792/</link>
		<comments>http://realtortech.org/2008/05/firefox-add-ons-web-developer-toolbar/#comments</comments>
		<pubDate>Wed, 07 May 2008 20:49:58 +0000</pubDate>
		<dc:creator>Stevie Benge, WA Assn of REALTORS</dc:creator>
		
		<category><![CDATA[Web Applications]]></category>

		<category><![CDATA[Web Design/Development]]></category>

		<category><![CDATA[CSS]]></category>

		<category><![CDATA[Firefox]]></category>

		<category><![CDATA[Web Design]]></category>

		<category><![CDATA[Web Developer]]></category>

		<category><![CDATA[XHTML]]></category>

		<guid isPermaLink="false">http://realtortech.org/?p=20</guid>
		<description><![CDATA[I must say I spend the vast majority of my day in Firefox which is probably the case for many web developer types out there. It is the de facto browser for development for a myriad of reasons&#8230; adherence to W3C standards (for the most part) being the biggest. But I think what gets me [...]]]></description>
			<content:encoded><![CDATA[<p>I must say I spend the vast majority of my day in Firefox which is probably the case for many web developer types out there. It is the <em>de facto</em> browser for development for a myriad of reasons&#8230; adherence to <a title="W3C" href="http://www.w3.org/"  target="_blank">W3C</a> standards (for the most part) being the biggest. But I think what gets me most excited about <a title="FireFox Home" href="http://www.mozilla.com/en-US/firefox/"  target="_blank">Firefox</a> is the mind boggling array of add-ons available to developers. The foremost of which, in my opinion, is <a title="Web Developer Toolbar" href="http://chrispederick.com/work/web-developer/"  target="_blank">Chris Pedrick&#8217;s Web Developer Toolbar</a>.</p>
<p>This add-on has so many amazing features that I will only introduce you to a few that I use regularly&#8230; ones that can save you huge amounts of time in debugging and help make your development cycle more efficient in general.</p>
<p><span id="more-20"></span>So yeah, I could gush all day about how much I love <a title="FireFox Home" href="http://www.mozilla.com/en-US/firefox/"  target="_blank">Firefox</a> but many of you are likely aware of the power FF packs under it&#8217;s hood. Discovering the Web Developer Toolbar a couple of years ago was akin to a spiritual awakening for me&#8230; majorly geeky I know.</p>
<p>If you&#8217;re a standards practicing developer using <acronym title="Cascading Style Sheets">CSS</acronym> to control the presentation of your projects, Web Developer has some amazing features for you. The one that gets my vote for slickest is <strong>Edit CSS&#8230;</strong> which allows you to edit the CSS on your page, or any web page for that matter, in REAL TIME! <img style="padding: 10px;" title="Edit CSS" src="http://realtortech.org/wp-content/uploads/2008/05/edit_css.jpg" alt="Edit Css" width="500" height="349" /></p>
<p>I can&#8217;t tell you how many times I&#8217;ve used this to demo different hex colors or font family&#8217;s in a layout. But the fun doesn&#8217;t stop there. You can edit whole sections of your layout and see the changes right there without having to edit your style sheet and uploading the changes. Pretty sweet!</p>
<p>A lot of times when I&#8217;m randomly surfing and I come across a page that piques my CSS curiosity I&#8217;ll often use the <strong>View CSS</strong> feature to peruse the page&#8217;s style sheet(s). This is great to check out what sorts of techniques other folks are using in their CSS&#8230; essentially it can be a nice educational tool.</p>
<p>Lets move on and look at Web Developer&#8217;s image features&#8230;</p>
<p>Taking a look at the image menu, you can see what&#8217;s at your fingertips. The feature I use most is <strong>View Image Information</strong>. It&#8217;ll display every single image on a given web page and inform you of its properties&#8230; including height, width, file size and any alt properties. <img style="padding: 10px 10px 10px 0;" title="Image Information" src="http://realtortech.org/wp-content/uploads/2008/05/image_info.jpg" alt="Image Information" width="500" height="385" /></p>
<p>Again not only is this useful on your own projects but seeing how other sites are sliced and diced with images is a great learning tool. One other image feature worth mentioning is <strong>Replace Images With Alt Attributes</strong>. This&#8217;ll allow you to toggle on and off all image content in your page to check, for example, how things shape up in a non-visual web browser&#8230; like one a sight-impaired user may use to view your page.</p>
<p>Another very powerful Web Developer Toolbar feature within the <em>Information</em> menu is <strong>Display Element Information</strong>. This is what sold me when I first started using Web Developer. <img style="padding: 10px 0 10px 10px;" title="Display Element Info" src="http://realtortech.org/wp-content/uploads/2008/05/display_element_info.jpg" alt="Display Element Info" width="500" height="340" /></p>
<p>Essentially you can think of it as a <acronym title="Document Object Model">DOM</acronym> inspector sort of deal that traverses the DOM for each individual block level element on your page and displays the relationships with its parent and sibling elements. If you look above the tab bar in the photo you&#8217;ll see a the box that displays the cascade beginning at HTML and traversing all the way down to your selected element. In addition, a dialogue box (the yellow box in the photo) will appear and tell just about anything you&#8217;d want to know about any element in your page. Way cool!</p>
<p>Remember the <strong>Edit CSS</strong> feature I told you about? Well a complementary feature also exists for HTML, appropriately called <strong>Edit HTML</strong> which is accessible under the <em>Miscellaneous</em> menu. <img style="padding: 10px 10px 10px 0;" title="Edit HTML" src="http://realtortech.org/wp-content/uploads/2008/05/edit_html.jpg" alt="Edit HTML" width="500" height="347" /></p>
<p>This also lets you edit your HTML in real time and preview changes without messing with your text editor and ftp client. It&#8217;s kind of similar to the &#8220;Try-It-Yourself Demos&#8221; over at <a title="W3 Schools" href="http://www.w3schools.com"  target="_blank">W3Schools</a>. So if you&#8217;ve used that before you&#8217;ll be right at home with <strong>Edit HTML</strong> in Web Developer.</p>
<p>Finally I&#8217;d like to touch on the window resizing features in Web Developer. Clicking on <em>Resize</em>, you&#8217;ll be presented with options to resize your browser window to an exact width and height. A fresh install of Web Developer will come with the option to resize to 800&#215;600&#8230; the old school web design resolution standard. I added 1024&#215;768 as that is the resolution I design for these days. <img style="padding: 10px 10px 10px 0;" title="Resize Browser Window" src="http://realtortech.org/wp-content/uploads/2008/05/resize.jpg" alt="Resize Browser Window" width="500" height="385" /></p>
<p>This feature is so simple yet so powerful that I can&#8217;t believe this isn&#8217;t a standard feature on all web browsers. Anyway you can easily create any resize dimensions you want by clicking <strong>Edit Resize Dimensions&#8230;</strong> and going through the set-up. You could also theoretically set up the browser window to roughly mimic the size of a mobile device, like an iPhone or Blackberry. The resize feature in conjunction with the <strong>Display CSS By Media Type</strong> feature (allowing you to view your Mobile Style sheet) can really help when optimizing for mobile devices. The iPhone / iPod Touch however are changing things for the better as the Safari browser on those devices completely ignores Mobile style sheets and basically displays as a mini version of a desktop browser. Designing for mobile devices is really tricky&#8230; in fact sometimes a plain (x)HTML document is the most effective way to go.</p>
<p>Well this only scratches the surface of what the <a title="Web Developer Toolbar" href="http://chrispederick.com/work/web-developer/"  target="_blank">Web Developer Toolbar</a> is capable of. I&#8217;m continually finding new uses for it so I think the best thing to do, like most things, is to just experiment. I&#8217;ve found it to be a huge productivity enhancer and it plays a large part in the development of every project I do.</p>
<p>Web Developer is available for Firefox on both Mac and Windows. You won&#8217;t be disappointed!</p>
<p><strong>Download Resources:</strong></p>
<p><a title="Mozilla Web Developer Download" href="https://addons.mozilla.org/en-US/firefox/addon/60"  target="_blank">Web Developer page at Mozilla.org</a></p>
<p><a title="Chris Pedrick's Web Developer Download" href="http://chrispederick.com/work/web-developer/"  target="_blank">Chris Pedrick&#8217;s Web Developer page</a></p>
<p>This post is first in a series dedicated to Firefox Add-ons. Hope you enjoyed this first installment.</p>
<p><em>How do you use the Web Developer Toolbar?</em></p>
]]></content:encoded>
			<wfw:commentRss>http://realtortech.org/2008/05/firefox-add-ons-web-developer-toolbar/feed/</wfw:commentRss>
		<feedburner:origLink>http://realtortech.org/2008/05/firefox-add-ons-web-developer-toolbar/</feedburner:origLink></item>
		<item>
		<title>Real Estate Video Sharing Site</title>
		<link>http://feeds.feedburner.com/~r/realtortech/~3/434206793/</link>
		<comments>http://realtortech.org/2008/04/real-estate-video-sharing-site/#comments</comments>
		<pubDate>Fri, 25 Apr 2008 19:34:45 +0000</pubDate>
		<dc:creator>Mike Cutlip, MA Assn of REALTORS</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[Video and Audio]]></category>

		<category><![CDATA[Web Sites]]></category>

		<category><![CDATA[sharing]]></category>

		<category><![CDATA[video]]></category>

		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://realtortech.org/?p=18</guid>
		<description><![CDATA[So I know there are tons of video sharing sites out there, and even a few that are specific to real estate, but I&#8217;m going to make a shameless plug for a crew that&#8217;s local to us in Massachusetts&#8230; hey California, you&#8217;re not the only one with technology start-ups!   
Check out www.zipvo.com
They are [...]]]></description>
			<content:encoded><![CDATA[<p>So I know there are tons of video sharing sites out there, and even a few that are <a href="http://www.wellcomemat.com/" >specific to real estate</a>, but I&#8217;m going to make a shameless plug for a crew that&#8217;s local to us in Massachusetts&#8230; hey California, you&#8217;re not the only one with technology start-ups!  <img src='http://realtortech.org/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Check out <a href="http://www.zipvo.com/" >www.zipvo.com</a></p>
<p>They are on the all-free, ad-supported model. They&#8217;ve got the features everyone loves about youtube; link-to or embed a clip on you site, etc. It&#8217;s good stuff, so if you&#8217;ve got a &#8220;tech-tips&#8221; kinda thing in your newsletter, or on you site, they might be something work checking on and informing your members about.</p>
]]></content:encoded>
			<wfw:commentRss>http://realtortech.org/2008/04/real-estate-video-sharing-site/feed/</wfw:commentRss>
		<feedburner:origLink>http://realtortech.org/2008/04/real-estate-video-sharing-site/</feedburner:origLink></item>
		<item>
		<title>The Real Estate Wiki</title>
		<link>http://feeds.feedburner.com/~r/realtortech/~3/434206794/</link>
		<comments>http://realtortech.org/2008/04/the-real-estate-wiki/#comments</comments>
		<pubDate>Wed, 23 Apr 2008 13:43:40 +0000</pubDate>
		<dc:creator>Mike Cutlip, MA Assn of REALTORS</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[free]]></category>

		<category><![CDATA[glossary]]></category>

		<category><![CDATA[interesting website]]></category>

		<category><![CDATA[real estate]]></category>

		<category><![CDATA[wiki]]></category>

		<guid isPermaLink="false">http://realtortech.org/?p=19</guid>
		<description><![CDATA[Yes yes, there are tons of &#8220;real estate glossaries&#8221; and other sites that define the most commonly-used real estate terms, but most of them are antiquated laundry lists cobbled together from other laundry lists. I was sent this site, RealEstateWiki.com, which is pretty interesting. It could, like so many other niche sites, fall flat on [...]]]></description>
			<content:encoded><![CDATA[<p>Yes yes, there are tons of &#8220;real estate glossaries&#8221; and other sites that define the most commonly-used real estate terms, but most of them are antiquated laundry lists cobbled together from other laundry lists. I was sent this site, <a href="http://www.RealEstateWiki.com"  target="_blank">RealEstateWiki.com</a>, which is pretty interesting. It could, like so many other niche sites, fall flat on its face or just die a slow and obscure death of disuse. But it is the only site I know of that makes use of the wiki platform to create a pretty expansive glossary, FAQs, and whitepages specific to real estate. It’s the brainchild of Stefan Swanepoel, a touring real estate educator who apparently has altruistic motives for the site; it’s all free with no advertising or other fees to use. It could grow into something useful.</p>
<p><a href="http://www.RealEstateWiki.com"  target="_blank">http://www.RealEstateWiki.com</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://realtortech.org/2008/04/the-real-estate-wiki/feed/</wfw:commentRss>
		<feedburner:origLink>http://realtortech.org/2008/04/the-real-estate-wiki/</feedburner:origLink></item>
		<item>
		<title>Moving Toward the Cloud… An Apps Engine Step at a Time</title>
		<link>http://feeds.feedburner.com/~r/realtortech/~3/434206795/</link>
		<comments>http://realtortech.org/2008/04/moving-toward-the-cloud-an-apps-engine-step-at-a-time/#comments</comments>
		<pubDate>Fri, 11 Apr 2008 16:34:43 +0000</pubDate>
		<dc:creator>Mike Cutlip, MA Assn of REALTORS</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[Technology]]></category>

		<category><![CDATA[Web Applications]]></category>

		<category><![CDATA[Web Design/Development]]></category>

		<category><![CDATA[apps engine]]></category>

		<category><![CDATA[cloud computing]]></category>

		<category><![CDATA[crazy guy ramblings]]></category>

		<category><![CDATA[google]]></category>

		<category><![CDATA[online apps]]></category>

		<guid isPermaLink="false">http://realtortech.org/2008/04/11/moving-toward-the-cloud-an-apps-engine-step-at-a-time/</guid>
		<description><![CDATA[Google’s App Engine is cool. Really cool. It’s not a revolutionary step for them, but rather another front in their march toward true “cloud” computing. In brief, let me explain what the Apps Engine is… Google has opened up their infrastructure to any developer who wants to create and host a web app on their [...]]]></description>
			<content:encoded><![CDATA[<p>Google’s <a href="http://code.google.com/appengine/docs/whatisgoogleappengine.html" >App Engine</a> is cool. Really cool. It’s not a revolutionary step for them, but rather another front in their march toward true “cloud” computing. In brief, let me explain what the Apps Engine is… Google has opened up their infrastructure to any developer who wants to create and host a web app on their servers. This removes the need for a developer to pay for servers, hosting, and setup of a <a href="http://lamphowto.com/" >LAMP</a>/<a href="http://www.apachefriends.org/en/xampp.html" >XAMPP</a> environment. In my opinion, anything that lowers the barrier to entry in the delivery of services is a great thing. </p>
<p>So how does this move us toward cloud computing?<br />
<span id="more-17"></span><br />
Simple – the more offline functionality you can imitate on the web and the more services you can connect through standard (and open) protocols, the closer we can get to doing all necessary tasks through a browser. When you combine the Apps Engine with <a href="http://gears.google.com/" >Google Gears</a> you can even create online apps that continue functioning in an offline setting. Even when I think about the current state of the web I have a hard time thinking of things I CAN’T accomplish online; I can listen to <a href="http://www.pandora.com/" >tunes</a>, <a href="http://www.everyvideogame.com/" >play games</a>, <a href="http://www.getdropbox.com/" >store files</a>, <a href="http://www.google.com/talk/#" >chat</a>, <a href="http://zoho.com/" >compose letters / spreadsheets</a> and, of course, email. (Side note: serious gamer-types are gonna say you can’t replicate and deliver the latest games through the web… well you’re right, at least until <a href="http://www.engadget.com/2008/04/07/cern-creates-a-new-super-fast-internet-invites-tons-of-people-t/" >the new Internet</a> makes it’s way to the masses.) Recognizing this trend toward the browser as the single most important piece of software, there are even <a href="http://www.slashgear.com/asus-add-wifi-n-quick-boot-linux-to-p5e3-motherboard-267643.php" >motherboards that quick-boot (in about 5 seconds) into a Linux-based browser</a>, bypassing the cumbersome Windows OS altogether. </p>
<p>So why is this significant? Well, I used to have a desktop because I wanted big hard drives, different types of removable media drives, and lots of processing power. Then I got my laptop which had less power but was lighter&#8230;  not light and portable enough for my taste, though… and all I use in terms of removable media is the occasional DVD-r and my USB stick, plus online storage. Once I no longer need even physical media I will feel truly liberated (umm, in terms of where I can compute, that is) with ubiquitous access to my “desktop” wherever I go. No hardware to upgrade, no software to update except a browser, no worries about hard drives failing, and no fears about having a laptop stolen because there’s no resident data! </p>
<p>The counterpoint to this is always the privacy issue… I’m always conflicted when it comes to giving out personal info to access a service. But when you look at where we are *already*, it’s rarely a valid concern. Private companies know us better than we know ourselves, and we’ve been ok with that for years. If we use a cell phone we can be geo-located anywhere, anytime. Jebus! Even SIGNING UP for a cell phone involves a down payment of your first-born, with interest payments of all your text messages stored FOREVER. Personally, I’ve given up trying to stay off the grid /radar/ map, what-have-you. It just can’t be accomplished these days, and we can’t go back to simpler times even with some kind of “Fight-Club-Esq” global purge. </p>
<p>Where was I… oh yes, Google Apps Engine… cloud computing… it’s cool. And it will simplify our lives. Not just as consumers, but (for those reading this blog) for IT admins, developers, graphic designers, and anyone using the web today… which is, well, everyone!</p>
]]></content:encoded>
			<wfw:commentRss>http://realtortech.org/2008/04/moving-toward-the-cloud-an-apps-engine-step-at-a-time/feed/</wfw:commentRss>
		<feedburner:origLink>http://realtortech.org/2008/04/moving-toward-the-cloud-an-apps-engine-step-at-a-time/</feedburner:origLink></item>
	</channel>
</rss>
