Related Setup: https://gist.github.com/hofmannsven/6814278
Related Pro Tips: https://ochronus.com/git-tips-from-the-trenches/
Related Setup: https://gist.github.com/hofmannsven/6814278
Related Pro Tips: https://ochronus.com/git-tips-from-the-trenches/
| 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)); | |
| } |
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.