There is a lot of hidden treasure lying within university pages scattered across the internet. This list is an attempt to bring to light those awesome courses which make their high-quality material i.e. assignments, lectures, notes, readings & examinations available online for free.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| private MessageDigest md = MessageDigest.getInstance("MD5");; | |
| public String getMD5(String input) { | |
| this.md.reset(); | |
| this.md.update(input.getBytes()); | |
| byte [] bytes = this.md.digest(); | |
| StringBuffer sb = new StringBuffer(); | |
| for (byte b: bytes) { | |
| sb.append(String.format("%02x", b)); | |
| } |
Related Setup: https://gist.github.com/hofmannsven/6814278
Related Pro Tips: https://ochronus.com/git-tips-from-the-trenches/