See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| # vi: ft=dosini | |
| [user] | |
| name = Pavan Kumar Sunkara | |
| email = [email protected] | |
| username = pksunkara | |
| [core] | |
| editor = nvim | |
| whitespace = fix,-indent-with-non-tab,trailing-space,cr-at-eol | |
| pager = delta | |
| [column] |
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| """ | |
| Denoising Autoencoders (dA) | |
| References : | |
| - P. Vincent, H. Larochelle, Y. Bengio, P.A. Manzagol: Extracting and | |
| Composing Robust Features with Denoising Autoencoders, ICML'08, 1096-1103, | |
| 2008 |
| #include <iostream> | |
| #include <string> | |
| #include <curl/curl.h> | |
| static size_t WriteCallback(void *contents, size_t size, size_t nmemb, void *userp) | |
| { | |
| ((std::string*)userp)->append((char*)contents, size * nmemb); | |
| return size * nmemb; | |
| } |