<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	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"
	>

<channel>
	<title>a dev star</title>
	<atom:link href="http://www.adevstar.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.adevstar.com</link>
	<description>web dev stuff</description>
	<pubDate>Wed, 18 Jun 2008 03:12:39 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>Ruby server monitoring script</title>
		<link>http://www.adevstar.com/ruby-server-monitoring-script/</link>
		<comments>http://www.adevstar.com/ruby-server-monitoring-script/#comments</comments>
		<pubDate>Wed, 18 Jun 2008 03:05:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://www.adevstar.com/?p=28</guid>
		<description><![CDATA[I wrote this script as a basic fix to monitor if certain sites are up.  The script needs to be on a different server than where the sites exist for the best results and obviously with a cron job running every 5-10 minutes or more often if needed.
The ruby server monitoring script could also [...]]]></description>
			<content:encoded><![CDATA[<p>I wrote this script as a basic fix to monitor if certain sites are up.  The script needs to be on a different server than where the sites exist for the best results and obviously with a cron job running every 5-10 minutes or more often if needed.</p>
<p>The ruby server monitoring script could also be expanded to ssh into another box and run the command needed to boot the server back up.</p>
<p>First let&#8217;s go over what the db looks like&#8230;<br />
<strong>Sites </strong></p>
<ul>
<li>id</li>
<li>domain (url to curl)</li>
<li>active (turn monitoring on/off for sites)</li>
</ul>
<p><strong>Reports</strong></p>
<ul>
<li>id</li>
<li>sent_at (time when report was sent)</li>
<li>down (count of how many sites were down)</li>
<li>fixed (report has been marked as fixed)</li>
</ul>
<p>Ruby monitoring script</p>

<div class="wp_syntax"><div class="code"><pre class="ruby"><span style="color:#008000; font-style:italic;">#!/usr/bin/ruby</span>
<span style="color:#008000; font-style:italic;">#change line above to reference your ruby location</span>
&nbsp;
<span style="color:#CC0066; font-weight:bold;">require</span> <span style="color:#996600;">'rubygems'</span>
<span style="color:#CC0066; font-weight:bold;">require</span> <span style="color:#996600;">'net/smtp'</span>
<span style="color:#CC0066; font-weight:bold;">require</span> <span style="color:#996600;">'mysql'</span>
<span style="color:#CC0066; font-weight:bold;">require</span> <span style="color:#996600;">'time'</span>
<span style="color:#CC0066; font-weight:bold;">require</span> <span style="color:#996600;">'curb'</span>
&nbsp;
<span style="color:#9966CC; font-weight:bold;">def</span> check
     <span style="color:#0066ff; font-weight:bold;">@time</span> = <span style="color:#0000FF; font-weight:bold;">nil</span>
&nbsp;
&nbsp;
    <span style="color:#008000; font-style:italic;"># Connect to db that stores all of our sites to monitor</span>
     db = Mysql::new<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#996600;">&quot;localhost&quot;</span>,<span style="color:#996600;">&quot;user&quot;</span>,<span style="color:#996600;">&quot;pass&quot;</span>,<span style="color:#996600;">&quot;database&quot;</span><span style="color:#006600; font-weight:bold;">&#41;</span>
&nbsp;
	<span style="color:#008000; font-style:italic;"># Make sure we are only looking at sites that are active </span>
    sites = db.<span style="color:#9900CC;">query</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#996600;">&quot;SELECT * FROM sites WHERE active = 1&quot;</span><span style="color:#006600; font-weight:bold;">&#41;</span>
	<span style="color:#008000; font-style:italic;"># Getting the most recent report since we only want to run the script to send a report every 2 hours</span>
    last_report = db.<span style="color:#9900CC;">query</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#996600;">&quot;SELECT * FROM reports WHERE fixed = 0 ORDER BY sent_at DESC Limit 0,1&quot;</span><span style="color:#006600; font-weight:bold;">&#41;</span>
    last_report.<span style="color:#9900CC;">each</span> <span style="color:#006600; font-weight:bold;">&#123;</span><span style="color:#006600; font-weight:bold;">|</span>r<span style="color:#006600; font-weight:bold;">|</span> <span style="color:#0066ff; font-weight:bold;">@time</span> = r<span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#006666;">1</span><span style="color:#006600; font-weight:bold;">&#93;</span><span style="color:#006600; font-weight:bold;">&#125;</span>
		<span style="color:#008000; font-style:italic;"># If there isn't a report in the database yet it sets the time to greater than 2 hours so the script will run and report if needed.</span>
        <span style="color:#9966CC; font-weight:bold;">if</span> <span style="color:#0066ff; font-weight:bold;">@time</span>.<span style="color:#0000FF; font-weight:bold;">nil</span>?
         <span style="color:#0066ff; font-weight:bold;">@diff</span> = <span style="color:#006666;">7201</span>
        <span style="color:#9966CC; font-weight:bold;">else</span>
		<span style="color:#008000; font-style:italic;"># Calculating the difference in time </span>
         <span style="color:#0066ff; font-weight:bold;">@report</span> = <span style="color:#CC00FF; font-weight:bold;">Time</span>.<span style="color:#9900CC;">parse</span><span style="color:#006600; font-weight:bold;">&#40;</span>@time<span style="color:#006600; font-weight:bold;">&#41;</span>
         <span style="color:#0066ff; font-weight:bold;">@now</span> = <span style="color:#CC00FF; font-weight:bold;">Time</span>.<span style="color:#9900CC;">now</span>
         <span style="color:#0066ff; font-weight:bold;">@diff</span> = <span style="color:#0066ff; font-weight:bold;">@now</span> <span style="color:#006600; font-weight:bold;">-</span> <span style="color:#0066ff; font-weight:bold;">@report</span>
        <span style="color:#9966CC; font-weight:bold;">end</span>
			<span style="color:#008000; font-style:italic;"># Change this number to whatever you woudl prefer in seconds. Currently it is 2 hours</span>
        <span style="color:#9966CC; font-weight:bold;">unless</span> <span style="color:#0066ff; font-weight:bold;">@diff</span>.<span style="color:#9900CC;">to_i</span> <span style="color:#006600; font-weight:bold;">&lt;</span> <span style="color:#006666;">7200</span>
            body = <span style="color:#996600;">&quot;&quot;</span>
            sites_down = <span style="color:#006666;">0</span>
&nbsp;
            sites.<span style="color:#9900CC;">each</span> <span style="color:#9966CC; font-weight:bold;">do</span> <span style="color:#006600; font-weight:bold;">|</span>s<span style="color:#006600; font-weight:bold;">|</span>
				<span style="color:#008000; font-style:italic;"># Prints the site name to the user</span>
                <span style="color:#CC0066; font-weight:bold;">print</span> s<span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#006666;">1</span><span style="color:#006600; font-weight:bold;">&#93;</span>
				<span style="color:#008000; font-style:italic;"># need a begin/rescue in case the domain can't be curled</span>
                <span style="color:#9966CC; font-weight:bold;">begin</span>
				<span style="color:#008000; font-style:italic;"># Uses curb to curl the domain</span>
                 c = <span style="color:#6666ff; font-weight:bold;">Curl::Easy</span>.<span style="color:#9900CC;">perform</span><span style="color:#006600; font-weight:bold;">&#40;</span>s<span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#006666;">1</span><span style="color:#006600; font-weight:bold;">&#93;</span><span style="color:#006600; font-weight:bold;">&#41;</span>
                <span style="color:#CC0066; font-weight:bold;">puts</span> <span style="color:#996600;">&quot; - #{c.response_code}&quot;</span>
&nbsp;
			   <span style="color:#008000; font-style:italic;"># check http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html for examples of response codes</span>
                <span style="color:#9966CC; font-weight:bold;">unless</span> c.<span style="color:#9900CC;">response_code</span> <span style="color:#006600; font-weight:bold;">&lt;</span> <span style="color:#006666;">399</span>
					<span style="color:#008000; font-style:italic;"># reports to the screen when manually ran that the site is down</span>
                      <span style="color:#CC0066; font-weight:bold;">puts</span> <span style="color:#996600;">&quot;--DOWN--&quot;</span>
					  <span style="color:#008000; font-style:italic;">#increments the number of sites down and writes to the body of the email</span>
                      sites_down = sites_down <span style="color:#006600; font-weight:bold;">+</span> <span style="color:#006666;">1</span>
                      body = body <span style="color:#006600; font-weight:bold;">+</span> <span style="color:#996600;">&quot;DOWN - #{s[1]}<span style="color:#000099;">\n</span>&quot;</span>
               <span style="color:#9966CC; font-weight:bold;">end</span>
&nbsp;
                <span style="color:#9966CC; font-weight:bold;">rescue</span>
				<span style="color:#008000; font-style:italic;"># if the script is unable to curl the site we still mark it as down since we want to make sure we are in good shape</span>
                    sites_down = sites_down <span style="color:#006600; font-weight:bold;">+</span> <span style="color:#006666;">1</span>
                    body = body <span style="color:#006600; font-weight:bold;">+</span> s<span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#006666;">1</span><span style="color:#006600; font-weight:bold;">&#93;</span> <span style="color:#006600; font-weight:bold;">+</span> <span style="color:#996600;">&quot; unable to curl, check record in db and ensure that it is being pointed<span style="color:#000099;">\n</span>&quot;</span>       
                        <span style="color:#CC0066; font-weight:bold;">puts</span> <span style="color:#996600;">&quot;--DOWN--&quot;</span>
                <span style="color:#9966CC; font-weight:bold;">end</span>
&nbsp;
&nbsp;
                <span style="color:#008000; font-style:italic;">#only send if sites are down</span>
&nbsp;
            <span style="color:#9966CC; font-weight:bold;">end</span>
&nbsp;
            <span style="color:#9966CC; font-weight:bold;">if</span> sites_down <span style="color:#006600; font-weight:bold;">&gt;</span> <span style="color:#006666;">0</span>
                <span style="color:#008000; font-style:italic;">#send text and email</span>
                record_report = db.<span style="color:#9900CC;">query</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#996600;">&quot;INSERT INTO reports(down) VALUES(#{sites_down})&quot;</span><span style="color:#006600; font-weight:bold;">&#41;</span>
				<span style="color:#008000; font-style:italic;"># I use this one for a text message. </span>
                send_email<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#996600;">&quot;A server needs help! #{sites_down} down!&quot;</span>,<span style="color:#996600;">&quot;destination_address&quot;</span><span style="color:#006600; font-weight:bold;">&#41;</span>
				<span style="color:#008000; font-style:italic;"># this is for an inbox since it provides more details to aid in troubleshooting later</span>
                send_email<span style="color:#006600; font-weight:bold;">&#40;</span>body,<span style="color:#996600;">&quot;myemail@blah.com&quot;</span><span style="color:#006600; font-weight:bold;">&#41;</span>
            <span style="color:#9966CC; font-weight:bold;">end</span>
         <span style="color:#9966CC; font-weight:bold;">else</span>
			<span style="color:#008000; font-style:italic;"># Since there is still a report that is in the db that was recorded less than 2 hours ago we just want to notify the user if running it from shell.</span>
            <span style="color:#CC0066; font-weight:bold;">puts</span> <span style="color:#996600;">&quot;Please run 'up.rb' first and then 'mon.rb' again to curl all sites.&quot;</span>
            <span style="color:#CC0066; font-weight:bold;">puts</span> <span style="color:#996600;">&quot;You are seeing this message because there is a report that hasn't been marked as fixed within the past 2 hours.&quot;</span> 
         <span style="color:#9966CC; font-weight:bold;">end</span>
<span style="color:#9966CC; font-weight:bold;">end</span>
&nbsp;
&nbsp;
<span style="color:#9966CC; font-weight:bold;">def</span> send_email<span style="color:#006600; font-weight:bold;">&#40;</span>body,to<span style="color:#006600; font-weight:bold;">&#41;</span>
    msg = <span style="color:#006600; font-weight:bold;">&lt;&lt;</span>END_OF_MESSAGE
From: Monitoring tool <span style="color:#006600; font-weight:bold;">&lt;</span>info@mysite.<span style="color:#9900CC;">com</span><span style="color:#006600; font-weight:bold;">&gt;</span>
To: Admin <span style="color:#006600; font-weight:bold;">&lt;</span>admin@mysite.<span style="color:#9900CC;">com</span><span style="color:#006600; font-weight:bold;">&gt;</span>
Subject: Some sites are down
<span style="color:#008000; font-style:italic;">#{body}</span>
END_OF_MESSAGE
&nbsp;
    <span style="color:#6666ff; font-weight:bold;">Net::SMTP</span>.<span style="color:#9900CC;">start</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#996600;">'localhost'</span><span style="color:#006600; font-weight:bold;">&#41;</span> <span style="color:#9966CC; font-weight:bold;">do</span> <span style="color:#006600; font-weight:bold;">|</span>smtp<span style="color:#006600; font-weight:bold;">|</span>
        smtp.<span style="color:#9900CC;">send_message</span> msg, <span style="color:#996600;">&quot;from_address&quot;</span>, to
    <span style="color:#9966CC; font-weight:bold;">end</span>
<span style="color:#9966CC; font-weight:bold;">end</span>
<span style="color:#008000; font-style:italic;">#need to run the function</span>
check</pre></div></div>

<p>Script to update reports table so regular monitoring can continue (up.rb)</p>

<div class="wp_syntax"><div class="code"><pre class="ruby"><span style="color:#008000; font-style:italic;">#!/usr/bin/ruby</span>
&nbsp;
<span style="color:#CC0066; font-weight:bold;">require</span> <span style="color:#996600;">'mysql'</span>
&nbsp;
db = Mysql::new<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#996600;">&quot;localhost&quot;</span>,<span style="color:#996600;">&quot;user&quot;</span>,<span style="color:#996600;">&quot;pass&quot;</span>,<span style="color:#996600;">&quot;database&quot;</span><span style="color:#006600; font-weight:bold;">&#41;</span>
up = db.<span style="color:#9900CC;">query</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#996600;">&quot;UPDATE reports SET fixed = 1 WHERE fixed = 0&quot;</span><span style="color:#006600; font-weight:bold;">&#41;</span>
&nbsp;
<span style="color:#CC0066; font-weight:bold;">puts</span> <span style="color:#996600;">&quot;Reports marked as fixed, resuming normal monitoring.&quot;</span></pre></div></div>

<p>You should also set up a crontab such as&#8230;.</p>
<p>This one runs every 5 minutes.</p>
<p>MAILTO=&#8221;"<br />
*/5 * * * * sh -c $&#8217;/usr/bin/ruby /home/username/mon.rb&#8217;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.adevstar.com/ruby-server-monitoring-script/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Code Smith Tools Review &#124; What a joke</title>
		<link>http://www.adevstar.com/code-smith-tools-review-what-a-joke/</link>
		<comments>http://www.adevstar.com/code-smith-tools-review-what-a-joke/#comments</comments>
		<pubDate>Sat, 17 May 2008 01:57:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.adevstar.com/code-smith-tools-review-what-a-joke/</guid>
		<description><![CDATA[Go check out the code smith tools website first.
Ok, your back&#8230;
Can someone please explain to me how this is beneficial in any way shape or form better than how a developer currently makes templates?  Maybe it&#8217;s just for those who are unfortunate enough to have to program in .net haha. oh and here&#8217;s an [...]]]></description>
			<content:encoded><![CDATA[<div style=''>Go check out the <a target="_blank" href="http://codesmithtools.com/">code smith tools website</a> first.</p>
<p>Ok, your back&#8230;</p>
<p>Can someone please explain to me how this is beneficial in any way shape or form better than how a developer currently makes templates?  Maybe it&#8217;s just for those who are unfortunate enough to have to program in .net haha. oh and here&#8217;s an <a target="_blank" href="http://www.codesmithtools.com/videotutorials/codesmith-4.0-overview.html">amazing video</a> on how simple it is to use&#8230;. not.  While watching the video pay attention around 6:30 where they show the bagillion files that were generated. Good luck finding the specific function you would like to modify or fine tune your application.</p>
<p>Also, who wants mooooooore lines of code and moooore files than you would ever need, write efficient code and make your code reusable. As they say in the video it generates 1000&#8217;s and 1000&#8217;s of lines of code that would take developers forever to write.  </p>
<p>I must admit I am a big fan of rails but PHP also has some great frameworks such as cake php and .net does have master pages but not much beyond that. </p>
<p>If you really don&#8217;t know how to include a file in php (include &#8216;header.php&#8217;) or deal with templates in a framework maybe you should probably read the infinite amount of tutorials online or buy some books from fry&#8217;s electronics. </p>
<p>Any current users that love this application?</div>
]]></content:encoded>
			<wfw:commentRss>http://www.adevstar.com/code-smith-tools-review-what-a-joke/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Problogger &#8220;Secrets for blogging your way to a six-figure income book review chapter 1&#8243;</title>
		<link>http://www.adevstar.com/problogger-secrets-for-blogging-your-way-to-a-six-figure-income-book-review-chapter-1/</link>
		<comments>http://www.adevstar.com/problogger-secrets-for-blogging-your-way-to-a-six-figure-income-book-review-chapter-1/#comments</comments>
		<pubDate>Tue, 13 May 2008 12:28:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[blogging]]></category>

		<guid isPermaLink="false">http://www.adevstar.com/progblogger-secrets-for-blogging-your-way-to-a-six-figure-income-book-review-chapter-1/</guid>
		<description><![CDATA[I just recently purchased some books from amazon that are all web related and thought I would write a summary/review of one of them that I purchased which is the problogger book.  
Introduction The book is by 2 different bloggers: Darren Rowse and Chris Garrett. This section talks about how they got into blogging [...]]]></description>
			<content:encoded><![CDATA[<p>I just recently purchased some books from amazon that are all web related and thought I would write a summary/review of one of them that I purchased which is the <a target="_blank" href="http://www.amazon.com/ProBlogger-Secrets-Blogging-Six-Figure-Income/dp/0470246677/ref=sr_1_1?ie=UTF8&amp;s=books&amp;qid=1210805229&amp;sr=8-1&amp;tag=adest-20">problogger book</a>.  </p>
<p><b>Introduction <br /></b>The book is by 2 different bloggers: Darren Rowse and Chris Garrett. This section talks about how they got into blogging and how it is usually never an overnight success in the blogging world.</p>
<p>Darren: Worked multiple jobs while he started blogging until he could finally become a full time blogger. Had multiple blogs running and his most successful project would be <a target="_blank" href="http://problogger.net">problogger.net</a> , he also co-founded the b5media network which is a network of bloggers.</p>
<p>Chris: Mainly an IT guy that ran a science fiction web site, personal web site and various other sites.  Played around with building affiliate marketing websites, freelance writing and programmer training. Most popular blog would be <a target="_blank" href="http://www.performancing.com/">performancing.com</a> and he has a personal web site at <a target="_blank" href="http://www.chrisg.com/">chrig.com</a>.</p>
<p><b>Chapter 1 - blogging for money<br /></b>General overview of what a blog is and how it is different from a regular web site.  Things such as it is updated more often and typically encourages user interaction in the form of users commenting.  Various benefits from blogging such as fame, networking, making money and traffic. Different monetization methods for blogs such as affiliate marketing, adsense, paid reviews, sponsorships, and advertising. Indirect monetization methods such as your own freelance work, advertising yourself to be a speaker, consulting opportunities and various other services that you can advertise on your site. Breaks down the different reasons people blog and which advertising method will work best for your particular blog. Measuring a blog&#8217;s success using various methods and metrics such as unique visitors, trackbacks, feed readers through feedburner, search engines and technorati. </p>
<p>How to make a blog appealing by taking a look at blogs you like and answering the following questions:<br />
<blockquote>What does and doesn&#8217;t appeal to you? </p>
<p>What content does the blog provide?</p>
<p>How often is the site updated?</p>
<p>What reaction is the blog looking for from readers? Shock, amusement, happiness..</p></blockquote>
<p><b>Blog Tools mentioned:</b> <a href="http://technorati.com/" target="_blank">http://technorati.com/</a> | <a href="http://tools.seobook.com/" target="_blank">http://tools.seobook.com/</a> | <a href="http://www.seomoz.org/tools" target="_blank">http://www.seomoz.org/tools</a> | <a href="http://www.alexa.com/" target="_blank">http://www.alexa.com/</a> | <a href="http://www.text-link-ads.com/blog_juice/" target="_blank">http://www.text-link-ads.com/blog_juice/</a></p>
<p><b>Chapter 2 - niche blogging<br /></b>How to define your niche in the blog world and make sure that you will be interested in the long haul with your specific subject.  It is important to define your niche because from a reader&#8217;s perspective they are probably not interested in the exact same subjects as you. They may be interested in xbox 360 pages and first person shooters or sweet games like <a target="_blank" href="http://www.amazon.com/Rockstar-Games-Grand-Theft-Auto/dp/B000FRU1UM/ref=pd_bbs_sr_1?ie=UTF8&amp;s=videogames&amp;qid=1210807678&amp;sr=8-1&amp;tag=adest-20">GTA IV</a>! but that same reader may not be interested in hiking or parenting. This way if you are able to make your audience more specific then it helps when the reader is going through your articles. Other benefits to having a niche blog are having a community that is already devoted to your subject to connect through your site, specialized authors, more specific advertising, direct ad sales since you have a general idea of the audience, easier to rank higher in search engines since it is a more defined subject, can always expand into a closely related niche if you find there is enough to write about. Things you have to keep in mind though when coming up with your niche are<br />
<blockquote>How interested are you in the topic?<br />How long will the topic be popular or is it at the moment?<br />Is it&#8217;s popularity growing or shrinking?<br />Is there someone else already blogging about this or what other similar competition are you up against?<br />Will you have enough content to write for at least 6 months?<br />Is there a way to make money out of the niche?</p></blockquote>
<p><b>Tools mentioned: </b><a target="_blank" href="https://adwords.google.com">AdWords </a>| <a target="_blank" href="http://google.com/trends">Google Trends</a> | <a target="_blank" href="http://technorati.com/">Technorati </a>| <a target="_blank" href="http://blogsearch.google.com/">Google Blog Search</a> | <a target="_blank" href="http://www.wordtracker.com/">Wordtracker </a>| <a target="_blank" href="http://buzz.yahoo.com/">Yahoo Buzz</a></p>
<p>Cool tip that isn&#8217;t in the book or so far at least.  Go to <a target="_blank" href="http://www.google.com/alerts">google alerts</a> and setup an alert with your domain name in the alert or your name or any other piece of information you want to track.  Pick a type and then have it emailed to you however often you want. This helps in monitoring activity and buzz around your blog and specific topics.  </p>
<p>So far I like the read and I&#8217;ll post more when I have time. </p>
<p><b><br /></b></p>
]]></content:encoded>
			<wfw:commentRss>http://www.adevstar.com/problogger-secrets-for-blogging-your-way-to-a-six-figure-income-book-review-chapter-1/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Drivers for Gateway P-6832</title>
		<link>http://www.adevstar.com/drivers-for-gateway-p-6832/</link>
		<comments>http://www.adevstar.com/drivers-for-gateway-p-6832/#comments</comments>
		<pubDate>Fri, 09 May 2008 17:53:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.adevstar.com/drivers-for-gateway-p-6832/</guid>
		<description><![CDATA[Drivers for the Gateway p-6832 can be found there&#8230;
These include the video drivers for the gateway p-6832, media card reader driver, lan driver, and more. 
]]></description>
			<content:encoded><![CDATA[<p><a target="_blank" href="http://support.gateway.com/support/drivers/docexpress.asp?st=pn&amp;param=4006242R">Drivers for the Gateway p-6832</a> can be found there&#8230;</p>
<p>These include the video drivers for the gateway p-6832, media card reader driver, lan driver, and more. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.adevstar.com/drivers-for-gateway-p-6832/feed/</wfw:commentRss>
		</item>
		<item>
		<title>igoogle rss feed update delay</title>
		<link>http://www.adevstar.com/igoogle-rss-feed-update-delay/</link>
		<comments>http://www.adevstar.com/igoogle-rss-feed-update-delay/#comments</comments>
		<pubDate>Fri, 02 May 2008 06:10:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[rss]]></category>

		<category><![CDATA[seo]]></category>

		<guid isPermaLink="false">http://www.adevstar.com/igoogle-rss-feed-update-delay/</guid>
		<description><![CDATA[When first posting your feed to igoogle it takes a little while for it to pull in new posts that you write.  Unless you are digg, engadget, or some other already well known and highly visited site.  When you first put your site feed on igoogle it can take anywhere from 4-72 hours [...]]]></description>
			<content:encoded><![CDATA[<p>When first posting your feed to igoogle it takes a little while for it to pull in new posts that you write.  Unless you are digg, engadget, or some other already well known and highly visited site.  When you first put your site feed on igoogle it can take anywhere from 4-72 hours and then as time progresses you should see faster updates to your igoogle rss widget for your feed.  Just make sure that the url you are using for your feed is getting updated when you have new posts to your blog/cms/application.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.adevstar.com/igoogle-rss-feed-update-delay/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Joomla sitemap component Xmap</title>
		<link>http://www.adevstar.com/joomla-sitemap-component-xmap/</link>
		<comments>http://www.adevstar.com/joomla-sitemap-component-xmap/#comments</comments>
		<pubDate>Thu, 01 May 2008 22:54:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[joomla]]></category>

		<category><![CDATA[seo]]></category>

		<guid isPermaLink="false">http://www.adevstar.com/joomla-sitemap-component-xmap/</guid>
		<description><![CDATA[Xmap is a very useful sitemap component for joomla which basically lets you generate a sitemap out of your menus.  You can choose to use all of the menus or just your main menu, whichever works best.  You can then link to the sitemap component from a menu item and see a sitemap [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://extensions.joomla.org/component/option,com_mtree/task,viewlink/link_id,3066/Itemid,35/" target="_blank">Xmap</a> is a very useful <strong>sitemap component for joomla</strong> which basically lets you generate a sitemap out of your menus.  You can choose to use all of the menus or just your main menu, whichever works best.  You can then link to the sitemap component from a menu item and see a sitemap in a human friendly form on your site.  Xmap also generates the xml version for search engines such as google and yahoo.  It isn&#8217;t extremely obvious where that is located at since it isn&#8217;t sitemap.xml so I thought I&#8217;d post it to save someone the hassle of looking for it.  It should be here&#8230;</p>
<blockquote><p>http://mysite.com/index.php?option=com_xmap&amp;sitemap=1&amp;view=xml&amp;no_html=1</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.adevstar.com/joomla-sitemap-component-xmap/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Facebook Chat on Digsby Released Today</title>
		<link>http://www.adevstar.com/facebook-chat-on-digsby-released-today/</link>
		<comments>http://www.adevstar.com/facebook-chat-on-digsby-released-today/#comments</comments>
		<pubDate>Thu, 01 May 2008 10:56:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[social networking]]></category>

		<guid isPermaLink="false">http://www.adevstar.com/facebook-chat-on-digsby/</guid>
		<description><![CDATA[Digsby just released a new version today that adds facebook chat to the program and it is amazing.  It&#8217;s nice to be able to chat on facebook without a browser and it is much more robust than the online facebook version. Digsby is also nice because it puts all of my chat networks and [...]]]></description>
			<content:encoded><![CDATA[<p>Digsby just released a new version today that adds facebook chat to the program and it is amazing.  It&#8217;s nice to be able to chat on facebook without a browser and it is much more robust than the online facebook version. Digsby is also nice because it puts all of my chat networks and social updates feeds into one slick program.  Download the new <a href="http://www.digsby.com/download.php" target="_blank">Digsby with Facebook chat</a> today.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.adevstar.com/facebook-chat-on-digsby-released-today/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Joomla Jobline Component Strip Slashes</title>
		<link>http://www.adevstar.com/joomla-jobline-component-strip-slashes/</link>
		<comments>http://www.adevstar.com/joomla-jobline-component-strip-slashes/#comments</comments>
		<pubDate>Thu, 01 May 2008 08:58:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[joomla]]></category>

		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.adevstar.com/joomla-jobline-component-strip-slashes/</guid>
		<description><![CDATA[If you have magic_quotes_gpc set to on in php and would like to keep it on but jobline is not removing the slashes on display or edit in the backend then edit the following files to fix it.

/administrator/components/com_jobline/admin.jobline.php
Look for the editJobPosting function and just before the last line in this function which is HTML_jobline_admin::editJobPosting( $row, [...]]]></description>
			<content:encoded><![CDATA[<p>If you have magic_quotes_gpc set to on in php and would like to keep it on but jobline is not removing the slashes on display or edit in the backend then edit the following files to fix it.</p>
<p><span id="more-15"></span></p>
<p>/administrator/components/com_jobline/admin.jobline.php<br />
Look for the <strong>editJobPosting </strong>function and just before the last line in this function which is HTML_jobline_admin::editJobPosting( $row, $lists, $cur_template, $returnpage ); add the following lines of code.</p>
<blockquote><p>$row-&gt;description = stripslashes($row-&gt;description);<br />
$row-&gt;qualifications = stripslashes($row-&gt;qualifications);<br />
$row-&gt;applyinfo = stripslashes($row-&gt;applyinfo);</p></blockquote>
<p>That just fixes editing in the backend, now for the front end view. Go find this file&#8230;<br />
/components/com_jobline/jobline.php<br />
and look for this function viewJobPosting and add the same lines as above which are</p>
<blockquote><p>$row-&gt;description = stripslashes($row-&gt;description);<br />
$row-&gt;qualifications = stripslashes($row-&gt;qualifications);<br />
$row-&gt;applyinfo = stripslashes($row-&gt;applyinfo);</p></blockquote>
<p>right before this line<br />
HTML_jobline::show( $row );</p>
<p>Hope this helps, it takes a little while to find so I thought I would save someone else the time.  Enjoy</p>
]]></content:encoded>
			<wfw:commentRss>http://www.adevstar.com/joomla-jobline-component-strip-slashes/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Best ways to twitter</title>
		<link>http://www.adevstar.com/best-ways-to-twitter/</link>
		<comments>http://www.adevstar.com/best-ways-to-twitter/#comments</comments>
		<pubDate>Tue, 29 Apr 2008 02:35:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[social networking]]></category>

		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.adevstar.com/best-ways-to-twitter/</guid>
		<description><![CDATA[Besides the obvious web, email, and text ways to twitter there are a couple other really convenient ways as well.
Firefox add-on &#8220;twitterbar&#8221; 
This add-on allows you to type your twitter update in the address bar of firefox and then click update within the address bar and it updates your status.  You can use this [...]]]></description>
			<content:encoded><![CDATA[<p>Besides the obvious web, email, and text ways to twitter there are a couple other really convenient ways as well.</p>
<p><strong>Firefox add-on &#8220;twitterbar&#8221; </strong><br />
This add-on allows you to type your twitter update in the address bar of firefox and then click update within the address bar and it updates your status.  You can use this add-on in secure and safe mode to connect to twitter.  The add-on also displays how many characters out of 140 you have left to type and then gives you a confirmation message upon saving the twitter status.</p>
<p><strong>Digsby </strong>(see <a href="http://www.adevstar.com/digsby-a-superb-chat-client-and-social-network-utility/">my digsby post</a> for more detailed information)<br />
Digsby is a multi-client chat program and social site status update program.  The program enables you to talk on all of your favorite instant message networks as well as update your twitter (also facebook and myspace) status directly from the program.  <a href="http://digsby.com" target="_blank">Digsby </a>also shows you your twitter updates from the people you are following.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.adevstar.com/best-ways-to-twitter/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Social Bookmarking Widget Customization and modifications (addthis.com)</title>
		<link>http://www.adevstar.com/social-bookmarking-widget-customization-and-modifications-addthiscom/</link>
		<comments>http://www.adevstar.com/social-bookmarking-widget-customization-and-modifications-addthiscom/#comments</comments>
		<pubDate>Mon, 28 Apr 2008 04:32:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[social bookmarking]]></category>

		<guid isPermaLink="false">http://www.adevstar.com/addthiscom-social-bookmarking-widget-customization-and-modifications/</guid>
		<description><![CDATA[addthis.com has an amazing social bookmarking widget that integrates every possible social bookmarking site such as digg, stumbleupon, browser bookmarks, reddit, and sooo many more.  While they offer some documentation on their widget there are additional features which you can tweak with the widget besides what is mentioned.  Basically they are settings within [...]]]></description>
			<content:encoded><![CDATA[<p><a target="_blank" href="http://www.addthis.com">addthis.com</a> has an amazing social bookmarking widget that integrates every possible social bookmarking site such as digg, stumbleupon, browser bookmarks, reddit, and sooo many more.  While they offer some documentation on their widget there are additional features which you can tweak with the widget besides what is mentioned.  Basically they are settings within the javascript file. </p>
<p><b>social bookmarking widget addthis.com specify url </b><br />By default the widget uses the current browser url, but if you are on the the main page of your blog and want the widget to specify the actual article the widget is next to you can specify the variable &#8216;addthis_url&#8217; just like you do the other variables.</p>
<p><b>specify default title</b> <br />&#8216;addthis_title&#8217; - Swaps out what&#8217;s in the title tag with a title that you specify. </p>
<p><b>specify caption share</b><br />addthis_caption_share - specify a different title besides the default &#8220;Bookmark and Share&#8221; on the dropdown. </p>
<p><b>specify custom css file</b><br />addthis_css - takes a reference to a css file.</p>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.adevstar.com/social-bookmarking-widget-customization-and-modifications-addthiscom/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 2.698 seconds -->
<!-- Cached page served by WP-Cache -->
