├── LICENSE └── README.md /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2023 Cong Li 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 | # Notes ✍️ 2 | 3 | This is a collection of my own notes ✍️ (goto [Issues](https://github.com/clixyz/blog-notes/issues)). Opinions are also my own 😆. Or, check out to [my website](https://connglli.github.io). 4 | 5 | ### 🏡 Topics 6 | 7 | Topics are various, but, 8 | + `programming languages` and `virtual machines`, 9 | + `android` and `aosp`, 10 | + `browsers` and `web`, 11 | + and other micellaneous ones. 12 | 13 | ### 🚦Attention 14 | 15 | You'd bettern know before reading them, 16 | + Some of them are accomplished, but some of are not (they are tagged with `todo`; for these, I either know little about them, or not well prepared to write them down in a logical and structural manner) 17 | + Some of them are my personal thoughts, but some of them are learned or borrowed directly from others (but I've put references) 18 | + Take your own risk 19 | 20 | ### 🤝 Welcome 21 | 22 | Last but not least, I'm learning as you are. So discussions are very much welcome. Let me know if you have any comments, suggestions, questions, or even **corrections**. Please directly make comments under the issues that you are interested. 23 | --------------------------------------------------------------------------------