Open main menu

CDOT Wiki β

Changes

Student Resources OOP344 - 20101

1,402 bytes added, 01:21, 12 May 2010
no edit summary
[[{{OOP344]] Index - [[OOP344 Student List | Student List]] - [[OOP344 Teams | Teams]] - [[OOP344 Project | Project]] - [[OOP344 IRC Schedules | IRC Schedules]] - [[OOP344 Student Resources | Student Resources]]<br />20101}}
===Quick Link===
[[Tortoise in 5]] -
[[Tortoise in 5]] <br />
This page is dedicated to those poor souls that have to use SVN but don't have time to read through chapter upon chapter about it just to be able to participate in assignment 2.
 
== RabbitVCS ==
[[RabbitVCS]] <br />
RabbitVCS is a Linux alternative to TortoiseSVN. This page will help describe how to install and use RabbitVCS.
== Creating Projects in Visual Studio for Console Applications ==
In "Solution Explorer", add new item to Header Files or Source Files.
== Create The Basics of IRC == IRC is also known as Internet Relay Chat. The principal of it is essentially to provide accessible chat rooms for people over the internet over multiple operating systems. To be able to connect and interact with IRC, one must first have an IRC client of some sort.Two of the most common are [https://addons.mozilla.org/en-US/firefox/addon/16 Chatzilla] (Add-on forFirefox), and [http://www.mirc.com/ mIRC]. Once installed and running, you will have such options as connecting to various servers. We're particularly interested in the one which the seneca chatroom is located. This table has some basic commands for IRC. {|| /server irc.freenode.net| /* Connects your client to an IRC server. In this case, it is the freenode server*/|-| /join #seneca| /* Join #seneca channel */|-| /nick nickname| /* Change your nickname */|-| /leave| /* Leave the channel */<br />**Note: /part also works|-| /query nickname| /* Open a private chat with some one */|} Once connected to the server, it is a good idea to register your nick, otherwise someone can impersonate you and steal your nick -- Forcing you to change your name again. To register, one uses the following command:<code>/msg nickserv REGISTER foo foo@bar.com</code> This will associate your account and login with the e-mail foo@bar.com, as well as have your password be foo.To identify yourself, you do a similar command:<code>/msg nickserv IDENTIFY foo</code> If someone has taken your registered nick, or you have a zombie in the channel (Where you drop connection but you still appear in Windowsthe channel) ==, there is a command to fix that. {|| RECOVER Kill another user who has taken your nick<br /><br />Syntax : /msg NickServ RECOVER [nick] [personal password]<br /><br />/* leave out the brackets [] */ (NOTE: Please use the Ghost command instead for now)|-| GHOST Kills the nickname<br /><br />Syntax : /msg NickServ GHOST [nick] [personal password]<br /><br />/* leave out the brackets []<br /><code><br />/msg NickServ ghost nickname password<br /></code>|}
1. google search "ChatZilla"Stick with GHOST for now, [https://addons.mozilla.org/en-US/firefox/addon/16 download] and install it.<br />2. From "FireFox" menu => select "Tools" => select "ChatZilla"as Recover is becoming more obsolete. <br />3. commands: <br /><table><tr><td>/server irc.freenode.net </td><td>/* connect to server */</td></tr><tr><td>/join #seneca </td><td>/* join #Seneca channel */</td></tr><tr><td>/nick nickname </td><td>/* Change your nickname */</td></tr><tr><td>/leave </td><td>/* leave the channel */</td></tr><tr><td>/query nickname </td><td>/* open a private chat with some one */</td></tr></table>
== Linked List Explained ==
[[Linked List]] <br />
If you don't really understand how linked lists work or why we should even use them then this page is made for you!