<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title><![CDATA[Christian Furs - Christian Furry Community - Computers and Gadgets]]></title>
		<link>http://christianfurs.net/</link>
		<description><![CDATA[Christian Furs - Christian Furry Community - http://christianfurs.net]]></description>
		<pubDate>Fri, 03 Sep 2010 06:26:42 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[Visual Basic for Applications]]></title>
			<link>http://christianfurs.net/thread-1369.html</link>
			<pubDate>Tue, 13 Apr 2010 21:08:26 +0000</pubDate>
			<guid isPermaLink="false">http://christianfurs.net/thread-1369.html</guid>
			<description><![CDATA[Well, since there's been so many threads recently about learning new languages, I thought why not a thread about learning a scripting language.<br />
<br />
Visual Basic for Applications is what I'm learning in school right now. It's a pretty simple language, but also a bit of a useless one. But, it's an interesting introduction to programing. I've actually been having a bit of fun with it.<br />
<br />
So, what VBA is, is a language mostly used in scripting Microsoft Office. However, it is used for other programs as well.<br />
What the class I'm in, and what this thread will try to do, is teach how to script Office to do things it's not meant to do.<br />
<br />
VBA in office is a bit of a controversial topic, because there's some people who think its great and want to keep it in future versions of Office, others that think its horrid and a tremendous security risk, and 90% of the users who didn't even know it existed.<br />
Its also a very old function of Office. This aspect of the software has <span style="font-style: italic;">not</span> changed at all since Office 97 came out. The book we're using in class was written in 2000 and is still applicable today.<br />
<br />
So, let's get started with some basics.<br />
Obviously, you will need Microsoft Office. Just about any version will do, I'm using 2007 myself so everything here will be based on that. <br />
<br />
First, we need to tweak some settings.<br />
Go ahead and open up Word. Click the Office button, then "Word Options". <br />
Once there, click the checkbox next to "Show Developer tab in the ribbon" and click OK. This will give you a new tab in all Office applications.<br />
<br />
The first thing we'll do, is record a simple macro. A macro is a script that automates something.<br />
<br />
Click the Developer tab on the ribbon, and in the Code group, you should see "Record Macro". Go ahead and click that, and click OK on the box that comes up.<br />
You are now recording your actions within the document.<br />
Now, type "This is my first macro"; hit "Stop Recording" on the ribbon.<br />
Click "Macros" in the Code group on the ribbon, a box should come up showing what macros you have recorded.<br />
Click on the macro we just made to select it, it should be named Macro1. Click "Edit" off to the right.<br />
<br />
This should bring up a VB editor window and the code that generates the macro we just recorded.<br />
Let's take a look at the macro.<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>Sub Macro1()<br />
'<br />
' Macro1 Macro<br />
'<br />
'<br />
&nbsp;&nbsp;&nbsp;&nbsp;Selection.TypeText Text:="This is my first macro"<br />
End Sub</code></div></div>
<br />
So, what is going on here?<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>Sub Macro1()</code></div></div>
This indicates that we have a sub procedure, and that the name of that procedure is "Macro1".<br />
<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>'<br />
' Macro1 Macro<br />
'<br />
'</code></div></div>
This is a comment, it does nothing. It tells whoever is looking at the code what it is. Comments can be anything, and I'll show you more later.<br />
<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>Selection.TypeText Text:="This is my first macro"</code></div></div>
This is what our macro is actually doing. It's typing text ("typetext") into the selection (where the cursor is), and the text it typed was "this is my first macro". Pretty simple, isn't it?<br />
<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>End Sub</code></div></div>
End of the macro.<br />
<br />
So, lets have some fun with this. In the VB editor here, we can tweak our macro to do other things.<br />
<br />
Lets have it come up with a little message box saying it was successful. <br />
The code for a message box is pretty simple. Start by entering the following:<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>Selection.TypeText Text:="This is my first macro"<br />
&nbsp;&nbsp;&nbsp;&nbsp;msgbox</code></div></div>
When you hit space after typing "msgbox", you will see a little help popup. So, lets continue on.<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>msgbox "Great Success!",</code></div></div>
After you put the , at the end, another list of options will come up showing what kind of buttons we want on our box. The default is "okonly", so we can simply put another comma here. I would encourage you to play around with the different options here and see what they do.<br />
Lets continue<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>msgbox "Great Success!",,"woot"</code></div></div>
With this, "woot" will be shown as the title of our message box. This is optional of course.<br />
We won't worry about the other options for now. Hit the enter key and review your code.<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>Sub Macro2()<br />
'<br />
' Macro2 Macro<br />
'<br />
'<br />
&nbsp;&nbsp;&nbsp;&nbsp;Selection.TypeText Text:="This is my first macro"<br />
&nbsp;&nbsp;&nbsp;&nbsp;MsgBox "Great success!", , "Woot"<br />
&nbsp;&nbsp;&nbsp;&nbsp;<br />
End Sub</code></div></div>
<br />
To test it, simply hit F5 on your keyboard.<br />
<!-- start: postbit_attachments_thumbnails_thumbnail -->
<a href="attachment.php?aid=56" target="_blank"><img src="attachment.php?thumbnail=56" class="attachment" alt="" /></a>&nbsp;&nbsp;&nbsp;
<!-- end: postbit_attachments_thumbnails_thumbnail --><br />
<br />
So, I'll leave that as our first lesson. I'll see how well this thread goes over before posting more.]]></description>
			<content:encoded><![CDATA[Well, since there's been so many threads recently about learning new languages, I thought why not a thread about learning a scripting language.<br />
<br />
Visual Basic for Applications is what I'm learning in school right now. It's a pretty simple language, but also a bit of a useless one. But, it's an interesting introduction to programing. I've actually been having a bit of fun with it.<br />
<br />
So, what VBA is, is a language mostly used in scripting Microsoft Office. However, it is used for other programs as well.<br />
What the class I'm in, and what this thread will try to do, is teach how to script Office to do things it's not meant to do.<br />
<br />
VBA in office is a bit of a controversial topic, because there's some people who think its great and want to keep it in future versions of Office, others that think its horrid and a tremendous security risk, and 90% of the users who didn't even know it existed.<br />
Its also a very old function of Office. This aspect of the software has <span style="font-style: italic;">not</span> changed at all since Office 97 came out. The book we're using in class was written in 2000 and is still applicable today.<br />
<br />
So, let's get started with some basics.<br />
Obviously, you will need Microsoft Office. Just about any version will do, I'm using 2007 myself so everything here will be based on that. <br />
<br />
First, we need to tweak some settings.<br />
Go ahead and open up Word. Click the Office button, then "Word Options". <br />
Once there, click the checkbox next to "Show Developer tab in the ribbon" and click OK. This will give you a new tab in all Office applications.<br />
<br />
The first thing we'll do, is record a simple macro. A macro is a script that automates something.<br />
<br />
Click the Developer tab on the ribbon, and in the Code group, you should see "Record Macro". Go ahead and click that, and click OK on the box that comes up.<br />
You are now recording your actions within the document.<br />
Now, type "This is my first macro"; hit "Stop Recording" on the ribbon.<br />
Click "Macros" in the Code group on the ribbon, a box should come up showing what macros you have recorded.<br />
Click on the macro we just made to select it, it should be named Macro1. Click "Edit" off to the right.<br />
<br />
This should bring up a VB editor window and the code that generates the macro we just recorded.<br />
Let's take a look at the macro.<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>Sub Macro1()<br />
'<br />
' Macro1 Macro<br />
'<br />
'<br />
&nbsp;&nbsp;&nbsp;&nbsp;Selection.TypeText Text:="This is my first macro"<br />
End Sub</code></div></div>
<br />
So, what is going on here?<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>Sub Macro1()</code></div></div>
This indicates that we have a sub procedure, and that the name of that procedure is "Macro1".<br />
<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>'<br />
' Macro1 Macro<br />
'<br />
'</code></div></div>
This is a comment, it does nothing. It tells whoever is looking at the code what it is. Comments can be anything, and I'll show you more later.<br />
<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>Selection.TypeText Text:="This is my first macro"</code></div></div>
This is what our macro is actually doing. It's typing text ("typetext") into the selection (where the cursor is), and the text it typed was "this is my first macro". Pretty simple, isn't it?<br />
<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>End Sub</code></div></div>
End of the macro.<br />
<br />
So, lets have some fun with this. In the VB editor here, we can tweak our macro to do other things.<br />
<br />
Lets have it come up with a little message box saying it was successful. <br />
The code for a message box is pretty simple. Start by entering the following:<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>Selection.TypeText Text:="This is my first macro"<br />
&nbsp;&nbsp;&nbsp;&nbsp;msgbox</code></div></div>
When you hit space after typing "msgbox", you will see a little help popup. So, lets continue on.<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>msgbox "Great Success!",</code></div></div>
After you put the , at the end, another list of options will come up showing what kind of buttons we want on our box. The default is "okonly", so we can simply put another comma here. I would encourage you to play around with the different options here and see what they do.<br />
Lets continue<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>msgbox "Great Success!",,"woot"</code></div></div>
With this, "woot" will be shown as the title of our message box. This is optional of course.<br />
We won't worry about the other options for now. Hit the enter key and review your code.<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>Sub Macro2()<br />
'<br />
' Macro2 Macro<br />
'<br />
'<br />
&nbsp;&nbsp;&nbsp;&nbsp;Selection.TypeText Text:="This is my first macro"<br />
&nbsp;&nbsp;&nbsp;&nbsp;MsgBox "Great success!", , "Woot"<br />
&nbsp;&nbsp;&nbsp;&nbsp;<br />
End Sub</code></div></div>
<br />
To test it, simply hit F5 on your keyboard.<br />
<!-- start: postbit_attachments_thumbnails_thumbnail -->
<a href="attachment.php?aid=56" target="_blank"><img src="attachment.php?thumbnail=56" class="attachment" alt="" /></a>&nbsp;&nbsp;&nbsp;
<!-- end: postbit_attachments_thumbnails_thumbnail --><br />
<br />
So, I'll leave that as our first lesson. I'll see how well this thread goes over before posting more.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[I'm getting an iPod Touch!]]></title>
			<link>http://christianfurs.net/thread-1348.html</link>
			<pubDate>Wed, 07 Apr 2010 22:28:17 +0000</pubDate>
			<guid isPermaLink="false">http://christianfurs.net/thread-1348.html</guid>
			<description><![CDATA[I have been saving my money for a while (seeing as I'm too young to get a job yet), and I FINALLY have enough money to get an iPod Touch <img src="http://christianfurs.net/images/smilies/biggrin.gif" style="vertical-align: middle;" border="0" alt="Big Grin" title="Big Grin" />! I'm getting an 8 gb 3G, and I can't wait! Do you think it's worth the &#36;176 I'm paying for it, and if you have one, what ups and downs do they have?]]></description>
			<content:encoded><![CDATA[I have been saving my money for a while (seeing as I'm too young to get a job yet), and I FINALLY have enough money to get an iPod Touch <img src="http://christianfurs.net/images/smilies/biggrin.gif" style="vertical-align: middle;" border="0" alt="Big Grin" title="Big Grin" />! I'm getting an 8 gb 3G, and I can't wait! Do you think it's worth the &#36;176 I'm paying for it, and if you have one, what ups and downs do they have?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Facebook virus]]></title>
			<link>http://christianfurs.net/thread-1290.html</link>
			<pubDate>Thu, 18 Mar 2010 20:06:50 +0000</pubDate>
			<guid isPermaLink="false">http://christianfurs.net/thread-1290.html</guid>
			<description><![CDATA[Heard this on the news when I woke up and figured I'd warn everyone here.<br />
<br />
Hackers are sending out a mail saying your password has been changed, in it is a link, DONT CLICK IT. <br />
<br />
If you do they get every password on your computer, even banking passwords.<br />
<br />
Heres a link to a news place about it: <a href="http://www.reuters.com/article/idUSTRE62G5A420100318" target="_blank">http://www.reuters.com/article/idUSTRE62G5A420100318</a>]]></description>
			<content:encoded><![CDATA[Heard this on the news when I woke up and figured I'd warn everyone here.<br />
<br />
Hackers are sending out a mail saying your password has been changed, in it is a link, DONT CLICK IT. <br />
<br />
If you do they get every password on your computer, even banking passwords.<br />
<br />
Heres a link to a news place about it: <a href="http://www.reuters.com/article/idUSTRE62G5A420100318" target="_blank">http://www.reuters.com/article/idUSTRE62G5A420100318</a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[The ipad.  Awesome or Pointless? Or Both?]]></title>
			<link>http://christianfurs.net/thread-1189.html</link>
			<pubDate>Sun, 07 Feb 2010 06:55:19 +0000</pubDate>
			<guid isPermaLink="false">http://christianfurs.net/thread-1189.html</guid>
			<description><![CDATA[So, after seeing the release of the ipad, i figured to look up its stats.  Its, uhh, cool, i guess. Well, honestly, i think that its pretty pointless.  Jumbo sized ipod touch? i think so.  Whats your opinion?]]></description>
			<content:encoded><![CDATA[So, after seeing the release of the ipad, i figured to look up its stats.  Its, uhh, cool, i guess. Well, honestly, i think that its pretty pointless.  Jumbo sized ipod touch? i think so.  Whats your opinion?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Windows 7]]></title>
			<link>http://christianfurs.net/thread-936.html</link>
			<pubDate>Fri, 23 Oct 2009 06:26:22 +0000</pubDate>
			<guid isPermaLink="false">http://christianfurs.net/thread-936.html</guid>
			<description><![CDATA[OH BOY OH BOY OH BOY!! I bought it this morning! <br />
And... its... meh... to be honest. <br />
I don't really see much of an improvement over XP or Server 2008 (the last two Windows systems I used). It leaves me longing for something more... I think I still prefer Linux. <br />
It broke my bootloader too, so I can't get back to Linux right now. I'm not exactly happy about that. <br />
Oh well. I have it. I paid &#36;30 for it. <br />
<br />
What do you guys think?]]></description>
			<content:encoded><![CDATA[OH BOY OH BOY OH BOY!! I bought it this morning! <br />
And... its... meh... to be honest. <br />
I don't really see much of an improvement over XP or Server 2008 (the last two Windows systems I used). It leaves me longing for something more... I think I still prefer Linux. <br />
It broke my bootloader too, so I can't get back to Linux right now. I'm not exactly happy about that. <br />
Oh well. I have it. I paid &#36;30 for it. <br />
<br />
What do you guys think?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Linux]]></title>
			<link>http://christianfurs.net/thread-929.html</link>
			<pubDate>Tue, 20 Oct 2009 15:58:17 +0000</pubDate>
			<guid isPermaLink="false">http://christianfurs.net/thread-929.html</guid>
			<description><![CDATA[I just installed Ubuntu Desktop Linux. Being very computer literate and all, Linux is so far not posing any problems. In fact, I like it better than XP so far due to increased stability, speed, better graphics, and of course being free. I was having a load of problems with XP and the virus scanner I was running that was supposed to be "light" on the system, but now Ubuntu is running fast and stable. Anyone else out there have a Linux OS? Any tips for someone fairly new to it like me?]]></description>
			<content:encoded><![CDATA[I just installed Ubuntu Desktop Linux. Being very computer literate and all, Linux is so far not posing any problems. In fact, I like it better than XP so far due to increased stability, speed, better graphics, and of course being free. I was having a load of problems with XP and the virus scanner I was running that was supposed to be "light" on the system, but now Ubuntu is running fast and stable. Anyone else out there have a Linux OS? Any tips for someone fairly new to it like me?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[SPAH'S SAPPIN' MAH ICECHAT!]]></title>
			<link>http://christianfurs.net/thread-475.html</link>
			<pubDate>Tue, 28 Apr 2009 18:02:29 +0000</pubDate>
			<guid isPermaLink="false">http://christianfurs.net/thread-475.html</guid>
			<description><![CDATA[Ok maybe it isn't a spy but I don't really have a better reason as of yet. Icechat pops up but refuses to connect to CFF. Anyone have any ideas why?]]></description>
			<content:encoded><![CDATA[Ok maybe it isn't a spy but I don't really have a better reason as of yet. Icechat pops up but refuses to connect to CFF. Anyone have any ideas why?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[MSN Accounts being comprimised]]></title>
			<link>http://christianfurs.net/thread-425.html</link>
			<pubDate>Wed, 08 Apr 2009 06:43:36 +0000</pubDate>
			<guid isPermaLink="false">http://christianfurs.net/thread-425.html</guid>
			<description><![CDATA[I have seen 2 MSN accounts be hacked. Both from CF.<br />
The first sent me two messages on two different days with a link (in the first one) or a list of links (in the second one). Both ask for privet information.<br />
The second sender's first message was almost like the first's second message. Just an array of links that went to a different web site. Still asked for MSN login details.<br />
<br />
If you are in my friends list, I will report this to you if it happens. If it happens to me, please tell me as soon as possible.<br />
<br />
Much appreciated.]]></description>
			<content:encoded><![CDATA[I have seen 2 MSN accounts be hacked. Both from CF.<br />
The first sent me two messages on two different days with a link (in the first one) or a list of links (in the second one). Both ask for privet information.<br />
The second sender's first message was almost like the first's second message. Just an array of links that went to a different web site. Still asked for MSN login details.<br />
<br />
If you are in my friends list, I will report this to you if it happens. If it happens to me, please tell me as soon as possible.<br />
<br />
Much appreciated.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Connecting to IRC channels in Icechat]]></title>
			<link>http://christianfurs.net/thread-265.html</link>
			<pubDate>Sun, 15 Feb 2009 04:33:04 +0000</pubDate>
			<guid isPermaLink="false">http://christianfurs.net/thread-265.html</guid>
			<description><![CDATA[How to connect to an IRC channel with Icechat (specifically, CFF). <br />
<br />
Open Icechat<br />
<br />
Left click on one of the servers in "Favorite Servers" list (it doesn't matter which one)<br />
<!-- start: postbit_attachments_thumbnails_thumbnail -->
<a href="attachment.php?aid=9" target="_blank"><img src="attachment.php?thumbnail=9" class="attachment" alt="" /></a>&nbsp;&nbsp;&nbsp;
<!-- end: postbit_attachments_thumbnails_thumbnail --><br />
Click "Add New Server..." and put "freejavachat.com" in the box.<br />
<!-- start: postbit_attachments_thumbnails_thumbnail -->
<a href="attachment.php?aid=10" target="_blank"><img src="attachment.php?thumbnail=10" class="attachment" alt="" /></a>&nbsp;&nbsp;&nbsp;
<!-- end: postbit_attachments_thumbnails_thumbnail --><br />
Click "Next" twice and put "#cff" in the box. <br />
Click "Next" and fill in your default nick<br />
Click "Next" 2 more times. You should see<br />
<!-- start: postbit_attachments_thumbnails_thumbnail -->
<a href="attachment.php?aid=11" target="_blank"><img src="attachment.php?thumbnail=11" class="attachment" alt="" /></a>&nbsp;&nbsp;&nbsp;
<!-- end: postbit_attachments_thumbnails_thumbnail --><br />
Fill in your alternate nick (name_ for example)<br />
Fill in your away nick (name_away for example)<br />
If your nick is registered, click "Startup" and fill in the Nickserv password. <br />
Click "Save"<br />
<br />
Next time you open up Icechat, just double click on "freejavachat.com" on the side. <br />
<br />
While you're at it, Click "Icechat Editor" (blue circle with a star) and add this line to the bottom<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>/rand /say &#36;randquit</code></div></div>
Click "Save and Exit"<br />
Type "/rand" in a chat and see what happens.]]></description>
			<content:encoded><![CDATA[How to connect to an IRC channel with Icechat (specifically, CFF). <br />
<br />
Open Icechat<br />
<br />
Left click on one of the servers in "Favorite Servers" list (it doesn't matter which one)<br />
<!-- start: postbit_attachments_thumbnails_thumbnail -->
<a href="attachment.php?aid=9" target="_blank"><img src="attachment.php?thumbnail=9" class="attachment" alt="" /></a>&nbsp;&nbsp;&nbsp;
<!-- end: postbit_attachments_thumbnails_thumbnail --><br />
Click "Add New Server..." and put "freejavachat.com" in the box.<br />
<!-- start: postbit_attachments_thumbnails_thumbnail -->
<a href="attachment.php?aid=10" target="_blank"><img src="attachment.php?thumbnail=10" class="attachment" alt="" /></a>&nbsp;&nbsp;&nbsp;
<!-- end: postbit_attachments_thumbnails_thumbnail --><br />
Click "Next" twice and put "#cff" in the box. <br />
Click "Next" and fill in your default nick<br />
Click "Next" 2 more times. You should see<br />
<!-- start: postbit_attachments_thumbnails_thumbnail -->
<a href="attachment.php?aid=11" target="_blank"><img src="attachment.php?thumbnail=11" class="attachment" alt="" /></a>&nbsp;&nbsp;&nbsp;
<!-- end: postbit_attachments_thumbnails_thumbnail --><br />
Fill in your alternate nick (name_ for example)<br />
Fill in your away nick (name_away for example)<br />
If your nick is registered, click "Startup" and fill in the Nickserv password. <br />
Click "Save"<br />
<br />
Next time you open up Icechat, just double click on "freejavachat.com" on the side. <br />
<br />
While you're at it, Click "Icechat Editor" (blue circle with a star) and add this line to the bottom<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>/rand /say &#36;randquit</code></div></div>
Click "Save and Exit"<br />
Type "/rand" in a chat and see what happens.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Google does what?]]></title>
			<link>http://christianfurs.net/thread-198.html</link>
			<pubDate>Wed, 28 Jan 2009 05:22:43 +0000</pubDate>
			<guid isPermaLink="false">http://christianfurs.net/thread-198.html</guid>
			<description><![CDATA[I have this screenshot form a long time ago...<br />
<img src="http://christianfurs.net/gal/albums/userpics/10004/gbot.JPG" border="0" alt="[Image: gbot.JPG&#93;" />]]></description>
			<content:encoded><![CDATA[I have this screenshot form a long time ago...<br />
<img src="http://christianfurs.net/gal/albums/userpics/10004/gbot.JPG" border="0" alt="[Image: gbot.JPG]" />]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Computer Specs]]></title>
			<link>http://christianfurs.net/thread-104.html</link>
			<pubDate>Sat, 03 Jan 2009 08:30:52 +0000</pubDate>
			<guid isPermaLink="false">http://christianfurs.net/thread-104.html</guid>
			<description><![CDATA[Chances are that if you're reading this, you've got a computer. <br />
So, what kind of computer do you use? Mac, PC, iphone... Tell us about it! Here's your chance to brag about what you have, or whine about what you wish your computer could do.<br />
<br />
<span style="font-weight: bold;">Updated:</span> 02/01/2010<br />
So, to start:<br />
I use a couple of different computers, but I mainly alternate between my desktop and a laptop. On the desktop side, I've built a whirring monolith that is as follows:<br />
Antec P182 Case (monolith)<br />
Asus P5NE-SLI Motherboard<br />
Intel Core 2 Duo 2.6Ghz, Overclocked to 3.16Ghz (whirring)<br />
6Gigs of Ram, which it sees all of. <img src="http://christianfurs.net/images/smilies/biggrin.gif" style="vertical-align: middle;" border="0" alt="Big Grin" title="Big Grin" /><br />
An NVidia 8800 GT drives my 1080P monitor and one 1280x1024, and an NVidia 9400 drives the other 1280x1024 and a 1024x768. Yes, I use <a href="http://dl.dropbox.com/u/40242/Screenshots/workin.png" target="_blank">all of them</a>.<br />
<br />
On the laptop side, I switch between my luggable Lenovo Y410, for the power work, and my Asus eeePC 1000h, for note-taking and casual surfing. The eee's specs are pretty standard:<br />
1.6Ghz Intel Atom Processor<br />
2Gb of RAM<br />
80 GB Hard drive (Which I need to upgrade)<br />
The battery, however, lasts a good 5 hours in use. Very nice for long classes.<br />
The Lenovo:<br />
Core 2 Duo Centrino @1.6Ghz<br />
2 Gigs of Ram<br />
320GB Hard drive<br />
Integrated video. <img src="http://christianfurs.net/images/smilies/sad.gif" style="vertical-align: middle;" border="0" alt="Sad" title="Sad" /><br />
<br />
Well, that's it. Now, show everyone what you use!]]></description>
			<content:encoded><![CDATA[Chances are that if you're reading this, you've got a computer. <br />
So, what kind of computer do you use? Mac, PC, iphone... Tell us about it! Here's your chance to brag about what you have, or whine about what you wish your computer could do.<br />
<br />
<span style="font-weight: bold;">Updated:</span> 02/01/2010<br />
So, to start:<br />
I use a couple of different computers, but I mainly alternate between my desktop and a laptop. On the desktop side, I've built a whirring monolith that is as follows:<br />
Antec P182 Case (monolith)<br />
Asus P5NE-SLI Motherboard<br />
Intel Core 2 Duo 2.6Ghz, Overclocked to 3.16Ghz (whirring)<br />
6Gigs of Ram, which it sees all of. <img src="http://christianfurs.net/images/smilies/biggrin.gif" style="vertical-align: middle;" border="0" alt="Big Grin" title="Big Grin" /><br />
An NVidia 8800 GT drives my 1080P monitor and one 1280x1024, and an NVidia 9400 drives the other 1280x1024 and a 1024x768. Yes, I use <a href="http://dl.dropbox.com/u/40242/Screenshots/workin.png" target="_blank">all of them</a>.<br />
<br />
On the laptop side, I switch between my luggable Lenovo Y410, for the power work, and my Asus eeePC 1000h, for note-taking and casual surfing. The eee's specs are pretty standard:<br />
1.6Ghz Intel Atom Processor<br />
2Gb of RAM<br />
80 GB Hard drive (Which I need to upgrade)<br />
The battery, however, lasts a good 5 hours in use. Very nice for long classes.<br />
The Lenovo:<br />
Core 2 Duo Centrino @1.6Ghz<br />
2 Gigs of Ram<br />
320GB Hard drive<br />
Integrated video. <img src="http://christianfurs.net/images/smilies/sad.gif" style="vertical-align: middle;" border="0" alt="Sad" title="Sad" /><br />
<br />
Well, that's it. Now, show everyone what you use!]]></content:encoded>
		</item>
	</channel>
</rss>