User Tools

Site Tools


faq

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
faq [2016/04/11 04:50] navidfaq [2016/05/29 01:45] (current) navid
Line 5: Line 5:
 ====== General ====== ====== General ======
  
-===== Do I need to register for a EECS/CSE Computer Account? =====+===== Do I need to Register for a EECS/CSE Computer Account? =====
  
-  *Yes, we will use PRISM account to submit assignments and also to work on the labs. If you have difficulty setup your account, please consult the Lab Monitor at LAS1006A.+  *Yes, we will use PRISM account to submit assignments and also to work on the labs. Please use [[https://webapp.eecs.yorku.ca/activ8|this link to setup your account]]. If you have difficulty setup your account, please consult the Lab Monitor at LAS1006A (make sure you have your [[http://mms.yorku.ca|Passport York]] setup and YorkU Student Card ready)
  
-===== How can submit my assignments? =====+===== How Should Submit My Quiz? =====
   * Please use [[https://www.eecs.yorku.ca/submit/|this page]] to submit your assignments    * Please use [[https://www.eecs.yorku.ca/submit/|this page]] to submit your assignments 
   * Here is [[http://www.cse.yorku.ca/glade/submit.html|a guide]] on how to use the Submit system   * Here is [[http://www.cse.yorku.ca/glade/submit.html|a guide]] on how to use the Submit system
 +  * For Quizzes you should use command line to submit your saved Java files. Here is sample command to submit my_file.java for Quiz1 (e.g. Q1): <code> /cs/local/bin/submit 2030 Q1 my_file.java </code>
  
-===== I am sick and cannot submit my assignment or attend midterm. What should do? =====+===== I am Sick and Cannot Submit My Assignment or Attend Midterm. What Should Do? =====
  
  
   *For missed assignments or midterm due to sickness, please send an email to course director stating "inability to write due to sickness". The weight of the assignment or midterm will be transferred to the final exam.   *For missed assignments or midterm due to sickness, please send an email to course director stating "inability to write due to sickness". The weight of the assignment or midterm will be transferred to the final exam.
  
-===== Where can find my marks and grades? =====+===== Where Can Find My Marks and Grades? =====
   *Please use [[https://www.eecs.yorku.ca/~roumani/ePost/server/ep.cgi?year=2015-16&term=S&course=2030|EECS-ePost]] to find your marks.     *Please use [[https://www.eecs.yorku.ca/~roumani/ePost/server/ep.cgi?year=2015-16&term=S&course=2030|EECS-ePost]] to find your marks.  
 +
 +
 +===== How to Download Java and Run a Basic HelloWorld! Application =====
 +
 +How to get Java Standard Edition Development Kit (Java SE JDK):
 +  * http://www.oracle.com/technetwork/java/javase/downloads/index.html
 +  *We simply call it JDK 8 (sometimes refer to as Java 1.8 or Java SE 1.8).
 +  *Decompress the JDK which you have downloaded from Oracle website into a directory (or simply run the installer under Windows).
 +
 +Java Documentations and a HelloWorld program:
 +  *http://docs.oracle.com/javase/tutorial/getStarted/cupojava/win32.html
 +  *http://docs.oracle.com/javase/8/
 +
 +Details for Java Application Programming Interface (Java API):
 +  *http://docs.oracle.com/javase/8/docs/api/index.html
 + 
 +
 +You need to set environmental variables for your Bash Shell (or Command Prompt in windows).
 +
 +For windows, each time you open a command prompt you should run the below (or permanently apply via global environmental variables):
 +  <code>
 +  SET JAVA_HOME=C:\Program\ Files\Java\your_jdk_directory
 +  SET PATH=%JAVA_HOME%\bin;%PATH%
 +  SET CLASSPATH=.;lib/*
 +  </code>
 +
 +For Unix and Linux systems, each time you open Bash shell you should run the below (or permanently apply via /etc/bash.bashrc):
 +  <code>
 +  export JAVA_HOME=/cs/home/your_username/your_jdk_directory
 +  export PATH=${JAVA_HOME}/bin:${PATH}
 +  export CLASSPATH=".:lib/*"
 +  </code>
 +
 +
 +If you are using EECS PRISM Lab, you can simply run the below commands to setup your environment 
 +<code>
 +cd ~
 +touch .tcshrc
 +touch .bashrc
 +touch ~/.tcshrc
 +touch ~/.bashrc
 +echo 'setenv JAVA_HOME /eecs/local/pkg/jdk-1.8.0_91' >> ~/.tcshrc
 +echo 'setenv GRADLE_HOME /eecs/local/pkg/gradle-2.13' >> ~/.tcshrc
 +echo 'setenv PATH ${JAVA_HOME}/bin:${GRADLE_HOME}/bin:${PATH}' >> ~/.tcshrc
 +echo 'setenv CLASSPATH ".:lib/*"' >> ~/.tcshrc
 +chmod +x ~/.tcshrc
 +echo 'export JAVA_HOME=/eecs/local/pkg/jdk-1.8.0_91' >> .bashrc
 +echo 'export GRADLE_HOME=/eecs/local/pkg/gradle-2.13' >> .bashrc
 +echo 'export PATH=${JAVA_HOME}/bin:${GRADLE_HOME}/bin:${PATH}' >> .bashrc
 +echo 'export CLASSPATH=".:lib/*"' >> .bashrc
 +chmod +x ~/.bashrc
 +</code>
 +
 +Now create a file called HelloWorldApp.java that has the content below:
 +
 +<code>
 +public class HelloWorldApp {
 +    public static void main(String[] args) {
 +        System.out.println("Hello World!"); 
 +    }
 +}
 +</code>
 +
 +  * We can compile via running: <code>javac HelloWorldApp.java</code>
 +  * We can run our program via <code>java HelloWorldApp</code>
 +
 +
 +
 +===== How to Connect Remotely to EECS Servers via SSH? =====
 +
 +SFTP/SSH server: red.cse.yorku.ca
 +
 +You don't always need to be in the PRISM lab to work on your assignments. Working on your own computer is convenient if the lab is busy, closed, or if you live far from the University. To do so, you must first install software on your computer. Which software you install depends on how you wish to work. 
 +
 +You can use [[http://www.chiark.greenend.org.uk/~sgtatham/putty/|Putty]] or [[http://mobaxterm.mobatek.net/download.html|MobaXterm]] to connect to red.cse.yorku.ca
 +
 +Here is a [[https://www.youtube.com/watch?v=rDSIWTaEY6E|video]] on how to use MobaXterm.
 +
 +===== How to Setup My Own Development Environment?  =====
 +
 +You can choose from many available Integrated Development Environments (IDEs). Here is a [[https://www.youtube.com/watch?v=2CFufshk86I|video]] explaining [[https://www.jetbrains.com/idea/download/|IntelliJ]]    
 +
 +
 +===== Basic Shell Commands  =====
 +
 +We will cover Unix [[https://en.wikipedia.org/wiki/Bash_%28Unix_shell%29|Shells]] in details for EECS2031, however here is a quick  [[http://lifehacker.com/5633909/who-needs-a-mouse-learn-to-use-the-command-line-for-almost-anything|primer.]] and [[http://cli.learncodethehardway.org/bash_cheat_sheet.pdf|here]] is a more advanced version.
 +
 +===== What is the Path to Eclipse in RED.CSE.YORKU.CA?  =====
 +  */cs/local/bin/eclipse
  
faq.1460350204.txt.gz · Last modified: 2016/04/11 04:50 by navid

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki