Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into TodoList
Browse files Browse the repository at this point in the history
  • Loading branch information
WoodySIN committed Apr 6, 2018
2 parents 55674b3 + f8bc861 commit d9e791e
Show file tree
Hide file tree
Showing 89 changed files with 2,553 additions and 210 deletions.
6 changes: 3 additions & 3 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ https://www.codacy.com/app/damith/addressbook-level4?utm_source=github.com&utm_m
https://gitter.im/se-edu/Lobby[image:https://badges.gitter.im/se-edu/Lobby.svg[Gitter chat]]

ifdef::env-github[]
image::docs/images/UiDisplay.png[width="600"]
image::docs/images/UiInitial.png[width="600"]
endif::[]

ifndef::env-github[]
image::images/UiDisplay.png[width="600"]
image::images/UiInitial.png[width="600"]
endif::[]

* This is a desktop "Your TA" application. It has a GUI but most of the user interactions happen using a CLI (Command Line Interface).
* It is an address book cum scheduler targeted at making tracking students for NUS lecturer's easier.
* It is an address book cum scheduler targeted at making tracking students for NUS student teaching assistants' easier.
* It is a Java sample application intended for students learning Software Engineering while using Java as the main programming language.
* It is *written in OOP fashion*. It provides a *reasonably well-written* code example that is *significantly bigger* (around 6 KLoC)than what students usually write in beginner-level SE modules.
Expand Down
13 changes: 13 additions & 0 deletions collated/functional/Alaru-reused.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Alaru-reused
###### \java\seedu\address\commons\util\NamingUtil.java
``` java
private static String toHex(byte[] hashValue) {
StringBuilder sb = new StringBuilder();
for (byte b : hashValue) {
sb.append(Integer.toString((b & 0xff) + 0x100, 16).substring(1));
}
return sb.toString();
}

}
```
Loading

0 comments on commit d9e791e

Please sign in to comment.