<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-26978956</id><updated>2011-06-23T23:18:01.508-07:00</updated><title type='text'>Matthew's Blog</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://mjvaughn.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/26978956/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://mjvaughn.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Matt Vaughn</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>19</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-26978956.post-4900339254679926784</id><published>2007-01-19T09:11:00.000-08:00</published><updated>2007-01-19T09:14:13.892-08:00</updated><title type='text'>Google Comes to Lenoir</title><content type='html'>I know they've been talking about this for a while, but I was excited to find out that they have confirmed their plans to build a large scale computer data center in Lenoir! This will open up alot of technology jobs for people in Lenoir and surrounding areas. -&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.newstopic.net/articles/2007/01/19/news/26googlesearchends.txt"&gt;http://www.newstopic.net/articles/2007/01/19/news/26googlesearchends.txt&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/26978956-4900339254679926784?l=mjvaughn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mjvaughn.blogspot.com/feeds/4900339254679926784/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=26978956&amp;postID=4900339254679926784' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/26978956/posts/default/4900339254679926784'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/26978956/posts/default/4900339254679926784'/><link rel='alternate' type='text/html' href='http://mjvaughn.blogspot.com/2007/01/google-comes-to-lenoir.html' title='Google Comes to Lenoir'/><author><name>Matt Vaughn</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-26978956.post-294220560582320859</id><published>2007-01-18T11:45:00.000-08:00</published><updated>2007-01-18T11:55:38.859-08:00</updated><title type='text'>Neural Networks</title><content type='html'>Neural Networks must be one of the most difficult things to develop in the programming world, but I feel they are the future of computers, and technology in general. Neural Networks are modelled after the neurons in the human brain that allow us to learn. When you create a neural network on a machine, you give it the capability of learning through examples, just like we do.&lt;br /&gt;&lt;br /&gt;Over the course of however long it will take, I would like to learn more about Neural Networks and eventually make my own. Here is a really cool site:&lt;a href="http://franck.fleurey.free.fr/NeuralNetwork/"&gt;http://franck.fleurey.free.fr/NeuralNetwork/&lt;/a&gt; where someone made a neural network library in C#&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/26978956-294220560582320859?l=mjvaughn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mjvaughn.blogspot.com/feeds/294220560582320859/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=26978956&amp;postID=294220560582320859' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/26978956/posts/default/294220560582320859'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/26978956/posts/default/294220560582320859'/><link rel='alternate' type='text/html' href='http://mjvaughn.blogspot.com/2007/01/neural-networks.html' title='Neural Networks'/><author><name>Matt Vaughn</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-26978956.post-1390068644360796952</id><published>2007-01-17T17:10:00.000-08:00</published><updated>2007-01-17T17:12:26.780-08:00</updated><title type='text'>How to get around Array Limitations</title><content type='html'>If you are a C# programmer, you have most likely used an Array at some point. You will probably find that Arrays have many limitations, mainly that once they are created, their size is fixed, and you can't add objects to it without creating a new array. So how do we get around this?&lt;br /&gt;&lt;br /&gt;Collections; Like arrays, collections enable you to maintain groups of objects, but unlike arrays collections can include more advanced functionality, such as controlling access to the objects they contain, searching and sorting, etc.&lt;br /&gt;Arrays are implemented as an instance of the System.Array class and are just on type of what are known as collection classes. Much of the functionality of a collection comes through implementing interfaces from the System.Collections namespace, thus standardizing collection syntax.&lt;br /&gt;&lt;br /&gt;Since the collection functionality is available through interfaces you aren't limited to using basic collection clases such as System.Array. Instead, you can create your own customized collection classes.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/26978956-1390068644360796952?l=mjvaughn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mjvaughn.blogspot.com/feeds/1390068644360796952/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=26978956&amp;postID=1390068644360796952' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/26978956/posts/default/1390068644360796952'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/26978956/posts/default/1390068644360796952'/><link rel='alternate' type='text/html' href='http://mjvaughn.blogspot.com/2007/01/how-to-get-around-array-limitations.html' title='How to get around Array Limitations'/><author><name>Matt Vaughn</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-26978956.post-115817055365336911</id><published>2006-09-13T10:53:00.000-07:00</published><updated>2006-09-13T11:02:33.656-07:00</updated><title type='text'>Open Source Spybotics</title><content type='html'>For Christmas about five years ago, my parents got me a lego spybotic. I don't know if anyone remembers them, or has seen one before, but in my opinion they were ahead of their time. I was almost too young when they got it for me, and could hardly get it to do anything. Yesterday I was cleaning out our utility building and came across it. I had just about forgotten about it.&lt;br /&gt;&lt;br /&gt;It came with some "kiddie" software where you could hook it to your computer and "design missions" where it would maneuver around obsticles, find it's way to a light source, go towards a sound etc. I got to thinking about how cool this thing would be if you had complete control over programming it. Then you could use the full potential of it's sensors, and it would be fun practice for a career in artificial intelligence.&lt;br /&gt;&lt;br /&gt;Just for the fun, I googled "Open Source Spybotics" and came across an open source IDE called Bricx Command Center. Believe it or not, a university had thought the same thing as me, that spybotics had a lot of potential if there was a way to have complete control over them, with out using the given software. So they built an open source IDE to do just that. I've been having alot of fun with it!&lt;br /&gt;&lt;br /&gt;I guess this story has two lessons, there really is an open source peice of software for literally any need you can think of. Open Source keeps on amazing me. Also, just when you think you're too old for something, you can come up with a neat use for it :P&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/26978956-115817055365336911?l=mjvaughn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mjvaughn.blogspot.com/feeds/115817055365336911/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=26978956&amp;postID=115817055365336911' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/26978956/posts/default/115817055365336911'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/26978956/posts/default/115817055365336911'/><link rel='alternate' type='text/html' href='http://mjvaughn.blogspot.com/2006/09/open-source-spybotics.html' title='Open Source Spybotics'/><author><name>Matt Vaughn</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-26978956.post-115816998459184989</id><published>2006-09-13T10:50:00.000-07:00</published><updated>2006-09-13T10:53:04.606-07:00</updated><title type='text'>NASA Open Source</title><content type='html'>I recently learned that much of the software NASA uses for it's missions is open source, and can be freely downloaded. Also, it is made up, in part, by community contributions. Maybe in the future I'll be able to contribute!&lt;br /&gt;&lt;br /&gt;&lt;a href="http://opensource.arc.nasa.gov/"&gt;http://opensource.arc.nasa.gov/&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/26978956-115816998459184989?l=mjvaughn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mjvaughn.blogspot.com/feeds/115816998459184989/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=26978956&amp;postID=115816998459184989' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/26978956/posts/default/115816998459184989'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/26978956/posts/default/115816998459184989'/><link rel='alternate' type='text/html' href='http://mjvaughn.blogspot.com/2006/09/nasa-open-source.html' title='NASA Open Source'/><author><name>Matt Vaughn</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-26978956.post-115816975844386391</id><published>2006-09-13T10:44:00.000-07:00</published><updated>2006-09-13T10:49:18.456-07:00</updated><title type='text'>HP supports Linux and Open Source</title><content type='html'>"HP simplifies the integration of open source and Linux! "&lt;br /&gt;&lt;a href="http://http://h71028.www7.hp.com/enterprise/cache/309906-0-0-0-121.html"&gt;http://http://h71028.www7.hp.com/enterprise/cache/309906-0-0-0-121.html&lt;/a&gt;&lt;a href="http://h71028.www7.hp.com/enterprise/cache/309906-0-0-0-121.html"&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/26978956-115816975844386391?l=mjvaughn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mjvaughn.blogspot.com/feeds/115816975844386391/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=26978956&amp;postID=115816975844386391' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/26978956/posts/default/115816975844386391'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/26978956/posts/default/115816975844386391'/><link rel='alternate' type='text/html' href='http://mjvaughn.blogspot.com/2006/09/hp-supports-linux-and-open-source.html' title='HP supports Linux and Open Source'/><author><name>Matt Vaughn</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-26978956.post-115646275817163028</id><published>2006-08-24T16:33:00.000-07:00</published><updated>2006-08-24T16:39:18.190-07:00</updated><title type='text'>Young Coders</title><content type='html'>Today I came across a really unique online community: &lt;a href="http://www.youngcoders.com"&gt;http://www.youngcoders.com&lt;/a&gt;. When I joined it, I really didn't know what all it had to offer, because it appeared to just be the usual forum. Still it was appealing to me because it is young people (well college and down) who are interested in the same things as me. But after joining I was invited to join member groups, which I had never heard of before. These groups had different topics such as magazine group, game design group, wiki group, etc. Each group works as a team to accomplish something. For example the magazine groups puts out a weekly YC club magazine, the others are self explanitory.&lt;br /&gt;&lt;br /&gt;Anyway, it's a really neat community and I think you should check it out!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/26978956-115646275817163028?l=mjvaughn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mjvaughn.blogspot.com/feeds/115646275817163028/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=26978956&amp;postID=115646275817163028' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/26978956/posts/default/115646275817163028'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/26978956/posts/default/115646275817163028'/><link rel='alternate' type='text/html' href='http://mjvaughn.blogspot.com/2006/08/young-coders.html' title='Young Coders'/><author><name>Matt Vaughn</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-26978956.post-115331493988493297</id><published>2006-07-19T06:08:00.002-07:00</published><updated>2006-07-19T06:15:39.913-07:00</updated><title type='text'>Java</title><content type='html'>I've been checking out what careers are open at all the major computer companies such as IBM, Dell, and even NASA, to see what type of computer programming jobs they have open. Every single one is hiring Java programmers. I had heard of java before, but didn't know anything about it, so I decided to check it out. There must be a reason everyone is switching from C++ to this.&lt;br /&gt;&lt;br /&gt;Well it is very similar to C++. It is completely cross platform and can run on any machine that has the java runtime environment on it. It can be completely coded in notepad, and there is also a free IDE available to download called netbeans, which is a similar environment to Sharp Develop, in which you can drag and drop controls onto a form.&lt;br /&gt;&lt;br /&gt;Anyway, this is what I've been up to lately. I found a really good site, "Introduction to Computer Science using Java". It teaches you the language inside and out, it's free, and it is from a colleges computer science course, which is what I am going to major in. What more can you ask for? &lt;a href="http://chortle.ccsu.edu/CS151/cs151java.html#01"&gt;http://chortle.ccsu.edu/CS151/cs151java.html#01&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Enjoy!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/26978956-115331493988493297?l=mjvaughn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mjvaughn.blogspot.com/feeds/115331493988493297/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=26978956&amp;postID=115331493988493297' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/26978956/posts/default/115331493988493297'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/26978956/posts/default/115331493988493297'/><link rel='alternate' type='text/html' href='http://mjvaughn.blogspot.com/2006/07/java_115331493988493297.html' title='Java'/><author><name>Matt Vaughn</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-26978956.post-114990211231769986</id><published>2006-06-09T18:09:00.000-07:00</published><updated>2006-06-09T18:15:12.326-07:00</updated><title type='text'>I'm back!!!</title><content type='html'>&lt;a href="http://photos1.blogger.com/blogger/7686/2830/1600/fuzzball.jpg"&gt;&lt;img style="FLOAT: left; MARGIN: 0px 10px 10px 0px; CURSOR: hand" alt="" src="http://photos1.blogger.com/blogger/7686/2830/400/fuzzball.jpg" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Wow, it's been a while since my last post. I don't know why teachers wait until the last few weeks of school to give you about a years worth of work to do. But I'm out of school for the summer and have nothing better to do, so I'll be posting often!&lt;br /&gt;&lt;br /&gt;As I said, I've been very busy lately, and don't really have anything to talk about (I need to get myself back up to date on everything going on ;). I've been trying to learn more about blender, and I created myself a desktop background. Feel free to use if if you like it :P. It took about 10 minutes, it's just a simple particle effect, but it looks cool. Enjoy!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/26978956-114990211231769986?l=mjvaughn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mjvaughn.blogspot.com/feeds/114990211231769986/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=26978956&amp;postID=114990211231769986' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/26978956/posts/default/114990211231769986'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/26978956/posts/default/114990211231769986'/><link rel='alternate' type='text/html' href='http://mjvaughn.blogspot.com/2006/06/im-back.html' title='I&apos;m back!!!'/><author><name>Matt Vaughn</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-26978956.post-114739443813152729</id><published>2006-05-11T17:28:00.000-07:00</published><updated>2006-05-11T17:40:38.136-07:00</updated><title type='text'>3D APIs</title><content type='html'>Last week I dowloaded Microsoft DirectX SDK to attempt to mess around with 3D programming, and possibly make my own game. What I quickly learned was that DirectX was very confusing and difficult. I did several tutorials, and it seems like everything you want to do requires different code, nothing is the same from program to program. Why can't they make a 3D API that is just as easy to use as C# windows programming? Maybe I will make this my life long "for fun" project. My "vision" is to have code that would look something like this:&lt;br /&gt;&lt;br /&gt;C# code&lt;br /&gt;&lt;br /&gt;&lt;em&gt;mesh myMesh = ("C://myDocs/mesh.obj");&lt;/em&gt;&lt;br /&gt;&lt;em&gt;camera myCamera = new camera;&lt;/em&gt;&lt;br /&gt;&lt;em&gt;&lt;/em&gt;&lt;br /&gt;&lt;em&gt;scene myScene = (myCamera(X,Y,Z)), (myMesh(X,Y,Z));&lt;/em&gt;&lt;br /&gt;&lt;em&gt;&lt;/em&gt;&lt;br /&gt;&lt;em&gt;render(24fps).myScene;&lt;/em&gt;&lt;br /&gt;&lt;em&gt;&lt;/em&gt;&lt;br /&gt;X,Y,Z would be the location of the object.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/26978956-114739443813152729?l=mjvaughn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mjvaughn.blogspot.com/feeds/114739443813152729/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=26978956&amp;postID=114739443813152729' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/26978956/posts/default/114739443813152729'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/26978956/posts/default/114739443813152729'/><link rel='alternate' type='text/html' href='http://mjvaughn.blogspot.com/2006/05/3d-apis.html' title='3D APIs'/><author><name>Matt Vaughn</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-26978956.post-114687097095198253</id><published>2006-05-05T16:11:00.000-07:00</published><updated>2006-05-05T16:16:10.953-07:00</updated><title type='text'>Computer Science Community's adopted emblem</title><content type='html'>&lt;a href="http://photos1.blogger.com/blogger/7686/2830/1600/glider.jpg"&gt;&lt;img style="FLOAT: left; MARGIN: 0px 10px 10px 0px; CURSOR: hand" alt="" src="http://photos1.blogger.com/blogger/7686/2830/320/glider.jpg" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;I came across this today. It is called a "glider" and is taken from "the game of life". I don't fully understand what it is, but the computer science community has adopted it as their emblem. I would like to find out more about it, and what it stands for.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/26978956-114687097095198253?l=mjvaughn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mjvaughn.blogspot.com/feeds/114687097095198253/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=26978956&amp;postID=114687097095198253' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/26978956/posts/default/114687097095198253'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/26978956/posts/default/114687097095198253'/><link rel='alternate' type='text/html' href='http://mjvaughn.blogspot.com/2006/05/computer-science-communitys-adopted.html' title='Computer Science Community&apos;s adopted emblem'/><author><name>Matt Vaughn</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-26978956.post-114687063718652525</id><published>2006-05-05T16:07:00.000-07:00</published><updated>2006-05-05T16:10:37.193-07:00</updated><title type='text'>Free Computer Science Ebooks</title><content type='html'>Today I came across a website with several free ebooks on computer science. They can be appreciated by everyone because most are not based on speciffic languages or platforms, they are just about theory and the complex ideas behind being a successful programmer. Here's the url:&lt;a href="http://www.techbooksforfree.com/index.shtml"&gt;http://www.techbooksforfree.com/index.shtml&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Enjoy!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/26978956-114687063718652525?l=mjvaughn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mjvaughn.blogspot.com/feeds/114687063718652525/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=26978956&amp;postID=114687063718652525' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/26978956/posts/default/114687063718652525'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/26978956/posts/default/114687063718652525'/><link rel='alternate' type='text/html' href='http://mjvaughn.blogspot.com/2006/05/free-computer-science-ebooks.html' title='Free Computer Science Ebooks'/><author><name>Matt Vaughn</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-26978956.post-114677311140963472</id><published>2006-05-04T12:58:00.000-07:00</published><updated>2006-05-04T13:05:11.416-07:00</updated><title type='text'>What info does a hacker need to access my computer?</title><content type='html'>This is a question I've been trying to find out for a while. Every where I look I can't find a direct answer. What I have peiced together is this. If you know the true answer please post a comment.&lt;br /&gt;&lt;br /&gt;Have you ever remotely accessed your computer? I don't want to get into explaining this, just look at Jon's blog (blog.rjmolesa.com). He has a big right up on it. Basically how a hacker gets into your system is by installing a server (similar to tight vnc, but one they usually make themselves that is invisible) when you visit a site created by a hacker or hacked by a hacker. It automatically downloads and installs itself on your computer. Then the information a hacker needs is your IP address (to the server they installed) and the password to the server they installed. Both of these are easy to get (they choose the password when they install the server, and you can remotely see a computers IP address).&lt;br /&gt;&lt;br /&gt;This is just what I could peice together so, please let me know if you know the true answer. I believe if people knew how hackers were able to do this, they would be able to help protect themselves more.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/26978956-114677311140963472?l=mjvaughn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mjvaughn.blogspot.com/feeds/114677311140963472/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=26978956&amp;postID=114677311140963472' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/26978956/posts/default/114677311140963472'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/26978956/posts/default/114677311140963472'/><link rel='alternate' type='text/html' href='http://mjvaughn.blogspot.com/2006/05/what-info-does-hacker-need-to-access.html' title='What info does a hacker need to access my computer?'/><author><name>Matt Vaughn</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-26978956.post-114661203230522787</id><published>2006-05-02T16:11:00.000-07:00</published><updated>2006-05-02T16:20:32.313-07:00</updated><title type='text'>Microsoft Sam</title><content type='html'>Well, I don't have much to talk about at the moment, but I like to post things often, so here it is...&lt;br /&gt;&lt;br /&gt;I was messing around in my control panel today and met Microsoft Sam. He is really neat, and is a Great way to get on little sisters nerves. If you are a windows xp user, you should have Sam on your computer right now, whether you know it or not. Sam's job is to assist the visually impaired by reading what is displayed on your screen, however I found a way to use him to talk for you. Go under control panel-&gt;speech. Type something in the textbar and click preview voice, and it will say what you put. You can also adjust the speed to make it super annoying (if that is your intention :)&lt;br /&gt;&lt;br /&gt;I got to messing around, and if you use punctuation (like ! and ?) you can change his tone. If you add about three exclamation marks to the end of your sentence, sam will try to speak with excitement. It is fun to just play around with.&lt;br /&gt;&lt;br /&gt;Enjoy!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/26978956-114661203230522787?l=mjvaughn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mjvaughn.blogspot.com/feeds/114661203230522787/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=26978956&amp;postID=114661203230522787' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/26978956/posts/default/114661203230522787'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/26978956/posts/default/114661203230522787'/><link rel='alternate' type='text/html' href='http://mjvaughn.blogspot.com/2006/05/microsoft-sam.html' title='Microsoft Sam'/><author><name>Matt Vaughn</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-26978956.post-114643588640659479</id><published>2006-04-30T15:18:00.000-07:00</published><updated>2006-04-30T15:24:46.406-07:00</updated><title type='text'>Real Life Hacker Articles</title><content type='html'>When ever I get bored I have a fun little hobby of reading the latest stories of hackers who have been caught. There are alot of sites filled of up to date stories, just search for cyber crime.&lt;br /&gt;&lt;br /&gt;I don't understand why someone would be so smart, (literally computer geniuses), and do something so stupid? A person who is this smart on computers could make tons of money working for the government etc. Anyway, I feel like there mission is to make their victims look dumb. When they hack into a microsoft computer, they do it to point out all of microsoft's errors, or how insecure nasa's networks are etc. Why don't they get a job fixing these problems?&lt;br /&gt;&lt;br /&gt;Today I came across a real funny guy. He was caught hacking into the pentagon and nasa. His reason for doing it? To see if UFO's exist. He says he found tons of evidence of UFO in the pentagon's computers. He claims they are hiding alot of stuff from us. As long as he isn't found guilty he won't tell what he saw, but if he is he plans to share with the world what all they are hiding.&lt;br /&gt;&lt;br /&gt;Here is the link if you want to read about it: &lt;a href="http://www.computerworld.com/securitytopics/security/cybercrime/story/0,10801,110937,00.html?SKC=cybercrime-110937"&gt;http://www.computerworld.com/securitytopics/security/cybercrime/story/0,10801,110937,00.html?SKC=cybercrime-110937&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;If you come across any other funny stories, add a comment here with a link.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/26978956-114643588640659479?l=mjvaughn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mjvaughn.blogspot.com/feeds/114643588640659479/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=26978956&amp;postID=114643588640659479' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/26978956/posts/default/114643588640659479'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/26978956/posts/default/114643588640659479'/><link rel='alternate' type='text/html' href='http://mjvaughn.blogspot.com/2006/04/real-life-hacker-articles.html' title='Real Life Hacker Articles'/><author><name>Matt Vaughn</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-26978956.post-114613523036442213</id><published>2006-04-27T03:47:00.000-07:00</published><updated>2006-04-27T03:56:09.880-07:00</updated><title type='text'>AOL and the Internet</title><content type='html'>Alot of people (including myself) use America On Line as their Internet Provider. As you know AOL has their own browser included in their service that you probably use. Well, it's really user friendly and such, but it isn't "Real Internet" to an extent. Everything you see has been paid to be put in front of you. Notice if you search for an item on AOL Walmart and such are always at the top of your searches. There is a way to use AOL as your IP, and still get real internet. By using a different Web Browser!&lt;br /&gt;&lt;br /&gt;There are many web browsers out there for free. Most computers come with Internet Explorer already on them. I personally like Mozilla Firefox. Anway, let's assume you are going to use Internet Explorer. Simply fire up AOL as usual. Then minimize the AOL browser, click start-&gt;run, type IExplore, and press enter. The browser should pop up and you'll be looking at true internet!&lt;br /&gt;&lt;br /&gt;Enjoy the Internet!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/26978956-114613523036442213?l=mjvaughn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mjvaughn.blogspot.com/feeds/114613523036442213/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=26978956&amp;postID=114613523036442213' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/26978956/posts/default/114613523036442213'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/26978956/posts/default/114613523036442213'/><link rel='alternate' type='text/html' href='http://mjvaughn.blogspot.com/2006/04/aol-and-internet.html' title='AOL and the Internet'/><author><name>Matt Vaughn</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-26978956.post-114609368382593870</id><published>2006-04-26T16:15:00.000-07:00</published><updated>2006-04-26T16:22:53.546-07:00</updated><title type='text'>Crazy Red Thing</title><content type='html'>&lt;a href="http://photos1.blogger.com/blogger/7686/2830/1600/Duck10000.jpg"&gt;&lt;img style="FLOAT: left; MARGIN: 0px 10px 10px 0px; CURSOR: hand" alt="" src="http://photos1.blogger.com/blogger/7686/2830/320/Duck10000.jpg" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;From time to time I am going to post updates on my recent 3D work. So here is my most recent. Not sure what to call "it". I just finished modeling, and texturing it. Soon I'll rig it, skin it, and animate it. All the work you see here was done with anim8or. I'm going to try to find a way to import this model into Blender so I can make use of it's physics engine, and softbody features! It's hands and eyes will be operated with morph targets. I am looking forward to animating it! I will post updates!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/26978956-114609368382593870?l=mjvaughn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mjvaughn.blogspot.com/feeds/114609368382593870/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=26978956&amp;postID=114609368382593870' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/26978956/posts/default/114609368382593870'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/26978956/posts/default/114609368382593870'/><link rel='alternate' type='text/html' href='http://mjvaughn.blogspot.com/2006/04/crazy-red-thing.html' title='Crazy Red Thing'/><author><name>Matt Vaughn</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-26978956.post-114609293866926561</id><published>2006-04-26T15:55:00.000-07:00</published><updated>2006-04-26T17:50:13.903-07:00</updated><title type='text'>Free Software!</title><content type='html'>Most people have no idea that just about every piece of software you could ever want can be downloaded for free! I'm going to introduce you into the world of "Open Source Sofware".&lt;br /&gt;&lt;br /&gt;Open Source Software is 100% free, and the source code can be downloaded for you to tweak the program to your own liking. This is really appealing to computer geeks, because you can learn from the source code and actually play with the internal workings of the program. If you aren't interested in tinkering with source code, Open Source Software can still be of use to you. It is literally "beefed up" and "debugged" by computer geeks around the globe for you to download and enjoy. So the next time you search for "free" software, try to include the phrase "open source" in your search term, and you will probably pull up even more freebies for you to download. Also don't get confused about this: not all free software is open source.&lt;br /&gt;&lt;br /&gt;When I said every piece of software you could want can be downloaded for free I mean EVERY piece of software. What would you say if I told you there were free, open source Operating Systems for you to download and use? It's true, just check into linux (there are many distros (flavors), my personal favorite is Ubuntu. Don't feel like downloading it? Just tell them your address and they'll send you 5 free discs!). Most people have no idea that there are operating systems besides Microsoft Windows, but in many people's opinions Linux OS' are much better than Microsoft!&lt;br /&gt;&lt;br /&gt;"Orange" a team of computer animators used Blender to make an Open Source movie! You have to buy the DVD, but it includes .blend files which have all the models, scenes and animations from the movie, free for you to use how ever you want!&lt;br /&gt;&lt;br /&gt;Enjoy the Free Software!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/26978956-114609293866926561?l=mjvaughn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mjvaughn.blogspot.com/feeds/114609293866926561/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=26978956&amp;postID=114609293866926561' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/26978956/posts/default/114609293866926561'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/26978956/posts/default/114609293866926561'/><link rel='alternate' type='text/html' href='http://mjvaughn.blogspot.com/2006/04/free-software_26.html' title='Free Software!'/><author><name>Matt Vaughn</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-26978956.post-114601267315111080</id><published>2006-04-25T17:41:00.000-07:00</published><updated>2006-04-25T17:51:13.160-07:00</updated><title type='text'>Welcome!</title><content type='html'>Hello! I would like to take a moment to say welcome to my blog! My name is Matthew Vaughn, I am 15 years old and an absolute computer geek. My plans are to attend Rose-Hulman Technical University, and obtain a Master degree of computer science. From there I am not sure where I want to go, (nasa or start my own company?....).&lt;br /&gt;&lt;br /&gt;My major interest is in computer programming. I currently know VB.Net and C# fairly well. I am working on HTML, Python, ASP.net, and about every other language left.&lt;br /&gt;&lt;br /&gt;I also have an interest for 3D graphics and animation. I use "Anim8or" and "Blender" for everything related to this because they are free, and worthy of commercial cost.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/26978956-114601267315111080?l=mjvaughn.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mjvaughn.blogspot.com/feeds/114601267315111080/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=26978956&amp;postID=114601267315111080' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/26978956/posts/default/114601267315111080'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/26978956/posts/default/114601267315111080'/><link rel='alternate' type='text/html' href='http://mjvaughn.blogspot.com/2006/04/welcome.html' title='Welcome!'/><author><name>Matt Vaughn</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
