<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><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:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>StupidProgrammer.com</title>
	
	<link>http://stupidprogrammer.com</link>
	<description>"Stupid Programmer You Are" --Master Programmer Yoda</description>
	<lastBuildDate>Thu, 26 Mar 2009 18:23:44 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<geo:lat>34.142119</geo:lat><geo:long>-79.743119</geo:long><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/Stupidprogrammer" type="application/rss+xml" /><feedburner:emailServiceId>Stupidprogrammer</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
		<title>.NET Auto-Property</title>
		<link>http://feedproxy.google.com/~r/Stupidprogrammer/~3/4FMSDfRJRUE/</link>
		<comments>http://stupidprogrammer.com/2009/03/26/net-auto-property/#comments</comments>
		<pubDate>Thu, 26 Mar 2009 18:23:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.NET]]></category>

		<guid isPermaLink="false">http://stupidprogrammer.com/?p=374</guid>
		<description>How many times in a .NET classes have you written public properties like this?
class Testing
{
    private string m_subject;
    private string m_message;

    public string Subject
    {
        get { return m_subject; }
       [...]</description>
			<content:encoded><![CDATA[<p>How many times in a .NET classes have you written public properties like this?</p>
<pre class="csharpcode"><span class="kwrd">class</span> Testing
{
    <span class="kwrd">private</span> <span class="kwrd">string</span> m_subject;
    <span class="kwrd">private</span> <span class="kwrd">string</span> m_message;

    <span class="kwrd">public</span> <span class="kwrd">string</span> Subject
    {
        get { <span class="kwrd">return</span> m_subject; }
        set { m_subject = <span class="kwrd">value</span>; }
    }

    <span class="kwrd">public</span> <span class="kwrd">string</span> Message
    {
        get { <span class="kwrd">return</span> m_message; }
        set { m_message = <span class="kwrd">value</span>; }
    }
}</pre>
<style type="text/css">.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }
</style>
<pre class="csharpcode">&nbsp;</pre>
<p>.NET has the ability to make that section of code a lot cleaner and easier to read through the use of Auto-Properties.</p>
<pre class="csharpcode"><span class="kwrd">class</span> Testing
{
    <span class="kwrd">public</span> <span class="kwrd">string</span> Subject { get; set; }
    <span class="kwrd">public</span> <span class="kwrd">string</span> Message { get; set; }
}</pre>
<pre class="csharpcode">&nbsp;</pre>
<p>You can read a little more over at <a href="http://michaelsync.net/2008/02/29/c-30-tutorials-auto-implemented-properties-aka-automatic-properties" target="_blank" onclick="urchinTracker('/outgoing/michaelsync.net/2008/02/29/c-30-tutorials-auto-implemented-properties-aka-automatic-properties?referer=');">Michael Sync’s blog</a>.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/vxJse4nNO17lW6z67hEDNl3veo4/0/da"><img src="http://feedads.g.doubleclick.net/~a/vxJse4nNO17lW6z67hEDNl3veo4/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/vxJse4nNO17lW6z67hEDNl3veo4/1/da"><img src="http://feedads.g.doubleclick.net/~a/vxJse4nNO17lW6z67hEDNl3veo4/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Stupidprogrammer?a=4FMSDfRJRUE:lx1sAPUn2fA:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/Stupidprogrammer?i=4FMSDfRJRUE:lx1sAPUn2fA:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Stupidprogrammer?a=4FMSDfRJRUE:lx1sAPUn2fA:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Stupidprogrammer?i=4FMSDfRJRUE:lx1sAPUn2fA:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Stupidprogrammer?a=4FMSDfRJRUE:lx1sAPUn2fA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Stupidprogrammer?i=4FMSDfRJRUE:lx1sAPUn2fA:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Stupidprogrammer?a=4FMSDfRJRUE:lx1sAPUn2fA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Stupidprogrammer?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Stupidprogrammer?a=4FMSDfRJRUE:lx1sAPUn2fA:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Stupidprogrammer?i=4FMSDfRJRUE:lx1sAPUn2fA:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Stupidprogrammer/~4/4FMSDfRJRUE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://stupidprogrammer.com/2009/03/26/net-auto-property/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://stupidprogrammer.com/2009/03/26/net-auto-property/</feedburner:origLink></item>
		<item>
		<title>User Already Exists in the Current Database?</title>
		<link>http://feedproxy.google.com/~r/Stupidprogrammer/~3/lOTX3b2nMSo/</link>
		<comments>http://stupidprogrammer.com/2009/02/20/user-already-exists-in-the-current-database/#comments</comments>
		<pubDate>Fri, 20 Feb 2009 19:44:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Database]]></category>

		<guid isPermaLink="false">http://stupidprogrammer.com/?p=373</guid>
		<description>Have you ever had a time when you needed to move a SQL database to a new server… made your backup… restored to new server… Go to setup the SQL user with permissions and get this…
Create failed for User ‘myuser’. (Microsoft.SqlServer.Smo)     User, group, or role ‘myuser’ already exists in the current [...]</description>
			<content:encoded><![CDATA[<p>Have you ever had a time when you needed to move a SQL database to a new server… made your backup… restored to new server… Go to setup the SQL user with permissions and get this…</p>
<blockquote><p>Create failed for User ‘myuser’. (Microsoft.SqlServer.Smo)     <br />User, group, or role ‘myuser’ already exists in the current database. (Microsoft SQL Server, Error 15023)</p>
</blockquote>
<p>Huh… User already exist in database???</p>
<p>This is because the user in the database is orphaned. This means that there is no SQL login id or password associated with the database user.</p>
<p>This is really easy to correct in SQL 2000 SP3 or greater.</p>
<p>First, make sure that this is the problem. This will lists the orphaned users:</p>
<blockquote><pre class="csharpcode"><span class="kwrd">EXEC</span> sp_change_users_login <span class="str">'Report'</span></pre>
</blockquote>
<style type="text/css">
.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }</style>
<p>If you already have a login id and password for this user, fix it by doing:</p>
<blockquote>
<pre class="csharpcode"><span class="kwrd">EXEC</span> sp_change_users_login <span class="str">'Auto_Fix'</span>, <span class="str">'user'</span></pre>
</blockquote>
<style type="text/css">
.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }</style>
<p>If you want to create a new login id and password for this user, fix it by doing:</p>
<blockquote>
<pre class="csharpcode"><span class="kwrd">EXEC</span> sp_change_users_login <span class="str">'Auto_Fix'</span>, <span class="str">'user'</span>, <span class="str">'login'</span>, <span class="str">'password'</span></pre>
</blockquote>
<style type="text/css">
.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }</style>
<p><em>(HT: </em><a href="http://www.fileformat.info/tip/microsoft/sql_orphan_user.htm" target="_blank" onclick="urchinTracker('/outgoing/www.fileformat.info/tip/microsoft/sql_orphan_user.htm?referer=');"><em>FileFormat.info</em></a><em>)</em></p>

