├── hacknot.docx ├── hacknot.epub ├── hacknot.pdf ├── readme.md └── .gitattributes /hacknot.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsoltika/hacknot/HEAD/hacknot.docx -------------------------------------------------------------------------------- /hacknot.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsoltika/hacknot/HEAD/hacknot.epub -------------------------------------------------------------------------------- /hacknot.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsoltika/hacknot/HEAD/hacknot.pdf -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | # hacknot.org 2 | 3 | I remembered the good old times when I had first found out about 4 | Hacknot.info which is now gone for bad. 5 | 6 | Luckily I had found the original collection of essays e.g. at 7 | [this blog post](https://beinghappyprogramming.wordpress.com/2012/08/13/do-you-like-hacknot/) 8 | which I had converted to `.org` and via `pandoc` to several other formats. 9 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | 7 | # Standard to msysgit 8 | *.doc diff=astextplain 9 | *.DOC diff=astextplain 10 | *.docx diff=astextplain 11 | *.DOCX diff=astextplain 12 | *.dot diff=astextplain 13 | *.DOT diff=astextplain 14 | *.pdf diff=astextplain 15 | *.PDF diff=astextplain 16 | *.rtf diff=astextplain 17 | *.RTF diff=astextplain 18 | --------------------------------------------------------------------------------