You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[Guidelines adapted from CS2030 AY20/21 Semester 2 Forum Guidelines by Russell]
We will be using Github Issues for CS2030 Q&A instead of the LumiNUS Forum!
Please take note of the following etiquette. Let's make this a pleasant place for online interaction and peer learning!
If you have a new question, create a new post instead of posting it as a reply on someone else's unrelated question.
Think carefully about what you are posting and write a succinct summary (or post title) that describe the question. E.g., the title "Java" is too generic. "Unable to install Java?" is better. "Installing Java on Windows 10 gives the error 'permission denied'" is even better.
Avoid posting questions that have been asked before (read through what others have posted before posting yourself) or have been answered in the notes and handouts (read through carefully what we released to the class)
Github Issues supports powerful formatting. If your post or reply contains code, use proper formatting to make your post readable. Markdown is powerful in allowing you to write inline code (which is by adding triple backticks (```) before and after). For example:
public void sayHello() {
System.out.println("Hello World!");
}
Even better, you can give colors to the inline codes by adding the language after the first triple backticks. For example, doing
```java
public void sayHello() {
System.out.println("Hello World!");
}
```
On that note, please post only short snippets of what your issues are about. Do not post entire solutions of labs, project, or PA to github as it will be seen as it will be seen as a breach of academic integrity.
If you post about a problem you faced, please provide all the information (what you have done, what error message you faced) to help the readers of this forum help you. E.g., "My program cannot compile. Can you please help?" is not a meaningful post.
Hopefully, you have a wonderful time taking this module and learning Java!
The text was updated successfully, but these errors were encountered:
Welcome to CS2030 Forum using Github Issues!
[Guidelines adapted from CS2030 AY20/21 Semester 2 Forum Guidelines by Russell]
We will be using Github Issues for CS2030 Q&A instead of the LumiNUS Forum!
Please take note of the following etiquette. Let's make this a pleasant place for online interaction and peer learning!
If you have a new question, create a new post instead of posting it as a reply on someone else's unrelated question.
Think carefully about what you are posting and write a succinct summary (or post title) that describe the question. E.g., the title "Java" is too generic. "Unable to install Java?" is better. "Installing Java on Windows 10 gives the error 'permission denied'" is even better.
Avoid posting questions that have been asked before (read through what others have posted before posting yourself) or have been answered in the notes and handouts (read through carefully what we released to the class)
Github Issues supports powerful formatting. If your post or reply contains code, use proper formatting to make your post readable. Markdown is powerful in allowing you to write inline code (which is by adding triple backticks (
```
) before and after). For example:Even better, you can give colors to the inline codes by adding the language after the first triple backticks. For example, doing
will give you this.
On that note, please post only short snippets of what your issues are about. Do not post entire solutions of labs, project, or PA to github as it will be seen as it will be seen as a breach of academic integrity.
Hopefully, you have a wonderful time taking this module and learning Java!
The text was updated successfully, but these errors were encountered: