Difference between revisions of "Programming and CS - Getting Started"

From Computer Science
Jump to: navigation, search
(Algorithms)
(16 intermediate revisions by 2 users not shown)
Line 1: Line 1:
We are developing bootcamps on the most important topics and skills that are used throughout our courses.  These can be used by incoming undergraduate students to get a head start, incoming graduate students to review, or current students to refresh/remediate.
+
We are developing Getting Started pages on the most important topics and skills that are used throughout our courses.  These can be used by incoming undergraduate students to get a head start, incoming graduate students to review, or current students to refresh/remediate.
  
=Programming Bootcamps=
+
=Recommended Computer=
 +
Much of what we do in CS courses can work in Windows, Mac OS, Linux, or Chrome.  There will be an odd thing or two still that may not work in Chrome. 
  
==Python==
+
All other things being equal, getting a computer that is not "bottom of the barrel" would be good.  Chromebooks in the $400+ range should generally work reasonably well.  For Windows/Linux/Mac OS laptops, you should be looking for 8GB RAM bare minimum, preferred 16GB if possible, and avoid getting a laptop with an i3 or Celeron processor; this roughly corresponds to the $500+ price range.  You can potentially get anything to work, but will have an easier time with a medium-range computer than a low-end system.
Python bootcamp is at [[Python Programming Bootcamp]]
 
  
==C==
+
For laptops, we recommend getting at least a 3 year warranty (since they tend to break if you actually do transport them around).  Also, we recommend getting an option that has a long battery life (rule of thumb - battery life will be half of its original rating after 1-2 years of regular daily use).
C programming bootcamp is at [[C Programming Bootcamp]].
 
  
==R==
+
You should also have the ability to install programs on the system and have a normally reliable internet connection at home if possible.
The R Bootcamp is at - [[R Programming Bootcamp]]
 
  
=Algorithms and Data Structures=
+
If you have a particular system in mind for purchase that you would like an opinion on, please feel free to contact one of the CS faculty members.
  
==Data Structures==
+
University requirements are listed [https://www.indstate.edu/online/resources/students/technology-requirements here] and are similar to that described above.  A laptop option recommended by the university is listed at [https://indstate.teamdynamix.com/TDClient/1851/Portal/KB/ArticleDet?ID=46748 here] (go to http://dell.com/indstate for purchasing it) and is a reasonable choice.
  
''Coming soon''
+
=Getting Started Pages=
 +
* [[Linux and CS Systems - Getting Started]]
 +
* [[Handin|Handin - The CS Assignment Handin System]]
 +
* [[Python Programming - Getting Started]]
 +
* [[C Programming - Getting Started]]
 +
* [[R Programming - Getting Started]]
 +
* [[Algorithms and Data Structures - Getting Started]]
 +
* [[Gitlab - Getting Started]]
  
==Algorithms==
+
=Practice Programming Contest Problems=
''Coming soon''
+
These are problems with precisely defined correct output, so that you can submit your program to make sure it is 100% correct.
  
=Linux and CS Systems=
+
* [http://www.hackerrank.com/ Hacker Rank] - very user-friendly, different programming languages available, different categories of questions
The Linux and CS Systems bootcamp is here - [[Linux and CS Systems Bootcamp]].
+
* [https://open.kattis.com/problems Practice problems] at open.kattis.com (sort by difficulty or solved % to try the easiest ones first)
 +
* [http://cs.indstate.edu/acm/contests.html ISU ACM Club's Contest Problem page]
 +
* [http://cs.indstate.edu/~jkinne/Cpractice/ A few simple practice problems], with solutions to some on the CS server. See the .txt files.
 +
 
 +
= Source Control =
 +
It is a good idea to use source control when developing software, and is necessary when you are developing in a group or professionally. When working on assignments or course projects it is the best practice to use a private repository so other students cannot copy your work. Git is the industry standard for source control. Here are some resources to use to learn Git.
 +
 
 +
* https://try.github.io/
 +
* https://learngitbranching.js.org/
 +
* https://www.atlassian.com/git

Revision as of 16:11, 5 January 2023

We are developing Getting Started pages on the most important topics and skills that are used throughout our courses. These can be used by incoming undergraduate students to get a head start, incoming graduate students to review, or current students to refresh/remediate.

Recommended Computer

Much of what we do in CS courses can work in Windows, Mac OS, Linux, or Chrome. There will be an odd thing or two still that may not work in Chrome.

All other things being equal, getting a computer that is not "bottom of the barrel" would be good. Chromebooks in the $400+ range should generally work reasonably well. For Windows/Linux/Mac OS laptops, you should be looking for 8GB RAM bare minimum, preferred 16GB if possible, and avoid getting a laptop with an i3 or Celeron processor; this roughly corresponds to the $500+ price range. You can potentially get anything to work, but will have an easier time with a medium-range computer than a low-end system.

For laptops, we recommend getting at least a 3 year warranty (since they tend to break if you actually do transport them around). Also, we recommend getting an option that has a long battery life (rule of thumb - battery life will be half of its original rating after 1-2 years of regular daily use).

You should also have the ability to install programs on the system and have a normally reliable internet connection at home if possible.

If you have a particular system in mind for purchase that you would like an opinion on, please feel free to contact one of the CS faculty members.

University requirements are listed here and are similar to that described above. A laptop option recommended by the university is listed at here (go to http://dell.com/indstate for purchasing it) and is a reasonable choice.

Getting Started Pages

Practice Programming Contest Problems

These are problems with precisely defined correct output, so that you can submit your program to make sure it is 100% correct.

Source Control

It is a good idea to use source control when developing software, and is necessary when you are developing in a group or professionally. When working on assignments or course projects it is the best practice to use a private repository so other students cannot copy your work. Git is the industry standard for source control. Here are some resources to use to learn Git.