Skip to content

Instantly share code, notes, and snippets.

View RahulJyala7's full-sized avatar
🎯
Focusing

Rahul Jyala RahulJyala7

🎯
Focusing
View GitHub Profile
@RahulJyala7
RahulJyala7 / React Native offline build
Last active May 13, 2019 12:50
React Native offline build
#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
@RahulJyala7
RahulJyala7 / lenovo_ideapad_330_ubuntu.md
Created June 4, 2019 19:01 — forked from debojyoti/lenovo_ideapad_330_ubuntu.md
Lenovo ideapad 330 (15ARR) ubuntu issues and there solutions

Lenovo ideapad 330 (15ARR) ubuntu issues and their solutions

Issue-1: None of the ubuntu distros are getting installed

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

Issue-2: Wifi is not working

@RahulJyala7
RahulJyala7 / ML-DL Read
Last active July 24, 2019 09:55
ML -DL Read
#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/
@RahulJyala7
RahulJyala7 / Confusion Matrix
Created July 11, 2019 13:13
Confusion Matrix
https://machinelearningmastery.com/confusion-matrix-machine-learning/
@RahulJyala7
RahulJyala7 / Java Script
Created July 19, 2019 17:55
Java Script
function Person(name){
this.name = name
};
var eve = new Person("Eve");
eve.__proto__ == Person.prototype //true
eve.prototype //undefined
@RahulJyala7
RahulJyala7 / Good Repo
Created July 25, 2019 10:49
Good Repo
https://github.com/arpitjindal97/technology_books
@RahulJyala7
RahulJyala7 / Core must having
Last active July 30, 2019 11:58
hello DOTNET-CORE
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/
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.
@RahulJyala7
RahulJyala7 / Git Repo ML
Last active October 7, 2019 06:12
Git Repo ML
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