User Guide
Welcome to CampusCompanion
Organising your university life is just a few keystroke away!
CampusCompanion is a desktop application built for NUS Computer Science students to manage the tracking of assignments and internships.
Here’s an overview of how CampusCompanion can help you streamline the most important tasks that you will encounter in your university life.
- Store and edit information about assignments and internships
- Track the status of these assignments and internships
- Overview of the tasks for the upcoming week and month
Table of Contents
- Welcome to CampusCompanion
- Table of Contents
- How to use this guide
- Getting Started
- Glossary
- Understanding the Graphical User Interface (GUI)
- Command format
- CampusCompanion Tutorial (for new users)
- Features
- Assignment Features
- Internship Features
- General Commands
- Data Related Features
- Command Summary
- Parameter Summary
- FAQ
- Known issues
How to use this guide
Notations used in this guide
We have various information in different coloured boxes.
New Users
If you are new here, and need help with getting started with our application, visit our Getting Started guide to onboard onto CampusCompanion smoothly!
After setting up the application, if you are looking for a step-by-step walk-through on the various features that CampusCompanion has, click here for a tutorial of CampusCompanion.
If you are looking to understand the different parts of the Graphical User Interface, click here for a comprehensive look at our GUI.
If you want a detailed look into each of the features that CampusCompanion has, visit our features section.
For any other queries that you might have, visit the FAQ section to find the answers to your queries!
Experienced users
If you have some experience with our application, and would like an overview of the keywords, visit our command summary section or parameter summary section.
If you want a detailed look into each of the features that CampusCompanion has, visit our features section.
Getting Started
-
Ensure you have Java
11
or above installed in your Computer. Click here to learn how to check your java version -
Download the latest
CampusCompanion.jar
from here. -
Copy the file to the folder you want to use as the home folder for your CampusCompanion.
-
Open a command terminal,
cd
into the folder you put the jar file in, and use thejava -jar CampusCompanion.jar
command to run the application.
A GUI similar to the below should appear in a few seconds.
-
Type the command in the command box and press Enter to execute it. e.g. typing
help
and pressing Enter will open the help window.
Some example commands you can try:-
list-a
: Lists all assignments, and changes the view to assignments view (if you are currently at internships view). -
list-i
: Lists all internships, and changes the view to internships view (if you are currently at assignments view). -
add-a n/CS2100 Assignment 1 e/2023-12-29
: Adds an assignment namedCS2100 Assignment 1
with a deadline of29 Dec 2023 23:59
to the Campus Companion. -
delete-a 3
: Deletes the assignment with index 3 in the current list. -
mark-a 1
: Marks the assignment with index 1 in the current list. -
exit
: Exits the app.
-
-
Refer to the Features below for details of each command.
Scroll back to Table of Contents
Glossary
Definitions
Here are some descriptions of the words we use throughout the User Guide:
Term | Definition |
---|---|
Command | An input from the user that tells CampusCompanion to perform an action (eg. ADD an assignment, DELETE an assignment). |
Parameter | Parameters are the details you would include about the assignment/internship (eg. Name, Description). A command may include 1 or more parameters. |
Required Parameter | These are parameters that must be included in the command, otherwise the command will fail, and an error message will be displayed to you. |
Optional Parameter | These are parameters that can be omitted from the command with no errors. Such parameters provides you the flexibility of capturing or omitting additional, less important information. |
GUI | Graphical User Interface (GUI) represents the visual display of CampusCompanion which you are looking at and interacting with. |
GUI component | The GUI is made up of many GUI components such as the calendar component, the list component etc. For more information on specific GUI components, click here. |
CLI | Command Line Interface (CLI) represents a text-based user interface to interact with the application. |
Scroll back to Table of Contents
Understanding the Graphical User Interface (GUI)
Quick Orientation
CampusCompanion’s GUI has 2 main views, Assignments
and Internships
.
Assignments View
Here is a quick summary of each GUI component within CampusCompanion’s assignments view.
Component | Description |
---|---|
Menu Bar | Contains dropdown menu for File which lets you exit CampusCompanion, and Help which leads you to this user guide. |
Command Box | Commands are entered here. |
Result Box | Feedback from entered command is shown here. If command entered is erroneous, the required correct usage will be shown. |
List Title | Indicates if Assignments or Internships are currently being shown. |
Assignment/Internship List | Shows all relevant information cards, can be switched between Assignments and Internships through the use of the list-x command, x being a or i respectively. When CampusCompanion is first opened, all Internship information cards will be shown. |
Information Card | Shows all information of individual assignment or internship , these can be filtered through the use of list or find . |
Index Number | The index number of the card, it is used in commands like delete and edit . |
Calendar with Task Preview | The calendar shows up to 2 tasks, be it assignment or internship for each day, if there are any. The current day is highlighted in purple. |
Calendar Navigation Buttons | Used to change the month being shown on the calendar. |
Footer | Shows the location of the saved data. This file can be used to move data to another computer. |
Internships View
Here is a quick summary of the different GUI components within CampusCompanion’s internships view.
Component | Description |
---|---|
Sub-list Title | Indicates if Internship roles or Internship tasks are being shown in that list |
Internship Role List | Shows the information of individual internship role that you’re applying for. For example: Google, Backend Engineer, Summer 2024 can be an internship role |
Internship Task List | Shows the information of individual internship task for an internship role that you’re applying for. For example: live interview for Google Backend engineer can be an internship task |
Scroll back to Table of Contents
Notes about the GUI
In order to use any assignment
commands, you must first switch to the assignment view (using list-a
). Otherwise, you will receive an error message.
Similarly, in order to use any internship
commands, you must first switch to the internship view (using list-i
). Otherwise, you will receive an error message.
The calendar will only display tasks for the selected month, up to a maximum of 2 for each day. Names that are too long will be truncated.
While there are clickable buttons such as the calendar navigation button and the options on the menu bar, CampusCompanion is a CLI-focused application, and as such, implements commands to do the same thing. For example, clicking:
Help
can be achieved using thehelp
command.File -> Exit
can be achieved using theexit
command.
Scroll back to Table of Contents
Command format
Format | Explanation | Examples |
---|---|---|
Words in UPPER_CASE |
These are parameter values that are supplied by the user | add-a n/NAME... can be used as add-a n/CS2103T TP... |
Items in square brackets | These are optional parameters (can be left empty by user) | add-a n/NAME ... [t/TAG] can be used as add-a n/CS2103T TP t/milestone2 or add-a n/CS2103T TP |
Items with … after them |
These are parameters that can be used multiple times (or omitted completely) | add-a ... [t/TAG]… can be used as add-a ... t/groupProject t/milestone2 or add-a ... |
Parameters can be in any order. | N/A | add-a n/NAME e/DEADLINE ... is equivalent to add-a e/DEADLINE n/NAME |
Extraneous parameters for commands that do not take in parameters will be ignored. | N/A | list-i 123 will be equivalent to list-i |
Scroll back to Table of Contents
CampusCompanion Tutorial (for new users)
This is a tutorial for new CampusCompanion users. This tutorial will provide you step-by-step instructions for how to use each command for both assignments and internships.
Step 1: Launch CampusCompanion. You may refer to the instructions here.
Step 2: Let’s change the view to see assignments first. Enter the command list-a
Step 3: Let’s try adding an assignment to CampusCompanion. Enter the command
add-a n/CC tutorial 1 e/2023-11-29
Step 4: Add a few more assignments. Try out filling optional parameters as well, eg:
add-a n/CS2100 Assignment 1 e/2023-11-30 13:00 t/Coding
add-a n/CC optional 1 e/2023-11-29 16:00 d/try this out! s/complete p/2023-11-27 t/Optional
- Note: On adding assignments, they will automatically be sorted by their deadlines.
Step 5: Let us try editing the description of CC tutorial 1
to say nice descriptive description!
.
In the example above, CC tutorial 1
is in index 2, so we do edit-a i/2 d/nice descriptive description!
Step 6: We are done with CC tutorial 1
! Let’s now mark it as complete. First, let’s try using find-a
to filter and narrow
down the list. We can do find-a tutorial
to filter the assignments list to show only assignments that
contain tutorial
Step 7: Then, we use the index shown in the list (in this case, CC tutorial 1
is at index 1) and do mark-a 1
to mark the assignment as completed
Step 8: To see all our assignments again, let’s do list-a
Step 9: Lastly for our assignments, let’s delete our CC tutorial 1
as we no longer want to track it.
With reference the picture above, we will do delete-a 2
Step 10: Now, let’s change the view to see internships. Enter the command list-i
Step 11: Similar to assignments, we can add internship roles (under applications) and tasks! Let’s add a few roles now using the command add-i-role
add-i-role n/Google r/SWE c/Summer 2024
add-i-role n/FaceBook r/DevOps c/Winter 2024 d/Impress Mr Mark p/9500 o/follow-up l/Florida
Step 12: Now, let’s add in some tasks relating to our roles, with add-i-task
add-i-task n/OA i/1 e/2023-11-30 11:30
add-i-task n/Interview i/1 e/2023-12-10 16:00 o/follow-up
add-i-task n/OA i/2 e/2023-11-29 17:30 s/complete o/follow-up
Step 13: We can also mark tasks as complete with mark-i
and edit tasks and roles using edit-i-task
and edit-i-role
respectively. Let’s try!
mark-i 2
edit-i-task i/1 o/awaiting
edit-i-role i/1 c/Winter 2024 d/Prepare for google questions p/12500 l/Labrador Park
Step 14: Lastly, let’s find Google with find-i-role google
and delete the completed Google OA task with delete-i-task 1
Step 15: We can view our internships list again with list-i
Step 16: Congratulations! You are now ready to use CampusCompanion.
To view all our features, you may visit out features section.
Scroll back to Table of Contents
Features
Assignment Features
Listing and Filtering assignments
list-a [s/YYYY-MM-DD [HH:mm]] [e/YYYY-MM-DD [HH:mm]]
To view assignment parameter information, click here.
Purpose: To list all the assignments with deadline between the given start date and end date. This command also changes the view to assignments tab (if the view is not currently at the assignments tab).
Note:
- In order to use any of the assignment related commands below, you must be in the assignment view. In particular, you must use list-a to switch to assignment view. This is to prevent you from performing commands while you are not looking at the correct list.
- The start time and end timing is optional. If not provided, start time will default to 00:00 and end time will default to 23:59.
Examples:
Combination | Example | What is displayed to you |
---|---|---|
None present | list-a |
All assignments that are saved in CampusCompanion. |
Only start date with time present | list-a s/2023-12-10 18:00 |
All assignments with deadline later than or equal 10 Dec 2023 18:00 |
Only start date without time present | list-a s/2023-12-10 |
All assignments with deadline later than or equal 10 Dec 2023 00:00 |
Only end date with time present | list-a e/2023-12-10 18:00 |
All assignments with deadline earlier than or equal to 10 Dec 2023 18:00 |
Only end date without time present | list-a e/2023-12-10 |
All assignments with deadline earlier than or equal to 10 Dec 2023 23:59 |
Both start date and end date present (Example not shown for this combination without timing, but it is valid) | list-a s/2023-12-10 18:00 e/2023-12-17 18:00 |
All assignments with deadline between 10 Dec 2023 18:00 and 17 Dec 2023 18:00 |
When you might use it:
- If you want to see all your current assignments.
- If you want to filter your current assignments by date, and view the assignments only within a specified time frame.
Scroll back to Table of Contents
Adding an assignment
add-a n/NAME e/YYYY-MM-DD [HH:mm] [d/DESCRIPTION] [s/STATUS] [p/YYYY-MM-DD [HH:mm]] [t/TAG]…
Parameter Information
n/
: name of the assignmente/
: end date (deadline) of the assignmentd/
: description of assignments/
: complete or incomplete ONLY (case sensitive)p/
: planned completion date of the assignmentt/
: tags for the assignment
To view detailed assignment parameter information, click here
Purpose: To add an assignment into CampusCompanion.
Note:
- The end time within the end date (e/) and planned end date (p/) is optional. If not provided, timing will default to 23:59.
- The planned end date MUST be before end date.
- Both dates MUST be after the current date and time.
Examples:
add-a n/CS2100 Assignment 1 e/2023-11-29 13:00
add-a n/CS2103T v1.3 e/2023-11-28 18:00 d/Work on add function for task s/incomplete p/2023-11-27 16:00 t/Coding
When you might use it:
- When you first receive news of an assignment or deadline, and you want to keep track of it.
- When you already have existing assignments not written in CampusCompanion, and want to organise them all in one place.
Scroll back to Table of Contents
Editing an assignment
edit-a i/INDEX d/DESCRIPTION
To view assignment parameter information, click here
Purpose: Edit the description of a specified assignment to what is specified by d/
Note
- The index refers to the position of the assignment in the assignment list. To find out
the index of the assignment you want to edit, use the
list-a
command.
Examples:
- Use
list-a
to list all the assignments, followed byedit-a i/1 d/This is my new description
to edit the description of the assignment at index 1. - Use
find-a CS2103T
to find the assignment with “CS2103T” in the name. Assuming that this assignment is at index 1, useedit-a i/1 d/Create test cases
to edit its description to “Create test cases”.
When you might use it:
- If the assignment was originally added with a wrong description.
- If the requirements of the assignment has changed since you last added it.
Scroll back to Table of Contents
Deleting an assignment
delete-a INDEX
To view assignment parameter information, click here
Purpose: To delete the specified assignment from CampusCompanion
ALERT
This command cannot be undone. If you remove the wrong assignment, you will have to add it back using add-a
.
Note:
- The index refers to the position of the assignment in the assignment list. To find out
the index of the assignment you want to edit, use the
list-a
command.
Examples:
list-a
to list all the assignments, followed bydelete-a 1
to delete assignment with index 1.find-a CS2103T
to find the assignment you want to delete which has “CS2103T” in the name. Assuming this assignment is at index 1, usedelete-a 1
to delete it.
When you might use it:
- If the assignment is completed and submitted, and you have no need to continue tracking it.
- If the assignment is wrongly added.
- If certain details of the assignment was wrongly added, and these details are non-editable (e.g. name of assignment, deadline). For information on which details can be edited, refer here.
Scroll back to Table of Contents
Marking an assignment as complete
mark-a INDEX
To view assignment parameter information, click here
Purpose: To mark a specific assignment in CampusCompanion as complete.
Note:
- The index refers to the position of the assignment in the assignment list. To find out
the index of the assignment you want to edit, use the
list-a
command.
Examples:
list-a
to list all the assignments, thenmark-a 1
to mark the assignment with index 1 as complete.find-a MIH1101
to find assignments with MIH1101 in their name. Assuming the assignment to mark is at index 1, you can usemark-a 1
to mark it.
When you might use it:
- When you complete an assignment, and you want to mark it.
- When you wrongly unmark a completed assignment, and want to mark it again.
Marking an assignment as incomplete
unmark-a INDEX
To view assignment parameter information, click here
Purpose: To mark a specific assignment in CampusCompanion as incomplete.
Note:
- The index refers to the position of the assignment in the assignment list. To find out
the index of the assignment you want to edit, use the
list-a
command.
Examples:
list-a
to list all the assignments, thenunmark-a 1
to mark the assignment with index 1 as incomplete, assuming it was complete previously.find-a MIH1101
to find assignments with MIH1101 in their name. Assuming the assignment to unmark is at index 1 and is complete, you can useunmark-a 1
to mark it as incomplete.
When you might use it:
- When you wrongly mark an assignment as complete, and you want to unmark it.
- When you added an assignment with a complete status mistakenly, and want to unmark it.
- When you initially completed an assignment and marked it, but realise you have changes to make regarding the assignment and want to continue working on it.
Scroll back to Table of Contents
Finding an assignment by keywords
find-a KEYWORD
Purpose: To find all assignments whose name contains the given keyword.
Note:
The keyword is case-insensitive and does not require the whole word to match, for example,
if you had an assignment with the name “CS2100 Lab”, using the command find-a l
, find-a la
, find-a lab
or find-a LAB
are all equivalent and will match with this assignment
Examples:
find-a CS2103T
to find all assignments with “CS2103T” in the assignment name
When you might use it:
-
If you are looking for specific assignments within a large pool of assignments and want to filter them based on keywords or partial keywords.
-
If you want to find information about specific assignments, but you don’t remember their exact names.
-
When you need to prioritize your work or plan your schedule, this can allow you to focus on specific tasks or projects.
Scroll back to Table of Contents
Internship Features
Common internship features
Listing all internship information
list-i
Purpose: To list all the internship information stored in CampusCompanion. This command also changes the view to internships tab (if the view is not currently at the internships tab).
Note:
- In order to use any of the internship related commands below, you must be in the internships view. In particular, you must use list-i to switch to internships view. This is to prevent you from performing commands while you are not looking at the correct list.
When you might use it:
- If you want to see all your current internships.
- If you want to switch from assignment view to internship view.
Scroll back to Table of Contents
Internship Role
Adding an internship role
add-i-role n/NAME OF COMPANY r/ROLE NAME c/INTERNSHIP CYCLE [d/DESCRIPTION] [p/PAY] [o/OUTCOME] [l/LOCATION] [t/TAG]…
Parameter Information
n/
: name of the company you are applying/applied tor/
: name of the role you are applying/applied forc/
: cycle of the internship roled/
: description of internship rolep/
: expected pay of the internshipo/
: outcome of the internship application for that role. To see more information aboutoutcome
parameter, click herel/
: location of the internship rolet/
: tags for the internship role
To view detailed internship role parameter information, click here
Purpose: To add an internship role into CampusCompanion.
Examples:
add-i-role n/Google r/Software Engineer c/Winter 2024
add-i-role n/TikTok r/Backend Engineer c/Summer 2024 d/Very important internship p/2000 o/awaiting l/remote
When you might use it:
- After you first applied for an internship position, and you want to keep track of it.
- When you already have existing internship applications not written in CampusCompanion, and want to organise them all in one place.
Scroll back to Table of Contents
Editing an internship role
edit-i-role i/INDEX [c/CYCLE] [d/DESCRIPTION] [p/PAY] [o/OUTCOME] [l/LOCATION]
To view internship role parameter information, click here
Purpose: Edit the specified parameters of a specified internship role.
Note:
- The index refers to the index number in the displayed internship role list. If you want to find out the index of the
internship role you want to delete, you can use
list-i
to view all the current internship roles you have. - While the various parameters
[c/CYCLE] [d/DESCRIPTION] [p/PAY] [o/OUTCOME] [l/LOCATION]
are optional, you need to include at least one of them or an error message will be displayed.
Examples:
- Use
list-i
to list all the internship information, followed byedit-i-role i/1 o/rejected
to edit the outcome of the internship role at index 1. - Use
find-i-role Google
to find the internship information with “Google” in the name. Assuming that this internship role is at index 1, useedit-i-role i/1 o/rejected p/1000
to edit its outcome to “rejected” and pay to$1000
.
When you might use it:
- Once you have an update about the overall outcome of an existing application in CampusCompanion.
- If you imported old internship application information, and want to update the current outcome of that application.
Scroll back to Table of Contents
Deleting an internship role
delete-i-role INDEX
To view internship role parameter information, click here
Purpose: To delete the specified internship role from CampusCompanion
ALERT
- This command will remove both the internship role and all its associated tasks.
- This command cannot be undone. If you remove the wrong internship role, you will have to add the role back using
add-i-role
and all its associated tasks usingadd-i-task
.
Note:
- The index refers to the index number in the displayed internship role list. If you want to find out the index of the
internship role you want to delete, you can use
list-i
to view all the current internship roles you have.
Examples:
list-i
to list all the internship roles, followed bydelete-i-role 1
to delete internship role with index 1 and all its associated tasks.find-i-role Google
to find the internship role you want to delete which has “Google” in the company name. Assuming this internship role is at index 1, usedelete-i-role 1
to delete it and all its associated tasks.
When you might use it:
- If the internship selection process is completed, and you have no need to continue tracking it.
- If the internship role is wrongly added.
- If certain details of the internship role was wrongly added, and these details are non-editable (e.g. name of company, name of role). For information on which details can be edited, refer here.
Scroll back to Table of Contents
Finding an internship role by keywords
find-i-role KEYWORD
To view internship role parameter information, click here
Purpose: To find all internship role and their associated tasks whose company name contains the keyword provided.
Note:
- The keyword is case-insensitive and does not require the whole word to match,
for example, if you had an internship role with the name “TikTok”, using the command
find-i-role tiktok
orfind-i-role tik
will match with this internship role
Examples:
find-i-role TikTok
to find all internship information with “TikTok” in the company name
When you might use it:
-
If you are looking for specific internship information within a long list of internships and want to filter them based on keywords or partial keywords.
-
If you want to find information about specific internship role, but you don’t remember the company’s exact name.
Scroll back to Table of Contents
Internship Task
Adding an internship task
add-i-task n/NAME i/INDEX OF INTERNSHIP ROLE e/YYYY-MM-DD [HH:mm] [s/STATUS] [o/OUTCOME] [t/TAG]…
Parameter Information
n/
: name of the taski/
: internship role that is associated to the taske/
: end date (deadline) for the tasks/
: complete or incompleteo/
: outcome of the internship application for that role. To see more information aboutoutcome
parameter, click heret/
: tags for the internship task
To view detailed internship task parameter information, click here
Purpose: To add an internship task, associated to an internship role into CampusCompanion.
Examples:
add-i-task i/1 n/Tiktok OA e/2023-12-29 13:00
add-i-task i/1 n/Google Behavioural interview e/2023-12-28 s/incomplete o/awaiting t/Video
When you might use it:
- When you first receive news of a new task related to your internship role, and you want to keep track of it.
Scroll back to Table of Contents
Editing an internship task
edit-i-task i/INDEX o/OUTCOME
To view internship task parameter information, click here
Purpose: Edit the outcome of a specified internship task
Examples:
- Use
list-i
to list all the internship information, followed byedit-i-task i/1 o/rejected
to edit the outcome of the internship task at index 1. - Use
find-i-task OA
to find the internship task with “OA” in the task name. Assuming that this internship task is at index 1, useedit-i-task i/1 o/rejected
to edit its outcome to rejected.
When you might use it:
- Once you have an update about the overall outcome of an existing application in CampusCompanion.
- If you imported old internship application information, and want to update the current outcome of that application.
Scroll back to Table of Contents
Deleting an internship task
delete-i-task INDEX
To view internship task parameter information, click here
Purpose: To delete the specified internship task from CampusCompanion
ALERT
- This command cannot be undone. If you remove the wrong internship task, you will have to add it back using
add-i-task
.
Note:
- The index refers to the index number in the displayed internship task list. If you want to find out the index of the
internship task you want to delete, you can use
list-i
to view all the current internship tasks you have.
Examples:
list-i
to list all the internships, followed bydelete-i-task 1
to delete internship task with index 1.find-i-task OA
to find the internship task you want to delete which has “OA” in the name. Assuming this task is at index 1, usedelete-i-task 1
to delete it.
When you might use it:
- If the internship task is completed and submitted, and you have no need to continue tracking it.
- If the internship task is wrongly added.
Scroll back to Table of Contents
Marking an internship task as complete
mark-i INDEX
Purpose: To mark a specific internship task in CampusCompanion as complete.
Note:
- The index refers to the index number in the displayed internship list. If you want to find out the index of the
internship task you want to mark, you can use
list-i
to view all the current internship tasks you have. - If an internship task is wrongly marked as complete, you can unmark it with
unmark-i
.
Examples:
list-i
to list all the internship tasks, thenmark-i 1
to mark the internship task with index 1 as complete.find-i-task OA
to find internship task with OA in their name. Assuming the internship task to mark is at index 1, you can usemark-i 1
to mark it.
When you might use it:
- When you complete an internship task, and you want to mark it.
- When you wrongly unmark a completed internship task, and want to mark it again.
Scroll back to Table of Contents
Marking an internship task as incomplete
unmark-i INDEX
Purpose: To mark a specific internship task in CampusCompanion as incomplete.
Note:
- The index refers to the index number in the displayed internship task list. If you want to find out the index of the
internship task you want to unmark, you can use
list-i
to view all the current internship tasks you have. - If a completed internship task is wrongly marked as incomplete, you can mark it again with
mark-i
.
Examples:
list-i
to list all the internship tasks, thenunmark-i 1
to unmark the internship task with index 1 as incomplete.find-i-task OA
to find internship task with OA in their name. Assuming the internship task to unmark is at index 1, you can useunmark-i 1
to unmark it.
When you might use it:
- When you wrongly mark an incomplete internship task, and want to unmark it.
- When you wrongly add an internship task with the status as complete.
Scroll back to Table of Contents
Finding an internship task by keywords
find-i-task KEYWORD
Purpose:
- To find all internship tasks whose name contains the keyword. This will also display all the internship role associated to the tasks.
Note:
The keyword is case-insensitive and does not require the whole word to match, for example,
if you had an internship task with the name “interview 1”, using the command find-i-task INTERVIEW
or find-i-task inter
will match with this internship task.
Examples:
find-i-task interview
to find all internship tasks with “interview” in the task name, and the associated internship role.
When you might use it:
-
If you are looking for specific internship task information within a long list of internships and want to filter them based on keywords or partial keywords.
-
If you want to find information about specific internship task, but you don’t remember the task’s exact name.
Scroll back to Table of Contents
General Commands
Exiting the program
exit
Purpose: Exits the program.
Scroll back to Table of Contents
Viewing help
help
Purpose: Shows a message explaining how to access the help page, which is this CampusCompanion User Guide.
When you might use it
- If you have forgotten what is the structure for a certain command and its parameters.
- If you keep receiving error messages after entering commands, and are unsure why.
- If you are unsure of what are the commands that are available to you in CampusCompanion.
Scroll back to Table of Contents
Data Related Features
Saving the data
CampusCompanion data are saved in the hard disk automatically after any command that changes the data. There is no need to save manually.
Scroll back to Table of Contents
Editing the data file
CampusCompanion data are saved automatically as a JSON file [JAR file location]/data/campuscompanion.json
.
Advanced users are welcome to update data directly by editing that data file. After editing that file, when you re-run the application, the new data will automatically be shown.
Note:
- We do not recommend editing the file directly, because if the data is entered in the wrong format, it would corrupt the application, and certain information within the application may not be able to load subsequently.
Scroll back to Table of Contents
Command Summary
This section provides a summary of the commands.
Note: Each command may require 1 or more compulsory parameters. Please refer to parameter summary section, for more information on each parameter, or feature section, for detailed information about each feature.
Scroll back to Table of Contents
Assignment Commands
Command | What it does |
---|---|
list-a | Changes the view to assignments tab (if the view is not already at the assignments tab), and lists the assignments with deadline within a specified time frame |
add-a | Adds an assignment into CampusCompanion |
edit-a | Edits the existing information of the specified assignment |
delete-a | Deletes the specified assignment from CampusCompanion |
mark-a | Changes the status of the specified assignment to completed |
unmark-a | Changes the status of the specified assignment to incomplete |
find-a | Lists the assignments with name matching the given keyword |
Scroll back to Table of Contents
Internship Commands
Common Internship Commands
Command | What it does |
---|---|
list-i | Changes the view to internships tab (if the view is not already at the internships tab), and lists all stored internship information |
Scroll back to Table of Contents
Internship Role Commands
Command | What it does |
---|---|
add-i-role | Adds an internship role into CampusCompanion |
edit-i-role | Edits the specified parameters of a specified internship role. |
delete-i-role | Deletes the specified internship role and all its associated tasks from CampusCompanion |
find-i-role | Lists the internship role with company name matching the given keyword, and all the associated tasks |
Scroll back to Table of Contents
Internship Task Commands
Command | What it does |
---|---|
add-i-task | Adds an internship task, associated to an existing internship role into CampusCompanion |
edit-i-task | Edits the current outcome information of the specified internship task |
delete-i-task | Deletes the specified internship task from CampusCompanion |
mark-i | Changes the status of the specified internship task to completed |
unmark-i | Changes the status of the specified internship task to incomplete |
find-i-task | Lists the internship task with name matching the given keyword, and its associated role |
Scroll back to Table of Contents
Parameter Summary
Scroll back to Table of Contents
Assignment Parameters
The information below specifies parameter description, constraints and usage through valid and invalid examples.
Parameter | Command | Description | Constraints | Valid Examples | Invalid Examples |
---|---|---|---|---|---|
n/ | add-a |
Name of the assignment | NA | CS2100 Assignment, Tutorial 2 | NA |
e/ | add-a |
Deadline of the assignment | Has to be in YYYY-MM-DD HH:mm format, HH:mm is optional, and set as 23:59 by default Date inputted MUST be after current date. |
2023-12-12, 2023-12-10 15:00 | 12-12-2023, 30/12/2023 |
d/ | add-a |
Description of the assignment (optional parameter) | NA | Complete UML diagram, Finish question 2 | NA |
s/ | add-a |
Status (optional parameter) | Either complete or incomplete ONLY (case sensitive) |
complete, incomplete | done, finished, completed |
p/ | add-a |
Planned finish date of assignment (optional parameter) | Has to be in YYYY-MM-DD HH:mm format, HH:mm is optional, and set as 23:59 by default Date inputted MUST be after current date. |
2023-12-12, 2023-12-10 15:00 | 12-12-2023, 30/12/2023 |
t/ | add-a |
Tag for the assignment created (optional parameter) | One word only with no space in between | Assignment, 1 | Group work |
i/ | edit-a , delete-a , mark-a , unmark-a |
Index in assignments list. | Positive integer less than or equal to 2147483649. The index must exist in the current list. | 1, 2147483647 | -1, 2147483649 |
s/ | list-a |
Start date to filter assignments with deadlines after the date (optional parameter) | Has to be in YYYY-MM-DD HH:mm format, HH:mm is optional, and set as 00:00 by default Date inputted MUST be after current date. |
2023-12-12, 2023-12-10 15:00 | 12-12-2023, 30/12/2023 |
e/ | list-a |
End date to filter assignments with deadlines before the date (optional parameter) | Has to be in YYYY-MM-DD HH:mm format, HH:mm is optional, and set as 23:59 by default Date inputted MUST be after start date. |
2023-12-12, 2023-12-10 15:00 | 12-12-2023, 30/12/2023 |
Scroll back to assignment features
Scroll back to Table of Contents
Internship Parameters
Internship Role Parameters
The information below specifies parameter description, constraints and usage through valid and invalid examples.
Parameter | Command | Description | Constraints | Valid Examples | Invalid Examples |
---|---|---|---|---|---|
n/ | add-i-role |
Name of the company you are applying to | NA | Google, Tiktok | NA |
r/ | add-i-role |
Name of the role you are applying for | NA | Software Engineer, Backend Engineer | NA |
c/ | add-i-role , edit-i-role |
Cycle of the internship you are applying for | NA | Winter 2023, Summer 2024, Spring | NA |
d/ | add-i-role , edit-i-role |
Description of the internship role (optional parameter) | NA | Very important internship | NA |
p/ | add-i-role , edit-i-role |
Pay of the internship role (optional parameter) | Only numbers with up to one decimal point allowed. Must be a non-negative number. Input will be formatted to 2 decimal places, longer inputs will be truncated as needed. | 1000, 1000.00, 1000.000000 (will be shown as 1000.00) | $1000, -1, -0 |
o/ | add-i-role , edit-i-role |
Outcome of the internship role application (optional parameter) | follow-up , ghosted , rejected , offered , accepted , awaiting only (case sensitive) |
offered, accepted | REJECTED, no reply |
l/ | add-i-role , edit-i-role |
Location of the internship role (optional parameter) | NA | Singapore, remote | NA |
i/ | edit-i-role , delete-i-role |
Index in internship role list. | Positive integer less than or equal to 2147483649. The index must exist in the current list. | 1, 2147483647 | -1, 2147483649 |
Scroll back to Internship Role features
Scroll back to Table of Contents
Internship Task Parameters
The information below specifies parameter description, constraints and usage through valid and invalid examples.
Parameter | Command | Description | Constraints | Valid Examples | Invalid Examples |
---|---|---|---|---|---|
n/ | add-i-task |
Name of the task you have to complete | NA | Google, Tiktok | NA |
i/ | add-i-task |
Index of the internship role, which is associated to this task | Positive integer less than or equal to 2147483649 | 1, 2147483647 | -1, 2147483649 |
e/ | add-i-task |
Deadline of the internship task | Has to be in YYYY-MM-DD HH:mm format, HH:mm is optional, and set as 23:59 by default Date inputted MUST be after current date. |
2023-12-12, 2023-12-10 15:00 | 12-12-2023, 30/12/2023 |
s/ | add-i-task |
Status of the internship task (optional parameter) | Either complete or incomplete |
complete, incomplete | done, finished, completed |
o/ | add-i-task , edit-i-task |
Outcome of the internship task (optional for add-i-task ) |
follow-up , ghosted , rejected , offered , accepted , awaiting only (case sensitive) |
offered, accepted | REJECTED, no reply |
t/ | add-i-task |
Tag for the internship task (optional parameter) | One word only with no space in between | Assignment, 1 | Group work |
l/ | add-i-task |
Location (optional parameter) | NA | Singapore, remote | NA |
i/ | add-i-task |
Index in internship role list | Positive integer less than or equal to 2147483649 | 1, 2147483647 | -1, 2147483649 |
i/ | edit-i-task , delete-i-task , mark-i , unmark-i |
Index in internship task list | Positive integer less than or equal to 2147483649 | 1, 2147483647 | -1, 2147483649 |
Scroll back to Internship Task features
Scroll back to Table of Contents
FAQ
Launching CampusCompanion
Q: How can I launch CampusCompanion if the clicking on the JAR file does not work?
A: There are two possible methods to launch CampusCompanion.
Method 1: For users familiar with the command prompt
- Open the command prompt
- Navigate to the directory where the JAR file is located using
cd [JAR file location]
- Type
java -jar CampusCompanion.jar
and press enter - CampusCompanion should launch
Method 2: For users that wish to create a script to launch CampusCompanion
- Create a new text file
- Copy and paste the following into the text file:
java -jar [JAR file location]/campusCompanion.jar
- Save the text file as
campusCompanion.bat
(Windows) orcampusCompanion.sh
(MacOS/Linux) - Change the admin settings of the script to allow it to run as a program:
- Windows: Right-click on the script and select
Properties
. UnderGeneral
, check the box that saysAllow this file to run as a program
. - MacOS/Linux: Open the terminal and navigate to the directory where the script is located. Type
chmod +x [script name]
and press enter. (chmod +x
changes permissions of the script to allow it to be executed.)
- Windows: Right-click on the script and select
- Double-click on the script to launch CampusCompanion
- CampusCompanion should launch
Scroll back to Table of Contents
Checking Java version
Q: How can I check my Java version?
A: Open a command prompt and type java -version
. If you do not have Java installed, you can download it here.
For Mac Users you may wish to follow the instructions listed here
Transferring data to another computer
Q: How do I transfer my data to another Computer?
A: Install the app in the other computer. With Campus Companion closed on your new computer, overwrite the newly created campuscompanion.json with the campuscompanion.json from your previous computer. After that, when you relaunch the application, you should see the new data.
Scroll back to Table of Contents
How to use the internship outcome
Q: What is the recommended usage of the internship outcomes
A: Outcome must be either one of the following only: follow-up
, ghosted
, rejected
, offered
, accepted
, awaiting
. This is how we recommend using them:
awaiting
(Just finished with one stage and awaiting results of that stage)follow-up
(Just received a follow-up - e.g. for an interview, but haven’t finished that round yet. Once finished with that round, the status should be updated to awaiting to indicate that you are awaiting results.)ghosted
(If you did not receive any news after an appropriate amount of time.)rejected
(If you received a rejection letter)offered
(If you are offered the internship)
Scroll back to Internship Features
Scroll back to Table of Contents
Known issues
- When using multiple screens, if you move the application to a secondary screen, and later
switch to using only the primary screen, the GUI will open off-screen. The remedy is to delete the
preferences.json
file created by the application before running the application again.