<p><a href="http://feedads.g.doubleclick.net/~a/p0VF1P3HIBWPlhgzcHmFkYoQp_A/0/da"><img src="http://feedads.g.doubleclick.net/~a/p0VF1P3HIBWPlhgzcHmFkYoQp_A/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/p0VF1P3HIBWPlhgzcHmFkYoQp_A/1/da"><img src="http://feedads.g.doubleclick.net/~a/p0VF1P3HIBWPlhgzcHmFkYoQp_A/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Stupidprogrammer?a=lOTX3b2nMSo:nQaOY9IKyCQ:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/Stupidprogrammer?i=lOTX3b2nMSo:nQaOY9IKyCQ:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Stupidprogrammer?a=lOTX3b2nMSo:nQaOY9IKyCQ:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Stupidprogrammer?i=lOTX3b2nMSo:nQaOY9IKyCQ:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Stupidprogrammer?a=lOTX3b2nMSo:nQaOY9IKyCQ:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Stupidprogrammer?i=lOTX3b2nMSo:nQaOY9IKyCQ:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Stupidprogrammer?a=lOTX3b2nMSo:nQaOY9IKyCQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Stupidprogrammer?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Stupidprogrammer?a=lOTX3b2nMSo:nQaOY9IKyCQ:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Stupidprogrammer?i=lOTX3b2nMSo:nQaOY9IKyCQ:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Stupidprogrammer/~4/lOTX3b2nMSo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://stupidprogrammer.com/2009/02/20/user-already-exists-in-the-current-database/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://stupidprogrammer.com/2009/02/20/user-already-exists-in-the-current-database/</feedburner:origLink></item>
		<item>
		<title>Under the Bus</title>
		<link>http://feedproxy.google.com/~r/Stupidprogrammer/~3/Jmx0g_2h9ZE/</link>
		<comments>http://stupidprogrammer.com/2009/02/13/under-the-bus/#comments</comments>
		<pubDate>Fri, 13 Feb 2009 18:41:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://stupidprogrammer.com/?p=372</guid>
		<description>What happens when a database team is moving databases and the development team puts up a maintenance page to the company while the move occurs…
 
That’s right… they put me under the bus!
Just a little Friday humor… BTW… This really happened yesterday.</description>
			<content:encoded><![CDATA[<p align="left">What happens when a database team is moving databases and the development team puts up a maintenance page to the <a href="http://www.acstechnologies.com" target="_blank" onclick="urchinTracker('/outgoing/www.acstechnologies.com?referer=');">company</a> while the move occurs…</p>
<p align="left"><a href="http://stupidprogrammer.com/wp-content/uploads/2009/02/underthebus.jpg"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="UnderTheBus" border="0" alt="UnderTheBus" src="http://stupidprogrammer.com/wp-content/uploads/2009/02/underthebus-thumb.jpg" width="226" height="244" /></a> </p>
<p align="left">That’s right… they put me under the bus!</p>
<p align="left">Just a little Friday humor… BTW… This really happened yesterday. <img src='http://stupidprogrammer.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>

<p><a href="http://feedads.g.doubleclick.net/~a/LJjnZte1rryA0TuFSzzkXY1imBE/0/da"><img src="http://feedads.g.doubleclick.net/~a/LJjnZte1rryA0TuFSzzkXY1imBE/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/LJjnZte1rryA0TuFSzzkXY1imBE/1/da"><img src="http://feedads.g.doubleclick.net/~a/LJjnZte1rryA0TuFSzzkXY1imBE/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Stupidprogrammer?a=Jmx0g_2h9ZE:gL6pSIrRPSA:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/Stupidprogrammer?i=Jmx0g_2h9ZE:gL6pSIrRPSA:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Stupidprogrammer?a=Jmx0g_2h9ZE:gL6pSIrRPSA:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Stupidprogrammer?i=Jmx0g_2h9ZE:gL6pSIrRPSA:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Stupidprogrammer?a=Jmx0g_2h9ZE:gL6pSIrRPSA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Stupidprogrammer?i=Jmx0g_2h9ZE:gL6pSIrRPSA:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Stupidprogrammer?a=Jmx0g_2h9ZE:gL6pSIrRPSA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Stupidprogrammer?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Stupidprogrammer?a=Jmx0g_2h9ZE:gL6pSIrRPSA:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Stupidprogrammer?i=Jmx0g_2h9ZE:gL6pSIrRPSA:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Stupidprogrammer/~4/Jmx0g_2h9ZE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://stupidprogrammer.com/2009/02/13/under-the-bus/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://stupidprogrammer.com/2009/02/13/under-the-bus/</feedburner:origLink></item>
		<item>
		<title>How to Find SQL Databases in SIMPLE Recovery Model</title>
		<link>http://feedproxy.google.com/~r/Stupidprogrammer/~3/kAsxSb3zsXg/</link>
		<comments>http://stupidprogrammer.com/2009/01/23/how-to-find-sql-databases-in-simple-recovery-model/#comments</comments>
		<pubDate>Fri, 23 Jan 2009 17:35:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://stupidprogrammer.com/?p=369</guid>
		<description>Very simple… 
SQL 2000
USE master
GO

SELECT catalog_name
FROM information_schema.schemata
WHERE DATABASEPROPERTYEX(catalog_name,'RECOVERY') = 'SIMPLE' ;
&amp;#160;
SQL 2005-2008 

USE master
GO

SELECT name
FROM sys.databases
WHERE recovery_model_desc = 'SIMPLE'
.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode [...]</description>
			<content:encoded><![CDATA[<p>Very simple… </p>
<p><strong>SQL 2000</strong></p>
<pre class="csharpcode"><span class="kwrd">USE</span> master
<span class="kwrd">GO</span>

<span class="kwrd">SELECT</span> catalog_name
<span class="kwrd">FROM</span> information_schema.schemata
<span class="kwrd">WHERE</span> DATABASEPROPERTYEX(catalog_name,<span class="str">'RECOVERY'</span>) = <span class="str">'SIMPLE'</span> ;</pre>
<p>&nbsp;</p>
<p><strong>SQL 2005-2008 </strong></p>
<pre class="csharpcode"></pre>
<pre class="csharpcode"><span class="kwrd">USE</span> master
<span class="kwrd">GO</span>

<span class="kwrd">SELECT</span> name
<span class="kwrd">FROM</span> sys.databases
<span class="kwrd">WHERE</span> recovery_model_desc = <span class="str">'SIMPLE'</span></pre>
<style type="text/css">.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }
</style>
<style type="text/css">.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }
</style>

<p><a href="http://feedads.g.doubleclick.net/~a/Vwg1sz5fHLQP5nxyzvNqL6OlhqY/0/da"><img src="http://feedads.g.doubleclick.net/~a/Vwg1sz5fHLQP5nxyzvNqL6OlhqY/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/Vwg1sz5fHLQP5nxyzvNqL6OlhqY/1/da"><img src="http://feedads.g.doubleclick.net/~a/Vwg1sz5fHLQP5nxyzvNqL6OlhqY/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Stupidprogrammer?a=kAsxSb3zsXg:uRShLzWGi5Y:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/Stupidprogrammer?i=kAsxSb3zsXg:uRShLzWGi5Y:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Stupidprogrammer?a=kAsxSb3zsXg:uRShLzWGi5Y:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Stupidprogrammer?i=kAsxSb3zsXg:uRShLzWGi5Y:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Stupidprogrammer?a=kAsxSb3zsXg:uRShLzWGi5Y:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Stupidprogrammer?i=kAsxSb3zsXg:uRShLzWGi5Y:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Stupidprogrammer?a=kAsxSb3zsXg:uRShLzWGi5Y:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Stupidprogrammer?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Stupidprogrammer?a=kAsxSb3zsXg:uRShLzWGi5Y:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Stupidprogrammer?i=kAsxSb3zsXg:uRShLzWGi5Y:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Stupidprogrammer/~4/kAsxSb3zsXg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://stupidprogrammer.com/2009/01/23/how-to-find-sql-databases-in-simple-recovery-model/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://stupidprogrammer.com/2009/01/23/how-to-find-sql-databases-in-simple-recovery-model/</feedburner:origLink></item>
		<item>
		<title>UPDATE where INNER JOIN is needed</title>
		<link>http://feedproxy.google.com/~r/Stupidprogrammer/~3/gvRigOGMZyw/</link>
		<comments>http://stupidprogrammer.com/2008/12/04/update-where-inner-join-is-needed/#comments</comments>
		<pubDate>Thu, 04 Dec 2008 18:01:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Database]]></category>

		<guid isPermaLink="false">http://stupidprogrammer.com/?p=368</guid>
		<description>How does one UPDATE a field in a table where the key provided is in another table?
It is actually pretty simple:
UPDATE alias1
SET alias1.MyField = 'NEWDATA'
FROM tblTable1 alias1
INNER JOIN tblTable2 alias2
    ON alias1.ProductId = alias2.ProductId
