<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>ACM at UCF &#187; acm</title>
	<atom:link href="http://www.cs.ucf.edu/~acm/author/acm/feed" rel="self" type="application/rss+xml" />
	<link>http://www.cs.ucf.edu/~acm</link>
	<description>Advancing Computing as a Science &#38; Profession</description>
	<lastBuildDate>Sat, 20 Apr 2013 19:55:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>[10/24] Techrangers: Git</title>
		<link>http://www.cs.ucf.edu/~acm/acm/1024-techrangers-git</link>
		<comments>http://www.cs.ucf.edu/~acm/acm/1024-techrangers-git#comments</comments>
		<pubDate>Thu, 25 Oct 2012 04:49:16 +0000</pubDate>
		<dc:creator>acm</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.cs.ucf.edu/~acm/?p=236</guid>
		<description><![CDATA[Quick Announcements There&#8217;s no meeting next week due to Halloween! New Media at UCF is looking to hire within a range of experience. If you are graduating soon you can help contribute, or if you don&#8217;t have too much experience they will train you to work with them for the following semesters. If you would [...]]]></description>
			<content:encoded><![CDATA[<h2> Quick Announcements </h2>
<ul>
<li>There&#8217;s no meeting next week due to Halloween!</li>
<li>New Media at UCF is looking to hire within a range of experience. If you are graduating soon you can help contribute, or if you don&#8217;t have too much experience they will train you to work with them for the following semesters. If you would like more information, send a quick e-mail to: <a href="ian@ucf.edu">ian@ucf.edu</a>.</li>
</ul>
<p>- &#8211; - &#8211; - &#8211; - &#8211; - &#8211; -<br />
The Techrangers are a team of students of varied backgrounds and majors at the Center for Distributed Learning who provide course development for faculty and web/application development for the University of Central Florida (UCF). The Techrangers act as student advocates and leaders by holding community workshops, participating in panels and presenting at conventions. They also take content from UCF professors and make it available via UCF&#8217;s WebCourses.</p>
<p>At this meeting the Techrangers demonstrated how to use Git, a free and open source, distributed version control system designed to handle everything from small to very large projects with speed and efficiency. We discussed how to make a local repository (on your own machine) using Git. You need to download Git with a quick Google search and run it within either the Mac terminal or Windows terminal shell. You key in the &#8220;git init&#8221; command to start git and can make a file using &#8220;touch ___filename____.&#8221; You would then add it in the waiting area using &#8220;git add ___filename___.&#8221; To commit your file to the repository, you use &#8220;git commit -m &#8220;any comments you may have go here&#8221;.&#8221;</p>
<p>The presenters then showcased GitHub which is more for public use and to show off your code. It&#8217;s a remote repository that many people can use at once. ACM has its own <a href="http://www.github.com/ACMatUCF" title="GitHub account">GitHub account</a>. You can &#8220;fork&#8221; existing projects to make a separate copy on your repository you can tinker with. For a private repository, you may pay for one on GitHub.</p>
<p>In general, some good sources for information on Git include CodeSchool which has its own free Git course and a <a href="http://www.git-scm.com/book" title="free book">free book</a> on how to use Git is available online as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cs.ucf.edu/~acm/acm/1024-techrangers-git/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[9/19] Technical Interview Prep</title>
		<link>http://www.cs.ucf.edu/~acm/acm/919-technical-interview-prep</link>
		<comments>http://www.cs.ucf.edu/~acm/acm/919-technical-interview-prep#comments</comments>
		<pubDate>Fri, 21 Sep 2012 03:17:14 +0000</pubDate>
		<dc:creator>acm</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.cs.ucf.edu/~acm/?p=232</guid>
		<description><![CDATA[When it comes to the wide range of interviewing questions that may appear during your next interview, they all boil down to four major categories: coding, technical, behavior, and design. Which category your questions may come from all depends on what position you are looking for. Expect more coding questions for software developers and expect [...]]]></description>
			<content:encoded><![CDATA[<p>When it comes to the wide range of interviewing questions that may appear during your next interview, they all boil down to four major categories: coding, technical, behavior, and design. Which category your questions may come from all depends on what position you are looking for. Expect more coding questions for software developers and expect more abstract technical and design questions for program managers.</p>
<p>The interviewing process itself starts with a resume screen and can continue on to a phone interview lasting to at most one hour with a couple of questions. You may have multiple of these kind of phone interviews, some more technical than others. If you pass the phone interviewing round, you may be asked to visit the recruiters during an on-campus interviewing session which can have up to six questions &#8211; but such practices may depend on the company.</p>
<p>To prepare for the long battle through the various stages of the interviewing process, it is best to review your CS1 material: arrays, linked lists, stacks, queues, trees and maybe even graphs. Know how to implement them and what run times to expect for different operations (such as finding and inserting).</p>
<p>During any problem presented to you, be sure that you understand the question (don&#8217;t be afraid to ask questions &#8211; they purposely make these questions vague!), provide test cases, pseudo code your solution, code your solution, and then run your test cases on your code. Do not worry about a full-proof solution; they are mostly looking for your thought process.</p>
<p>Be sure to look online for sample interviewing questions to familiarize yourself with what they may ask.</p>
<h3>NEXT WEEK</h3>
<p>Wednesday, 10/3, @ 6:30pm in HEC 111<br />
<b>ACM General Meeting</b></p>
<h3>LINKS</h3>
<p><a href='http://www.cs.ucf.edu/~acm/wp-content/uploads/2012/09/2012-19-9-Presentation.pptx'>September 19, 2012 &#8211; Technical Interview Prep Slides</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cs.ucf.edu/~acm/acm/919-technical-interview-prep/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[9/12] Internship Panel</title>
		<link>http://www.cs.ucf.edu/~acm/acm/220</link>
		<comments>http://www.cs.ucf.edu/~acm/acm/220#comments</comments>
		<pubDate>Fri, 14 Sep 2012 04:02:00 +0000</pubDate>
		<dc:creator>acm</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.cs.ucf.edu/~acm/?p=220</guid>
		<description><![CDATA[The fall semester interviews for internship and full-time positions are underway among major developers. To help students prepare, ACM at UCF decided to have an informal internship panel consisting of students from Microsoft, Lockheed Martin, Google, Intel, and even some research programs such as the REU program here at UCF and the Synthetic Reality Lab [...]]]></description>
			<content:encoded><![CDATA[<p>The fall semester interviews for internship and full-time positions are underway among major developers. To help students prepare, ACM at UCF decided to have an informal internship panel consisting of students from Microsoft, Lockheed Martin, Google, Intel, and even some research programs such as the REU program here at UCF and the Synthetic Reality Lab on Research Park. The panel covered how the interns were contacted about the position, the interviewing process, what their positions entailed, and their overall experience.</p>
<p>A lot of questions were about the hiring process for both industry and research level positions. Many of the panelists mentioned that it&#8217;s not just the GPA that will set you apart, but also being involved in any extracurricular activities related to technology and also personal projects. Personal projects are a great tool to showcase your knowledge during an interview and your passion for what you do. Some of the other questions dealt with the atmosphere of the companies and research labs.</p>
<h3>NEXT WEEK</h3>
<p>Wednesday, 9/19, @ 6:30pm in HEC 111<br />
<b>Practice Interview Session</b></p>
<h3>LINKS</h3>
<p><a href='http://www.cs.ucf.edu/~acm/wp-content/uploads/2012/09/2012-9-12-Presentation.pptx'>September 12, 2012 &#8211; Internship Panel Meeting Slides</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cs.ucf.edu/~acm/acm/220/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[9/5] First General Meeting</title>
		<link>http://www.cs.ucf.edu/~acm/acm/95-first-general-meeting</link>
		<comments>http://www.cs.ucf.edu/~acm/acm/95-first-general-meeting#comments</comments>
		<pubDate>Thu, 06 Sep 2012 16:16:56 +0000</pubDate>
		<dc:creator>acm</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.cs.ucf.edu/~acm/?p=215</guid>
		<description><![CDATA[September 5th marked the first Association for Computing Machinery (ACM) meeting of the Fall 2012 semester! The first meeting was an introduction to what ACM is and what ACM plans to do for the rest of the upcoming school year. President Jeff Loppert gave the audience a sneak-peek of what&#8217;s to come. The slides from [...]]]></description>
			<content:encoded><![CDATA[<p>September 5th marked the first Association for Computing Machinery (ACM) meeting of the Fall 2012 semester!</p>
<p>The first meeting was an introduction to what ACM is and what ACM plans to do for the rest of the upcoming school year. President Jeff Loppert gave the audience a sneak-peek of what&#8217;s to come. The slides from the presentation are available below if you would like to read through them yourself, otherwise here&#8217;s a quick run down on the need-to-know information you need to be an active ACM Member this year!</p>
<p><strong>Officers</strong></p>
<ul>
<li><i>President</i> &#8211; Jeffrey Loppert</li>
<li><i>Vice President</i> &#8211; Alex Consunji</li>
<li><i>Treasurer</i> &#8211; Kristina Mazza</li>
<li><i>Secretary</i> &#8211; Jennifer Graham</li>
<li><i>Public Relations</i> &#8211; Matt Hyman</li>
</ul>
<p><strong>Past Events</strong></p>
<ul>
<li>Research lab tours</li>
<li>Guest Speakers</li>
<li>Recruiting Sessions</li>
<li>Career Building Activites</li>
<li>&#8230; and more!</li>
</ul>
<p>This year we plan to highlight our three focus areas: career building, technical workshops, and community service. We&#8217;ll have Google and Microsoft coming out to the UCF campus to meet with students and to conduct interview prep. We&#8217;ll also have some workshops on version control, Windows 8 AppLabs hosting development sessions on campus, and mobile application development. Within our community, we&#8217;ll be focusing on events such as the JDRF Walk, Relay for Life and Robots Rock! with WEECS.</p>
<p>We are also looking for some driven, active students to fill in leadership roles we have within ACM this year. The committees we have open at the moment are: Hackathon planning, webmaster, mentors, and potentially future officer positions. More details on each committee can be found in the slides linked below.</p>
<h3>NEXT WEEK</h3>
<p>Wednesday, 9/12, @ 6:30pm in HEC 111</p>
<p><b>Internship Panel</b><br />
Want to intern, not sure how?<br />
Peers will answer your questions and more!</p>
<h3>LINKS</h3>
<p><a href='http://www.cs.ucf.edu/~acm/wp-content/uploads/2012/09/2012-9-5-Presentation.pptx'>September 5, 2012 &#8211; First General Meeting Slides</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cs.ucf.edu/~acm/acm/95-first-general-meeting/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[4/19] Jim Trentadue, &#8220;Software Development in the Workplace&#8221;</title>
		<link>http://www.cs.ucf.edu/~acm/acm/419-jim-trentadue-software-development-in-the-workplace</link>
		<comments>http://www.cs.ucf.edu/~acm/acm/419-jim-trentadue-software-development-in-the-workplace#comments</comments>
		<pubDate>Fri, 20 Apr 2012 00:05:27 +0000</pubDate>
		<dc:creator>acm</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.cs.ucf.edu/~acm/?p=208</guid>
		<description><![CDATA[Today ACM members were informed of all the ins-and-outs of software development from Jim Trentadue&#8217;s point of view. After going around the room and discussing our futures in software development and what we would like to accomplish, Mr. Trentadue began with an overall model of the Software Development Life Cycle (SDLC). The model divided the [...]]]></description>
			<content:encoded><![CDATA[<p>Today ACM members were informed of all the ins-and-outs of software development from Jim Trentadue&#8217;s point of view. After going around the room and discussing our futures in software development and what we would like to accomplish, Mr. Trentadue began with an overall model of the Software Development Life Cycle (SDLC). The model divided the life cycle into its key phases and highlighted the positions and careers that are involved along the way.</p>
<p>The <em>Project Initiation</em> stage kicks off the project. This typically includes Project Coordinators, a Program Manager, and Project Managers. (A Program Manager oversees all of the projects within a department, and thus multiple project managers). We then have the <em>Requirements</em> stage where we find out the WHAT about the project &#8211; what needs to be included or excluded in the final product. This becomes the task of a Business Analyst who gathers the requirements by talking to the client one-on-one and communicates these ideas to a Systems Analyst for the technical details.</p>
<p>In the <em>Design</em> stage, we find out the HOW about the project: what the overall design of the project will look like and how it will meet the requirements laid out by the Business Analyst and client. This phase becomes the job of the Technical Lead, the Application Architect and perhaps also the System Analyst who spoke to the Business Analyst. The design comes in the form of prototypes, and this work typically is of more senior-level professionals. Once the design has been approved, the project then goes into the <em>Construction/Coding</em> stage in which the actually programming of the system is done. (A student coming out of college would typically work on bug-fixing of medium-priority level issues.)</p>
<p><em>Testing</em>, the area that Jim Trentadue works in, handles a wide range of testing from unit, to system, to integration, to regression, to automated, to user acceptance, and performance (to find the breaking point of the project). After extensive testing, we then go into one of the later stages of <em>Deployment</em> which is very procedure-driven.</p>
<p>Another topic that Mr. Trentadue touched upon was outsourcing and how it is the concern of everyone in the field no matter what niche you may fall into. In an article by CIO.com titled <a href="http://www.cio.com/article/696997/12_IT_Outsourcing_Predictions_for_2012" title="12 IT Outsourcing Predictions for 2012" target="_blank">12 IT Outsourcing Predictions for 2012</a>, Mr. Trentadue highlights some of the hot trends that we may see in the rest of the upcoming year to keep in mind during your job search.</p>
<p>Towards the end of his talk, he presented students with a to-do list of points to keep in mind after the presentation was over:</p>
<ul>
<li>Learn as many technologies as possible</li>
<li>Enlist in professional organizations within your field of interest</li>
<li>Get certified in different technical areas</li>
<li>Subscribe to magazines like InformationWeek to stay up-to-date on the latest trends</li>
<li>Ask when applying for a new job about their position on outsourcing and prepare yourself before going in with some facts.</li>
<li>Find out what makes you stand out. Emphasize your processes, your documentation, and perhaps even that you do not mind travelling often. These are all aspects that may land you that perfect job!</li>
<li>Remain energetic and fresh!</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.cs.ucf.edu/~acm/acm/419-jim-trentadue-software-development-in-the-workplace/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[4/12] Chris Haddad, &#8220;Adopt an Entrepreneurial Spirit: Ownership, Branding, &amp; Disruption&#8221;</title>
		<link>http://www.cs.ucf.edu/~acm/acm/412-chris-haddad-adopt-an-entrepreneurial-spirit-ownership-branding-disruption</link>
		<comments>http://www.cs.ucf.edu/~acm/acm/412-chris-haddad-adopt-an-entrepreneurial-spirit-ownership-branding-disruption#comments</comments>
		<pubDate>Fri, 13 Apr 2012 02:56:13 +0000</pubDate>
		<dc:creator>acm</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.cs.ucf.edu/~acm/?p=202</guid>
		<description><![CDATA[Today at 6PM, members attended a guest lecture by Chris Haddad on unlocking your inner entrepreneurial talents and using them to launch your dream career. Jeffery Loppert gave a short introduction for Chris Haddad highlighting his other speaking opportunities at various conferences and his current position as WS02&#8242;s VP of Technology Evangelism. Chris first obtained [...]]]></description>
			<content:encoded><![CDATA[<p>Today at 6PM, members attended a guest lecture by Chris Haddad on unlocking your inner entrepreneurial talents and using them to launch your dream career. Jeffery Loppert gave a short introduction for Chris Haddad highlighting his other speaking opportunities at various conferences and his current position as WS02&#8242;s VP of Technology Evangelism.</p>
<p>Chris first obtained his degree in Electrical Engineering and as part of his academic career was exposed to programming in languages like Ada, C, and Fortran. As such, he then shared some tips and advice as to how to start your own business and to grow in your career.</p>
<p>First he points out that one should <b>follow their passion</b>, plain and simple. If you&#8217;re going to spend 40 hours or more per week on your career choice, then it better be what you want to do everyday. The key is to finding your passion and to approach it from a business or economic perspective; identify what people need day-to-day that you can provide. He then cited an example site, Etsy, which is an open bazaar for crafts that allows people to create items and to sell them to a target consumer.</p>
<p><b>Be a builder</b>; &#8220;delight your clients with ingenuity and bespoke craftsmanship.&#8221; What he means by this ambiguous statement is to find what you revel in creating &#8211; what only you can provide and to delight whomever your customers will be with your creativity, dedication, and passion. He mentioned that one <b>&#8220;cannot make time&#8221;</b> and so one should be productive &#8211; to think of a minimal, viable product and to iterate over it based on what people truly need. <strong>Be persistent</strong> about ideas!</p>
<p>Using the people that you know around you and to start off locally can be the baby steps one needs to reach the stable position of providing a service. <strong>Embrace the global economy</strong> and recruit global talent once you have a product. However, do not forget to <strong>establish a safety net</strong> to recover quickly from unexpected situations &#8211; a personal project or a company.</p>
<p>Also key is to <strong>maintain your own professional network</strong> on sites such as LinkedIn and to write a blog &#8211; something that you can share with like-minded people or potential employers about your current projects and insights. Hot topics right now, he mentioned, are: cloud computing, social, and mobile media.</p>
<p>Coming to the conclusion of his talk, he reiterated some of the points we wanted members to leave with and to muddle over: following your passion, being innovative, <strong>having drive</strong>, being persistent, and having a can-do attitude. <strong>Always say &#8220;yes&#8221; when opportunity knocks</strong> as you can surprise even yourself with what you are capable of.</p>
<p>To find out more about Chris Haddad, visit the following link, follow him on Twitter, or shoot him an e-mail:<br />
<a href="http://blog.cobia.net/cobiacomm/">blog.cobia.net/cobiacomm/</a><br />
twitter@cobiacomm<br />
mailto: haddadc@cobia.net</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cs.ucf.edu/~acm/acm/412-chris-haddad-adopt-an-entrepreneurial-spirit-ownership-branding-disruption/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[4/5] Officer Elections &amp; Google Easter Egg Hunt</title>
		<link>http://www.cs.ucf.edu/~acm/acm/45-officer-elections-google-easter-egg-hunt</link>
		<comments>http://www.cs.ucf.edu/~acm/acm/45-officer-elections-google-easter-egg-hunt#comments</comments>
		<pubDate>Sat, 07 Apr 2012 02:12:06 +0000</pubDate>
		<dc:creator>acm</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.cs.ucf.edu/~acm/?p=199</guid>
		<description><![CDATA[On Thursday, April 5th, ACM members funneled into Classroom 1 309 for a combo meeting full of elections, pizza, surprises and Google! First, officer elections were held for President, Vice President, Treasurer, Secretary, and Public Relations Director positions. We decided to hold off on appointing additional leadership positions until the Fall semester once everyone is [...]]]></description>
			<content:encoded><![CDATA[<p>On Thursday, April 5th, ACM members funneled into Classroom 1 309 for a combo meeting full of elections, pizza, surprises and Google! First, officer elections were held for President, Vice President, Treasurer, Secretary, and Public Relations Director positions. We decided to hold off on appointing additional leadership positions until the Fall semester once everyone is settled into their classes after a relaxing summer.</p>
<p>After some deliberation, the following list of students consist of the new officers of the ACM Chapter at the University of Central Florida:</p>
<p>President &#8211; Jeffrey Loppert<br />
Vice President &#8211; Alex Consunji<br />
Treasurer &#8211; Kristina Mazza<br />
Secretary &#8211; Jennifer Graham<br />
Public Relations &#8211; Matt Hyman </p>
<p>Following the elections, we then had a special presentation from Derek about the Harvard Business School Summer Venture in Management Program. We then had a surprise guest appearance from Raymond Ho via Google Hangout from the Mountain View Googleplex. He spoke with the students about how they can participate in the upcoming Google Code Jam. He went over the registration process, general rules, and prizes and covered how students can practice problems from previous contests and how students can view past participants solutions. The information he covered can be found in the FAQ section on the Code Jam website. </p>
<p>Finally, our meeting ended with the Google Easter Egg Hunt. All of the participants received a Google Wallet (a small folded Google Dry Erase sticker) and hunted down QR codes to Google gear like pens and key chains. The strips of paper were to be neatly tucked into the Google Wallet and members could come back and go through a Google Checkout process to receive the prizes.</p>
<p>[NEXT WEEK]</p>
<p>&#8220;Adopt an Entrepreneurial Spirit: Ownership, Branding, and Disruption&#8221; Guest Lecture<br />
- Chris Haddad<br />
Vice President of Technology Evangelism at WSO2<br />
Melbourne, Florida Area Information Technology and Services<br />
6PM at HEC 101</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cs.ucf.edu/~acm/acm/45-officer-elections-google-easter-egg-hunt/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[3/29] Tailgater&#8217;s Social</title>
		<link>http://www.cs.ucf.edu/~acm/acm/329-tailgaters-social</link>
		<comments>http://www.cs.ucf.edu/~acm/acm/329-tailgaters-social#comments</comments>
		<pubDate>Sat, 31 Mar 2012 03:16:17 +0000</pubDate>
		<dc:creator>acm</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.cs.ucf.edu/~acm/?p=191</guid>
		<description><![CDATA[After a long week of classes, work, and other obligations &#8211; our members met up at the on-campus Tailgater&#8217;s for some respite. Among great food and friends, we conversed about all things computers (and somethings not so computers!). It was a welcoming break from the fast-paced college life we all get accustomed to. !!&#8211;NEXT WEEK&#8211;!! [...]]]></description>
			<content:encoded><![CDATA[<p>After a long week of classes, work, and other obligations &#8211; our members met up at the on-campus Tailgater&#8217;s for some respite. Among great food and friends, we conversed about all things computers (and somethings not so computers!). It was a welcoming break from the fast-paced college life we all get accustomed to.</p>
<p><strong>!!&#8211;NEXT WEEK&#8211;!!</strong></p>
<p>KNOW THAT:<br />
1. There will be ***FREE PIZZA***<br />
2. We&#8217;re going to hold Officer Elections &#8211; Write your friends name on a piece of paper<br />
3. An Exciting Google Easter Egg Hunt &#8212; where you&#8217;ll receive a ton of free stuff!</p>
<p>PRIZES INCLUDE:<br />
-Google Branded Leather Bound Notebooks<br />
-Android pajama sleeping pants<br />
-Google Brand Gym Bags<br />
-Google Pens and Key chains</p>
<p>- (Courtesy of Jeffery Loppert) </p>
]]></content:encoded>
			<wfw:commentRss>http://www.cs.ucf.edu/~acm/acm/329-tailgaters-social/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[3/22] Programming Contest</title>
		<link>http://www.cs.ucf.edu/~acm/acm/322-programming-contest</link>
		<comments>http://www.cs.ucf.edu/~acm/acm/322-programming-contest#comments</comments>
		<pubDate>Sat, 24 Mar 2012 03:02:12 +0000</pubDate>
		<dc:creator>acm</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.cs.ucf.edu/~acm/?p=184</guid>
		<description><![CDATA[Funneling into the CAVE at 6PM, ACM members were able to put their programming skills to the test &#8211; not just to land the perfect job but for bragging rights and prizes! Problems focused on a variety of different algorithms and skill-sets allowing members to write in C, Java, or Python. Prizes were awarded for [...]]]></description>
			<content:encoded><![CDATA[<p>Funneling into the CAVE at 6PM, ACM members were able to put their programming skills to the test &#8211; not just to land the perfect job but for bragging rights and prizes! Problems focused on a variety of different algorithms and skill-sets allowing members to write in C, Java, or Python. Prizes were awarded for most of the participants and the grand prize will be given out during the rest of the week!</p>
<p>Visit <a href="http://www.shanechism.com/challenge">Shane Chism</a>&#8216;s website within the week to try out the problems yourself even if you could not attend last Thursday. You can download the problem set <a href="http://www.cs.ucf.edu/~acm/wp-content/uploads/2012/03/2012-3-22-ACM-Problem-Set.pdf">here</a>. The contest will still be open for a week following the Thursday meeting, so give the problems a shot!</p>
<p><strong>!!!&#8211;UPDATE&#8211;!!!</strong></p>
<p>Now that the full week has passed and the prizes were handed out &#8211; here&#8217;s the information for all the latecomers:</p>
<p>Problem Set from the 3/22/2012 Event:<br />
<a href='http://www.cs.ucf.edu/~acm/wp-content/uploads/2012/03/2012-3-22-ACM-Problem-Set.pdf'>Click Here (Problems)</a></p>
<p>And below are the Contest Solutions for your enjoyment (Don&#8217;t look ahead! Really try the questions out!):<br />
<a href='http://www.cs.ucf.edu/~acm/wp-content/uploads/2012/04/Programming-Contest-Solutions.zip'>Click Here (Solutions)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cs.ucf.edu/~acm/acm/322-programming-contest/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[3/15] Interview Coding Session</title>
		<link>http://www.cs.ucf.edu/~acm/acm/315-interview-coding-session</link>
		<comments>http://www.cs.ucf.edu/~acm/acm/315-interview-coding-session#comments</comments>
		<pubDate>Sat, 17 Mar 2012 02:48:30 +0000</pubDate>
		<dc:creator>acm</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.cs.ucf.edu/~acm/?p=171</guid>
		<description><![CDATA[In the previous weeks, we&#8217;ve heard about various internships and summer opportunities from leaders in industry. During those presentations, we learned about the application process. Building upon that experience we felt it was best to put our members to the test and see how they&#8217;d perform during a mock technical interview. Before the coding session [...]]]></description>
			<content:encoded><![CDATA[<p>In the previous weeks, we&#8217;ve heard about various internships and summer opportunities from leaders in industry. During those presentations, we learned about the application process. Building upon that experience we felt it was best to put our members to the test and see how they&#8217;d perform during a mock technical interview. </p>
<p>Before the coding session began, several announcements were discussed, including a join outreach program with <a href="http://women.eecs.ucf.edu/" title="WEECS">WEECS</a>. The program is designed to encourage young children to become interested in STEM ( Science, Technology, Engineering and Math ) disciplines. Volunteers work together to lead an activity designed to demonstrate basic Computer Science &#038; Electrical Engineering Concepts utilizing LeTry Robots in a hands-on exercise that gets children engaged and motivated.</p>
<p>The technical questions consist of actual interview questions use by major companies such as Microsoft, Google, Amazon, and Facebook. The questions used were compiled from career building websites such as <a href="http://www.careercup.com/" title="Career Cub">Career Cup</a> and <a href="http://www.glassdoor.com/index.htm" title="Glass Door">Glass Door</a>. If you were unable to make the meeting, then please look at those web pages for some vital information on interviewing. </p>
<p>For the Interview Questions given at the meeting, follow <a href="http://www.cs.ucf.edu/~acm/wp-content/uploads/2012/03/Interview-Questions.docx">this</a> link. Remember above all: talk aloud, ask questions, and just relax &#038; show them what you got!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cs.ucf.edu/~acm/acm/315-interview-coding-session/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
