├── LICENSE └── README.md /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Terkel Gjervig 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Favorite Awesomeness 2 | 3 | > Collection of my favorite awesome lists 4 | 5 | 6 | 7 | ## Awesome Lists 8 | 9 | - [Awesome Creative Coding](https://github.com/terkelg/awesome-creative-coding) - Generative Art, Data visualization, Interaction Design, Resources. 10 | - [Awesome Command Line Apps](https://github.com/herrbischoff/awesome-command-line-apps) - Use your terminal shell to do awesome things. 11 | - [Awesome Shell](https://github.com/alebcay/awesome-shell) - Curated list of awesome command-line frameworks, toolkits, guides and gizmos. 12 | - [Awesome Node](https://github.com/sindresorhus/awesome-nodejs) - Delightful Node.js packages and resources. 13 | 14 | 15 | ## Other 16 | 17 | - [The Super Tiny Compuler](https://github.com/thejameskyle/the-super-tiny-compiler) - Possibly the smallest compiler ever. 18 | - [Itsy Bitsy Data Structures](https://github.com/thejameskyle/itsy-bitsy-data-structures) - All the things you didn't know you wanted to know about data structures. 19 | - [Learn Regex The Easy Way](https://github.com/zeeshanu/learn-regex) - Learn regex the easy way. 20 | - [Bash Handbook](https://github.com/denysdovhan/bash-handbook) - For those who wanna learn Bash. 21 | - [Every Programmer Should Know](https://github.com/mr-mig/every-programmer-should-know) - A collection of (mostly) technical things every software developer should know. 22 | 23 | 24 | ## Related 25 | 26 | - [Awesome](https://github.com/sindresorhus/awesome) - The mothership: Curated list of awesome lists. 27 | 28 | # License 29 | 30 | [![CC0](http://mirrors.creativecommons.org/presskit/buttons/88x31/svg/cc-zero.svg)](https://creativecommons.org/publicdomain/zero/1.0/) 31 | 32 | To the extent possible under law, [Terkel Gjervig](http://terkel.com) has waived all copyright and related or neighboring rights to this work. 33 | --------------------------------------------------------------------------------