├── Git ├── blogs.md ├── experts_to_follow.md ├── books.md ├── courses.md ├── video_tutorials.md └── Useful_links.md ├── Go ├── blogs.md ├── books.md ├── courses.md ├── Useful_links.md ├── experts_to_follow.md └── video_tutorials.md ├── iOS ├── books.md ├── courses.md ├── video_tutorials.md ├── experts_to_follow.md ├── blogs.md └── Useful_links.md ├── AngularJS ├── blogs.md ├── books.md ├── courses.md ├── Useful_links.md ├── video_tutorials.md └── experts_to_follow.md ├── C-C++ ├── Tools.md ├── blogs.md ├── Useful_links.md ├── experts_to_follow.md ├── video_tutorials.md ├── courses.md └── books.md ├── Docker ├── blogs.md ├── books.md ├── courses.md ├── Useful_links.md ├── experts_to_follow.md └── video_tutorials.md ├── HTML5 ├── blogs.md ├── Useful_links.md ├── experts_to_follow.md ├── video_tutorials.md ├── books.md └── courses.md ├── Kotlin ├── blogs.md ├── books.md ├── courses.md ├── experts_to_follow.md ├── video_tutorials.md └── Useful_links.md ├── Laravel ├── blogs.md ├── books.md ├── courses.md ├── Useful_links.md ├── experts_to_follow.md └── video_tutorials.md ├── Magento ├── blogs.md ├── books.md ├── courses.md ├── Useful_links.md ├── experts_to_follow.md └── video_tutorials.md ├── Meteor ├── blogs.md ├── books.md ├── courses.md ├── Useful_links.md ├── experts_to_follow.md └── video_tutorials.md ├── Node.Js ├── books.md ├── Social_Experts.md ├── VideoTutorials.md ├── Important_links.md ├── blogs.md ├── courses.md └── Tools.md ├── RxJava ├── blogs.md ├── books.md ├── courses.md ├── experts_to_follow.md └── video_tutorials.md ├── Wordpress ├── books.md ├── courses.md ├── Useful_links.md ├── video_tutorials.md ├── experts_to_follow.md └── blogs.md ├── BackboneJS ├── courses.md ├── experts_to_follow.md ├── video_tutorials.md ├── blogs.md ├── Useful_links.md └── books.md ├── GoogleCloudPlatform ├── blogs.md ├── books.md ├── courses.md ├── video_tutorials.md └── experts_to_follow.md ├── android ├── examples_demos │ ├── DataBinding │ │ ├── DataBindingBasic │ │ │ ├── .idea │ │ │ │ ├── .name │ │ │ │ ├── copyright │ │ │ │ │ └── profiles_settings.xml │ │ │ │ ├── encodings.xml │ │ │ │ ├── vcs.xml │ │ │ │ ├── modules.xml │ │ │ │ ├── runConfigurations.xml │ │ │ │ ├── gradle.xml │ │ │ │ └── compiler.xml │ │ │ ├── app │ │ │ │ ├── .gitignore │ │ │ │ ├── src │ │ │ │ │ └── main │ │ │ │ │ │ ├── res │ │ │ │ │ │ ├── values │ │ │ │ │ │ │ ├── strings.xml │ │ │ │ │ │ │ ├── dimens.xml │ │ │ │ │ │ │ ├── colors.xml │ │ │ │ │ │ │ └── styles.xml │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ └── values-w820dp │ │ │ │ │ │ │ └── dimens.xml │ │ │ │ │ │ ├── java │ │ │ │ │ │ └── chintan │ │ │ │ │ │ │ └── rathod │ │ │ │ │ │ │ └── databindingdemo │ │ │ │ │ │ │ ├── Model │ │ │ │ │ │ │ └── User.java │ │ │ │ │ │ │ └── DataBindingActivity.java │ │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── proguard-rules.pro │ │ │ │ └── build.gradle │ │ │ ├── settings.gradle │ │ │ ├── .gitignore │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── build.gradle │ │ │ └── gradle.properties │ │ ├── DataBindingOnClick │ │ │ ├── app │ │ │ │ ├── .gitignore │ │ │ │ ├── src │ │ │ │ │ ├── main │ │ │ │ │ │ ├── res │ │ │ │ │ │ │ ├── values │ │ │ │ │ │ │ │ ├── strings.xml │ │ │ │ │ │ │ │ ├── colors.xml │ │ │ │ │ │ │ │ ├── dimens.xml │ │ │ │ │ │ │ │ └── styles.xml │ │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ │ └── values-w820dp │ │ │ │ │ │ │ │ └── dimens.xml │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ └── java │ │ │ │ │ │ │ └── com │ │ │ │ │ │ │ └── rrr │ │ │ │ │ │ │ └── databindingonclick │ │ │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ │ │ └── Model │ │ │ │ │ │ │ └── User.java │ │ │ │ │ ├── test │ │ │ │ │ │ └── java │ │ │ │ │ │ │ └── com │ │ │ │ │ │ │ └── rrr │ │ │ │ │ │ │ └── databindingonclick │ │ │ │ │ │ │ └── ExampleUnitTest.java │ │ │ │ │ └── androidTest │ │ │ │ │ │ └── java │ │ │ │ │ │ └── com │ │ │ │ │ │ └── rrr │ │ │ │ │ │ └── databindingonclick │ │ │ │ │ │ └── ApplicationTest.java │ │ │ │ ├── proguard-rules.pro │ │ │ │ └── build.gradle │ │ │ ├── settings.gradle │ │ │ ├── .gitignore │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── build.gradle │ │ │ └── gradle.properties │ │ ├── LoginDemo │ │ │ ├── settings.gradle │ │ │ ├── app │ │ │ │ ├── src │ │ │ │ │ ├── main │ │ │ │ │ │ ├── res │ │ │ │ │ │ │ ├── values │ │ │ │ │ │ │ │ ├── strings.xml │ │ │ │ │ │ │ │ ├── ids.xml │ │ │ │ │ │ │ │ ├── colors.xml │ │ │ │ │ │ │ │ ├── dimens.xml │ │ │ │ │ │ │ │ └── styles.xml │ │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ │ ├── values-w820dp │ │ │ │ │ │ │ │ └── dimens.xml │ │ │ │ │ │ │ └── layout │ │ │ │ │ │ │ │ └── activity_main.xml │ │ │ │ │ │ ├── java │ │ │ │ │ │ │ └── com │ │ │ │ │ │ │ │ └── logindemo │ │ │ │ │ │ │ │ ├── Handler │ │ │ │ │ │ │ │ └── ClickHandler.java │ │ │ │ │ │ │ │ ├── Model │ │ │ │ │ │ │ │ └── User.java │ │ │ │ │ │ │ │ ├── TextWatcherAdapter.java │ │ │ │ │ │ │ │ └── MainActivity.java │ │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ └── test │ │ │ │ │ │ └── java │ │ │ │ │ │ └── com │ │ │ │ │ │ └── twowaybinding │ │ │ │ │ │ └── ExampleUnitTest.java │ │ │ │ ├── proguard-rules.pro │ │ │ │ └── build.gradle │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ └── build.gradle │ │ └── Retrofit + DataBinding Demo │ │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── src │ │ │ │ ├── main │ │ │ │ │ ├── res │ │ │ │ │ │ ├── drawable-xhdpi │ │ │ │ │ │ │ └── ic_so.png │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ │ ├── ic_arrow_back_white_24dp.png │ │ │ │ │ │ │ └── ic_file_download_white_24dp.png │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ │ ├── ic_arrow_back_white_24dp.png │ │ │ │ │ │ │ └── ic_file_download_white_24dp.png │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ │ ├── ic_arrow_back_white_24dp.png │ │ │ │ │ │ │ └── ic_file_download_white_24dp.png │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ │ ├── ic_arrow_back_white_24dp.png │ │ │ │ │ │ │ └── ic_file_download_white_24dp.png │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ │ ├── ic_arrow_back_white_24dp.png │ │ │ │ │ │ │ └── ic_file_download_white_24dp.png │ │ │ │ │ │ ├── drawable-xxhdpi │ │ │ │ │ │ │ └── profile_place_holder.png │ │ │ │ │ │ ├── anim │ │ │ │ │ │ │ ├── slide_in_left.xml │ │ │ │ │ │ │ ├── slide_in_right.xml │ │ │ │ │ │ │ ├── slide_out_left.xml │ │ │ │ │ │ │ └── slide_out_right.xml │ │ │ │ │ │ ├── values │ │ │ │ │ │ │ ├── colors.xml │ │ │ │ │ │ │ ├── strings.xml │ │ │ │ │ │ │ ├── dimens.xml │ │ │ │ │ │ │ ├── drawables.xml │ │ │ │ │ │ │ └── styles.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ │ ├── drawable_gold_badge.xml │ │ │ │ │ │ │ ├── drawable_bronz_badge.xml │ │ │ │ │ │ │ ├── drawable_silver_badge.xml │ │ │ │ │ │ │ └── side_nav_bar.xml │ │ │ │ │ │ ├── layout │ │ │ │ │ │ │ ├── activity_post.xml │ │ │ │ │ │ │ ├── horizontal_line.xml │ │ │ │ │ │ │ ├── activity_main.xml │ │ │ │ │ │ │ ├── content_main.xml │ │ │ │ │ │ │ ├── app_bar_main.xml │ │ │ │ │ │ │ ├── nav_header_main.xml │ │ │ │ │ │ │ └── activity_start.xml │ │ │ │ │ │ ├── menu │ │ │ │ │ │ │ ├── main.xml │ │ │ │ │ │ │ └── activity_main_drawer.xml │ │ │ │ │ │ ├── drawable-v21 │ │ │ │ │ │ │ ├── ic_menu_send.xml │ │ │ │ │ │ │ ├── ic_menu_slideshow.xml │ │ │ │ │ │ │ ├── ic_menu_gallery.xml │ │ │ │ │ │ │ ├── ic_menu_manage.xml │ │ │ │ │ │ │ ├── ic_menu_camera.xml │ │ │ │ │ │ │ └── ic_menu_share.xml │ │ │ │ │ │ ├── values-v21 │ │ │ │ │ │ │ └── styles.xml │ │ │ │ │ │ └── values-w820dp │ │ │ │ │ │ │ └── dimens.xml │ │ │ │ │ ├── java │ │ │ │ │ │ └── com │ │ │ │ │ │ │ └── retrofitdemo │ │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ ├── StackOverflowUserRequest.java │ │ │ │ │ │ │ ├── ApiFactory.java │ │ │ │ │ │ │ └── OkClientFactory.java │ │ │ │ │ │ │ ├── adapter │ │ │ │ │ │ │ ├── ClickHandler.java │ │ │ │ │ │ │ └── DataBinder.java │ │ │ │ │ │ │ └── App.java │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── test │ │ │ │ │ └── java │ │ │ │ │ │ └── com │ │ │ │ │ │ └── retrofitdemobypranay │ │ │ │ │ │ └── app │ │ │ │ │ │ └── ExampleUnitTest.java │ │ │ │ └── androidTest │ │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── retrofitdemo │ │ │ │ │ └── app │ │ │ │ │ └── ApplicationTest.java │ │ │ ├── proguard-rules.pro │ │ │ └── build.gradle │ │ │ ├── .idea │ │ │ ├── .name │ │ │ ├── copyright │ │ │ │ └── profiles_settings.xml │ │ │ ├── encodings.xml │ │ │ ├── vcs.xml │ │ │ ├── modules.xml │ │ │ ├── runConfigurations.xml │ │ │ ├── gradle.xml │ │ │ └── compiler.xml │ │ │ ├── settings.gradle │ │ │ ├── .gitignore │ │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── build.gradle │ │ │ └── gradle.properties │ ├── Retrofit 2.0 │ │ └── RetrofitDemoBasic │ │ │ ├── .idea │ │ │ ├── .name │ │ │ ├── copyright │ │ │ │ └── profiles_settings.xml │ │ │ ├── vcs.xml │ │ │ ├── modules.xml │ │ │ ├── runConfigurations.xml │ │ │ ├── gradle.xml │ │ │ ├── compiler.xml │ │ │ └── misc.xml │ │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── src │ │ │ │ ├── main │ │ │ │ │ ├── res │ │ │ │ │ │ ├── drawable-xhdpi │ │ │ │ │ │ │ └── ic_so.png │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ │ ├── ic_arrow_back_white_24dp.png │ │ │ │ │ │ │ └── ic_file_download_white_24dp.png │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ │ ├── ic_arrow_back_white_24dp.png │ │ │ │ │ │ │ └── ic_file_download_white_24dp.png │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ │ ├── ic_arrow_back_white_24dp.png │ │ │ │ │ │ │ └── ic_file_download_white_24dp.png │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ │ ├── ic_arrow_back_white_24dp.png │ │ │ │ │ │ │ └── ic_file_download_white_24dp.png │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ │ ├── ic_arrow_back_white_24dp.png │ │ │ │ │ │ │ └── ic_file_download_white_24dp.png │ │ │ │ │ │ ├── drawable-xxhdpi │ │ │ │ │ │ │ └── profile_place_holder.png │ │ │ │ │ │ ├── anim │ │ │ │ │ │ │ ├── slide_in_left.xml │ │ │ │ │ │ │ ├── slide_in_right.xml │ │ │ │ │ │ │ ├── slide_out_left.xml │ │ │ │ │ │ │ └── slide_out_right.xml │ │ │ │ │ │ ├── values │ │ │ │ │ │ │ ├── colors.xml │ │ │ │ │ │ │ ├── strings.xml │ │ │ │ │ │ │ ├── dimens.xml │ │ │ │ │ │ │ ├── drawables.xml │ │ │ │ │ │ │ └── styles.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ │ ├── drawable_bronz_badge.xml │ │ │ │ │ │ │ ├── drawable_gold_badge.xml │ │ │ │ │ │ │ ├── drawable_silver_badge.xml │ │ │ │ │ │ │ └── side_nav_bar.xml │ │ │ │ │ │ ├── layout │ │ │ │ │ │ │ ├── activity_post.xml │ │ │ │ │ │ │ ├── horizontal_line.xml │ │ │ │ │ │ │ ├── activity_main.xml │ │ │ │ │ │ │ ├── content_main.xml │ │ │ │ │ │ │ ├── app_bar_main.xml │ │ │ │ │ │ │ ├── nav_header_main.xml │ │ │ │ │ │ │ └── activity_start.xml │ │ │ │ │ │ ├── menu │ │ │ │ │ │ │ ├── main.xml │ │ │ │ │ │ │ └── activity_main_drawer.xml │ │ │ │ │ │ ├── drawable-v21 │ │ │ │ │ │ │ ├── ic_menu_send.xml │ │ │ │ │ │ │ ├── ic_menu_slideshow.xml │ │ │ │ │ │ │ ├── ic_menu_gallery.xml │ │ │ │ │ │ │ ├── ic_menu_manage.xml │ │ │ │ │ │ │ ├── ic_menu_camera.xml │ │ │ │ │ │ │ └── ic_menu_share.xml │ │ │ │ │ │ ├── values-v21 │ │ │ │ │ │ │ └── styles.xml │ │ │ │ │ │ └── values-w820dp │ │ │ │ │ │ │ └── dimens.xml │ │ │ │ │ ├── java │ │ │ │ │ │ └── com │ │ │ │ │ │ │ └── retrofitdemo │ │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ ├── StackOverflowUserRequest.java │ │ │ │ │ │ │ ├── ApiFactory.java │ │ │ │ │ │ │ └── OkClientFactory.java │ │ │ │ │ │ │ └── App.java │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── test │ │ │ │ │ └── java │ │ │ │ │ │ └── com │ │ │ │ │ │ └── retrofitdemobypranay │ │ │ │ │ │ └── app │ │ │ │ │ │ └── ExampleUnitTest.java │ │ │ │ └── androidTest │ │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── retrofitdemo │ │ │ │ │ └── app │ │ │ │ │ └── ApplicationTest.java │ │ │ ├── proguard-rules.pro │ │ │ └── build.gradle │ │ │ ├── settings.gradle │ │ │ ├── .gitignore │ │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── build.gradle │ │ │ └── gradle.properties │ ├── TextInputLayout │ │ └── TextInputLayoutDemo │ │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── src │ │ │ │ └── main │ │ │ │ │ ├── assets │ │ │ │ │ ├── Adidas.ttf │ │ │ │ │ ├── Organo.ttf │ │ │ │ │ └── KGCamdenMarketScript.ttf │ │ │ │ │ ├── res │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── values │ │ │ │ │ │ ├── strings.xml │ │ │ │ │ │ ├── dimens.xml │ │ │ │ │ │ ├── colors.xml │ │ │ │ │ │ └── styles.xml │ │ │ │ │ ├── menu │ │ │ │ │ │ └── menu_main.xml │ │ │ │ │ └── values-w820dp │ │ │ │ │ │ └── dimens.xml │ │ │ │ │ └── AndroidManifest.xml │ │ │ ├── proguard-rules.pro │ │ │ └── build.gradle │ │ │ ├── .idea │ │ │ ├── .name │ │ │ ├── copyright │ │ │ │ └── profiles_settings.xml │ │ │ ├── encodings.xml │ │ │ ├── vcs.xml │ │ │ ├── modules.xml │ │ │ ├── runConfigurations.xml │ │ │ ├── gradle.xml │ │ │ └── compiler.xml │ │ │ ├── settings.gradle │ │ │ ├── .gitignore │ │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── build.gradle │ │ │ └── gradle.properties │ └── RuntimePermission │ │ └── RuntimePermissionDemo │ │ ├── app │ │ ├── .gitignore │ │ ├── src │ │ │ └── main │ │ │ │ ├── res │ │ │ │ ├── values │ │ │ │ │ ├── strings.xml │ │ │ │ │ ├── dimens.xml │ │ │ │ │ ├── colors.xml │ │ │ │ │ └── styles.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values-w820dp │ │ │ │ │ └── dimens.xml │ │ │ │ └── layout │ │ │ │ │ └── activity_main.xml │ │ │ │ └── AndroidManifest.xml │ │ ├── proguard-rules.pro │ │ └── build.gradle │ │ ├── settings.gradle │ │ ├── .gitignore │ │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── build.gradle │ │ └── gradle.properties ├── podcasts.md ├── video_tutorials.md ├── books.md └── blogs.md ├── Python ├── blogs.md ├── video_tutorials.md ├── Podcast.md ├── courses.md ├── experts_to_follow.md ├── Useful_links.md └── Tools.md ├── Ruby ├── blogs.md ├── tutorials.md ├── books.md ├── useful_links.md └── Podcast.md ├── Rails ├── tutorials.md ├── books.md ├── courses.md ├── useful_links.md └── experts_to_follow.md ├── UX-Design ├── UX Newsletters.md └── UX Blogs & Magazines.md ├── README.md ├── BigData └── books.md ├── Gradle └── Useful_links.md └── CONTRIBUTING.md /Git/blogs.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Go/blogs.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Go/books.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Go/courses.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iOS/books.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AngularJS/blogs.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AngularJS/books.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C-C++/Tools.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C-C++/blogs.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Docker/blogs.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Docker/books.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Docker/courses.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Go/Useful_links.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HTML5/blogs.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Kotlin/blogs.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Kotlin/books.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Kotlin/courses.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Laravel/blogs.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Laravel/books.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Laravel/courses.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Magento/blogs.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Magento/books.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Magento/courses.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Meteor/blogs.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Meteor/books.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Meteor/courses.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Node.Js/books.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RxJava/blogs.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RxJava/books.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RxJava/courses.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Wordpress/books.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iOS/courses.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AngularJS/courses.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BackboneJS/courses.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C-C++/Useful_links.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Docker/Useful_links.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Go/experts_to_follow.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Go/video_tutorials.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HTML5/Useful_links.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Laravel/Useful_links.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Magento/Useful_links.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Meteor/Useful_links.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Wordpress/courses.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iOS/video_tutorials.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AngularJS/Useful_links.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C-C++/experts_to_follow.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Docker/experts_to_follow.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Docker/video_tutorials.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Git/experts_to_follow.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GoogleCloudPlatform/blogs.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GoogleCloudPlatform/books.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HTML5/experts_to_follow.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HTML5/video_tutorials.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Kotlin/experts_to_follow.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Kotlin/video_tutorials.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Laravel/experts_to_follow.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Magento/experts_to_follow.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Magento/video_tutorials.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Meteor/experts_to_follow.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Meteor/video_tutorials.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Node.Js/Social_Experts.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RxJava/experts_to_follow.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RxJava/video_tutorials.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Wordpress/Useful_links.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Wordpress/video_tutorials.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iOS/experts_to_follow.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BackboneJS/experts_to_follow.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GoogleCloudPlatform/courses.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Wordpress/experts_to_follow.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GoogleCloudPlatform/video_tutorials.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GoogleCloudPlatform/experts_to_follow.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/DataBindingBasic/.idea/.name: -------------------------------------------------------------------------------- 1 | DataBindingDemo -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/DataBindingBasic/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/DataBindingOnClick/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/LoginDemo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/.idea/.name: -------------------------------------------------------------------------------- 1 | RetrofitDemoBasic -------------------------------------------------------------------------------- /android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/DataBindingBasic/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/DataBindingOnClick/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/Retrofit + DataBinding Demo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /android/examples_demos/TextInputLayout/TextInputLayoutDemo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/Retrofit + DataBinding Demo/.idea/.name: -------------------------------------------------------------------------------- 1 | RetrofitDemoBasic -------------------------------------------------------------------------------- /android/examples_demos/RuntimePermission/RuntimePermissionDemo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /android/examples_demos/TextInputLayout/TextInputLayoutDemo/.idea/.name: -------------------------------------------------------------------------------- 1 | TextInputLayoutDemo -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/Retrofit + DataBinding Demo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /android/examples_demos/RuntimePermission/RuntimePermissionDemo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /android/examples_demos/TextInputLayout/TextInputLayoutDemo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Git/books.md: -------------------------------------------------------------------------------- 1 | Name | Link 2 | ------------ | ------------- 3 | Pro Git | https://progit.org/ 4 | 5 | -------------------------------------------------------------------------------- /Git/courses.md: -------------------------------------------------------------------------------- 1 | 1. How to Use Git and GitHub by Udacity - https://www.udacity.com/course/how-to-use-git-and-github--ud775 2 | -------------------------------------------------------------------------------- /Python/blogs.md: -------------------------------------------------------------------------------- 1 | Name | Links 2 | ------------ | ------------- 3 | Miguel Grinberg | http://blog.miguelgrinberg.com/index 4 | -------------------------------------------------------------------------------- /Kotlin/Useful_links.md: -------------------------------------------------------------------------------- 1 | ### Useful links 2 | 3 | - [Try Kotlin online](http://try.kotlinlang.org/) - Online website to try out Kotlin 4 | -------------------------------------------------------------------------------- /HTML5/books.md: -------------------------------------------------------------------------------- 1 | Name | Link 2 | ------------ | ------------- 3 | HTML and CSS: Design and Build Websites | http://www.htmlandcssbook.com/ 4 | -------------------------------------------------------------------------------- /AngularJS/video_tutorials.md: -------------------------------------------------------------------------------- 1 | Name | Link 2 | ------------ | ------------- 3 | Egghead AngularJS screencasts | https://egghead.io/technologies/angularjs 4 | -------------------------------------------------------------------------------- /Node.Js/VideoTutorials.md: -------------------------------------------------------------------------------- 1 | - [TheNewBoston](https://www.youtube.com/watch?v=-u-j7uqU7sI&list=PL6gx4Cwl9DGBMdkKFn3HasZnnAqVjzHn_) - Node.js theNewBoston tutorials 2 | -------------------------------------------------------------------------------- /Ruby/blogs.md: -------------------------------------------------------------------------------- 1 | Name | Links 2 | ------------ | ------------- 3 | Blog by Justin Weiss for intermediate developers | https://www.justinweiss.com/articles/archives/ 4 | -------------------------------------------------------------------------------- /BackboneJS/video_tutorials.md: -------------------------------------------------------------------------------- 1 | Name | Link 2 | ------------ | ------------- 3 | Backbone JS for Beginners - Thomas Davis | https://www.youtube.com/watch?v=FZSjvWtUxYk 4 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/DataBindingBasic/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/LoginDemo/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Login DataBinding 3 | 4 | -------------------------------------------------------------------------------- /android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /iOS/blogs.md: -------------------------------------------------------------------------------- 1 | Name | Links 2 | ------------ | ------------- 3 | Ray Wenderlich | https://www.raywenderlich.com/ 4 | Cocoa is my Girlfriend | http://www.cimgf.com/ 5 | 6 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/DataBindingBasic/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | DataBindingDemo 3 | 4 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/DataBindingOnClick/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | DataBindingOnClick 3 | 4 | -------------------------------------------------------------------------------- /android/examples_demos/TextInputLayout/TextInputLayoutDemo/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/DataBindingBasic/.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | /local.properties 3 | /.idea/workspace.xml 4 | /.idea/libraries 5 | .DS_Store 6 | /build 7 | /captures 8 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/Retrofit + DataBinding Demo/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/DataBindingOnClick/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/LoginDemo/app/src/main/res/values/ids.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | -------------------------------------------------------------------------------- /android/podcasts.md: -------------------------------------------------------------------------------- 1 | Name | Link 2 | ------------ | ------------- 3 | Android Developers Backstage | http://androidbackstage.blogspot.com/ 4 | Fragmented | http://fragmentedpodcast.com/ 5 | -------------------------------------------------------------------------------- /android/examples_demos/TextInputLayout/TextInputLayoutDemo/.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | /local.properties 3 | /.idea/workspace.xml 4 | /.idea/libraries 5 | .DS_Store 6 | /build 7 | /captures 8 | -------------------------------------------------------------------------------- /BackboneJS/blogs.md: -------------------------------------------------------------------------------- 1 | Name | Link 2 | ------------ | ------------- 3 | Blog posts and example sites - Jeremy Ashkenas | https://github.com/jashkenas/backbone/wiki/Tutorials,-blog-posts-and-example-sites -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/Retrofit + DataBinding Demo/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | -------------------------------------------------------------------------------- /android/examples_demos/RuntimePermission/RuntimePermissionDemo/.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | /local.properties 3 | /.idea/workspace.xml 4 | /.idea/libraries 5 | .DS_Store 6 | /build 7 | /captures 8 | -------------------------------------------------------------------------------- /BackboneJS/Useful_links.md: -------------------------------------------------------------------------------- 1 | Name | Link 2 | ------------ | ------------- 3 | Backbone Official Documentation | http://backbonejs.org/ 4 | Tutorials | https://backbonetutorials.com/ 5 | Underscore JS | http://underscorejs.org/ -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/LoginDemo/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidagarwal04/Learning-Resources/master/android/examples_demos/DataBinding/LoginDemo/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Rails/tutorials.md: -------------------------------------------------------------------------------- 1 | Description | URL 2 | ------------ | ------------- 3 | Railscasts by Ryan Bates | http://railscasts.com/ 4 | Ruby on Rails tutorials by Lynda.com | https://www.lynda.com/Ruby-on-Rails-training-tutorials/304-0.html 5 | -------------------------------------------------------------------------------- /Git/video_tutorials.md: -------------------------------------------------------------------------------- 1 | - [DevTips](https://www.youtube.com/playlist?list=PLqGj3iMvMa4LFz8DZ0t-89twnelpT4Ilw) - Github for Noobs 2 | - [TheNewBoston](https://www.youtube.com/playlist?list=PL6gx4Cwl9DGAKWClAD_iKpNC0bGHxGhcx) - Git Tutorials 3 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/DataBindingBasic/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidagarwal04/Learning-Resources/master/android/examples_demos/DataBinding/DataBindingBasic/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/DataBindingOnClick/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidagarwal04/Learning-Resources/master/android/examples_demos/DataBinding/DataBindingOnClick/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidagarwal04/Learning-Resources/master/android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Ruby/tutorials.md: -------------------------------------------------------------------------------- 1 | Description | URL 2 | ------------ | ------------- 3 | Learn ruby from Youtube | https://www.youtube.com/playlist?list=PLDmvslp_VR0xlwr5lAx2PDsZLu7oIOhpX 4 | Interactive Online Ruby Tutorial (Basics) | http://tryruby.org/ 5 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/LoginDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidagarwal04/Learning-Resources/master/android/examples_demos/DataBinding/LoginDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/LoginDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidagarwal04/Learning-Resources/master/android/examples_demos/DataBinding/LoginDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/examples_demos/TextInputLayout/TextInputLayoutDemo/app/src/main/assets/Adidas.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidagarwal04/Learning-Resources/master/android/examples_demos/TextInputLayout/TextInputLayoutDemo/app/src/main/assets/Adidas.ttf -------------------------------------------------------------------------------- /android/examples_demos/TextInputLayout/TextInputLayoutDemo/app/src/main/assets/Organo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidagarwal04/Learning-Resources/master/android/examples_demos/TextInputLayout/TextInputLayoutDemo/app/src/main/assets/Organo.ttf -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/DataBindingBasic/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/DataBindingBasic/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/LoginDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidagarwal04/Learning-Resources/master/android/examples_demos/DataBinding/LoginDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/LoginDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidagarwal04/Learning-Resources/master/android/examples_demos/DataBinding/LoginDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/LoginDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidagarwal04/Learning-Resources/master/android/examples_demos/DataBinding/LoginDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /android/examples_demos/TextInputLayout/TextInputLayoutDemo/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidagarwal04/Learning-Resources/master/android/examples_demos/TextInputLayout/TextInputLayoutDemo/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/LoginDemo/app/src/main/java/com/logindemo/Handler/ClickHandler.java: -------------------------------------------------------------------------------- 1 | package com.logindemo.Handler; 2 | 3 | import android.view.View; 4 | 5 | public interface ClickHandler { 6 | void onClickLogin(View view); 7 | } 8 | -------------------------------------------------------------------------------- /android/examples_demos/TextInputLayout/TextInputLayoutDemo/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /android/examples_demos/TextInputLayout/TextInputLayoutDemo/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/DataBindingBasic/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidagarwal04/Learning-Resources/master/android/examples_demos/DataBinding/DataBindingBasic/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/DataBindingBasic/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidagarwal04/Learning-Resources/master/android/examples_demos/DataBinding/DataBindingBasic/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/DataBindingBasic/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidagarwal04/Learning-Resources/master/android/examples_demos/DataBinding/DataBindingBasic/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/Retrofit + DataBinding Demo/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/Retrofit + DataBinding Demo/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/Retrofit + DataBinding Demo/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidagarwal04/Learning-Resources/master/android/examples_demos/DataBinding/Retrofit + DataBinding Demo/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/app/src/main/res/drawable-xhdpi/ic_so.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidagarwal04/Learning-Resources/master/android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/app/src/main/res/drawable-xhdpi/ic_so.png -------------------------------------------------------------------------------- /android/examples_demos/RuntimePermission/RuntimePermissionDemo/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidagarwal04/Learning-Resources/master/android/examples_demos/RuntimePermission/RuntimePermissionDemo/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/DataBindingBasic/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidagarwal04/Learning-Resources/master/android/examples_demos/DataBinding/DataBindingBasic/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/DataBindingBasic/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidagarwal04/Learning-Resources/master/android/examples_demos/DataBinding/DataBindingBasic/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/DataBindingOnClick/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidagarwal04/Learning-Resources/master/android/examples_demos/DataBinding/DataBindingOnClick/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/DataBindingOnClick/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidagarwal04/Learning-Resources/master/android/examples_demos/DataBinding/DataBindingOnClick/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/DataBindingOnClick/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidagarwal04/Learning-Resources/master/android/examples_demos/DataBinding/DataBindingOnClick/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidagarwal04/Learning-Resources/master/android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidagarwal04/Learning-Resources/master/android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidagarwal04/Learning-Resources/master/android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Rails/books.md: -------------------------------------------------------------------------------- 1 | Name and Author | URL 2 | ------------ | ------------- 3 | Ruby on Rails Tutorial, Learn Web Development with Rails - Michael Hartl | https://www.railstutorial.org/book 4 | Multitenancy with Rails - Ryan Bigg | https://leanpub.com/multi-tenancy-rails 5 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/DataBindingOnClick/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidagarwal04/Learning-Resources/master/android/examples_demos/DataBinding/DataBindingOnClick/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/DataBindingOnClick/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidagarwal04/Learning-Resources/master/android/examples_demos/DataBinding/DataBindingOnClick/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidagarwal04/Learning-Resources/master/android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidagarwal04/Learning-Resources/master/android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/examples_demos/RuntimePermission/RuntimePermissionDemo/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | RuntimePermissionDemo 3 | this is sample explaination 4 | 5 | -------------------------------------------------------------------------------- /android/video_tutorials.md: -------------------------------------------------------------------------------- 1 | - [Caster.io](https://caster.io/) - Android development video tutorials from Android GDEs. Contains both free and paid tutorials. 2 | - [TheNewBoston.com](https://thenewboston.com/videos.php?cat=278) - Android App Development - Beginners 3 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/Retrofit + DataBinding Demo/app/src/main/res/drawable-xhdpi/ic_so.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidagarwal04/Learning-Resources/master/android/examples_demos/DataBinding/Retrofit + DataBinding Demo/app/src/main/res/drawable-xhdpi/ic_so.png -------------------------------------------------------------------------------- /android/examples_demos/TextInputLayout/TextInputLayoutDemo/app/src/main/assets/KGCamdenMarketScript.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidagarwal04/Learning-Resources/master/android/examples_demos/TextInputLayout/TextInputLayoutDemo/app/src/main/assets/KGCamdenMarketScript.ttf -------------------------------------------------------------------------------- /android/examples_demos/TextInputLayout/TextInputLayoutDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidagarwal04/Learning-Resources/master/android/examples_demos/TextInputLayout/TextInputLayoutDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/examples_demos/TextInputLayout/TextInputLayoutDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidagarwal04/Learning-Resources/master/android/examples_demos/TextInputLayout/TextInputLayoutDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/examples_demos/TextInputLayout/TextInputLayoutDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidagarwal04/Learning-Resources/master/android/examples_demos/TextInputLayout/TextInputLayoutDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/Retrofit + DataBinding Demo/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidagarwal04/Learning-Resources/master/android/examples_demos/DataBinding/Retrofit + DataBinding Demo/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/Retrofit + DataBinding Demo/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidagarwal04/Learning-Resources/master/android/examples_demos/DataBinding/Retrofit + DataBinding Demo/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/examples_demos/RuntimePermission/RuntimePermissionDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidagarwal04/Learning-Resources/master/android/examples_demos/RuntimePermission/RuntimePermissionDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/examples_demos/RuntimePermission/RuntimePermissionDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidagarwal04/Learning-Resources/master/android/examples_demos/RuntimePermission/RuntimePermissionDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/examples_demos/TextInputLayout/TextInputLayoutDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidagarwal04/Learning-Resources/master/android/examples_demos/TextInputLayout/TextInputLayoutDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /HTML5/courses.md: -------------------------------------------------------------------------------- 1 | Link | Author/Company 2 | ------------ | ------------- 3 | [HTML, CSS and JavaScript](https://www.coursera.org/learn/html-css-javascript/) | The Hong Kong University of Science and Technology 4 | [HTML & CSS] (https://www.codecademy.com/learn/web) | Codecademy 5 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/Retrofit + DataBinding Demo/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidagarwal04/Learning-Resources/master/android/examples_demos/DataBinding/Retrofit + DataBinding Demo/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/Retrofit + DataBinding Demo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidagarwal04/Learning-Resources/master/android/examples_demos/DataBinding/Retrofit + DataBinding Demo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/examples_demos/RuntimePermission/RuntimePermissionDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidagarwal04/Learning-Resources/master/android/examples_demos/RuntimePermission/RuntimePermissionDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/examples_demos/RuntimePermission/RuntimePermissionDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidagarwal04/Learning-Resources/master/android/examples_demos/RuntimePermission/RuntimePermissionDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/Retrofit + DataBinding Demo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidagarwal04/Learning-Resources/master/android/examples_demos/DataBinding/Retrofit + DataBinding Demo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/app/src/main/res/drawable-xxhdpi/profile_place_holder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidagarwal04/Learning-Resources/master/android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/app/src/main/res/drawable-xxhdpi/profile_place_holder.png -------------------------------------------------------------------------------- /android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/app/src/main/res/mipmap-hdpi/ic_arrow_back_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidagarwal04/Learning-Resources/master/android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/app/src/main/res/mipmap-hdpi/ic_arrow_back_white_24dp.png -------------------------------------------------------------------------------- /android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/app/src/main/res/mipmap-mdpi/ic_arrow_back_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidagarwal04/Learning-Resources/master/android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/app/src/main/res/mipmap-mdpi/ic_arrow_back_white_24dp.png -------------------------------------------------------------------------------- /android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/app/src/main/res/mipmap-xhdpi/ic_arrow_back_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidagarwal04/Learning-Resources/master/android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/app/src/main/res/mipmap-xhdpi/ic_arrow_back_white_24dp.png -------------------------------------------------------------------------------- /android/examples_demos/RuntimePermission/RuntimePermissionDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidagarwal04/Learning-Resources/master/android/examples_demos/RuntimePermission/RuntimePermissionDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/app/src/main/res/mipmap-hdpi/ic_file_download_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidagarwal04/Learning-Resources/master/android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/app/src/main/res/mipmap-hdpi/ic_file_download_white_24dp.png -------------------------------------------------------------------------------- /android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/app/src/main/res/mipmap-mdpi/ic_file_download_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidagarwal04/Learning-Resources/master/android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/app/src/main/res/mipmap-mdpi/ic_file_download_white_24dp.png -------------------------------------------------------------------------------- /android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/app/src/main/res/mipmap-xxhdpi/ic_arrow_back_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidagarwal04/Learning-Resources/master/android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/app/src/main/res/mipmap-xxhdpi/ic_arrow_back_white_24dp.png -------------------------------------------------------------------------------- /android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/app/src/main/res/mipmap-xxxhdpi/ic_arrow_back_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidagarwal04/Learning-Resources/master/android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/app/src/main/res/mipmap-xxxhdpi/ic_arrow_back_white_24dp.png -------------------------------------------------------------------------------- /android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/app/src/main/res/mipmap-xhdpi/ic_file_download_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidagarwal04/Learning-Resources/master/android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/app/src/main/res/mipmap-xhdpi/ic_file_download_white_24dp.png -------------------------------------------------------------------------------- /android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/app/src/main/res/mipmap-xxhdpi/ic_file_download_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidagarwal04/Learning-Resources/master/android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/app/src/main/res/mipmap-xxhdpi/ic_file_download_white_24dp.png -------------------------------------------------------------------------------- /android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/app/src/main/res/mipmap-xxxhdpi/ic_file_download_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidagarwal04/Learning-Resources/master/android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/app/src/main/res/mipmap-xxxhdpi/ic_file_download_white_24dp.png -------------------------------------------------------------------------------- /Ruby/books.md: -------------------------------------------------------------------------------- 1 | Name and Author | URL 2 | ------------ | ------------- 3 | Learn Ruby the Hard way - Zed A. Shaw | http://learnrubythehardway.org/book/ 4 | The Ruby programming language - David Flanagan and Yukihiro Matsumoto | http://www.amazon.in/Ruby-Programming-Language-Davd-Flanagan/dp/0596516177 5 | -------------------------------------------------------------------------------- /android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/app/src/main/res/anim/slide_in_left.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | -------------------------------------------------------------------------------- /android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/app/src/main/res/anim/slide_in_right.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | -------------------------------------------------------------------------------- /Rails/courses.md: -------------------------------------------------------------------------------- 1 | Description | URL 2 | ------------ | ------------- 3 | Rails Best Practices by CodeSchool | https://www.codeschool.com/courses/rails-best-practices 4 | Rails for Zombies by CodeSchool | http://railsforzombies.org/ 5 | Interactive course on rails | https://www.codecademy.com/learn/learn-rails 6 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/LoginDemo/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/LoginDemo/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 6 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/Retrofit + DataBinding Demo/app/src/main/res/drawable-xxhdpi/profile_place_holder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidagarwal04/Learning-Resources/master/android/examples_demos/DataBinding/Retrofit + DataBinding Demo/app/src/main/res/drawable-xxhdpi/profile_place_holder.png -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/Retrofit + DataBinding Demo/app/src/main/res/mipmap-hdpi/ic_arrow_back_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidagarwal04/Learning-Resources/master/android/examples_demos/DataBinding/Retrofit + DataBinding Demo/app/src/main/res/mipmap-hdpi/ic_arrow_back_white_24dp.png -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/Retrofit + DataBinding Demo/app/src/main/res/mipmap-mdpi/ic_arrow_back_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidagarwal04/Learning-Resources/master/android/examples_demos/DataBinding/Retrofit + DataBinding Demo/app/src/main/res/mipmap-mdpi/ic_arrow_back_white_24dp.png -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/Retrofit + DataBinding Demo/app/src/main/res/mipmap-xhdpi/ic_arrow_back_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidagarwal04/Learning-Resources/master/android/examples_demos/DataBinding/Retrofit + DataBinding Demo/app/src/main/res/mipmap-xhdpi/ic_arrow_back_white_24dp.png -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/Retrofit + DataBinding Demo/app/src/main/res/mipmap-xxhdpi/ic_arrow_back_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidagarwal04/Learning-Resources/master/android/examples_demos/DataBinding/Retrofit + DataBinding Demo/app/src/main/res/mipmap-xxhdpi/ic_arrow_back_white_24dp.png -------------------------------------------------------------------------------- /android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/app/src/main/res/anim/slide_out_left.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | -------------------------------------------------------------------------------- /android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/app/src/main/res/anim/slide_out_right.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/Retrofit + DataBinding Demo/app/src/main/res/anim/slide_in_left.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/Retrofit + DataBinding Demo/app/src/main/res/anim/slide_in_right.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/Retrofit + DataBinding Demo/app/src/main/res/anim/slide_out_left.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/Retrofit + DataBinding Demo/app/src/main/res/anim/slide_out_right.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/Retrofit + DataBinding Demo/app/src/main/res/mipmap-hdpi/ic_file_download_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidagarwal04/Learning-Resources/master/android/examples_demos/DataBinding/Retrofit + DataBinding Demo/app/src/main/res/mipmap-hdpi/ic_file_download_white_24dp.png -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/Retrofit + DataBinding Demo/app/src/main/res/mipmap-mdpi/ic_file_download_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidagarwal04/Learning-Resources/master/android/examples_demos/DataBinding/Retrofit + DataBinding Demo/app/src/main/res/mipmap-mdpi/ic_file_download_white_24dp.png -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/Retrofit + DataBinding Demo/app/src/main/res/mipmap-xhdpi/ic_file_download_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidagarwal04/Learning-Resources/master/android/examples_demos/DataBinding/Retrofit + DataBinding Demo/app/src/main/res/mipmap-xhdpi/ic_file_download_white_24dp.png -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/Retrofit + DataBinding Demo/app/src/main/res/mipmap-xxxhdpi/ic_arrow_back_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidagarwal04/Learning-Resources/master/android/examples_demos/DataBinding/Retrofit + DataBinding Demo/app/src/main/res/mipmap-xxxhdpi/ic_arrow_back_white_24dp.png -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/DataBindingBasic/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 6 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/DataBindingOnClick/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/DataBindingOnClick/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 6 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/Retrofit + DataBinding Demo/app/src/main/res/mipmap-xxhdpi/ic_file_download_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidagarwal04/Learning-Resources/master/android/examples_demos/DataBinding/Retrofit + DataBinding Demo/app/src/main/res/mipmap-xxhdpi/ic_file_download_white_24dp.png -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/Retrofit + DataBinding Demo/app/src/main/res/mipmap-xxxhdpi/ic_file_download_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidagarwal04/Learning-Resources/master/android/examples_demos/DataBinding/Retrofit + DataBinding Demo/app/src/main/res/mipmap-xxxhdpi/ic_file_download_white_24dp.png -------------------------------------------------------------------------------- /android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /android/examples_demos/TextInputLayout/TextInputLayoutDemo/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | TextInputLayoutDemo 3 | 4 | TextInputLayoutDemo 5 | Settings 6 | 7 | -------------------------------------------------------------------------------- /Laravel/video_tutorials.md: -------------------------------------------------------------------------------- 1 | Name | Links 2 | ------------ | ------------- 3 | Laravel from Scratch | https://laracasts.com/series/laravel-5-from-scratch 4 | Testing Laravel | https://laracasts.com/series/phpunit-testing-in-laravel/ 5 | What's new in Laravel 5.2 | https://laracasts.com/series/whats-new-in-laravel-5-2 6 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/DataBindingBasic/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/Retrofit + DataBinding Demo/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /android/examples_demos/RuntimePermission/RuntimePermissionDemo/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 6 | -------------------------------------------------------------------------------- /android/examples_demos/TextInputLayout/TextInputLayoutDemo/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 6 | -------------------------------------------------------------------------------- /android/examples_demos/RuntimePermission/RuntimePermissionDemo/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /android/examples_demos/TextInputLayout/TextInputLayoutDemo/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #0000FF 4 | #FF0000 5 | #00FF00 6 | 7 | 8 | -------------------------------------------------------------------------------- /C-C++/video_tutorials.md: -------------------------------------------------------------------------------- 1 | - [TheNewBoston C++](https://thenewboston.com/videos.php?cat=16) - TheNewBoston C++ tutorials 2 | - [TheNewBoston C](https://thenewboston.com/videos.php?cat=14) - TheNewBoston C tutorials 3 | - [TheNewBoston C++ GUI with QT](https://thenewboston.com/videos.php?cat=57) - TheNewBoston C++ GUI with QT tutorials 4 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/LoginDemo/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Wed Oct 21 11:34:03 PDT 2015 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.8-all.zip 7 | -------------------------------------------------------------------------------- /android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/app/src/main/res/drawable/drawable_bronz_badge.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/app/src/main/res/drawable/drawable_gold_badge.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/app/src/main/res/drawable/drawable_silver_badge.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /iOS/Useful_links.md: -------------------------------------------------------------------------------- 1 | ### Portal/Newsletter 2 | 3 | - [iOS Dev Weekly](http://iosdevweekly.com/) - best iOS development links every week 4 | 5 | ### Development tools 6 | 7 | - [IBM Swift Sandbox](https://swiftlang.ng.bluemix.net/#/repl) - Interactive website that lets you write Swift code and execute it in a server environment 8 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/DataBindingOnClick/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Wed Oct 21 11:34:03 PDT 2015 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.8-all.zip 7 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/Retrofit + DataBinding Demo/app/src/main/res/drawable/drawable_gold_badge.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/DataBindingBasic/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Sat Mar 19 20:47:16 IST 2016 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.4-all.zip 7 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/Retrofit + DataBinding Demo/app/src/main/res/drawable/drawable_bronz_badge.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/Retrofit + DataBinding Demo/app/src/main/res/drawable/drawable_silver_badge.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Mon Dec 28 10:00:20 PST 2015 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.10-all.zip 7 | -------------------------------------------------------------------------------- /Rails/useful_links.md: -------------------------------------------------------------------------------- 1 | Name | Links 2 | ------------ | ------------- 3 | Official Website | http://rubyonrails.org/ 4 | Ruby on Rails official blog | http://weblog.rubyonrails.org/ 5 | Interactive course on rails | https://www.codecademy.com/learn/learn-rails 6 | Basic Question - Answers | https://github.com/rishiip/ruby-on-rails-interview-questions 7 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/Retrofit + DataBinding Demo/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Mon Dec 28 10:00:20 PST 2015 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.10-all.zip 7 | -------------------------------------------------------------------------------- /android/examples_demos/TextInputLayout/TextInputLayoutDemo/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Wed Apr 10 15:27:10 PDT 2013 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.2.1-all.zip 7 | -------------------------------------------------------------------------------- /android/examples_demos/RuntimePermission/RuntimePermissionDemo/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Tue Oct 13 08:49:44 IST 2015 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.4-all.zip 7 | -------------------------------------------------------------------------------- /android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/app/src/main/res/layout/activity_post.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/Retrofit + DataBinding Demo/app/src/main/res/layout/activity_post.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | -------------------------------------------------------------------------------- /Python/video_tutorials.md: -------------------------------------------------------------------------------- 1 | <<<<<<< HEAD 2 | - [TheNewBoston](https://www.youtube.com/playlist?list=PL6gx4Cwl9DGAcbMi1sH6oAMk4JHw91mC_) - Python 3.4 Programming Tutorials 3 | ======= 4 | 5 | - [Python Audio Video Material](https://www.python.org/doc/av/) - Python Audio and Video material to grasp knowledge in Python. Supported by 'python.org' 6 | >>>>>>> upstream/master 7 | -------------------------------------------------------------------------------- /android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/app/src/main/res/layout/horizontal_line.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | -------------------------------------------------------------------------------- /Python/Podcast.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ###Python Podcast's 4 | 5 | - [Podcast.init](http://podcastinit.com/) - A podcast about Python and the people who make it great. 6 | - [Pyhon test podcast](http://pythontesting.net/test-podcast/) - A podcast about Software Development, Software Testing, on Python. 7 | - [Talk python to me](https://talkpython.fm/) - A podcast on python and related technology. -------------------------------------------------------------------------------- /android/books.md: -------------------------------------------------------------------------------- 1 | Name | Link 2 | ------------ | ------------- 3 | The Busy Coder's Guide to Android Development | https://commonsware.com/Android/ 4 | Head First Android Development | http://dogriffiths.github.io/HeadFirstAndroid/ 5 | Professional Android 4 Application Development | http://www.amazon.com/dp/1118102274 6 | Using Project Kotlin for Android | https://goo.gl/YrxDhf 7 | 8 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/Retrofit + DataBinding Demo/app/src/main/res/layout/horizontal_line.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | -------------------------------------------------------------------------------- /android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | RetrofitDemo 3 | 4 | Open navigation drawer 5 | Close navigation drawer 6 | 7 | Settings 8 | 9 | -------------------------------------------------------------------------------- /Ruby/useful_links.md: -------------------------------------------------------------------------------- 1 | Name | Links 2 | ------------ | ------------- 3 | Ruby conferences all over the world | http://rubyconferences.org/ 4 | RubyConf by Ruby Central | http://rubyconf.org/ 5 | Ruby Toolbox - Pointers to almost all gems and tools, presented in comparative manner | https://www.ruby-toolbox.com/ 6 | Ruby Daily Newspaper | http://rubydaily.org/ 7 | Ruby Weekly | http://rubyweekly.com/ 8 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/Retrofit + DataBinding Demo/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | RetrofitDemo 3 | 4 | Open navigation drawer 5 | Close navigation drawer 6 | 7 | Settings 8 | 9 | -------------------------------------------------------------------------------- /android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/app/src/main/res/drawable/side_nav_bar.xml: -------------------------------------------------------------------------------- 1 | 3 | 9 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/Retrofit + DataBinding Demo/app/src/main/res/drawable/side_nav_bar.xml: -------------------------------------------------------------------------------- 1 | 3 | 9 | -------------------------------------------------------------------------------- /android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/app/src/main/res/menu/main.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 8 | 9 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/Retrofit + DataBinding Demo/app/src/main/res/menu/main.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 8 | 9 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/DataBindingBasic/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/LoginDemo/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 64dp 6 | 7 | -------------------------------------------------------------------------------- /Ruby/Podcast.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ###Ruby Podcast's 4 | 5 | - [5by5 Ruby on Rails Podcast](http://5by5.tv/rubyonrails) - Ruby on Rails Podcast. 6 | - [ENVY Labs - Ruby5](https://ruby5.codeschool.com/) - The latest news in the ruby and rails community. 7 | - [Ruby Rogues](https://devchat.tv/ruby-rogues/) - Ruby rogues is a weekly panel discussion about programming. 8 | - [Ruby show](http://rubyshow.com/) - Talks about ruby latest releases, security and interesting projects. -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/DataBindingOnClick/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 64dp 6 | 7 | -------------------------------------------------------------------------------- /android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/app/src/main/res/drawable-v21/ic_menu_send.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/app/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | -------------------------------------------------------------------------------- /android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 64dp 6 | 7 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/DataBindingBasic/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 64dp 6 | 7 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/LoginDemo/app/src/test/java/com/twowaybinding/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.twowaybinding; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * To work on unit tests, switch the Test Artifact in the Build Variants view. 9 | */ 10 | public class ExampleUnitTest { 11 | @Test 12 | public void addition_isCorrect() throws Exception { 13 | assertEquals(4, 2 + 2); 14 | } 15 | } -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/Retrofit + DataBinding Demo/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/Retrofit + DataBinding Demo/app/src/main/res/drawable-v21/ic_menu_send.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /android/examples_demos/TextInputLayout/TextInputLayoutDemo/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/Retrofit + DataBinding Demo/app/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/Retrofit + DataBinding Demo/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 64dp 6 | 7 | -------------------------------------------------------------------------------- /android/examples_demos/TextInputLayout/TextInputLayoutDemo/app/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- 1 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /android/examples_demos/TextInputLayout/TextInputLayoutDemo/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 64dp 6 | 7 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/DataBindingBasic/app/src/main/java/chintan/rathod/databindingdemo/Model/User.java: -------------------------------------------------------------------------------- 1 | package chintan.rathod.databindingdemo.Model; 2 | 3 | /** 4 | * Created by Rathod on 19-Mar-16. 5 | */ 6 | public class User { 7 | 8 | public String displayName; 9 | public int age; 10 | 11 | public User(String displayName, int age){ 12 | this.displayName = displayName; 13 | this.age = age; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /android/examples_demos/RuntimePermission/RuntimePermissionDemo/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 64dp 6 | 7 | -------------------------------------------------------------------------------- /android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/app/src/test/java/com/retrofitdemobypranay/app/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.retrofitdemo.app; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * To work on unit tests, switch the Test Artifact in the Build Variants view. 9 | */ 10 | public class ExampleUnitTest { 11 | @Test 12 | public void addition_isCorrect() throws Exception { 13 | assertEquals(4, 2 + 2); 14 | } 15 | } -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/DataBindingOnClick/app/src/test/java/com/rrr/databindingonclick/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.rrr.databindingonclick; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * To work on unit tests, switch the Test Artifact in the Build Variants view. 9 | */ 10 | public class ExampleUnitTest { 11 | @Test 12 | public void addition_isCorrect() throws Exception { 13 | assertEquals(4, 2 + 2); 14 | } 15 | } -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/LoginDemo/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/Retrofit + DataBinding Demo/app/src/test/java/com/retrofitdemobypranay/app/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.retrofitdemo.app; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * To work on unit tests, switch the Test Artifact in the Build Variants view. 9 | */ 10 | public class ExampleUnitTest { 11 | @Test 12 | public void addition_isCorrect() throws Exception { 13 | assertEquals(4, 2 + 2); 14 | } 15 | } -------------------------------------------------------------------------------- /BackboneJS/books.md: -------------------------------------------------------------------------------- 1 | Name | Link 2 | ------------ | ------------- 3 | Backbone JS Cookbook | http://www.amazon.com/Backbone-js-Cookbook-Vadim-Mirgorod/dp/1782162720 4 | Beginning Backbone JS | http://www.amazon.com/Beginning-Backbone-js-Experts-Voice-Development/dp/1430263342 5 | Developing Backbone JS Applications | http://www.amazon.in/Developing-Backbone-js-Applications-Addy-Osmani/dp/1449328253 6 | Full Stack Web Development with Backbone JS | http://www.amazon.in/Full-Stack-Web-Development-Backbone-js/dp/1449370985 -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/DataBindingOnClick/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/app/src/androidTest/java/com/retrofitdemo/app/ApplicationTest.java: -------------------------------------------------------------------------------- 1 | package com.retrofitdemo.app; 2 | 3 | import android.app.Application; 4 | import android.test.ApplicationTestCase; 5 | 6 | /** 7 | * Testing Fundamentals 8 | */ 9 | public class ApplicationTest extends ApplicationTestCase { 10 | public ApplicationTest() { 11 | super(Application.class); 12 | } 13 | } -------------------------------------------------------------------------------- /Rails/experts_to_follow.md: -------------------------------------------------------------------------------- 1 | Name | Twitter | Google+ | Website/Blog | LinkedIn | Other links 2 | ------------ | ------------- | ------------- | ------------- | ------------- | ------------- | 3 | Yukihiro Matsumoto | https://twitter.com/yukihiro_matz | https://plus.google.com/104511308184997405918 | - | https://www.linkedin.com/in/yukihiro | https://github.com/matz 4 | David Heinemeier Hansson | https://twitter.com/dhh | https://plus.google.com/102352328760254046201 | http://david.heinemeierhansson.com/ | - | https://github.com/dhh -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/DataBindingBasic/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/Retrofit + DataBinding Demo/app/src/androidTest/java/com/retrofitdemo/app/ApplicationTest.java: -------------------------------------------------------------------------------- 1 | package com.retrofitdemo.app; 2 | 3 | import android.app.Application; 4 | import android.test.ApplicationTestCase; 5 | 6 | /** 7 | * Testing Fundamentals 8 | */ 9 | public class ApplicationTest extends ApplicationTestCase { 10 | public ApplicationTest() { 11 | super(Application.class); 12 | } 13 | } -------------------------------------------------------------------------------- /android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/app/src/main/java/com/retrofitdemo/api/StackOverflowUserRequest.java: -------------------------------------------------------------------------------- 1 | package com.retrofitdemo.api; 2 | 3 | import com.retrofitdemo.api.response.StackOverflowUser; 4 | 5 | import retrofit2.Call; 6 | import retrofit2.http.GET; 7 | import retrofit2.http.Query; 8 | 9 | public interface StackOverflowUserRequest { 10 | @GET("users") 11 | Call getUserList(@Query("order") String order,@Query("sort") String sort,@Query("site") String site); 12 | } 13 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/DataBindingOnClick/app/src/androidTest/java/com/rrr/databindingonclick/ApplicationTest.java: -------------------------------------------------------------------------------- 1 | package com.rrr.databindingonclick; 2 | 3 | import android.app.Application; 4 | import android.test.ApplicationTestCase; 5 | 6 | /** 7 | * Testing Fundamentals 8 | */ 9 | public class ApplicationTest extends ApplicationTestCase { 10 | public ApplicationTest() { 11 | super(Application.class); 12 | } 13 | } -------------------------------------------------------------------------------- /android/examples_demos/RuntimePermission/RuntimePermissionDemo/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/Retrofit + DataBinding Demo/app/src/main/java/com/retrofitdemo/api/StackOverflowUserRequest.java: -------------------------------------------------------------------------------- 1 | package com.retrofitdemo.api; 2 | 3 | import com.retrofitdemo.api.response.StackOverflowUser; 4 | 5 | import retrofit2.Call; 6 | import retrofit2.http.GET; 7 | import retrofit2.http.Query; 8 | 9 | public interface StackOverflowUserRequest { 10 | @GET("users") 11 | Call getUserList(@Query("order") String order,@Query("sort") String sort,@Query("site") String site); 12 | } 13 | -------------------------------------------------------------------------------- /android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 160dp 5 | 6 | 16dp 7 | 16dp 8 | 16dp 9 | 10 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/Retrofit + DataBinding Demo/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 160dp 5 | 6 | 16dp 7 | 16dp 8 | 16dp 9 | 10 | -------------------------------------------------------------------------------- /android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/app/src/main/res/drawable-v21/ic_menu_slideshow.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/Retrofit + DataBinding Demo/app/src/main/res/drawable-v21/ic_menu_slideshow.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/app/src/main/res/drawable-v21/ic_menu_gallery.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /AngularJS/experts_to_follow.md: -------------------------------------------------------------------------------- 1 | Name | Twitter | Google+ | Website/Blog | GitHub | LinkedIn | Other links 2 | ------------ | ------------- | ------------- | ------------- | ------------- | ------------- | ------------- | 3 | Todd Motto | https://twitter.com/toddmotto | https://plus.google.com/+ToddMotto | https://toddmotto.com/ | https://github.com/toddmotto/ | in.linkedin.com/in/toddmotto | 4 | Ben Nadel | https://twitter.com/BenNadel | https://plus.google.com/108976367067760160494?rel=author | http://www.bennadel.com/ | https://github.com/BenNadel | https://www.linkedin.com/in/BenNadel | - | 5 | -------------------------------------------------------------------------------- /android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/app/src/main/res/drawable-v21/ic_menu_manage.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/Retrofit + DataBinding Demo/app/src/main/res/drawable-v21/ic_menu_gallery.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/Retrofit + DataBinding Demo/app/src/main/res/drawable-v21/ic_menu_manage.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | -------------------------------------------------------------------------------- /android/examples_demos/TextInputLayout/TextInputLayoutDemo/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:1.2.3' 9 | 10 | // NOTE: Do not place your application dependencies here; they belong 11 | // in the individual module build.gradle files 12 | } 13 | } 14 | 15 | allprojects { 16 | repositories { 17 | jcenter() 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /Node.Js/Important_links.md: -------------------------------------------------------------------------------- 1 | 2 | ### Node Official 3 | 4 | - [Node official API documentation](https://nodejs.org/api/) - API Guide for developers. 5 | - [Node packages](https://www.npmjs.com/) - Package manager for third party node packages. 6 | - [Node Repository](https://github.com/nodejs) - Github repositories for node.js foundation open source projects. 7 | - [Node Twitter Handle](https://twitter.com/nodejs) - Official twitter handle for node.js. 8 | 9 | ### Interview Questions 10 | 11 | - [Node Interview Questions by Experts](https://blog.risingstack.com/node-js-interview-questions/) - Basic node concept related questions. -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/LoginDemo/app/src/main/java/com/logindemo/Model/User.java: -------------------------------------------------------------------------------- 1 | package com.logindemo.Model; 2 | 3 | import android.databinding.ObservableField; 4 | 5 | import com.logindemo.TextWatcherAdapter; 6 | 7 | public class User 8 | { 9 | public final ObservableField userName = 10 | new ObservableField<>(); 11 | public final ObservableField password = 12 | new ObservableField<>(); 13 | 14 | public TextWatcherAdapter userNameWatcher = new TextWatcherAdapter(userName); 15 | public TextWatcherAdapter passwordWatcher = new TextWatcherAdapter(password); 16 | 17 | } 18 | -------------------------------------------------------------------------------- /UX-Design/UX Newsletters.md: -------------------------------------------------------------------------------- 1 | ##Newsletters 2 | 3 | Get updates by subscribing this newsletters. 4 | 5 | 1. [Mailchimp UX Newsletter](http://www.theuxnewsletter.com/) 6 | 2. [UX Mastery Newsletter](http://uxmastery.com/newsletter/) 7 | 3. [UX Weekly Newsletter](http://uxwkly.com/) 8 | 4. [UX Booth Newsletter](http://www.uxbooth.com/newsletter/) 9 | 5. [UX Design Weekly Newsletter](http://uxdesignweekly.com/) 10 | 6. [Smashing Magazine Newsletter](https://www.smashingmagazine.com/the-smashing-newsletter/) 11 | 7. [Userfocus Newsletter](http://userfocus.co.uk/uxnews/index.html) 12 | 8. [UX Notebook Newsletter](http://www.sarahdoody.com/ux-newsletter/#.Vsko7xhGsUE) 13 | -------------------------------------------------------------------------------- /android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:2.1.0-alpha1' 9 | 10 | // NOTE: Do not place your application dependencies here; they belong 11 | // in the individual module build.gradle files 12 | } 13 | } 14 | 15 | allprojects { 16 | repositories { 17 | jcenter() 18 | } 19 | } 20 | 21 | task clean(type: Delete) { 22 | delete rootProject.buildDir 23 | } 24 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/Retrofit + DataBinding Demo/app/src/main/java/com/retrofitdemo/adapter/ClickHandler.java: -------------------------------------------------------------------------------- 1 | package com.retrofitdemo.adapter; 2 | 3 | import android.support.design.widget.Snackbar; 4 | import android.view.View; 5 | 6 | import com.retrofitdemo.api.response.StackOverflowUser; 7 | 8 | public class ClickHandler { 9 | private final StackOverflowUser.Item item; 10 | 11 | public ClickHandler(StackOverflowUser.Item item) { 12 | this.item = item; 13 | } 14 | 15 | public void onClick(View view) { 16 | Snackbar.make(view, item.getDisplayName() + " Selected", Snackbar.LENGTH_LONG).show(); 17 | } 18 | } -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/DataBindingBasic/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | -------------------------------------------------------------------------------- /android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | -------------------------------------------------------------------------------- /android/examples_demos/TextInputLayout/TextInputLayoutDemo/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/Retrofit + DataBinding Demo/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | -------------------------------------------------------------------------------- /android/examples_demos/RuntimePermission/RuntimePermissionDemo/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:1.3.0' 9 | 10 | // NOTE: Do not place your application dependencies here; they belong 11 | // in the individual module build.gradle files 12 | } 13 | } 14 | 15 | allprojects { 16 | repositories { 17 | jcenter() 18 | } 19 | } 20 | 21 | task clean(type: Delete) { 22 | delete rootProject.buildDir 23 | } 24 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/Retrofit + DataBinding Demo/app/src/main/java/com/retrofitdemo/adapter/DataBinder.java: -------------------------------------------------------------------------------- 1 | package com.retrofitdemo.adapter; 2 | 3 | import android.content.Context; 4 | import android.databinding.BindingAdapter; 5 | import android.widget.ImageView; 6 | 7 | import com.squareup.picasso.Picasso; 8 | 9 | public final class DataBinder { 10 | 11 | private DataBinder() { 12 | //NO-OP 13 | } 14 | 15 | @BindingAdapter("imageUrl") 16 | public static void setImageUrl(ImageView imageView, String url) { 17 | Context context = imageView.getContext(); 18 | Picasso.with(context).load(url).into(imageView); 19 | } 20 | } -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/LoginDemo/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:1.5.0' 9 | classpath 'com.android.databinding:dataBinder:1.+' 10 | 11 | // NOTE: Do not place your application dependencies here; they belong 12 | // in the individual module build.gradle files 13 | } 14 | } 15 | 16 | allprojects { 17 | repositories { 18 | jcenter() 19 | } 20 | } 21 | 22 | task clean(type: Delete) { 23 | delete rootProject.buildDir 24 | } 25 | -------------------------------------------------------------------------------- /android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/app/src/main/res/values/drawables.xml: -------------------------------------------------------------------------------- 1 | 2 | @android:drawable/ic_menu_camera 3 | @android:drawable/ic_menu_gallery 4 | @android:drawable/ic_menu_slideshow 5 | @android:drawable/ic_menu_manage 6 | @android:drawable/ic_menu_share 7 | @android:drawable/ic_menu_send 8 | 9 | -------------------------------------------------------------------------------- /android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/DataBindingOnClick/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:1.5.0' 9 | classpath 'com.android.databinding:dataBinder:1.+' 10 | 11 | // NOTE: Do not place your application dependencies here; they belong 12 | // in the individual module build.gradle files 13 | } 14 | } 15 | 16 | allprojects { 17 | repositories { 18 | jcenter() 19 | } 20 | } 21 | 22 | task clean(type: Delete) { 23 | delete rootProject.buildDir 24 | } 25 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/Retrofit + DataBinding Demo/app/src/main/res/values/drawables.xml: -------------------------------------------------------------------------------- 1 | 2 | @android:drawable/ic_menu_camera 3 | @android:drawable/ic_menu_gallery 4 | @android:drawable/ic_menu_slideshow 5 | @android:drawable/ic_menu_manage 6 | @android:drawable/ic_menu_share 7 | @android:drawable/ic_menu_send 8 | 9 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/Retrofit + DataBinding Demo/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/DataBindingBasic/.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 17 | 18 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/Retrofit + DataBinding Demo/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:2.1.0-alpha1' 9 | classpath 'com.android.databinding:dataBinder:1.+' 10 | 11 | // NOTE: Do not place your application dependencies here; they belong 12 | // in the individual module build.gradle files 13 | } 14 | } 15 | 16 | allprojects { 17 | repositories { 18 | jcenter() 19 | } 20 | } 21 | 22 | task clean(type: Delete) { 23 | delete rootProject.buildDir 24 | } 25 | -------------------------------------------------------------------------------- /android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/app/src/main/res/drawable-v21/ic_menu_camera.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 12 | 13 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/DataBindingBasic/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:1.3.0' 9 | classpath 'com.android.databinding:dataBinder:1.+' 10 | 11 | // NOTE: Do not place your application dependencies here; they belong 12 | // in the individual module build.gradle files 13 | } 14 | } 15 | 16 | allprojects { 17 | repositories { 18 | jcenter() 19 | } 20 | } 21 | 22 | task clean(type: Delete) { 23 | delete rootProject.buildDir 24 | } 25 | -------------------------------------------------------------------------------- /android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 17 | 18 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/Retrofit + DataBinding Demo/.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 17 | 18 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/Retrofit + DataBinding Demo/app/src/main/res/drawable-v21/ic_menu_camera.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 12 | 13 | -------------------------------------------------------------------------------- /Node.Js/blogs.md: -------------------------------------------------------------------------------- 1 | 2 | ### Simple Guide 3 | 4 | - [How to Become a Better Node.js Developer in 2016](https://blog.risingstack.com/how-to-become-a-better-node-js-developer-in-2016/) - How to operate Node.js infrastructures, how you should do your day-to-day development and other useful pieces of advice. 5 | - [Node hero: Using NPM](https://blog.risingstack.com/node-hero-npm-tutorial/) - Fundamental guide to npm system. 6 | - [Node security tips](https://blog.risingstack.com/node-js-security-tips/) - Security tips to keep in mind. 7 | - [Finding JavaScript memory leak in Node.js](http://www.alexkras.com/simple-guide-to-finding-a-javascript-memory-leak-in-node-js/) - Deep guide to finding memory leaks in node application. As well as it has steps included to dumping tools. -------------------------------------------------------------------------------- /android/examples_demos/TextInputLayout/TextInputLayoutDemo/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 12 | 13 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /home/ln-141/Android/Sdk/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/DataBindingBasic/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in D:\Android\sdk/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -------------------------------------------------------------------------------- /Python/courses.md: -------------------------------------------------------------------------------- 1 | 2 | ### Free-Courses 3 | 4 | - [Introduction to Programming with python](https://goo.gl/x26dEr) - Basic fundamentals of python programming. 5 | - [Introduction to creating webSite using Python and Flask](https://goo.gl/6a97aw) - Introduction to webServices using flask micro framework. 6 | - [QuickStart Python and MongoDb](https://goo.gl/lNUHcE) - Introduction to NoSQL document based MongoDB database with python integration. 7 | - [Python with Django](https://goo.gl/DVM0m5) - Django over the python. 8 | - [Programming fundamental with python](https://goo.gl/JEdLMw) - Intermediate level course on python data structure and basic topics. 9 | - [Developing Scalable app with Python](https://goo.gl/EwWZDW) - How to use Google app engine along with python to create scalable webApp. 10 | 11 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/Retrofit + DataBinding Demo/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /home/ln-141/Android/Sdk/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Learning Resources 2 | An initiaitve by GDG Ahmedabad, for community and by community! 3 | 4 | We at GDG Ahmedabad are getting different queries (like I want to learn android development, where to start?, I want to integrate App Engine, how can start with it?) from our community members, so here we want to prepare a repository with all the useful resources/materials for every technologies that there are in market. 5 | 6 | You can call this repository as "Technology Gold mine" :) 7 | 8 | ### Contribution 9 | Contribution from each one of you matters a lot, let's contribute and create a solid repository. We request you please read [Contribution guidelines](https://github.com/GDGAhmedabad/Learning-Resources/blob/master/CONTRIBUTING.md) before you contribute, to avoid further changes and commits! 10 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/LoginDemo/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /android/examples_demos/RuntimePermission/RuntimePermissionDemo/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in D:\Android\sdk/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -------------------------------------------------------------------------------- /android/examples_demos/TextInputLayout/TextInputLayoutDemo/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in G:\Android-sdk/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -------------------------------------------------------------------------------- /android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/app/src/main/java/com/retrofitdemo/App.java: -------------------------------------------------------------------------------- 1 | package com.retrofitdemo; 2 | 3 | import android.app.Application; 4 | 5 | import com.retrofitdemo.api.OkClientFactory; 6 | 7 | import okhttp3.OkHttpClient; 8 | 9 | public class App extends Application { 10 | 11 | private static App mInstance = null; 12 | private static OkHttpClient mOkHttpClient; 13 | 14 | public static App getInstance() { 15 | return mInstance; 16 | } 17 | 18 | @Override 19 | public void onCreate() { 20 | super.onCreate(); 21 | 22 | mInstance = this; 23 | mOkHttpClient = OkClientFactory.provideOkHttpClient(this); 24 | 25 | } 26 | 27 | public OkHttpClient getOkHttpClient() { 28 | return mOkHttpClient; 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/LoginDemo/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in E:\Android Works\adt-bundle-windows-x86_64-20140702\sdk/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/DataBindingOnClick/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in E:\Android Works\adt-bundle-windows-x86_64-20140702\sdk/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/Retrofit + DataBinding Demo/app/src/main/java/com/retrofitdemo/App.java: -------------------------------------------------------------------------------- 1 | package com.retrofitdemo; 2 | 3 | import android.app.Application; 4 | 5 | import com.retrofitdemo.api.OkClientFactory; 6 | 7 | import okhttp3.OkHttpClient; 8 | 9 | public class App extends Application { 10 | 11 | private static App mInstance = null; 12 | private static OkHttpClient mOkHttpClient; 13 | 14 | public static App getInstance() { 15 | return mInstance; 16 | } 17 | 18 | @Override 19 | public void onCreate() { 20 | super.onCreate(); 21 | 22 | mInstance = this; 23 | mOkHttpClient = OkClientFactory.provideOkHttpClient(this); 24 | 25 | } 26 | 27 | public OkHttpClient getOkHttpClient() { 28 | return mOkHttpClient; 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/LoginDemo/app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.application' 2 | apply plugin: 'com.android.databinding' 3 | 4 | android { 5 | compileSdkVersion 23 6 | buildToolsVersion "23.0.1" 7 | 8 | defaultConfig { 9 | applicationId "com.logindemo" 10 | minSdkVersion 15 11 | targetSdkVersion 23 12 | versionCode 1 13 | versionName "1.0" 14 | } 15 | buildTypes { 16 | release { 17 | minifyEnabled false 18 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 19 | } 20 | } 21 | } 22 | 23 | dependencies { 24 | compile fileTree(dir: 'libs', include: ['*.jar']) 25 | testCompile 'junit:junit:4.12' 26 | compile 'com.android.support:appcompat-v7:23.2.0' 27 | } 28 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/DataBindingOnClick/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/DataBindingBasic/.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /Node.Js/courses.md: -------------------------------------------------------------------------------- 1 | ### Free-Courses 2 | 3 | - [Building Apps with Node.js Jump Start](https://goo.gl/JaJ68Z) - Basic Fundamentals of Node server technology. 4 | - [Mastering Node.js Modules and Packages](https://goo.gl/zrn4Lj) - Depth guide on node modules and package system. 5 | - [Node.js with Visual Studio](https://goo.gl/J7A3XI) - Another Jump Start Course on Node with Visual Studio. 6 | - [Node.js for Azure Developers](https://goo.gl/YGwOh4) - Basic of using NodeJS on Azure cloude services. 7 | 8 | 9 | ### Node Talks 10 | 11 | - [Home Automation with Node.js and RasperryPi](https://goo.gl/hMr7bf) - NodeJs on Hardware Kind of IoT. 12 | - [NodeJs at Netflix](https://goo.gl/R91sNp) - Evolution story of Netflix with Node technology. 13 | - [NodeJs at GoDaddy](https://goo.gl/0wsEVJ) - Revolutionstory of domain provider company with nodejs. -------------------------------------------------------------------------------- /android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/app/src/main/res/drawable-v21/ic_menu_share.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /android/examples_demos/TextInputLayout/TextInputLayoutDemo/.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 18 | 19 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/DataBindingOnClick/app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.application' 2 | apply plugin: 'com.android.databinding' 3 | 4 | android { 5 | compileSdkVersion 23 6 | buildToolsVersion "23.0.1" 7 | 8 | defaultConfig { 9 | applicationId "com.rrr.databindingonclick" 10 | minSdkVersion 15 11 | targetSdkVersion 23 12 | versionCode 1 13 | versionName "1.0" 14 | } 15 | buildTypes { 16 | release { 17 | minifyEnabled false 18 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 19 | } 20 | } 21 | } 22 | 23 | dependencies { 24 | compile fileTree(dir: 'libs', include: ['*.jar']) 25 | testCompile 'junit:junit:4.12' 26 | compile 'com.android.support:appcompat-v7:23.2.0' 27 | } 28 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/Retrofit + DataBinding Demo/.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /android/examples_demos/RuntimePermission/RuntimePermissionDemo/app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.application' 2 | 3 | android { 4 | compileSdkVersion 23 5 | buildToolsVersion "23.0.1" 6 | 7 | defaultConfig { 8 | applicationId "chintan.rathod.runtimepermissiondemo" 9 | minSdkVersion 23 10 | targetSdkVersion 23 11 | versionCode 1 12 | versionName "1.0" 13 | } 14 | buildTypes { 15 | release { 16 | minifyEnabled false 17 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 18 | } 19 | } 20 | } 21 | 22 | dependencies { 23 | compile fileTree(dir: 'libs', include: ['*.jar']) 24 | testCompile 'junit:junit:4.12' 25 | compile 'com.android.support:appcompat-v7:23.0.1' 26 | } 27 | -------------------------------------------------------------------------------- /android/examples_demos/TextInputLayout/TextInputLayoutDemo/.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/Retrofit + DataBinding Demo/app/src/main/res/drawable-v21/ic_menu_share.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/DataBindingBasic/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /C-C++/courses.md: -------------------------------------------------------------------------------- 1 | ###C++ Courses 2 | 3 | - [C++ A General Purpose Language and Library JumpStart](https://mva.microsoft.com/en-US/training-courses/c-a-general-purpose-language-and-library-jump-start-8251) - Jump start to C++ for beginners. 4 | - [Introduction to C++](https://www.edx.org/course/introduction-c-microsoft-dev210x-1) - Brief introduction to the C++ from the Microsoft Experts. 5 | - [C++ for C Programmers](https://www.coursera.org/learn/c-plus-plus-a) - Beginners friendly course for C programmer, to switch on OOP concepts. 6 | - [C++ Tutorial for Complete Beginners](https://www.udemy.com/free-learn-c-tutorial-beginners/) - How to program in the popular (and tricky!) C++ programming language, for complete beginners. 7 | - [C++, Short and Sweet](https://www.udemy.com/cpp-short-and-sweet/) - A first course on C++ based on the book Accelerated C++. 8 | 9 | 10 | -------------------------------------------------------------------------------- /android/examples_demos/TextInputLayout/TextInputLayoutDemo/app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.application' 2 | android { 3 | compileSdkVersion 23 4 | buildToolsVersion "23.0.1" 5 | 6 | defaultConfig { 7 | applicationId "chintan.rathod.textinputlayoutdemo" 8 | minSdkVersion 15 9 | targetSdkVersion 22 10 | versionCode 1 11 | versionName "1.0" 12 | } 13 | buildTypes { 14 | release { 15 | minifyEnabled false 16 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 17 | } 18 | } 19 | } 20 | dependencies { 21 | compile fileTree(dir: 'libs', include: ['*.jar']) 22 | compile 'com.android.support:appcompat-v7:22.2.0' 23 | compile 'com.android.support:design:22.2.0' 24 | } 25 | 26 | repositories { 27 | } -------------------------------------------------------------------------------- /UX-Design/UX Blogs & Magazines.md: -------------------------------------------------------------------------------- 1 | ##UX Blogs and Magazines 2 | 3 | 1. [InfoDesign](http://www.informationdesign.org/) 4 | 2. [WebCredible](http://www.webcredible.com/blog/) 5 | 3. [Adaptive Path Ideas](http://adaptivepath.org/ideas/) 6 | 4. [Nielsen Norman Group Articles](https://www.nngroup.com/articles/) 7 | 5. [Boxes and Arrows](http://boxesandarrows.com/) 8 | 6. [A List Apart](http://alistapart.com/) 9 | 7. [UX Matters](http://www.uxmatters.com/) 10 | 8. [Intercom Blog Design](https://blog.intercom.io/category/design/) 11 | 9. [HeyDesigner](http://heydesigner.com/ux-design/) 12 | 10. [UIE Brainsparks](https://www.uie.com/brainsparks/) 13 | 11. [Form and Function](http://www.lukew.com/ff/) 14 | 12. [Bokardo](http://bokardo.com/archives/) 15 | 13. [UXHandy](http://uxhandy.com/) 16 | 14. [UXSwitch](http://www.uxswitch.com/thinking/) 17 | 15. [UX Magazine](http://uxmag.com/) 18 | -------------------------------------------------------------------------------- /android/examples_demos/DataBinding/DataBindingBasic/app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.application' 2 | apply plugin: 'com.android.databinding' 3 | 4 | android { 5 | compileSdkVersion 23 6 | buildToolsVersion "23.0.2" 7 | 8 | defaultConfig { 9 | applicationId "chintan.rathod.databindingdemo" 10 | minSdkVersion 15 11 | targetSdkVersion 23 12 | versionCode 1 13 | versionName "1.0" 14 | } 15 | buildTypes { 16 | release { 17 | minifyEnabled false 18 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 19 | } 20 | } 21 | 22 | } 23 | 24 | dependencies { 25 | compile fileTree(dir: 'libs', include: ['*.jar']) 26 | testCompile 'junit:junit:4.12' 27 | compile 'com.android.support:appcompat-v7:23.1.0' 28 | } 29 | -------------------------------------------------------------------------------- /android/examples_demos/TextInputLayout/TextInputLayoutDemo/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 10 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /android/examples_demos/Retrofit 2.0/RetrofitDemoBasic/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | 16 | 17 | 11 | 12 | 16 | 17 |