List of commits:
Subject Hash Author Date (UTC)
Update Naming Convention.md 2d8a1085f6f801da7ec69842fbd62cf5b2e9d056 Poonam Veeral 2020-04-09 16:37:10
Update Naming Convention.md fd3a77024bdb825a905d5a4913d3e97642336a16 Poonam Veeral 2020-04-09 16:35:01
Update Naming Convention.md 1017cd664b47b82f8f2689a1f295d8948e193eff Poonam Veeral 2020-04-09 16:33:59
Update Naming Convention.md 522d6f2f656e4d96db8e5bc81e626c6ba51b5a09 Poonam Veeral 2020-04-09 16:31:06
Update Naming Convention.md 24cde6ec7174b70496a62d0b1dd3d0c955513a84 Poonam Veeral 2020-04-09 16:30:10
Update Naming Convention.md 606049c713b804956cc4f3c9a2700887125dc3e3 Poonam Veeral 2020-04-09 16:29:16
Update Naming Convention.md e2d70be8c8cf05c10be7194f5a86ad84a71dcba2 Poonam Veeral 2020-04-09 16:27:09
Update Naming Convention.md b297f088e45d4cab3bca47272eb5d7d283997815 poonamveeral 2020-04-09 16:16:43
Update Naming Convention.md 562ba67f4338884279c312eddf7fd1688d314da3 Poonam Veeral 2020-04-09 16:16:01
Update Naming Convention.md fa669e84e04edadb029e834caedf56223b897fe0 Poonam Veeral 2020-04-09 16:09:31
Update Naming Convention.md 12eb5e6aea619c56222817878567db2e23aacc41 Poonam Veeral 2020-04-09 16:05:26
Update Naming Convention.md d39a8ec969e2d9023dfa75e39aadd537ef3c79e3 Poonam Veeral 2020-04-09 16:02:16
Naming Convention Updated 2ba945dc245814e8cc0641482b053c953e65e779 Poonam Veeral 2020-04-09 15:51:43
Update lectures_notes.md d62f8789a67b025a618b2047c6bbaa912e617834 Poonam Veeral 2020-04-08 19:00:25
update 6fd8bae9a3068318513bb261f79a0a07d3c87f17 Poonam Veeral 2020-04-08 15:37:39
Update lectures_notes.md be9ca4670f042e27dfd60082cf0b081401dc072d poonamveeral 2020-04-08 14:29:08
Rename Print.tex to print.tex 8a2253b100e8fb661c03e410e61c87e6e0dd768a poonamveeral 2020-04-08 13:45:56
Rename alt_Not_03.tex to alt_not_03.tex ab653337fe4266a333d22178c33bd5d5c3ca3613 poonamveeral 2020-04-08 13:37:09
Rename alt_Not_02.tex to alt_not_02.tex a79c527d3aa97f29fa835406eb2fd6bfca80e616 poonamveeral 2020-04-08 13:36:52
Rename alt_Not_01.tex to alt_not_01.tex ce6ec02b5543682869d3dd782576e6a7c27cf5b5 poonamveeral 2020-04-08 13:36:36
Commit 2d8a1085f6f801da7ec69842fbd62cf5b2e9d056 - Update Naming Convention.md
Author: Poonam Veeral
Author date (UTC): 2020-04-09 16:37
Committer name: Poonam Veeral
Committer date (UTC): 2020-04-09 16:37
Parent(s): fd3a77024bdb825a905d5a4913d3e97642336a16
Signer:
Signing key:
Signing status: N
Tree: df9d5a1bc2151647623db857e809844f5a519fa2
File Lines added Lines deleted
Naming Convention.md 3 3
File Naming Convention.md changed (mode: 100644) (index e0ee623..04105f7)
77 77 | Example | public boolean isEquilateralTriangle(int b, int c, int d) {return b == c && c == d;} | | Example | public boolean isEquilateralTriangle(int b, int c, int d) {return b == c && c == d;} |
78 78 | -----------| ------------------------------------------------------------------------------------ | | -----------| ------------------------------------------------------------------------------------ |
79 79
80 * *Local variable names*
80 * *Local variable names*
81 81 * A local variable is a variable that is declared in a method body. * A local variable is a variable that is declared in a method body.
82 82 * Its declaration should be placed as close to its first use as possible. * Its declaration should be placed as close to its first use as possible.
83 83 * The scope of a local variable is usually short, and its meaning is often obvious either from a comment on its declaration or from the short code in which it is used. Therefore, names of local variables may be short. * The scope of a local variable is usually short, and its meaning is often obvious either from a comment on its declaration or from the short code in which it is used. Therefore, names of local variables may be short.
84 84
85 * *Fields and class (i.e. static) variables*
85 * *Fields and class (i.e. static) variables*
86 86 * The meaning of fields and class variables are typically given as comments by the declarations, far from where the variables are used. * The meaning of fields and class variables are typically given as comments by the declarations, far from where the variables are used.
87 87 * Therefore, the names of field and class variables should be longer and as mnemonic as possible, giving the reader a good idea what the meaning are. * Therefore, the names of field and class variables should be longer and as mnemonic as possible, giving the reader a good idea what the meaning are.
88 * *Package names*
88 * *Package names*
89 89
90 90 * Package names are usually all lowercase and consist of nouns. * Package names are usually all lowercase and consist of nouns.
91 91
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/caubert/CSCI_3410

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/caubert/CSCI_3410

Clone this repository using git:
git clone git://git.rocketgit.com/user/caubert/CSCI_3410

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main