This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #React-Native 0.49.0+ | |
| react-native bundle --dev false --platform android --entry-file index.js --bundle-output ./android/app/build/intermediates/assets/debug/index.android.bundle --assets-dest ./android/app/build/intermediates/res/merged/debug | |
| #if not work | |
| https://stackoverflow.com/questions/44446523/unable-to-load-script-from-assets-index-android-bundle-on-windows | |
| react-native bundle --platform android --dev false --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res | |
| #React-Native 0-0.49.0 | |
| react-native bundle --dev false --platform android --entry-file index.android.js --bundle-output ./android/app/build/intermediates/assets/debug/index.android.bundle --assets-dest ./android/app/build/intermediates/res/merged/debug |
Solution: Ubuntu distros lower than 18.10 will not work in this laptop, as minimum kernal version required is 4.18.
So install ubuntu 18.10 / xubuntu 18.10 / lubuntu 18.10 / kubuntu 18.10 in UEFI mode
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #BASIC | |
| https://skymind.ai/wiki/natural-language-processing-nlp | |
| https://yuanxiaosc.github.io/2018/12/27/StanfordCS/ | |
| #Machine Leaning | |
| <------------> | |
| https://www.cs.ox.ac.uk/people/nando.defreitas/machinelearning/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://machinelearningmastery.com/confusion-matrix-machine-learning/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function Person(name){ | |
| this.name = name | |
| }; | |
| var eve = new Person("Eve"); | |
| eve.__proto__ == Person.prototype //true | |
| eve.prototype //undefined |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://github.com/arpitjindal97/technology_books |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Transient objects are always different; a new instance is provided to every controller and every service. | |
| Scoped objects are the same within a request, but different across different requests. | |
| Singleton objects are the same for every object and every request. | |
| --------------------------------CLR-------------------------------------------- | |
| https://www.geeksforgeeks.org/common-language-runtime-clr-in-c-sharp/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| The difference between these two, is that devDependencies are modules which are only required during development. | |
| while dependencies are modules which are also required at runtime. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://github.com/Vay-keen/Machine-learning-learning-notes | |
| #do not miss | |
| https://github.com/Yorko/mlcourse.ai | |
| https://github.com/roboticcam/machine-learning-notes |