WHERE alias2.PresentationId = '911'

.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; [...]</description>
			<content:encoded><![CDATA[<p>How does one UPDATE a field in a table where the key provided is in another table?</p>
<p>It is actually pretty simple:</p>
<pre class="csharpcode"><span class="kwrd">UPDATE</span> alias1
<span class="kwrd">SET</span> alias1.MyField = <span class="str">'NEWDATA'</span>
<span class="kwrd">FROM</span> tblTable1 alias1
<span class="kwrd">INNER</span> <span class="kwrd">JOIN</span> tblTable2 alias2
    <span class="kwrd">ON</span> alias1.ProductId = alias2.ProductId
<span class="kwrd">WHERE</span> alias2.PresentationId = <span class="str">'911'</span></pre>
<style type="text/css">
.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }</style>
<p>I hope this makes sense. It is easy to test before running the update by simply replacing the <span class="kwrd">UPDATE </span>with a SELECT for testing to make sure the query is returning the correct data.</p>
<pre class="csharpcode"><span class="kwrd">SELECT</span> *
<span class="kwrd">FROM</span> tblTable1 alias1
<span class="kwrd">INNER</span> <span class="kwrd">JOIN</span> tblTable2 alias2
    <span class="kwrd">ON</span> alias1.ProductId = alias2.ProductId
<span class="kwrd">WHERE</span> alias2.PresentationId = <span class="str">'911'</span></pre>
<style type="text/css">
.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }</style>
<p>If you know a better way to accomplish this, please leave me a comment on this post.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/-V5ZAtCpurCm9xC_duIOksZ-ECE/0/da"><img src="http://feedads.g.doubleclick.net/~a/-V5ZAtCpurCm9xC_duIOksZ-ECE/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/-V5ZAtCpurCm9xC_duIOksZ-ECE/1/da"><img src="http://feedads.g.doubleclick.net/~a/-V5ZAtCpurCm9xC_duIOksZ-ECE/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Stupidprogrammer?a=gvRigOGMZyw:tWBLH1j4C2E:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/Stupidprogrammer?i=gvRigOGMZyw:tWBLH1j4C2E:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Stupidprogrammer?a=gvRigOGMZyw:tWBLH1j4C2E:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Stupidprogrammer?i=gvRigOGMZyw:tWBLH1j4C2E:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Stupidprogrammer?a=gvRigOGMZyw:tWBLH1j4C2E:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Stupidprogrammer?i=gvRigOGMZyw:tWBLH1j4C2E:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Stupidprogrammer?a=gvRigOGMZyw:tWBLH1j4C2E:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Stupidprogrammer?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Stupidprogrammer?a=gvRigOGMZyw:tWBLH1j4C2E:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Stupidprogrammer?i=gvRigOGMZyw:tWBLH1j4C2E:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Stupidprogrammer/~4/gvRigOGMZyw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://stupidprogrammer.com/2008/12/04/update-where-inner-join-is-needed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://stupidprogrammer.com/2008/12/04/update-where-inner-join-is-needed/</feedburner:origLink></item>
		<item>
		<title>Open Technology Discussion</title>
		<link>http://feedproxy.google.com/~r/Stupidprogrammer/~3/2wNFlU5UjtM/</link>
		<comments>http://stupidprogrammer.com/2008/11/11/open-technology-discussion/#comments</comments>
		<pubDate>Tue, 11 Nov 2008 15:52:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Database]]></category>

		<guid isPermaLink="false">http://stupidprogrammer.com/?p=367</guid>
		<description>Tuesday, November 11th, 2008      
Topic: Open Spaces &amp;#8211; Bring your questions and ideas!        
Tonight is our next meeting of the Pee Dee Area .NET User Group.&amp;#160; 
Open Spaces is the chance for you to discuss topics with your peers.&amp;#160; Any developer topic is [...]</description>
			<content:encoded><![CDATA[<h5><b>Tuesday, November 11th, 2008      <br /></b></h5>
<p><b><b>Topic: Open Spaces &#8211; Bring your questions and ideas!        <br /></b></b></p>
<p>Tonight is our next meeting of the <a href="http://pdanug.net" target="_blank" onclick="urchinTracker('/outgoing/pdanug.net?referer=');">Pee Dee Area .NET User Group</a>.&#160; </p>
<p>Open Spaces is the chance for you to discuss topics with your peers.&#160; Any developer topic is fair game and welcome!&#160; This is your chance to gain valuable insight from your peers, so come equipped with your ideas or problems!&#160; This meeting is a general open conversation and there will be no presenters.&#160; See you there!</p>
<p>&#160;</p>
<p><a href="http://www.eventbrite.com/event/197990194" onclick="urchinTracker('/outgoing/www.eventbrite.com/event/197990194?referer=');"><img alt="" src="http://www.eventbrite.com/static/images/button_ext/rsvp_now.gif" border="0" /> </a></p>
<p><strong>Here is the tentative schedule:</strong>     <br />6:00 PM &#8211; 6:20 PM Socializing / Free Dinner     <br />6:20 PM &#8211; 6:30 PM Introduction, Sponsor Time, and News.     <br />6:30 PM &#8211; 8:00 PM Open Spaces </p>

<p><a href="http://feedads.g.doubleclick.net/~a/KED9sG_WkylpGil_fTg9H6yfUh4/0/da"><img src="http://feedads.g.doubleclick.net/~a/KED9sG_WkylpGil_fTg9H6yfUh4/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/KED9sG_WkylpGil_fTg9H6yfUh4/1/da"><img src="http://feedads.g.doubleclick.net/~a/KED9sG_WkylpGil_fTg9H6yfUh4/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Stupidprogrammer?a=2wNFlU5UjtM:aZaxfkFsFis:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/Stupidprogrammer?i=2wNFlU5UjtM:aZaxfkFsFis:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Stupidprogrammer?a=2wNFlU5UjtM:aZaxfkFsFis:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Stupidprogrammer?i=2wNFlU5UjtM:aZaxfkFsFis:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Stupidprogrammer?a=2wNFlU5UjtM:aZaxfkFsFis:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Stupidprogrammer?i=2wNFlU5UjtM:aZaxfkFsFis:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Stupidprogrammer?a=2wNFlU5UjtM:aZaxfkFsFis:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Stupidprogrammer?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Stupidprogrammer?a=2wNFlU5UjtM:aZaxfkFsFis:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Stupidprogrammer?i=2wNFlU5UjtM:aZaxfkFsFis:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Stupidprogrammer/~4/2wNFlU5UjtM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://stupidprogrammer.com/2008/11/11/open-technology-discussion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://stupidprogrammer.com/2008/11/11/open-technology-discussion/</feedburner:origLink></item>
		<item>
		<title>Twitter – Other Uses and Tools</title>
		<link>http://feedproxy.google.com/~r/Stupidprogrammer/~3/97HbenB8wjo/</link>
		<comments>http://stupidprogrammer.com/2008/11/01/twitter-other-uses-and-tools/#comments</comments>
		<pubDate>Sat, 01 Nov 2008 23:09:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[WebSites]]></category>

		<guid isPermaLink="false">http://stupidprogrammer.com/?p=366</guid>
		<description>Today wraps up my twitter series. Over the past five days, we have discussed the following topics: Twitter – What is it?, How to Get Started and Use it, Definitions and Best Practices, and txt Messages and Twitter., and Twitter Tools.
The goal of this post is to share a few other things one can do [...]</description>
			<content:encoded><![CDATA[<p>Today wraps up my twitter series. Over the past five days, we have discussed the following topics: <a href="http://stupidprogrammer.com/?p=327">Twitter – What is it?</a>, <a href="http://stupidprogrammer.com/?p=342">How to Get Started and Use it</a>, <a href="http://stupidprogrammer.com/?p=353">Definitions and Best Practices</a>, and <a href="http://stupidprogrammer.com/?p=360">txt Messages and Twitter</a>., and <a href="http://stupidprogrammer.com/?p=365" target="_blank">Twitter Tools</a>.</p>
<p>The goal of this post is to share a few other things one can do with twitter.</p>
<p>&#160;</p>
<p><strong>Facebook Status Updates</strong>:</p>
<p>So many people use <a href="http://www.facebook.com/" target="_blank" onclick="urchinTracker('/outgoing/www.facebook.com/?referer=');">http://www.facebook.com</a>. It is a great social networking tool! I may blog on it at a later date. <img src='http://stupidprogrammer.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  But what I see by so many people is that they login to Facebook and update their status messages. Why not have twitter do that for you? Over the past couple of days, I have hopefully showed how easy it is to use twitter.</p>
<p>So, how do I setup Facebook to use my twitter account?</p>
<ol>
<li>Install the Twitter application in your Facebook account: <a href="http://apps.facebook.com/twitter/" target="_blank" onclick="urchinTracker('/outgoing/apps.facebook.com/twitter/?referer=');">Twitter App For Facebook</a>. </li>
<li>There will be a link <a href="http://www.facebook.com/authorize.php?api_key=7cc3dc042ec019b913300d1e7559aad9&amp;v=1.0&amp;ext_perm=status_update&amp;next=http%3A%2F%2Fapps.facebook.com%2Ftwitter%2F&amp;next_cancel=http%3A%2F%2Fapps.facebook.com%2Ftwitter%2F" target="_blank" onclick="urchinTracker('/outgoing/www.facebook.com/authorize.php?api_key=7cc3dc042ec019b913300d1e7559aad9_amp_v=1.0_amp_ext_perm=status_update_amp_next=http_3A_2F_2Fapps.facebook.com_2Ftwitter_2F_amp_next_cancel=http_3A_2F_2Fapps.facebook.com_2Ftwitter_2F&amp;referer=');">Want Twitter to update your Facebook status? Click here!</a> </li>
</ol>
<p>That&#8217;s all ya have to do. There may be a slight delay while getting it setup. Now, when you tweet, your status on Facebook is updated. </p>
<p>By the way, if you are not already my friend on facebook, feel free to <a href="http://www.facebook.com/people/Chris_Reeder/503021752" onclick="urchinTracker('/outgoing/www.facebook.com/people/Chris_Reeder/503021752?referer=');">add me now</a>.</p>
<p>&#160;</p>
<p><strong>TwitPic</strong></p>
<p>Huh? What is TwitPic? TwitPic lets you share photos on <a href="http://twitter.com" target="_blank" onclick="urchinTracker('/outgoing/twitter.com?referer=');">Twitter</a>. It is easy to use.</p>
<ol>
<li>Visit <a href="http://twitpic.com" target="_blank" onclick="urchinTracker('/outgoing/twitpic.com?referer=');">http://twitpic.com</a> </li>
<li>Login with your twitter username and password. </li>
<li>Click on Upload Photo </li>
<li>Select a picture you wish to share and click upload. </li>
<li>Once the picture is uploaded, it will provide a place to write your Tweet and post it. </li>
</ol>
<p>Here is an example: Last night during our Halloween get together, I used my iPhone (most of the <a href="http://chrisreeder.com/?p=607" target="_blank" onclick="urchinTracker('/outgoing/chrisreeder.com/?p=607&amp;referer=');">applications</a> have built in functionality to use TwitPic) to post some pictures.</p>
<blockquote><p><a href="http://twitpic.com/j8za" onclick="urchinTracker('/outgoing/twitpic.com/j8za?referer=');">http://twitpic.com/j8za</a> &#8211; Here is the scariest thing you will see tonight! Any night for that matter!</p>
</blockquote>
<p>Notice the URL that TwitPic generated when I upload my beautiful picture <img src='http://stupidprogrammer.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>&#160;</p>
<p><strong>Badges/ Widgets</strong></p>
<p>If you have a blog, you may want to consider using this. It’s a neat way to let visitors to your blog know what you&#8217;re up to at the moment: Display your latest Twitters there with a customized badge (aka, &quot;widget&quot;). Visit <a title="http://twitter.com/badges" href="http://twitter.com/badges" onclick="urchinTracker('/outgoing/twitter.com/badges?referer=');">http://twitter.com/badges</a> to get started. You can see an example of this on my blog. If viewing this through <a href="http://feeds.feedburner.com/StupidProgrammer" target="_blank" onclick="urchinTracker('/outgoing/feeds.feedburner.com/StupidProgrammer?referer=');">rss</a>, visit <a href="http://ChrisReeder.com" onclick="urchinTracker('/outgoing/ChrisReeder.com?referer=');">http://ChrisReeder.com</a> and look on the right side at section called “What I’m Doing…”</p>
<p>&#160;</p>
<p><strong>TwitterCounter.com</strong></p>
<p>While we are talking blogs, twittercounter.com allows you to display you twitter Follower Count? It is easy.</p>
<ol>
<li>Visit <a href="http://twittercounter.com" onclick="urchinTracker('/outgoing/twittercounter.com?referer=');">http://twittercounter.com</a> </li>
<li>Type you twitter username in the box next to “Check Twitter Account @ </li>
<li>Click the Show button </li>
<li>This will show your follower counts. There is a link near the bottom right to allow the adding for a Counter preview with a link for “Add TwitterCounter to your site”. </li>
<li>This will provide html (code) you can copy and&#160; paste into your blog’s widget or HTML. </li>
</ol>
<p>&#160;</p>
<p><strong>FriendOrFollow.com</strong></p>
<p><a href="http://FriendOrFollow.com" target="_blank" onclick="urchinTracker('/outgoing/FriendOrFollow.com?referer=');">FriendOrFollow.com</a> helps you manage your Twitter contacts. Submit your Twitter username to find out who you&#8217;re following that&#8217;s not following you back, and who&#8217;s following you that you&#8217;re not following back. It’s that easy.</p>
<p>&#160;</p>
<p><strong>TweetBeep.com</strong></p>
<p>This is a really cool site. <a href="http://TweetBeep.com" onclick="urchinTracker('/outgoing/TweetBeep.com?referer=');">http://TweetBeep.com</a> can send emails alerts of twitter conversations that mention you, your products, your company, your church, your city, your website, or anything else! And it is a FREE marketing tool. </p>
<p>&#160;</p>
<p><a href="http://qurlyq.com/" target="_blank" onclick="urchinTracker('/outgoing/qurlyq.com/?referer=');"><strong>QurlyQ.com</strong></a><strong> or/and </strong><a href="http://tinyurl.com" target="_blank" onclick="urchinTracker('/outgoing/tinyurl.com?referer=');"><strong>TinyUrl.com</strong></a></p>
<p>Remember that twitter only allows posts of 140 characters or less. What if I want to share one of these websites with someone through twitter?</p>
<blockquote><p><a href="http://3.141592653589793238462643383279502884197169399375105820974944592.com/" onclick="urchinTracker('/outgoing/3.141592653589793238462643383279502884197169399375105820974944592.com/?referer=');">http://3.141592653589793238462643383279502884197169399375105820974944592.com/</a></p>
<p>or </p>
<p><a href="http://www.thelongestdomainnameintheworldandthensomeandthensomemoreandmore.com/" onclick="urchinTracker('/outgoing/www.thelongestdomainnameintheworldandthensomeandthensomemoreandmore.com/?referer=');">http://www.thelongestdomainnameintheworldandthensomeandthensomemoreandmore.com/</a></p>
</blockquote>
<p>Either of those sites would use most if not all of the characters. Use one of these two sites to shrink the urls.</p>
<blockquote><p><a href="http://qurlyq.com/1m" onclick="urchinTracker('/outgoing/qurlyq.com/1m?referer=');">http://qurlyq.com/1m</a></p>
<p>or </p>
<p><b><a href="http://tinyurl.com/in0l" onclick="urchinTracker('/outgoing/tinyurl.com/in0l?referer=');">http://tinyurl.com/in0l</a></b> </p>
</blockquote>
<p>Way shorter!</p>
<p>&#160;</p>
<p><strong>Twubble</strong></p>
<p>If you are new to twitter, this site is a must! Visit <a title="http://www.crazybob.org/twubble/" href="http://www.crazybob.org/twubble/" onclick="urchinTracker('/outgoing/www.crazybob.org/twubble/?referer=');">http://www.crazybob.org/twubble/</a> and find some friends. It searches your friends and picks out people who you may like to follow.</p>
<p>&#160;</p>
<p><strong>ESV Bible Daily</strong></p>
<p>Simply follow <a title="http://twitter.com/esvdaily" href="http://twitter.com/esvdaily" onclick="urchinTracker('/outgoing/twitter.com/esvdaily?referer=');">http://twitter.com/esvdaily</a> for a verse of the day.</p>
<p>&#160;</p>
<p><strong>Fox News</strong></p>
<p>Follow <a title="http://twitter.com/foxnews" href="http://twitter.com/foxnews" onclick="urchinTracker('/outgoing/twitter.com/foxnews?referer=');">http://twitter.com/foxnews</a> for the latest news!</p>
<p>&#160;</p>
<p><strong>Daily Weather </strong></p>
<p>Visit <a title="http://www.accuweather.com/twitter/" href="http://www.accuweather.com/twitter/" onclick="urchinTracker('/outgoing/www.accuweather.com/twitter/?referer=');">http://www.accuweather.com/twitter/</a> and select your city. Then follow the twitter user for daily weather updates.</p>
<p>&#160;</p>
<p><strong>PicoBuzz</strong></p>
<p><a href="http://picobuzz.com" onclick="urchinTracker('/outgoing/picobuzz.com?referer=');">http://picobuzz.com</a> shows the “buzz words” on twitter. Interesting stuff! Amazing… I was expecting to see Chris Reeder up there with McCain and Obama. <img src='http://stupidprogrammer.com/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' /> </p>
<p>&#160;</p>
<p><strong>Twitter Fan Wiki</strong></p>
<p><a href="http://twitter.pbwiki.com" onclick="urchinTracker('/outgoing/twitter.pbwiki.com?referer=');">http://twitter.pbwiki.com</a> is one awesome site to find just about anything about twitter.</p>
<p>&#160;</p>
<p>I know this is not a complete list, but it does show some really useful sites. If you have any other sites that you like to use, please leave a comment on this post so others can try them, as well.</p>
<p>I trust you learned something during this series on twitter. If you are not currently subscribed to this blog to get all the latest updates, please consider doing so by <a href="http://feeds.feedburner.com/StupidProgrammer" target="_blank" onclick="urchinTracker('/outgoing/feeds.feedburner.com/StupidProgrammer?referer=');">rss</a>.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/K8wJFbDn4xYHpiwSmYBUozT0qOM/0/da"><img src="http://feedads.g.doubleclick.net/~a/K8wJFbDn4xYHpiwSmYBUozT0qOM/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/K8wJFbDn4xYHpiwSmYBUozT0qOM/1/da"><img src="http://feedads.g.doubleclick.net/~a/K8wJFbDn4xYHpiwSmYBUozT0qOM/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Stupidprogrammer?a=97HbenB8wjo:jJHoBIsl5Fk:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/Stupidprogrammer?i=97HbenB8wjo:jJHoBIsl5Fk:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Stupidprogrammer?a=97HbenB8wjo:jJHoBIsl5Fk:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Stupidprogrammer?i=97HbenB8wjo:jJHoBIsl5Fk:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Stupidprogrammer?a=97HbenB8wjo:jJHoBIsl5Fk:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Stupidprogrammer?i=97HbenB8wjo:jJHoBIsl5Fk:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Stupidprogrammer?a=97HbenB8wjo:jJHoBIsl5Fk:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Stupidprogrammer?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Stupidprogrammer?a=97HbenB8wjo:jJHoBIsl5Fk:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Stupidprogrammer?i=97HbenB8wjo:jJHoBIsl5Fk:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Stupidprogrammer/~4/97HbenB8wjo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://stupidprogrammer.com/2008/11/01/twitter-other-uses-and-tools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://stupidprogrammer.com/2008/11/01/twitter-other-uses-and-tools/</feedburner:origLink></item>
		<item>
		<title>Twitter – Tools</title>
		<link>http://feedproxy.google.com/~r/Stupidprogrammer/~3/UC5wVuaaVJQ/</link>
		<comments>http://stupidprogrammer.com/2008/10/31/twitter-tools/#comments</comments>
		<pubDate>Fri, 31 Oct 2008 20:26:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://stupidprogrammer.com/?p=365</guid>
		<description>Over the past four days, we have discussed the following topics: Twitter – What is it?, How to Get Started and Use it, Definitions and Best Practices, and txt Messages and Twitter.
This post is about a few useful tools to better use twitter.
So, after all this discussion of twitter and how to use it, [...]</description>
			<content:encoded><![CDATA[<p><a href="http://stupidprogrammer.com/wp-content/uploads/2008/10/twirl.jpg"><img title="Twirl" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; margin: 0px 0px 10px 10px; border-right-width: 0px" height="244" alt="Twirl" src="http://stupidprogrammer.com/wp-content/uploads/2008/10/twirl-thumb.jpg" width="141" align="right" border="0" /></a> Over the past four days, we have discussed the following topics: <a href="http://stupidprogrammer.com/?p=327">Twitter – What is it?</a>, <a href="http://stupidprogrammer.com/?p=342">How to Get Started and Use it</a>, <a href="http://stupidprogrammer.com/?p=353">Definitions and Best Practices</a>, and <a href="http://stupidprogrammer.com/?p=360" target="_blank">txt Messages and Twitter</a>.</p>
<p>This post is about a few useful tools to better use twitter.</p>
<p>So, after all this discussion of twitter and how to use it, what is the best way to keep informed of people you follow? Let’s take a look at a few tools.</p>
<p><strong>Twitter.com</strong></p>
<p>The twitter.com website is a great place to update status, but I prefer a few other tools.</p>
<p><strong>Twirl</strong></p>
<p>This application can be downloaded for free at <a href="http://www.twhirl.org" onclick="urchinTracker('/outgoing/www.twhirl.org?referer=');">http://www.twhirl.org</a>. It can be&#160; run on Windows and Mac. (I think Linux as well). It has all the features built in like replies, direct messages, managing users, and lookups.</p>
<p><strong>TweetDeck</strong></p>
<p>This application has all the functionality displayed a little different. I like the simplistic design of Twirl, but I like the grouping feature of TweetDeck. It breaks out columns for all tweets, replies, direct messages, and any groups you create. This app can be downloaded free at <a title="http://www.tweetdeck.com" href="http://www.tweetdeck.com" onclick="urchinTracker('/outgoing/www.tweetdeck.com?referer=');">http://www.tweetdeck.com</a></p>
<blockquote><p><a href="http://stupidprogrammer.com/wp-content/uploads/2008/10/tweetdeck.jpg"><img title="TweetDeck" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="237" alt="TweetDeck" src="http://stupidprogrammer.com/wp-content/uploads/2008/10/tweetdeck-thumb.jpg" width="384" border="0" /></a> </p>
</blockquote>
<p>What about on Phones or other devices??? Glad you asked… Yesterday I shared about using <a href="http://stupidprogrammer.com/?p=360" target="_blank">txt Messaging from phones</a>, but there are a few other nice applications available.</p>
<p><strong>iPhone &amp; iTouch</strong></p>
<p>I use a free application called <a href="http://iconfactory.com/software/twitterrific/" target="_blank" onclick="urchinTracker('/outgoing/iconfactory.com/software/twitterrific/?referer=');">Twitterrific</a>. It works really well including a feature for using twitpic. I will share about twitpic tomorrow.</p>
<p><strong>Blackberry</strong></p>
<p>My good friend <a href="http://ChrisElrod.com" target="_blank" onclick="urchinTracker('/outgoing/ChrisElrod.com?referer=');">Chris Elrod</a> mentioned that he uses <a href="http://www.orangatame.com/products/twitterberry/" target="_blank" onclick="urchinTracker('/outgoing/www.orangatame.com/products/twitterberry/?referer=');">Twitterberry</a> for his Crackberry. Can’t really say if it is good or not, just have to take his word for it!</p>
<p><strong>Windows Mobile</strong></p>
<p>I use to have a Windows Mobile phone but retired it when I got my iPhone. I asked good friend <a href="http://cjcraft.com/blog" target="_blank" onclick="urchinTracker('/outgoing/cjcraft.com/blog?referer=');">Chris Craft</a> what application he uses on his phone. He recommended <a href="http://www.tinytwitter.com/" target="_blank" onclick="urchinTracker('/outgoing/www.tinytwitter.com/?referer=');">Tiny Twitter</a>. Though he did say that there was really not any good ones. Maybe he should write one. <img src='http://stupidprogrammer.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>&#160;</p>
<p>As with any of these apps, you will have to decide which application(s) you like and will use. You can find a few others at <a href="http://twitter.com/downloads" onclick="urchinTracker('/outgoing/twitter.com/downloads?referer=');">http://twitter.com/downloads</a> and a TON OF THEM at <a title="http://twitter.pbwiki.com/Apps" href="http://twitter.pbwiki.com/Apps" onclick="urchinTracker('/outgoing/twitter.pbwiki.com/Apps?referer=');">http://twitter.pbwiki.com/Apps</a>.</p>
<p>&#160;</p>
<p>If you have any applications/tools that you use, I would love to hear about them. Please leave a comment for all to see, so they can try them out too.</p>
<p>Tomorrow’s post will be the final installment of this series (serious this time). <a href="http://feeds.feedburner.com/StupidProgrammer" target="_blank" onclick="urchinTracker('/outgoing/feeds.feedburner.com/StupidProgrammer?referer=');">Stay tuned</a>…</p>

<p><a href="http://feedads.g.doubleclick.net/~a/zloqXHGgy-Vxb5z5bsXnz7Zxmo0/0/da"><img src="http://feedads.g.doubleclick.net/~a/zloqXHGgy-Vxb5z5bsXnz7Zxmo0/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/zloqXHGgy-Vxb5z5bsXnz7Zxmo0/1/da"><img src="http://feedads.g.doubleclick.net/~a/zloqXHGgy-Vxb5z5bsXnz7Zxmo0/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Stupidprogrammer?a=UC5wVuaaVJQ:2qaDXjYvOg0:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/Stupidprogrammer?i=UC5wVuaaVJQ:2qaDXjYvOg0:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Stupidprogrammer?a=UC5wVuaaVJQ:2qaDXjYvOg0:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Stupidprogrammer?i=UC5wVuaaVJQ:2qaDXjYvOg0:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Stupidprogrammer?a=UC5wVuaaVJQ:2qaDXjYvOg0:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Stupidprogrammer?i=UC5wVuaaVJQ:2qaDXjYvOg0:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Stupidprogrammer?a=UC5wVuaaVJQ:2qaDXjYvOg0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Stupidprogrammer?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Stupidprogrammer?a=UC5wVuaaVJQ:2qaDXjYvOg0:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Stupidprogrammer?i=UC5wVuaaVJQ:2qaDXjYvOg0:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Stupidprogrammer/~4/UC5wVuaaVJQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://stupidprogrammer.com/2008/10/31/twitter-tools/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://stupidprogrammer.com/2008/10/31/twitter-tools/</feedburner:origLink></item>
		<item>
		<title>Twitter – txt Messages and Twitter</title>
		<link>http://feedproxy.google.com/~r/Stupidprogrammer/~3/lFeT_YlOpbA/</link>
		<comments>http://stupidprogrammer.com/2008/10/30/twitter-txt-messages-and-twitter/#comments</comments>
		<pubDate>Thu, 30 Oct 2008 16:24:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[WebSites]]></category>

		<guid isPermaLink="false">http://stupidprogrammer.com/?p=360</guid>
		<description>Over the past three days, we have discuss the following topics: Twitter – What is it?, How to Get Started and Use it, and Definitions and Best Practices.
So, the question of the day is… Can I use txt messaging on my phone to send and receive tweets?
Yes you can!
 Twitter allows its users to tweet [...]</description>
			<content:encoded><![CDATA[<p>Over the past three days, we have discuss the following topics: <a href="http://stupidprogrammer.com/?p=327" target="_blank">Twitter – What is it?</a>, <a href="http://stupidprogrammer.com/?p=342">How to Get Started and Use it</a>, and <a href="http://stupidprogrammer.com/?p=353" target="_blank">Definitions and Best Practices</a>.</p>
<p>So, the question of the day is… Can I use txt messaging on my phone to send and receive tweets?</p>
<p>Yes you can!</p>
<p><a href="http://stupidprogrammer.com/wp-content/uploads/2008/10/twitterdevicesetup.jpg"><img title="TwitterDeviceSetup" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; margin: 0px 0px 10px 10px; border-right-width: 0px" height="97" alt="TwitterDeviceSetup" src="http://stupidprogrammer.com/wp-content/uploads/2008/10/twitterdevicesetup-thumb.jpg" width="244" align="right" border="0" /></a> Twitter allows its users to tweet by using txt messages; both sending &amp; receiving tweets, replies and direct messages.</p>
<p>So, how do I set it up?</p>
<ol>
<li>Login to <a href="http://twitter.com" target="_blank" onclick="urchinTracker('/outgoing/twitter.com?referer=');">twitter.com</a> using your credentials. </li>
<li>Click Settings link, and then select the Devices tab. (see picture to right) </li>
<li>Enter your cell phone number in the box preceded with a “+” and country code. (example: <small>+12125551212</small>) </li>
<li>Select the check box to allow twitter to send txt messages to your phone and then click Save. </li>
<li>This will send a verification code in a txt message to your phone. </li>
<li>When the code arrives on your phone, txt the verification code to 40404 (Twitter). </li>
<li>All done. </li>
</ol>
<p><a href="http://stupidprogrammer.com/wp-content/uploads/2008/10/twitterdevicesetup2.jpg"><img title="TwitterDeviceSetup2" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; margin: 0px 0px 10px 10px; border-right-width: 0px" height="131" alt="TwitterDeviceSetup2" src="http://stupidprogrammer.com/wp-content/uploads/2008/10/twitterdevicesetup2-thumb.jpg" width="244" align="right" border="0" /></a> What other options do I need to be aware of?</p>
<p>After your phone is setup, the device tab will look like the one to the right (my cell number blacked out for obvious reasons).</p>
<p>To use txt messaging to update twitter, send your text messages to 40404. Don’t forget that twitter has a 140 character limit.</p>
<p>Using this screen, you can turn the device updates on and off. ONE BIG SETTING is located on this screen. Notice the check box to turn off updates during these hours. This will automatically turn off the txt updates during the time of the day (or night) you select. This will prevent being awakened by a txt message in the middle of the night because someone tweets at 2:30 AM. (right <a href="http://www.deanlisenby.com/" target="_blank" onclick="urchinTracker('/outgoing/www.deanlisenby.com/?referer=');">Dean</a>?)</p>
<p><a href="http://stupidprogrammer.com/wp-content/uploads/2008/10/txton.jpg"><img title="TxtOn" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; margin: 0px 0px 10px 10px; border-right-width: 0px" height="157" alt="TxtOn" src="http://stupidprogrammer.com/wp-content/uploads/2008/10/txton-thumb.jpg" width="145" align="right" border="0" /></a>Twitter allows more than an all or nothing setting for receiving txt messages. It allows filtering by individual followings (is that a word?).</p>
<p>It allows the ability to turn txt messages on and off at a person level. You can find &amp; control this information by clicking on the link to see the people you follow. </p>
<p>Then simply turn device updates “On” for the people you desire to receive txt message updates on.</p>
</p>
</p>
<p>Don&#8217;t forget, standard txt message charges apply through your cell phone carrier. Twitter sending the txt messages does not cost anything. Be careful, if you follow a lot of people and they twitter a lot… the quantity of txt messages can add up quick.</p>
<p>Tomorrow&#8217;s post will be the final installment of this series (maybe). <a href="http://feeds.feedburner.com/StupidProgrammer" target="_blank" onclick="urchinTracker('/outgoing/feeds.feedburner.com/StupidProgrammer?referer=');">Stay tuned</a>…</p>

<p><a href="http://feedads.g.doubleclick.net/~a/xowxbAJIjyhJu9PEn-NjFf6PJQg/0/da"><img src="http://feedads.g.doubleclick.net/~a/xowxbAJIjyhJu9PEn-NjFf6PJQg/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/xowxbAJIjyhJu9PEn-NjFf6PJQg/1/da"><img src="http://feedads.g.doubleclick.net/~a/xowxbAJIjyhJu9PEn-NjFf6PJQg/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Stupidprogrammer?a=lFeT_YlOpbA:tZfHfz-efJU:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/Stupidprogrammer?i=lFeT_YlOpbA:tZfHfz-efJU:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Stupidprogrammer?a=lFeT_YlOpbA:tZfHfz-efJU:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Stupidprogrammer?i=lFeT_YlOpbA:tZfHfz-efJU:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Stupidprogrammer?a=lFeT_YlOpbA:tZfHfz-efJU:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Stupidprogrammer?i=lFeT_YlOpbA:tZfHfz-efJU:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Stupidprogrammer?a=lFeT_YlOpbA:tZfHfz-efJU:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Stupidprogrammer?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Stupidprogrammer?a=lFeT_YlOpbA:tZfHfz-efJU:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Stupidprogrammer?i=lFeT_YlOpbA:tZfHfz-efJU:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Stupidprogrammer/~4/lFeT_YlOpbA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://stupidprogrammer.com/2008/10/30/twitter-txt-messages-and-twitter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://stupidprogrammer.com/2008/10/30/twitter-txt-messages-and-twitter/</feedburner:origLink></item>
		<item>
		<title>Twitter – Definitions and Best Practices</title>
		<link>http://feedproxy.google.com/~r/Stupidprogrammer/~3/EQbgZxUGGYo/</link>
		<comments>http://stupidprogrammer.com/2008/10/29/twitter-definitions-and-best-practices/#comments</comments>
		<pubDate>Wed, 29 Oct 2008 19:52:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[WebSites]]></category>

		<guid isPermaLink="false">http://stupidprogrammer.com/?p=353</guid>
		<description>“Like a swallow, like a crane, so I twitter…” – Isaiah 38:14a (save your emails, I already know this is not referring to twitter.com)
Over the past two days, we have learned what twitter is and how to use it.
Today, we are going to look at a few best practices. I think it is best [...]</description>
			<content:encoded><![CDATA[<p><a href="http://stupidprogrammer.com/wp-content/uploads/2008/10/twittersettings.jpg"><img title="TwitterSettings" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; margin: 0px 0px 10px 10px; border-right-width: 0px" height="254" alt="TwitterSettings" src="http://stupidprogrammer.com/wp-content/uploads/2008/10/twittersettings-thumb.jpg" width="212" align="right" border="0" /></a> “Like a swallow, like a crane, so I twitter…” – Isaiah 38:14a (save your emails, I already know this is not referring to twitter.com)</p>
<p>Over the past two days, we have learned <a href="http://chrisreeder.com/?p=569" onclick="urchinTracker('/outgoing/chrisreeder.com/?p=569&amp;referer=');">what twitter is</a> and <a href="http://chrisreeder.com/?p=584" onclick="urchinTracker('/outgoing/chrisreeder.com/?p=584&amp;referer=');">how to use it</a>.</p>
<p>Today, we are going to look at a few best practices. I think it is best to start with a few definitions.</p>
<p><strong>Tweet</strong></p>
<blockquote><p>A tweet is a post or status update on <a href="http://webtrends.about.com/od/profiles/p/twitter-profile.htm" onclick="urchinTracker('/outgoing/webtrends.about.com/od/profiles/p/twitter-profile.htm?referer=');">Twitter</a></p>
</blockquote>
<p><strong>Reply</strong></p>
<blockquote><p>A reply is when you respond a tweet in reference to another tweet      </p>
<p>Example: <a href="http://twitter.com/chrisreeder" onclick="urchinTracker('/outgoing/twitter.com/chrisreeder?referer=');">chrisreeder</a> tweets       <br /><a href="http://StupidProgrammer.com">http://StupidProgrammer.com</a> is the greatest blog on the web!</p>
<p>Your reply would be:      <br />@chrisreeder, no it’s not: <a href="http://ChrisReeder.com" onclick="urchinTracker('/outgoing/ChrisReeder.com?referer=');">http://ChrisReeder.com</a> is!       </p>
<p>Notice the @ to reference the username you are replying to on twitter.</p>
</blockquote>
<p><strong>Direct Message</strong></p>
<blockquote><p>You can send messages private so only you and the recipient can see them. The way you do this is to start the tweet with a “d” followed by the username of the person you are sending the private message.</p>
<p>Example:      <br />d jayson_r Hey man, you got lunch plans?</p>
<p>Notice that on direct messages, the @ sign is <strong>not</strong> used.</p>
<p>RULE: In order to send a direct message, the person you send the direct message must be following you. If you are following them but they are not following you, it will not work. FYI: You can Reply to anyone.</p>
</blockquote>
<p><strong>ReTweet</strong></p>
<blockquote><p>This is simply tweeting something that someone else tweeted and giving them credit for it.</p>
<p>Examples:      <br />Retweeting @lukefine: at Athens with it dept birthday crew.       <br />or       <br />rt @DanielDulaney: NEW BLOG POST/// Urgent Prayer Request&#160;&#160;&#160; <a href="http://www.danieldulaney.wordpress.com" target="_blank" onclick="urchinTracker('/outgoing/www.danieldulaney.wordpress.com?referer=');">www.danieldulaney.wordpress.com</a></p>
</blockquote>
<p><a href="http://stupidprogrammer.com/wp-content/uploads/2008/10/twitterfavorites.jpg"><img title="TwitterFavorites" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; margin: 0px 0px 10px 10px; border-right-width: 0px" height="30" alt="TwitterFavorites" src="http://stupidprogrammer.com/wp-content/uploads/2008/10/twitterfavorites-thumb.jpg" width="244" align="right" border="0" /></a><strong> Favorites</strong></p>
<blockquote><p>Favorites allow the ability to mark a tweet with a yellow star so you can find it easy in the future. You can click the favorites link on the right side of twitter to display them.</p>
</blockquote>
<p><strong>Following &amp; Followers</strong></p>
<blockquote><p>Yes… You guess it! This is list of people that you are following and a list of those that are following you.</p>
<p>Let’s say that someone starts following you and you don’t want them to do that. You can block them from being able to follow you. To do this, click on the followers link to see all your followers. Scroll until you find the person.</p>
<p><a href="http://stupidprogrammer.com/wp-content/uploads/2008/10/blockontwitter.jpg"><img title="BlockOnTwitter" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="71" alt="BlockOnTwitter" src="http://stupidprogrammer.com/wp-content/uploads/2008/10/blockontwitter-thumb.jpg" width="234" border="0" /></a> </p>
<p>Then simply click the block button. Then that person will be blocked from following you.</p>
</blockquote>
<p><strong>Security</strong></p>
<blockquote><p>Don’t tweet your phone numbers, credit card numbers, social security numbers, etc that you wouldn’t want just anyone in the world to have.</p>
<p>The data on twitter makes up a part of a public timeline. Check it out at <a title="http://twitter.com/public_timeline" href="http://twitter.com/public_timeline" onclick="urchinTracker('/outgoing/twitter.com/public_timeline?referer=');">http://twitter.com/public_timeline</a></p>
<p>You can setup your account to not be listed in the public timeline. Will cover in next section.</p>
</blockquote>
<p>The Settings section of your account is often overlooked. Let’s take a look at each setting.</p>
<p><strong>Settings: Account Tab</strong></p>
<blockquote><p><strong>Name:</strong> This is important so people can find you on twitter and shows on your twitter profile.</p>
<p><strong>Username:</strong> This is how you are known on twitter. This is how people will access your profile, reply to your tweets, etc. Your profile location is also determined by you username (<a href="http://twitter.com/yourusername" onclick="urchinTracker('/outgoing/twitter.com/yourusername?referer=');">http://twitter.com/yourusername</a>). You can also change your username if you are not happy with your current one. You will not loose any followers; twitter will keep them for ya.</p>
<p><strong>Email:</strong> To allow people to find you by searching on email addresses. This address is also used for alerts from twitter.</p>
<p><strong>Time Zone:</strong> duh…</p>
<p><strong>More Info URL:</strong> Put your blog or website address in this box. It will display on public profile and create a link back to your blog.</p>
<p><strong>One Line Bio:</strong> Brief description of you. This will also display on you public profile and be used to allow people to find you on twitter.</p>
<p><strong>Location:</strong> It is important to set this to allow people to find you by searching. This piece of information also displays on your profile.</p>
<p><strong>Language:</strong> hum… wonder what that does. <img src='http://stupidprogrammer.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p><strong>Protect my updates:</strong> This is the setting I mentioned up in the security section. If you check this box, you will have to approve anyone that desires to follow you. Or another way to look at it; Only people you approve will be able to follow you. <small>If this is checked, you WILL NOT be on the <a href="http://twitter.com/public_timeline" onclick="urchinTracker('/outgoing/twitter.com/public_timeline?referer=');">public timeline</a>.</small></p>
</blockquote>
<p><small><strong>Settings: Password Tab:</strong> is used to change your password. BTW: Always use good passwords. Never use stuff like kids names or wife’s birthday. Apply this rule to any online account you own.</small></p>
<p><small><strong>Settings: Devices Tab:</strong> We will cover this tomorrow.</small></p>
<p><small><a href="http://stupidprogrammer.com/wp-content/uploads/2008/10/twitternotices.jpg"><img title="TwitterNotices" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; margin: 0px 0px 10px 10px; border-right-width: 0px" height="142" alt="TwitterNotices" src="http://stupidprogrammer.com/wp-content/uploads/2008/10/twitternotices-thumb.jpg" width="244" align="right" border="0" /></a><strong> Settings: Notices Tab</strong></small></p>
<blockquote><p><small><strong>Auto Nudge:</strong> This will txt your phone if you have not written a tweet in the past 24 hours.</small></p>
<p><small><strong>@ Replies: </strong></small></p>
<ul>
<li><strong>all @replies: </strong>see all of the @replies made by people you follow, whether or not you follow the person to whom the reply is directed.&#160; </li>
<li><strong>@replies to the people I&#8217;m following: </strong>see @replies from people you follow directed toward other people that you also follow. This is the default setting. </li>
<li><strong>no @replies: </strong>never see any @replies in your timeline, ever </li>
</ul>
</blockquote>
<blockquote><p><small>My personal preference is <strong>all @replies</strong>. If someone mentions me on twitter, regardless if I follow them… I want to know about it.         </p>
<p>The next three are very self explanatory.</small></p>
<p><strong>New Follower Emails:</strong> Email when someone starts following me</p>
<p><strong>Direct Text Emails:</strong> Email when I receive a new direct message</p>
<p><strong>Email Newsletter:</strong> Email with new twitter news.</p>
</blockquote>
<p><a href="http://stupidprogrammer.com/wp-content/uploads/2008/10/default-profile-bigger.png"><img title="default_profile_bigger" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; margin: 0px 0px 10px 10px; border-right-width: 0px" height="77" alt="default_profile_bigger" src="http://stupidprogrammer.com/wp-content/uploads/2008/10/default-profile-bigger-thumb.png" width="77" align="right" border="0" /></a><strong> Settings: Picture</strong></p>
<blockquote><p><strong>PLEASE! PLEASE! PLEASE!</strong></p>
<p>Update your picture to something other than the one twitter puts by default (see picture to the right). It does not have to be a picture of you. Put a college mascot, church logo, or something else… just not the default one <img src='http://stupidprogrammer.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
</blockquote>
<p><strong>Settings: Design</strong></p>
<blockquote><p>A way to make your public twitter profile more attractive. There are a few themes available. You can also change the background image or change your design colors.</p>
</blockquote>
<p>Ok, this has turned into a lengthy post!</p>
<p>I know this is not an exhaustive list of best practices but I hope it helps with understanding. For a more complete list of Q&amp;A and commands, visit <a title="http://help.twitter.com/index.php?pg=kb.page&amp;id=26" href="http://help.twitter.com/index.php?pg=kb.page&amp;id=26" onclick="urchinTracker('/outgoing/help.twitter.com/index.php?pg=kb.page_amp_id=26&amp;referer=');">http://help.twitter.com/index.php?pg=kb.page&amp;id=26</a> and <a title="http://help.twitter.com/index.php?pg=kb.page&amp;id=75" href="http://help.twitter.com/index.php?pg=kb.page&amp;id=75" target="_blank" onclick="urchinTracker('/outgoing/help.twitter.com/index.php?pg=kb.page_amp_id=75&amp;referer=');">http://help.twitter.com/index.php?pg=kb.page&amp;id=75</a></p>
<p>If you have any specific questions, please feel free to leave me a comment.</p>
<p>Tomorrow’s post will be the next installment of this series. <a href="http://feeds.feedburner.com/StupidProgrammer" target="_blank" onclick="urchinTracker('/outgoing/feeds.feedburner.com/StupidProgrammer?referer=');">Stay tuned</a>…</p>

<p><a href="http://feedads.g.doubleclick.net/~a/XeBfjLsP_2HcUsrMUTnMMJAi1g0/0/da"><img src="http://feedads.g.doubleclick.net/~a/XeBfjLsP_2HcUsrMUTnMMJAi1g0/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/XeBfjLsP_2HcUsrMUTnMMJAi1g0/1/da"><img src="http://feedads.g.doubleclick.net/~a/XeBfjLsP_2HcUsrMUTnMMJAi1g0/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Stupidprogrammer?a=EQbgZxUGGYo:tlYjuTpn8V0:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/Stupidprogrammer?i=EQbgZxUGGYo:tlYjuTpn8V0:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Stupidprogrammer?a=EQbgZxUGGYo:tlYjuTpn8V0:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Stupidprogrammer?i=EQbgZxUGGYo:tlYjuTpn8V0:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Stupidprogrammer?a=EQbgZxUGGYo:tlYjuTpn8V0:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Stupidprogrammer?i=EQbgZxUGGYo:tlYjuTpn8V0:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Stupidprogrammer?a=EQbgZxUGGYo:tlYjuTpn8V0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Stupidprogrammer?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Stupidprogrammer?a=EQbgZxUGGYo:tlYjuTpn8V0:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Stupidprogrammer?i=EQbgZxUGGYo:tlYjuTpn8V0:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Stupidprogrammer/~4/EQbgZxUGGYo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://stupidprogrammer.com/2008/10/29/twitter-definitions-and-best-practices/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://stupidprogrammer.com/2008/10/29/twitter-definitions-and-best-practices/</feedburner:origLink></item>
	</channel>
</rss>
