├── android ├── Book Bazar ui │ ├── app │ │ ├── .gitignore │ │ ├── src │ │ │ ├── main │ │ │ │ ├── res │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── a.png │ │ │ │ │ │ ├── b.png │ │ │ │ │ │ ├── c.png │ │ │ │ │ │ ├── d.png │ │ │ │ │ │ ├── e.png │ │ │ │ │ │ ├── f.png │ │ │ │ │ │ ├── g.png │ │ │ │ │ │ ├── slide.png │ │ │ │ │ │ ├── gradient_bg.xml │ │ │ │ │ │ ├── indicator_selector.xml │ │ │ │ │ │ ├── side_nav_bar.xml │ │ │ │ │ │ ├── ic_play_arrow_black_24dp.xml │ │ │ │ │ │ ├── ic_menu_black_24dp.xml │ │ │ │ │ │ ├── selected_indicator.xml │ │ │ │ │ │ └── default_indicator.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── values-v21 │ │ │ │ │ │ └── styles.xml │ │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ │ ├── ic_launcher.xml │ │ │ │ │ │ └── ic_launcher_round.xml │ │ │ │ │ ├── values │ │ │ │ │ │ ├── colors.xml │ │ │ │ │ │ ├── dimens.xml │ │ │ │ │ │ ├── drawables.xml │ │ │ │ │ │ └── styles.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 │ │ │ │ │ ├── menu │ │ │ │ │ │ ├── home.xml │ │ │ │ │ │ └── menu_main.xml │ │ │ │ │ ├── anim │ │ │ │ │ │ └── scale_animation.xml │ │ │ │ │ └── layout │ │ │ │ │ │ ├── content_main.xml │ │ │ │ │ │ └── activity_home.xml │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── example │ │ │ │ │ │ └── dell │ │ │ │ │ │ └── mybookapplication │ │ │ │ │ │ ├── adapters │ │ │ │ │ │ └── MovieItemClickListener.java │ │ │ │ │ │ └── models │ │ │ │ │ │ └── Slide.java │ │ │ │ └── AndroidManifest.xml │ │ │ ├── test │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── dell │ │ │ │ │ └── mybookapplication │ │ │ │ │ └── ExampleUnitTest.java │ │ │ └── androidTest │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── dell │ │ │ │ └── mybookapplication │ │ │ │ └── ExampleInstrumentedTest.java │ │ └── proguard-rules.pro │ ├── settings.gradle │ ├── README.md │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── .idea │ │ ├── encodings.xml │ │ ├── vcs.xml │ │ ├── render.experimental.xml │ │ ├── misc.xml │ │ ├── runConfigurations.xml │ │ └── gradle.xml │ ├── .gitignore │ ├── build.gradle │ └── gradle.properties ├── autosuggestions │ ├── app │ │ ├── .gitignore │ │ ├── src │ │ │ ├── main │ │ │ │ ├── res │ │ │ │ │ ├── values │ │ │ │ │ │ ├── dimens.xml │ │ │ │ │ │ ├── strings.xml │ │ │ │ │ │ ├── colors.xml │ │ │ │ │ │ └── styles.xml │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── sg.png │ │ │ │ │ │ ├── meal.png │ │ │ │ │ │ ├── driver.png │ │ │ │ │ │ ├── flower.png │ │ │ │ │ │ ├── payment.png │ │ │ │ │ │ ├── card_bg.xml │ │ │ │ │ │ ├── search_input_style.xml │ │ │ │ │ │ ├── ic_search_black_24dp.xml │ │ │ │ │ │ └── ic_search_blacki_24dp.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ │ ├── ic_launcher.xml │ │ │ │ │ │ └── ic_launcher_round.xml │ │ │ │ │ ├── anim │ │ │ │ │ │ ├── fade_transition_position.xml │ │ │ │ │ │ └── fade_scale_animation.xml │ │ │ │ │ ├── layout │ │ │ │ │ │ ├── content_oneplus6.xml │ │ │ │ │ │ └── country_autocomplete_row.xml │ │ │ │ │ └── menu │ │ │ │ │ │ └── menu_main.xml │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── example │ │ │ │ │ │ └── dell │ │ │ │ │ │ └── recyclerbeautifulview │ │ │ │ │ │ ├── itemClickListener.java │ │ │ │ │ │ ├── CountryItem.java │ │ │ │ │ │ ├── NewsItem.java │ │ │ │ │ │ └── oneplus6.java │ │ │ │ └── AndroidManifest.xml │ │ │ ├── test │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── dell │ │ │ │ │ └── recyclerbeautifulview │ │ │ │ │ └── ExampleUnitTest.java │ │ │ └── androidTest │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── dell │ │ │ │ └── recyclerbeautifulview │ │ │ │ └── ExampleInstrumentedTest.java │ │ ├── proguard-rules.pro │ │ └── build.gradle │ ├── settings.gradle │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── .idea │ │ ├── encodings.xml │ │ ├── misc.xml │ │ ├── runConfigurations.xml │ │ └── gradle.xml │ ├── .gitignore │ ├── README.md │ ├── build.gradle │ └── gradle.properties ├── android intro screen │ ├── app │ │ ├── .gitignore │ │ ├── src │ │ │ ├── main │ │ │ │ ├── res │ │ │ │ │ ├── values │ │ │ │ │ │ ├── dimens.xml │ │ │ │ │ │ ├── strings.xml │ │ │ │ │ │ ├── colors.xml │ │ │ │ │ │ └── styles.xml │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── a.png │ │ │ │ │ │ ├── sg.png │ │ │ │ │ │ ├── meal.png │ │ │ │ │ │ ├── driver.png │ │ │ │ │ │ ├── flower.png │ │ │ │ │ │ ├── payment.png │ │ │ │ │ │ ├── image.xml │ │ │ │ │ │ ├── btn_gradient_style.xml │ │ │ │ │ │ ├── indicator_selector.xml │ │ │ │ │ │ ├── ic_arrow_forward_black_24dp.xml │ │ │ │ │ │ ├── indicator.xml │ │ │ │ │ │ ├── ic_cloud_circle_black_24dp.xml │ │ │ │ │ │ └── indiacotor_selected.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ │ ├── ic_launcher.xml │ │ │ │ │ │ └── ic_launcher_round.xml │ │ │ │ │ ├── anim │ │ │ │ │ │ └── button_animation.xml │ │ │ │ │ ├── menu │ │ │ │ │ │ └── menu_main.xml │ │ │ │ │ └── layout │ │ │ │ │ │ ├── content_home.xml │ │ │ │ │ │ ├── activity_main.xml │ │ │ │ │ │ └── content_main.xml │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── dell │ │ │ │ │ └── introscreen │ │ │ │ │ ├── home.java │ │ │ │ │ ├── ScreenItem.java │ │ │ │ │ └── MainActivity.java │ │ │ ├── test │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── dell │ │ │ │ │ └── introscreen │ │ │ │ │ └── ExampleUnitTest.java │ │ │ └── androidTest │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── dell │ │ │ │ └── introscreen │ │ │ │ └── ExampleInstrumentedTest.java │ │ ├── proguard-rules.pro │ │ └── build.gradle │ ├── settings.gradle │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── .idea │ │ ├── encodings.xml │ │ ├── misc.xml │ │ ├── runConfigurations.xml │ │ └── gradle.xml │ ├── .gitignore │ ├── README.md │ ├── build.gradle │ └── gradle.properties └── color Excercise │ └── ColorGame.html ├── flutter ├── i_am_rich │ ├── android │ │ ├── gradle.properties │ │ ├── app │ │ │ └── src │ │ │ │ ├── main │ │ │ │ ├── ic_launcher-web.png │ │ │ │ ├── res │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ ├── ic_launcher_round.png │ │ │ │ │ │ └── ic_launcher_foreground.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ ├── ic_launcher_round.png │ │ │ │ │ │ └── ic_launcher_foreground.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ ├── ic_launcher_round.png │ │ │ │ │ │ └── ic_launcher_foreground.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ ├── ic_launcher_round.png │ │ │ │ │ │ └── ic_launcher_foreground.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ ├── ic_launcher_round.png │ │ │ │ │ │ └── ic_launcher_foreground.png │ │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ │ ├── ic_launcher.xml │ │ │ │ │ │ └── ic_launcher_round.xml │ │ │ │ │ ├── values │ │ │ │ │ │ └── styles.xml │ │ │ │ │ └── drawable │ │ │ │ │ │ └── launch_background.xml │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── rich │ │ │ │ │ └── i_am_rich │ │ │ │ │ └── MainActivity.java │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ └── profile │ │ │ │ └── AndroidManifest.xml │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ └── gradle-wrapper.properties │ │ ├── settings.gradle │ │ └── build.gradle │ ├── ios │ │ ├── Flutter │ │ │ ├── Debug.xcconfig │ │ │ ├── Release.xcconfig │ │ │ └── AppFrameworkInfo.plist │ │ ├── Runner │ │ │ ├── AppDelegate.h │ │ │ ├── Assets.xcassets │ │ │ │ └── AppIcon.appiconset │ │ │ │ │ ├── 114.png │ │ │ │ │ ├── 120.png │ │ │ │ │ ├── 180.png │ │ │ │ │ ├── 29.png │ │ │ │ │ ├── 40.png │ │ │ │ │ ├── 57.png │ │ │ │ │ ├── 58.png │ │ │ │ │ ├── 60.png │ │ │ │ │ ├── 80.png │ │ │ │ │ ├── 87.png │ │ │ │ │ └── 1024.png │ │ │ ├── main.m │ │ │ └── AppDelegate.m │ │ ├── Runner.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── Runner.xcodeproj │ │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ ├── Images │ │ ├── diamond.png │ │ └── i_am_rich_app_icon.png │ ├── .metadata │ ├── pubspec.yaml │ ├── lib │ │ └── main.dart │ ├── README.md │ └── test │ │ └── widget_test.dart ├── statefull │ ├── ios │ │ ├── Flutter │ │ │ ├── Debug.xcconfig │ │ │ ├── Release.xcconfig │ │ │ └── AppFrameworkInfo.plist │ │ ├── Runner │ │ │ ├── Runner-Bridging-Header.h │ │ │ ├── Assets.xcassets │ │ │ │ ├── LaunchImage.imageset │ │ │ │ │ ├── LaunchImage.png │ │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ │ ├── README.md │ │ │ │ │ └── Contents.json │ │ │ │ └── AppIcon.appiconset │ │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ └── AppDelegate.swift │ │ ├── Runner.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── Runner.xcodeproj │ │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ ├── android │ │ ├── gradle.properties │ │ ├── app │ │ │ └── src │ │ │ │ ├── main │ │ │ │ ├── res │ │ │ │ │ ├── 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 │ │ │ │ │ │ └── styles.xml │ │ │ │ │ └── drawable │ │ │ │ │ │ └── launch_background.xml │ │ │ │ └── kotlin │ │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── statefull │ │ │ │ │ └── MainActivity.kt │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ └── profile │ │ │ │ └── AndroidManifest.xml │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ └── gradle-wrapper.properties │ │ ├── settings.gradle │ │ └── build.gradle │ ├── .metadata │ ├── README.md │ └── test │ │ └── widget_test.dart ├── Carousel │ └── Carousel Demo │ │ ├── android │ │ ├── gradle.properties │ │ ├── app │ │ │ └── src │ │ │ │ ├── main │ │ │ │ ├── res │ │ │ │ │ ├── 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 │ │ │ │ │ │ └── styles.xml │ │ │ │ │ └── drawable │ │ │ │ │ │ └── launch_background.xml │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── bottomsheet │ │ │ │ │ └── MainActivity.java │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ └── profile │ │ │ │ └── AndroidManifest.xml │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ └── gradle-wrapper.properties │ │ ├── settings.gradle │ │ └── build.gradle │ │ ├── ios │ │ ├── Flutter │ │ │ ├── Debug.xcconfig │ │ │ ├── Release.xcconfig │ │ │ └── AppFrameworkInfo.plist │ │ ├── Runner │ │ │ ├── AppDelegate.h │ │ │ ├── Assets.xcassets │ │ │ │ ├── LaunchImage.imageset │ │ │ │ │ ├── LaunchImage.png │ │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ │ ├── README.md │ │ │ │ │ └── Contents.json │ │ │ │ └── AppIcon.appiconset │ │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ ├── main.m │ │ │ └── AppDelegate.m │ │ ├── Runner.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── Runner.xcodeproj │ │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ ├── .metadata │ │ ├── README.md │ │ └── test │ │ └── widget_test.dart └── Navigation-Flutter-Demo │ ├── android │ ├── gradle.properties │ ├── app │ │ └── src │ │ │ ├── main │ │ │ ├── res │ │ │ │ ├── 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 │ │ │ │ │ └── styles.xml │ │ │ │ └── drawable │ │ │ │ │ └── launch_background.xml │ │ │ └── java │ │ │ │ └── co │ │ │ │ └── appbrewery │ │ │ │ └── navigation_demo_starter │ │ │ │ └── MainActivity.java │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ ├── settings.gradle │ └── build.gradle │ ├── ios │ ├── Flutter │ │ ├── Debug.xcconfig │ │ ├── Release.xcconfig │ │ └── AppFrameworkInfo.plist │ ├── Runner │ │ ├── AppDelegate.h │ │ ├── Assets.xcassets │ │ │ ├── LaunchImage.imageset │ │ │ │ ├── LaunchImage.png │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ ├── README.md │ │ │ │ └── Contents.json │ │ │ └── AppIcon.appiconset │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ ├── main.m │ │ └── AppDelegate.m │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── WorkspaceSettings.xcsettings │ └── Runner.xcodeproj │ │ └── project.xcworkspace │ │ └── contents.xcworkspacedata │ ├── .metadata │ └── lib │ ├── main.dart │ ├── screen2.dart │ ├── screen1.dart │ └── screen0.dart ├── C ├── helloworld.c ├── tree_height.cpp ├── Tree Traversal │ ├── InOrder.cpp │ ├── PreOrder.cpp │ ├── PostOrder.cpp │ ├── InOrder_iterative.cpp │ ├── PreOrder_iterative.cpp │ ├── level_order_iterative.cpp │ └── PostOrder_iterative.cpp ├── Strings │ ├── String lenght.c │ ├── upper case lower case.c │ ├── reverse a string.c │ ├── validating a string.c │ ├── words and vowels.c │ └── anagram or not.c ├── lowest_common_ancestor.cpp ├── min-char-requied for-palindrome.c ├── tree_diameter.cpp ├── 90degreeRotation.c ├── permutation ├── add_one_to_a_number.c └── spiralOrderFill.c ├── python ├── 2 prog.py ├── 1 prog.py ├── convert seconds into hours min secs.py └── open webbrowser after waiting every 10 sec.py ├── C++ ├── hello.cpp ├── integer-to-roman.cpp └── car_fueling.cpp ├── Java ├── Chat │ ├── ClientProgram.class │ ├── ServerProgram.class │ ├── ServerProgram.java │ └── ClientProgram.java ├── Adi │ ├── DoublyLinkedList.class │ ├── SinglyLinkedList.class │ ├── CircularlyLinkedList.class │ ├── DoublyLinkedList$Node.class │ ├── SinglyLinkedList$Node.class │ └── CircularlyLinkedList$Node.class ├── s.java ├── networking.java ├── reverse.java ├── file.java ├── second_largest.java ├── Palindrome.java ├── rainWaterTrapping └── AmericanFlag.java ├── GO ├── hello.go ├── Web │ ├── .idea │ │ ├── misc.xml │ │ ├── modules.xml │ │ └── Web.iml │ ├── server.go │ ├── templates │ │ ├── index.html │ │ └── data.html │ ├── main.go │ ├── static.go │ ├── index.go │ ├── serve.go │ ├── mux.go │ ├── database.go │ └── db.go ├── swap.go └── values.go ├── README.md └── web └── nodejs └── NodeJsPractice └── oops.html /android/Book Bazar ui/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /android/autosuggestions/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /android/Book Bazar ui/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /android/android intro screen/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /android/autosuggestions/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /android/android intro screen/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /flutter/i_am_rich/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /flutter/i_am_rich/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /flutter/statefull/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /flutter/i_am_rich/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /flutter/statefull/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | 3 | -------------------------------------------------------------------------------- /flutter/statefull/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /C/helloworld.c: -------------------------------------------------------------------------------- 1 | #include 2 | int main(){ 3 | printf("Hello World"); 4 | } 5 | -------------------------------------------------------------------------------- /python/2 prog.py: -------------------------------------------------------------------------------- 1 | a=str(input()) 2 | b=str(input()) 3 | print(a+b) 4 | print(a+' '+b) 5 | -------------------------------------------------------------------------------- /flutter/Carousel/Carousel Demo/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /flutter/Carousel/Carousel Demo/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /flutter/Carousel/Carousel Demo/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /flutter/Navigation-Flutter-Demo/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /flutter/Navigation-Flutter-Demo/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /flutter/statefull/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /flutter/Navigation-Flutter-Demo/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /C++/hello.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | using namespace std; 3 | 4 | int main(){ 5 | cout<<"Hello World" 6 | } 7 | -------------------------------------------------------------------------------- /Java/Chat/ClientProgram.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/Java/Chat/ClientProgram.class -------------------------------------------------------------------------------- /Java/Chat/ServerProgram.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/Java/Chat/ServerProgram.class -------------------------------------------------------------------------------- /Java/Adi/DoublyLinkedList.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/Java/Adi/DoublyLinkedList.class -------------------------------------------------------------------------------- /Java/Adi/SinglyLinkedList.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/Java/Adi/SinglyLinkedList.class -------------------------------------------------------------------------------- /Java/Adi/CircularlyLinkedList.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/Java/Adi/CircularlyLinkedList.class -------------------------------------------------------------------------------- /Java/Adi/DoublyLinkedList$Node.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/Java/Adi/DoublyLinkedList$Node.class -------------------------------------------------------------------------------- /Java/Adi/SinglyLinkedList$Node.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/Java/Adi/SinglyLinkedList$Node.class -------------------------------------------------------------------------------- /android/autosuggestions/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 16dp 3 | 4 | -------------------------------------------------------------------------------- /flutter/i_am_rich/Images/diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/i_am_rich/Images/diamond.png -------------------------------------------------------------------------------- /android/android intro screen/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 16dp 3 | 4 | -------------------------------------------------------------------------------- /Java/Adi/CircularlyLinkedList$Node.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/Java/Adi/CircularlyLinkedList$Node.class -------------------------------------------------------------------------------- /GO/hello.go: -------------------------------------------------------------------------------- 1 | 2 | package main 3 | 4 | import ( 5 | "fmt" 6 | ) 7 | 8 | func main(){ 9 | fmt.Println("Hello World") 10 | } 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java/s.java: -------------------------------------------------------------------------------- 1 | import java.util.*; 2 | class sahil 3 | { 4 | public static void main(String args[]) 5 | { 6 | 7 | System.out.print("sahil"); 8 | }} 9 | -------------------------------------------------------------------------------- /flutter/i_am_rich/Images/i_am_rich_app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/i_am_rich/Images/i_am_rich_app_icon.png -------------------------------------------------------------------------------- /python/1 prog.py: -------------------------------------------------------------------------------- 1 | a=int(input()) 2 | b=int(input()) 3 | c=int(input()) 4 | d=int(input()) 5 | e=a+c 6 | f=b+d 7 | c3=complex(e,f) 8 | print(c3) 9 | 10 | 11 | -------------------------------------------------------------------------------- /android/Book Bazar ui/app/src/main/res/drawable/a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/android/Book Bazar ui/app/src/main/res/drawable/a.png -------------------------------------------------------------------------------- /android/Book Bazar ui/app/src/main/res/drawable/b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/android/Book Bazar ui/app/src/main/res/drawable/b.png -------------------------------------------------------------------------------- /android/Book Bazar ui/app/src/main/res/drawable/c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/android/Book Bazar ui/app/src/main/res/drawable/c.png -------------------------------------------------------------------------------- /android/Book Bazar ui/app/src/main/res/drawable/d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/android/Book Bazar ui/app/src/main/res/drawable/d.png -------------------------------------------------------------------------------- /android/Book Bazar ui/app/src/main/res/drawable/e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/android/Book Bazar ui/app/src/main/res/drawable/e.png -------------------------------------------------------------------------------- /android/Book Bazar ui/app/src/main/res/drawable/f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/android/Book Bazar ui/app/src/main/res/drawable/f.png -------------------------------------------------------------------------------- /android/Book Bazar ui/app/src/main/res/drawable/g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/android/Book Bazar ui/app/src/main/res/drawable/g.png -------------------------------------------------------------------------------- /flutter/i_am_rich/ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @interface AppDelegate : FlutterAppDelegate 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /android/Book Bazar ui/README.md: -------------------------------------------------------------------------------- 1 | # BookBazar 2 | 3 | 4 | -------------------------------------------------------------------------------- /android/Book Bazar ui/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/android/Book Bazar ui/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/autosuggestions/app/src/main/res/drawable/sg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/android/autosuggestions/app/src/main/res/drawable/sg.png -------------------------------------------------------------------------------- /android/Book Bazar ui/app/src/main/res/drawable/slide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/android/Book Bazar ui/app/src/main/res/drawable/slide.png -------------------------------------------------------------------------------- /android/autosuggestions/app/src/main/res/drawable/meal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/android/autosuggestions/app/src/main/res/drawable/meal.png -------------------------------------------------------------------------------- /android/autosuggestions/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/android/autosuggestions/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /flutter/Carousel/Carousel Demo/ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @interface AppDelegate : FlutterAppDelegate 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /flutter/Navigation-Flutter-Demo/ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @interface AppDelegate : FlutterAppDelegate 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /flutter/i_am_rich/android/app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/i_am_rich/android/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /android/Book Bazar ui/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /android/android intro screen/app/src/main/res/drawable/a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/android/android intro screen/app/src/main/res/drawable/a.png -------------------------------------------------------------------------------- /android/android intro screen/app/src/main/res/drawable/sg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/android/android intro screen/app/src/main/res/drawable/sg.png -------------------------------------------------------------------------------- /android/autosuggestions/app/src/main/res/drawable/driver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/android/autosuggestions/app/src/main/res/drawable/driver.png -------------------------------------------------------------------------------- /android/autosuggestions/app/src/main/res/drawable/flower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/android/autosuggestions/app/src/main/res/drawable/flower.png -------------------------------------------------------------------------------- /android/autosuggestions/app/src/main/res/drawable/payment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/android/autosuggestions/app/src/main/res/drawable/payment.png -------------------------------------------------------------------------------- /android/android intro screen/app/src/main/res/drawable/meal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/android/android intro screen/app/src/main/res/drawable/meal.png -------------------------------------------------------------------------------- /android/android intro screen/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/android/android intro screen/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/autosuggestions/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /C/tree_height.cpp: -------------------------------------------------------------------------------- 1 | // Height of a tree 2 | 3 | int height(Node* root){ 4 | if(!root) 5 | return 0; 6 | else 7 | return 1+max(height(root->left),height(root->right)); 8 | } -------------------------------------------------------------------------------- /android/Book Bazar ui/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/android/Book Bazar ui/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/Book Bazar ui/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/android/Book Bazar ui/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/android intro screen/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /android/android intro screen/app/src/main/res/drawable/driver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/android/android intro screen/app/src/main/res/drawable/driver.png -------------------------------------------------------------------------------- /android/android intro screen/app/src/main/res/drawable/flower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/android/android intro screen/app/src/main/res/drawable/flower.png -------------------------------------------------------------------------------- /android/android intro screen/app/src/main/res/drawable/payment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/android/android intro screen/app/src/main/res/drawable/payment.png -------------------------------------------------------------------------------- /android/Book Bazar ui/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/android/Book Bazar ui/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/Book Bazar ui/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/android/Book Bazar ui/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/Book Bazar ui/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/android/Book Bazar ui/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/autosuggestions/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/android/autosuggestions/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/autosuggestions/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/android/autosuggestions/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/autosuggestions/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/android/autosuggestions/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/autosuggestions/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/android/autosuggestions/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/autosuggestions/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/android/autosuggestions/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /flutter/i_am_rich/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/i_am_rich/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /flutter/i_am_rich/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/i_am_rich/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /flutter/i_am_rich/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/i_am_rich/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /flutter/i_am_rich/ios/Runner/Assets.xcassets/AppIcon.appiconset/114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/i_am_rich/ios/Runner/Assets.xcassets/AppIcon.appiconset/114.png -------------------------------------------------------------------------------- /flutter/i_am_rich/ios/Runner/Assets.xcassets/AppIcon.appiconset/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/i_am_rich/ios/Runner/Assets.xcassets/AppIcon.appiconset/120.png -------------------------------------------------------------------------------- /flutter/i_am_rich/ios/Runner/Assets.xcassets/AppIcon.appiconset/180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/i_am_rich/ios/Runner/Assets.xcassets/AppIcon.appiconset/180.png -------------------------------------------------------------------------------- /flutter/i_am_rich/ios/Runner/Assets.xcassets/AppIcon.appiconset/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/i_am_rich/ios/Runner/Assets.xcassets/AppIcon.appiconset/29.png -------------------------------------------------------------------------------- /flutter/i_am_rich/ios/Runner/Assets.xcassets/AppIcon.appiconset/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/i_am_rich/ios/Runner/Assets.xcassets/AppIcon.appiconset/40.png -------------------------------------------------------------------------------- /flutter/i_am_rich/ios/Runner/Assets.xcassets/AppIcon.appiconset/57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/i_am_rich/ios/Runner/Assets.xcassets/AppIcon.appiconset/57.png -------------------------------------------------------------------------------- /flutter/i_am_rich/ios/Runner/Assets.xcassets/AppIcon.appiconset/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/i_am_rich/ios/Runner/Assets.xcassets/AppIcon.appiconset/58.png -------------------------------------------------------------------------------- /flutter/i_am_rich/ios/Runner/Assets.xcassets/AppIcon.appiconset/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/i_am_rich/ios/Runner/Assets.xcassets/AppIcon.appiconset/60.png -------------------------------------------------------------------------------- /flutter/i_am_rich/ios/Runner/Assets.xcassets/AppIcon.appiconset/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/i_am_rich/ios/Runner/Assets.xcassets/AppIcon.appiconset/80.png -------------------------------------------------------------------------------- /flutter/i_am_rich/ios/Runner/Assets.xcassets/AppIcon.appiconset/87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/i_am_rich/ios/Runner/Assets.xcassets/AppIcon.appiconset/87.png -------------------------------------------------------------------------------- /flutter/statefull/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/statefull/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /flutter/statefull/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/statefull/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /flutter/statefull/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/statefull/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /C/Tree Traversal/InOrder.cpp: -------------------------------------------------------------------------------- 1 | void inOrder(Node *root) { 2 | if(!root) 3 | return; 4 | inOrder(root->left); 5 | cout<data<<" "; 6 | inOrder(root->right); 7 | } -------------------------------------------------------------------------------- /android/Book Bazar ui/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/android/Book Bazar ui/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/Book Bazar ui/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/android/Book Bazar ui/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/Book Bazar ui/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/android/Book Bazar ui/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/Book Bazar ui/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/android/Book Bazar ui/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/android intro screen/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/android/android intro screen/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/android intro screen/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/android/android intro screen/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/android intro screen/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/android/android intro screen/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/autosuggestions/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/android/autosuggestions/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/autosuggestions/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/android/autosuggestions/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /flutter/i_am_rich/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/i_am_rich/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /flutter/i_am_rich/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/i_am_rich/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /flutter/i_am_rich/ios/Runner/Assets.xcassets/AppIcon.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/i_am_rich/ios/Runner/Assets.xcassets/AppIcon.appiconset/1024.png -------------------------------------------------------------------------------- /flutter/statefull/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/statefull/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /flutter/statefull/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/statefull/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /C/Tree Traversal/PreOrder.cpp: -------------------------------------------------------------------------------- 1 | void preOrder(Node *root) { 2 | if(!root) 3 | return; 4 | cout<data<<" "; 5 | preOrder(root->left); 6 | preOrder(root->right); 7 | } -------------------------------------------------------------------------------- /GO/Web/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /android/Book Bazar ui/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/android/Book Bazar ui/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/android intro screen/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/android/android intro screen/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/android intro screen/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/android/android intro screen/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/autosuggestions/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/android/autosuggestions/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/autosuggestions/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/android/autosuggestions/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /flutter/i_am_rich/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/i_am_rich/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /flutter/i_am_rich/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/i_am_rich/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /C/Tree Traversal/PostOrder.cpp: -------------------------------------------------------------------------------- 1 | void postOrder(Node *root) { 2 | if(!root) 3 | return; 4 | postOrder(root->left); 5 | postOrder(root->right); 6 | cout<data<<" "; 7 | } -------------------------------------------------------------------------------- /android/android intro screen/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/android/android intro screen/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/android intro screen/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/android/android intro screen/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/autosuggestions/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/android/autosuggestions/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /flutter/i_am_rich/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/i_am_rich/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /flutter/i_am_rich/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/i_am_rich/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /flutter/i_am_rich/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/i_am_rich/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/android intro screen/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/android/android intro screen/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/android intro screen/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/android/android intro screen/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /flutter/i_am_rich/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/i_am_rich/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /flutter/i_am_rich/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/i_am_rich/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /flutter/statefull/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/statefull/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /android/android intro screen/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/android/android intro screen/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /flutter/Carousel/Carousel Demo/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/Carousel/Carousel Demo/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /flutter/Carousel/Carousel Demo/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/Carousel/Carousel Demo/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /flutter/Carousel/Carousel Demo/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/Carousel/Carousel Demo/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /flutter/Navigation-Flutter-Demo/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/Navigation-Flutter-Demo/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /flutter/Navigation-Flutter-Demo/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/Navigation-Flutter-Demo/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /flutter/i_am_rich/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/i_am_rich/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /flutter/i_am_rich/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/i_am_rich/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /flutter/i_am_rich/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/i_am_rich/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /flutter/statefull/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/statefull/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /flutter/statefull/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/statefull/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /Java/networking.java: -------------------------------------------------------------------------------- 1 | import java.net.*; 2 | 3 | public class Networking{ 4 | public static void main(String args[]){ 5 | Socket s = new Socket("Internicnet",42) 6 | s.accept(); 7 | InputStream is = s.getInputStream(); 8 | } 9 | } -------------------------------------------------------------------------------- /android/Book Bazar ui/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /flutter/Carousel/Carousel Demo/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/Carousel/Carousel Demo/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /flutter/Carousel/Carousel Demo/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/Carousel/Carousel Demo/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /flutter/Navigation-Flutter-Demo/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/Navigation-Flutter-Demo/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /flutter/Navigation-Flutter-Demo/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/Navigation-Flutter-Demo/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /flutter/statefull/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/statefull/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /flutter/statefull/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/statefull/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /flutter/statefull/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/statefull/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /flutter/statefull/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/statefull/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /flutter/statefull/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/statefull/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /flutter/statefull/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/statefull/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /flutter/statefull/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/statefull/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /flutter/statefull/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/statefull/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /flutter/statefull/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/statefull/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /flutter/statefull/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/statefull/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /flutter/statefull/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/statefull/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /flutter/statefull/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/statefull/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /flutter/statefull/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/statefull/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /flutter/Navigation-Flutter-Demo/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/Navigation-Flutter-Demo/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /flutter/statefull/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/statefull/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /flutter/statefull/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/statefull/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /python/convert seconds into hours min secs.py: -------------------------------------------------------------------------------- 1 | a=int(input("Enter Seconds")) 2 | hrs=0 3 | m=0 4 | t=0 5 | s=0 6 | hrs=int(a/3600) 7 | t=int(a%3600) 8 | m=int(t/60) 9 | s=int(t%60) 10 | 11 | print("hrs=",hrs,"min=",m,"secs=",s) 12 | -------------------------------------------------------------------------------- /android/Book Bazar ui/.idea/render.experimental.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /flutter/i_am_rich/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /flutter/statefull/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /flutter/Carousel/Carousel Demo/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/Carousel/Carousel Demo/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /flutter/Carousel/Carousel Demo/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /flutter/Navigation-Flutter-Demo/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/Navigation-Flutter-Demo/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /python/open webbrowser after waiting every 10 sec.py: -------------------------------------------------------------------------------- 1 | import time 2 | import webbrowser 3 | i = 0 4 | while(i < 3): 5 | print("Current time is ", time.ctime()) 6 | time.sleep(10) 7 | webbrowser.open("https://www.youtube.com/") 8 | i += 1 9 | -------------------------------------------------------------------------------- /android/Book Bazar ui/app/src/main/res/drawable/gradient_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /flutter/Carousel/Carousel Demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/Carousel/Carousel Demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /flutter/Carousel/Carousel Demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/Carousel/Carousel Demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /flutter/Carousel/Carousel Demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/Carousel/Carousel Demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /flutter/Carousel/Carousel Demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/Carousel/Carousel Demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /flutter/Carousel/Carousel Demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/Carousel/Carousel Demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /flutter/Carousel/Carousel Demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/Carousel/Carousel Demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /flutter/Carousel/Carousel Demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/Carousel/Carousel Demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /flutter/Carousel/Carousel Demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/Carousel/Carousel Demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /flutter/Carousel/Carousel Demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/Carousel/Carousel Demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /flutter/Carousel/Carousel Demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/Carousel/Carousel Demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /flutter/Carousel/Carousel Demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/Carousel/Carousel Demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /flutter/Carousel/Carousel Demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/Carousel/Carousel Demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /flutter/Carousel/Carousel Demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/Carousel/Carousel Demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /flutter/Carousel/Carousel Demo/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/Carousel/Carousel Demo/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /flutter/Carousel/Carousel Demo/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/Carousel/Carousel Demo/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /flutter/Navigation-Flutter-Demo/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /flutter/Navigation-Flutter-Demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/Navigation-Flutter-Demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /flutter/Navigation-Flutter-Demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/Navigation-Flutter-Demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /flutter/Navigation-Flutter-Demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/Navigation-Flutter-Demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /flutter/Navigation-Flutter-Demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/Navigation-Flutter-Demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /flutter/Navigation-Flutter-Demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/Navigation-Flutter-Demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /flutter/Navigation-Flutter-Demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/Navigation-Flutter-Demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /flutter/Navigation-Flutter-Demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/Navigation-Flutter-Demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /flutter/Navigation-Flutter-Demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/Navigation-Flutter-Demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /flutter/Navigation-Flutter-Demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/Navigation-Flutter-Demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /flutter/Navigation-Flutter-Demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/Navigation-Flutter-Demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /flutter/Navigation-Flutter-Demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/Navigation-Flutter-Demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /flutter/Navigation-Flutter-Demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/Navigation-Flutter-Demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /flutter/Navigation-Flutter-Demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/Navigation-Flutter-Demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /flutter/Navigation-Flutter-Demo/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/Navigation-Flutter-Demo/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /flutter/Navigation-Flutter-Demo/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/Navigation-Flutter-Demo/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /flutter/i_am_rich/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /flutter/statefull/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /C/Strings/String lenght.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | int main() 5 | { 6 | int i; 7 | char s[100]; 8 | scanf("%s",s); 9 | for(i=0;s[i]!='\0';i++){ 10 | 11 | } 12 | 13 | printf("the length of the string is %d",i); 14 | } 15 | -------------------------------------------------------------------------------- /android/android intro screen/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | IntroScreen 3 | Settings 4 | home 5 | 6 | -------------------------------------------------------------------------------- /GO/swap.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | import "fmt" 4 | 5 | func swap(a int , b int) (int,int){ 6 | return b,a 7 | } 8 | 9 | 10 | func main(){ 11 | var a , b int 12 | 13 | fmt.Scanf("%d\n%d",&a,&b) 14 | a,b = swap(a,b); 15 | fmt.Println("Swap",a,b); 16 | } 17 | -------------------------------------------------------------------------------- /flutter/Carousel/Carousel Demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/Carousel/Carousel Demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /flutter/Carousel/Carousel Demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/Carousel/Carousel Demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /flutter/Navigation-Flutter-Demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/Navigation-Flutter-Demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /flutter/Navigation-Flutter-Demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushgarg-dev/Hacktober-fest/HEAD/flutter/Navigation-Flutter-Demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /android/autosuggestions/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | RecyclerBeautifulView 3 | Settings 4 | oneplus6 5 | 6 | -------------------------------------------------------------------------------- /flutter/Carousel/Carousel Demo/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /flutter/Navigation-Flutter-Demo/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /android/autosuggestions/app/src/main/res/drawable/card_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /android/autosuggestions/app/src/main/java/com/example/dell/recyclerbeautifulview/itemClickListener.java: -------------------------------------------------------------------------------- 1 | package com.example.dell.recyclerbeautifulview; 2 | 3 | import android.view.View; 4 | 5 | public interface itemClickListener { 6 | void onItemClick(View v, int pos); 7 | } 8 | -------------------------------------------------------------------------------- /android/Book Bazar ui/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/caches 5 | /.idea/libraries 6 | /.idea/modules.xml 7 | /.idea/workspace.xml 8 | /.idea/navEditor.xml 9 | /.idea/assetWizardSettings.xml 10 | .DS_Store 11 | /build 12 | /captures 13 | .externalNativeBuild 14 | -------------------------------------------------------------------------------- /android/autosuggestions/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/caches 5 | /.idea/libraries 6 | /.idea/modules.xml 7 | /.idea/workspace.xml 8 | /.idea/navEditor.xml 9 | /.idea/assetWizardSettings.xml 10 | .DS_Store 11 | /build 12 | /captures 13 | .externalNativeBuild 14 | -------------------------------------------------------------------------------- /android/android intro screen/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/caches 5 | /.idea/libraries 6 | /.idea/modules.xml 7 | /.idea/workspace.xml 8 | /.idea/navEditor.xml 9 | /.idea/assetWizardSettings.xml 10 | .DS_Store 11 | /build 12 | /captures 13 | .externalNativeBuild 14 | -------------------------------------------------------------------------------- /flutter/i_am_rich/ios/Runner/main.m: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | #import "AppDelegate.h" 4 | 5 | int main(int argc, char* argv[]) { 6 | @autoreleasepool { 7 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /GO/Web/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /android/Book Bazar ui/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Tue Jun 11 13:33:45 IST 2019 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-5.1.1-all.zip 7 | -------------------------------------------------------------------------------- /GO/values.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | import "fmt" 4 | 5 | func main() { 6 | 7 | fmt.Println("go" + "lang") 8 | 9 | fmt.Println("1+1 =", 1+1) 10 | fmt.Println("7.0/3.0 =", 7.0/3.0) 11 | 12 | fmt.Println(true && false) 13 | fmt.Println(true || false) 14 | fmt.Println(!true) 15 | } 16 | -------------------------------------------------------------------------------- /android/autosuggestions/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Wed Jun 05 20:58:21 IST 2019 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-5.1.1-all.zip 7 | -------------------------------------------------------------------------------- /flutter/Carousel/Carousel Demo/ios/Runner/main.m: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | #import "AppDelegate.h" 4 | 5 | int main(int argc, char* argv[]) { 6 | @autoreleasepool { 7 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /flutter/Navigation-Flutter-Demo/ios/Runner/main.m: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | #import "AppDelegate.h" 4 | 5 | int main(int argc, char* argv[]) { 6 | @autoreleasepool { 7 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /android/android intro screen/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Mon May 27 15:21:41 IST 2019 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-5.1.1-all.zip 7 | -------------------------------------------------------------------------------- /flutter/i_am_rich/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Fri Jun 23 08:50:38 CEST 2017 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-4.10.2-all.zip 7 | -------------------------------------------------------------------------------- /flutter/statefull/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Fri Jun 23 08:50:38 CEST 2017 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-4.10.2-all.zip 7 | -------------------------------------------------------------------------------- /flutter/Carousel/Carousel Demo/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Fri Jun 23 08:50:38 CEST 2017 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-4.10.2-all.zip 7 | -------------------------------------------------------------------------------- /flutter/Navigation-Flutter-Demo/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Fri Jun 23 08:50:38 CEST 2017 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-4.10.2-all.zip 7 | -------------------------------------------------------------------------------- /GO/Web/server.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | import ( 4 | "fmt" 5 | "net/http" 6 | ) 7 | 8 | 9 | func handlemain(w http.ResponseWriter , r *http.Request){ 10 | fmt.Fprint(w,"Hello World Getting Started with go"); 11 | } 12 | 13 | 14 | func main(){ 15 | http.HandleFunc("/",handlemain); 16 | http.ListenAndServe(":8000",nil); 17 | } -------------------------------------------------------------------------------- /android/Book Bazar ui/app/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | -------------------------------------------------------------------------------- /android/android intro screen/app/src/main/res/drawable/image.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /android/Book Bazar ui/app/src/main/res/drawable/indicator_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | -------------------------------------------------------------------------------- /android/Book Bazar ui/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /android/android intro screen/app/src/main/res/drawable/btn_gradient_style.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /android/autosuggestions/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /flutter/i_am_rich/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /android/Book Bazar ui/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /android/android intro screen/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /android/autosuggestions/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /flutter/i_am_rich/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /android/android intro screen/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /flutter/Navigation-Flutter-Demo/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildSystemType 6 | Original 7 | 8 | 9 | -------------------------------------------------------------------------------- /GO/Web/.idea/Web.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /flutter/i_am_rich/.metadata: -------------------------------------------------------------------------------- 1 | # This file tracks properties of this Flutter project. 2 | # Used by Flutter tool to assess capabilities and perform upgrades etc. 3 | # 4 | # This file should be version controlled and should not be manually edited. 5 | 6 | version: 7 | revision: 7a4c33425ddd78c54aba07d86f3f9a4a0051769b 8 | channel: stable 9 | 10 | project_type: app 11 | -------------------------------------------------------------------------------- /flutter/statefull/.metadata: -------------------------------------------------------------------------------- 1 | # This file tracks properties of this Flutter project. 2 | # Used by Flutter tool to assess capabilities and perform upgrades etc. 3 | # 4 | # This file should be version controlled and should not be manually edited. 5 | 6 | version: 7 | revision: 2d2a1ffec95cc70a3218872a2cd3f8de4933c42f 8 | channel: stable 9 | 10 | project_type: app 11 | -------------------------------------------------------------------------------- /android/Book Bazar ui/app/src/main/res/drawable/side_nav_bar.xml: -------------------------------------------------------------------------------- 1 | 3 | 9 | -------------------------------------------------------------------------------- /android/Book Bazar ui/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #151c25 4 | #151c25 5 | #f1b814 6 | #566f9a 7 | #1a242f 8 | 9 | -------------------------------------------------------------------------------- /android/android intro screen/app/src/main/res/drawable/indicator_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /flutter/Carousel/Carousel Demo/.metadata: -------------------------------------------------------------------------------- 1 | # This file tracks properties of this Flutter project. 2 | # Used by Flutter tool to assess capabilities and perform upgrades etc. 3 | # 4 | # This file should be version controlled and should not be manually edited. 5 | 6 | version: 7 | revision: bc7bc940836f1f834699625426795fd6f07c18ec 8 | channel: beta 9 | 10 | project_type: app 11 | -------------------------------------------------------------------------------- /flutter/Navigation-Flutter-Demo/.metadata: -------------------------------------------------------------------------------- 1 | # This file tracks properties of this Flutter project. 2 | # Used by Flutter tool to assess capabilities and perform upgrades etc. 3 | # 4 | # This file should be version controlled and should not be manually edited. 5 | 6 | version: 7 | revision: 8661d8aecd626f7f57ccbcb735553edc05a2e713 8 | channel: stable 9 | 10 | project_type: app 11 | -------------------------------------------------------------------------------- /GO/Web/templates/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Going in Go 8 | 9 | 10 |

11 | Some Basic html code 12 |

13 | 14 | -------------------------------------------------------------------------------- /C/Strings/upper case lower case.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | int main() 5 | { 6 | int i; 7 | char s[100]; 8 | scanf("%s",s); 9 | 10 | for(i=0;s[i] != '\0';i++){ 11 | if(s[i]>=65 && s[i] <=90){ 12 | s[i] = s[i]+32; 13 | }else if(s[i] >= 97 && s[i] <=122){ 14 | s[i] = s[i] -32; 15 | } 16 | } 17 | 18 | printf("%s",s); 19 | } 20 | -------------------------------------------------------------------------------- /android/autosuggestions/app/src/main/res/drawable/search_input_style.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 8 | 9 | -------------------------------------------------------------------------------- /flutter/i_am_rich/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /flutter/i_am_rich/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /flutter/statefull/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /flutter/statefull/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /android/Book Bazar ui/app/src/main/res/drawable-v21/ic_menu_send.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /android/Book Bazar ui/app/src/main/res/drawable/ic_play_arrow_black_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /android/autosuggestions/README.md: -------------------------------------------------------------------------------- 1 | # autosuggestions 2 | this is a search view. in this recycler view is used and filter is used as search view which will provide autosuggestions 3 | 4 | 5 | -------------------------------------------------------------------------------- /flutter/i_am_rich/pubspec.yaml: -------------------------------------------------------------------------------- 1 | name: i_am_rich 2 | description: A new Flutter application. 3 | version: 1.0.0+1 4 | 5 | environment: 6 | sdk: ">=2.1.0 <3.0.0" 7 | 8 | dependencies: 9 | flutter: 10 | sdk: flutter 11 | cupertino_icons: ^0.1.2 12 | 13 | dev_dependencies: 14 | flutter_test: 15 | sdk: flutter 16 | 17 | flutter: 18 | uses-material-design: true 19 | assets: 20 | - images/ 21 | -------------------------------------------------------------------------------- /flutter/statefull/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- 1 | # Launch Screen Assets 2 | 3 | You can customize the launch screen with your own desired assets by replacing the image files in this directory. 4 | 5 | You can also do it by opening your Flutter project's Xcode project with `open ios/Runner.xcworkspace`, selecting `Runner/Assets.xcassets` in the Project Navigator and dropping in the desired images. -------------------------------------------------------------------------------- /C/Strings/reverse a string.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | int main() 5 | { 6 | char a[100]; 7 | int i; 8 | 9 | scanf("%s",a); 10 | 11 | for(i=0;a[i]!='\0';i++){ 12 | 13 | } 14 | i = i-1;s 15 | int j,temp; 16 | for(j=0;j 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /flutter/Carousel/Carousel Demo/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /GO/Web/templates/data.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Redis Db and go 8 | 9 | 10 | {{ range .}} 11 |
12 | {{ . }} 13 |
14 | {{ end }} 15 | 16 | -------------------------------------------------------------------------------- /GO/Web/main.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | import ( 4 | "fmt" 5 | "net/http" 6 | "github.com/gorilla/mux" 7 | ) 8 | 9 | func main(){ 10 | r:=mux.NewRouter() 11 | 12 | r.HandleFunc("/hello",helloHandle).Methods("GET"); 13 | http.Handle("/",r); 14 | http.ListenAndServe(":8000",nil); 15 | } 16 | 17 | 18 | func helloHandle(w http.ResponseWriter , r * http.Request){ 19 | fmt.Fprint(w,"Hello World This is fun"); 20 | } 21 | 22 | -------------------------------------------------------------------------------- /android/Book Bazar ui/app/src/main/res/menu/home.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 9 | 10 | -------------------------------------------------------------------------------- /flutter/Carousel/Carousel Demo/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- 1 | # Launch Screen Assets 2 | 3 | You can customize the launch screen with your own desired assets by replacing the image files in this directory. 4 | 5 | You can also do it by opening your Flutter project's Xcode project with `open ios/Runner.xcworkspace`, selecting `Runner/Assets.xcassets` in the Project Navigator and dropping in the desired images. -------------------------------------------------------------------------------- /flutter/Navigation-Flutter-Demo/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- 1 | # Launch Screen Assets 2 | 3 | You can customize the launch screen with your own desired assets by replacing the image files in this directory. 4 | 5 | You can also do it by opening your Flutter project's Xcode project with `open ios/Runner.xcworkspace`, selecting `Runner/Assets.xcassets` in the Project Navigator and dropping in the desired images. -------------------------------------------------------------------------------- /flutter/Navigation-Flutter-Demo/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /flutter/Navigation-Flutter-Demo/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /android/Book Bazar ui/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 16dp 3 | 4 | 16dp 5 | 16dp 6 | 8dp 7 | 176dp 8 | 9 | -------------------------------------------------------------------------------- /flutter/i_am_rich/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | -------------------------------------------------------------------------------- /flutter/statefull/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Hacktober-fest 2 | Yaha par hacktoberfest ki tshirts mangwai jati hai 3 | Make your Pull requests in this repo. 4 | 5 | 6 | Repo ko star dena compulsory hai nahi to tshirt cancel ho sakti hai 7 | 8 | 9 | Noobs please sign in first at Here 10 | 11 | In order to merge more pr checkout Here 12 | -------------------------------------------------------------------------------- /android/Book Bazar ui/app/src/main/res/drawable/ic_menu_black_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /flutter/Carousel/Carousel Demo/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | -------------------------------------------------------------------------------- /flutter/Navigation-Flutter-Demo/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | -------------------------------------------------------------------------------- /android/Book Bazar ui/app/src/main/java/com/example/dell/mybookapplication/adapters/MovieItemClickListener.java: -------------------------------------------------------------------------------- 1 | package com.example.dell.mybookapplication.adapters; 2 | 3 | import android.widget.ImageView; 4 | 5 | import com.example.dell.mybookapplication.models.Movie; 6 | 7 | public interface MovieItemClickListener { 8 | // we will need the image to make the shared bew activites 9 | void onMovieClick(Movie movie, ImageView movieImageView); 10 | } 11 | -------------------------------------------------------------------------------- /android/android intro screen/app/src/main/res/drawable/ic_arrow_forward_black_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /android/autosuggestions/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #ffffff 4 | #ffffff 5 | #D81B60 6 | 7 | #f6f6f6 8 | #258bd6 9 | #999da4 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /android/Book Bazar ui/app/src/main/res/anim/scale_animation.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 12 | -------------------------------------------------------------------------------- /android/android intro screen/app/src/main/res/anim/button_animation.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 14 | -------------------------------------------------------------------------------- /android/autosuggestions/app/src/main/res/anim/fade_transition_position.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 14 | -------------------------------------------------------------------------------- /flutter/statefull/android/app/src/main/kotlin/com/example/statefull/MainActivity.kt: -------------------------------------------------------------------------------- 1 | package com.example.statefull 2 | 3 | import android.os.Bundle 4 | 5 | import io.flutter.app.FlutterActivity 6 | import io.flutter.plugins.GeneratedPluginRegistrant 7 | 8 | class MainActivity: FlutterActivity() { 9 | override fun onCreate(savedInstanceState: Bundle?) { 10 | super.onCreate(savedInstanceState) 11 | GeneratedPluginRegistrant.registerWith(this) 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /android/Book Bazar ui/app/src/main/res/drawable/selected_indicator.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /android/android intro screen/README.md: -------------------------------------------------------------------------------- 1 | # IntroScreen 2 | 3 | only one lime the intro screen will appear after wards it will never appear and spash screen will appear 4 | 5 | 6 | -------------------------------------------------------------------------------- /flutter/i_am_rich/android/app/src/main/java/com/rich/i_am_rich/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.rich.i_am_rich; 2 | 3 | import android.os.Bundle; 4 | import io.flutter.app.FlutterActivity; 5 | import io.flutter.plugins.GeneratedPluginRegistrant; 6 | 7 | public class MainActivity extends FlutterActivity { 8 | @Override 9 | protected void onCreate(Bundle savedInstanceState) { 10 | super.onCreate(savedInstanceState); 11 | GeneratedPluginRegistrant.registerWith(this); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /flutter/statefull/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | import Flutter 3 | 4 | @UIApplicationMain 5 | @objc class AppDelegate: FlutterAppDelegate { 6 | override func application( 7 | _ application: UIApplication, 8 | didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? 9 | ) -> Bool { 10 | GeneratedPluginRegistrant.register(with: self) 11 | return super.application(application, didFinishLaunchingWithOptions: launchOptions) 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /android/Book Bazar ui/app/src/main/res/drawable/default_indicator.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /android/android intro screen/app/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- 1 | 5 | 10 | 11 | -------------------------------------------------------------------------------- /flutter/Carousel/Carousel Demo/android/app/src/main/java/com/example/bottomsheet/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.example.bottomsheet; 2 | 3 | import android.os.Bundle; 4 | import io.flutter.app.FlutterActivity; 5 | import io.flutter.plugins.GeneratedPluginRegistrant; 6 | 7 | public class MainActivity extends FlutterActivity { 8 | @Override 9 | protected void onCreate(Bundle savedInstanceState) { 10 | super.onCreate(savedInstanceState); 11 | GeneratedPluginRegistrant.registerWith(this); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /flutter/i_am_rich/ios/Runner/AppDelegate.m: -------------------------------------------------------------------------------- 1 | #include "AppDelegate.h" 2 | #include "GeneratedPluginRegistrant.h" 3 | 4 | @implementation AppDelegate 5 | 6 | - (BOOL)application:(UIApplication *)application 7 | didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { 8 | [GeneratedPluginRegistrant registerWithRegistry:self]; 9 | // Override point for customization after application launch. 10 | return [super application:application didFinishLaunchingWithOptions:launchOptions]; 11 | } 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /android/Book Bazar ui/app/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- 1 | 5 | 10 | 11 | -------------------------------------------------------------------------------- /C/lowest_common_ancestor.cpp: -------------------------------------------------------------------------------- 1 | Node *lca(Node *root, int v1,int v2) { 2 | // Write your code here. 3 | if(!root) 4 | return NULL; 5 | if(root->data == v1 || root->data == v2) 6 | return root; 7 | Node* x = lca(root->left,v1,v2); 8 | Node* y = lca(root->right,v1,v2); 9 | if(x&&y) 10 | return root; 11 | else if(x) 12 | return x; 13 | else if(y) 14 | return y; 15 | else 16 | return NULL; 17 | } -------------------------------------------------------------------------------- /android/Book Bazar ui/app/src/main/res/drawable-v21/ic_menu_slideshow.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /flutter/Carousel/Carousel Demo/ios/Runner/AppDelegate.m: -------------------------------------------------------------------------------- 1 | #include "AppDelegate.h" 2 | #include "GeneratedPluginRegistrant.h" 3 | 4 | @implementation AppDelegate 5 | 6 | - (BOOL)application:(UIApplication *)application 7 | didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { 8 | [GeneratedPluginRegistrant registerWithRegistry:self]; 9 | // Override point for customization after application launch. 10 | return [super application:application didFinishLaunchingWithOptions:launchOptions]; 11 | } 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /flutter/Navigation-Flutter-Demo/ios/Runner/AppDelegate.m: -------------------------------------------------------------------------------- 1 | #include "AppDelegate.h" 2 | #include "GeneratedPluginRegistrant.h" 3 | 4 | @implementation AppDelegate 5 | 6 | - (BOOL)application:(UIApplication *)application 7 | didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { 8 | [GeneratedPluginRegistrant registerWithRegistry:self]; 9 | // Override point for customization after application launch. 10 | return [super application:application didFinishLaunchingWithOptions:launchOptions]; 11 | } 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /GO/Web/static.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | import( 4 | "net/http" 5 | "github.com/gorilla/mux" 6 | "html/template" 7 | ) 8 | 9 | var templates *template.Template 10 | 11 | func main(){ 12 | 13 | templates = template.Must(template.ParseGlob("templates/*.html")); 14 | 15 | r:= mux.NewRouter(); 16 | r.HandleFunc("/",handle).Methods("GET"); 17 | http.Handle("/",r); 18 | 19 | http.ListenAndServe(":8000",nil); 20 | } 21 | 22 | func handle(w http.ResponseWriter , r * http.Request){ 23 | templates.ExecuteTemplate(w,"index.html",nil); 24 | } -------------------------------------------------------------------------------- /android/Book Bazar ui/app/src/main/res/drawable-v21/ic_menu_gallery.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /web/nodejs/NodeJsPractice/oops.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | OOPS IN JAVA SCRIPT 5 | 6 | 7 | 8 | 9 | 10 | 11 | 27 | -------------------------------------------------------------------------------- /C/Strings/validating a string.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | int main() 5 | { 6 | char a[1000]; 7 | int i; 8 | scanf("%[^\n]s",a); 9 | int flag = 0; 10 | for(i=0;a[i]!='\0';i++){ 11 | if((a[i]>=65 && a[i] <=90) || (a[i] >=90 && a[i]<=122) || (a[i]>=48 && a[i]<=57)){ 12 | 13 | }else{ 14 | flag = 1; 15 | } 16 | } 17 | if(flag == 1){ 18 | printf("this is not a good number"); 19 | }else{ 20 | printf("this is a good number"); 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /C/Tree Traversal/InOrder_iterative.cpp: -------------------------------------------------------------------------------- 1 | vector Solution::inorderTraversal(TreeNode* A) { 2 | vector v; 3 | stack s; 4 | TreeNode* curr = A; 5 | while(curr || !s.empty()){ 6 | while(curr){ 7 | s.push(curr); 8 | curr = curr->left; 9 | } 10 | TreeNode* temp = s.top(); 11 | s.pop(); 12 | v.push_back(temp->val); 13 | if(temp->right) 14 | curr = temp->right; 15 | else 16 | curr = NULL; 17 | } 18 | return v; 19 | } -------------------------------------------------------------------------------- /flutter/Navigation-Flutter-Demo/android/app/src/main/java/co/appbrewery/navigation_demo_starter/MainActivity.java: -------------------------------------------------------------------------------- 1 | package co.appbrewery.navigation_demo_starter; 2 | 3 | import android.os.Bundle; 4 | import io.flutter.app.FlutterActivity; 5 | import io.flutter.plugins.GeneratedPluginRegistrant; 6 | 7 | public class MainActivity extends FlutterActivity { 8 | @Override 9 | protected void onCreate(Bundle savedInstanceState) { 10 | super.onCreate(savedInstanceState); 11 | GeneratedPluginRegistrant.registerWith(this); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /flutter/i_am_rich/lib/main.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | void main() => runApp( 4 | MaterialApp( 5 | home: Scaffold( 6 | appBar: AppBar( 7 | title: Text("I am Rich"), 8 | backgroundColor: Colors.blueGrey[900], 9 | ), 10 | backgroundColor: Colors.blueGrey, 11 | body: Center( 12 | child: Image( 13 | image: AssetImage('images/diamond.png'), 14 | ), 15 | ), 16 | ), 17 | ), 18 | ); 19 | -------------------------------------------------------------------------------- /C/Tree Traversal/PreOrder_iterative.cpp: -------------------------------------------------------------------------------- 1 | vector Solution::preorderTraversal(TreeNode* A) { 2 | vector v; 3 | stack s; 4 | TreeNode* curr = A; 5 | while(curr || !s.empty()){ 6 | while(curr){ 7 | v.push_back(curr->val); 8 | s.push(curr); 9 | curr = curr->left; 10 | } 11 | TreeNode* temp = s.top(); 12 | s.pop(); 13 | if(temp->right) 14 | curr = temp->right; 15 | else 16 | curr = NULL; 17 | } 18 | return v; 19 | } -------------------------------------------------------------------------------- /C/min-char-requied for-palindrome.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | #include 4 | int main(){ 5 | char *a = (char*) malloc(sizeof(char)*60); 6 | gets(a); 7 | int len = strlen(a)-1; 8 | int temp_data = len; 9 | 10 | int start = 0; 11 | 12 | while(startTesting documentation 11 | */ 12 | public class ExampleUnitTest { 13 | @Test 14 | public void addition_isCorrect() { 15 | assertEquals(4, 2 + 2); 16 | } 17 | } -------------------------------------------------------------------------------- /flutter/i_am_rich/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 12 | 13 | -------------------------------------------------------------------------------- /flutter/statefull/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 12 | 13 | -------------------------------------------------------------------------------- /android/Book Bazar ui/app/src/test/java/com/example/dell/mybookapplication/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.example.dell.mybookapplication; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * Example local unit test, which will execute on the development machine (host). 9 | * 10 | * @see Testing documentation 11 | */ 12 | public class ExampleUnitTest { 13 | @Test 14 | public void addition_isCorrect() { 15 | assertEquals(4, 2 + 2); 16 | } 17 | } -------------------------------------------------------------------------------- /android/Book Bazar ui/app/src/main/res/drawable-v21/ic_menu_manage.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | -------------------------------------------------------------------------------- /android/android intro screen/app/src/main/res/drawable/indicator.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 10 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /android/autosuggestions/app/src/test/java/com/example/dell/recyclerbeautifulview/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.example.dell.recyclerbeautifulview; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * Example local unit test, which will execute on the development machine (host). 9 | * 10 | * @see Testing documentation 11 | */ 12 | public class ExampleUnitTest { 13 | @Test 14 | public void addition_isCorrect() { 15 | assertEquals(4, 2 + 2); 16 | } 17 | } -------------------------------------------------------------------------------- /flutter/Carousel/Carousel Demo/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 12 | 13 | -------------------------------------------------------------------------------- /flutter/Navigation-Flutter-Demo/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 12 | 13 | -------------------------------------------------------------------------------- /C/Tree Traversal/level_order_iterative.cpp: -------------------------------------------------------------------------------- 1 | void levelOrder(Node * root) { 2 | queue s; 3 | queue ans; 4 | s.push(root); 5 | while(!s.empty()){ 6 | Node* temp = s.front(); 7 | s.pop(); 8 | ans.push(temp->data); 9 | if(temp->left) 10 | s.push(temp->left); 11 | if(temp->right) 12 | s.push(temp->right); 13 | } 14 | while(!ans.empty()){ 15 | cout< 4 | 5 | 6 | -------------------------------------------------------------------------------- /flutter/Navigation-Flutter-Demo/lib/main.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'screen0.dart'; 3 | import 'screen1.dart'; 4 | import 'screen2.dart'; 5 | 6 | void main() => runApp(MyApp()); 7 | 8 | class MyApp extends StatelessWidget { 9 | @override 10 | Widget build(BuildContext context) { 11 | return MaterialApp( 12 | initialRoute: '/', 13 | routes: { 14 | '/': (context) => Screen0(), 15 | '/screen1': (context) => Screen1(), 16 | '/screen2': (context) => Screen2(), 17 | }, 18 | ); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /android/android intro screen/app/src/main/res/drawable/indiacotor_selected.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 10 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /android/android intro screen/app/src/main/res/layout/content_home.xml: -------------------------------------------------------------------------------- 1 | 2 | 12 | -------------------------------------------------------------------------------- /flutter/Carousel/Carousel Demo/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "LaunchImage.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "LaunchImage@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "LaunchImage@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /flutter/Navigation-Flutter-Demo/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "LaunchImage.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "LaunchImage@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "LaunchImage@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /flutter/i_am_rich/android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | 3 | def flutterProjectRoot = rootProject.projectDir.parentFile.toPath() 4 | 5 | def plugins = new Properties() 6 | def pluginsFile = new File(flutterProjectRoot.toFile(), '.flutter-plugins') 7 | if (pluginsFile.exists()) { 8 | pluginsFile.withReader('UTF-8') { reader -> plugins.load(reader) } 9 | } 10 | 11 | plugins.each { name, path -> 12 | def pluginDirectory = flutterProjectRoot.resolve(path).resolve('android').toFile() 13 | include ":$name" 14 | project(":$name").projectDir = pluginDirectory 15 | } 16 | -------------------------------------------------------------------------------- /flutter/statefull/android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | 3 | def flutterProjectRoot = rootProject.projectDir.parentFile.toPath() 4 | 5 | def plugins = new Properties() 6 | def pluginsFile = new File(flutterProjectRoot.toFile(), '.flutter-plugins') 7 | if (pluginsFile.exists()) { 8 | pluginsFile.withReader('UTF-8') { reader -> plugins.load(reader) } 9 | } 10 | 11 | plugins.each { name, path -> 12 | def pluginDirectory = flutterProjectRoot.resolve(path).resolve('android').toFile() 13 | include ":$name" 14 | project(":$name").projectDir = pluginDirectory 15 | } 16 | -------------------------------------------------------------------------------- /C/Tree Traversal/PostOrder_iterative.cpp: -------------------------------------------------------------------------------- 1 | vector Solution::postorderTraversal(TreeNode* A) { 2 | vector res; 3 | stack stack; 4 | if (!A) 5 | return res; 6 | stack.push(A); 7 | 8 | while (!stack.empty()) 9 | { 10 | TreeNode* node = stack.top(); 11 | res.emplace_back(node->val); 12 | stack.pop(); 13 | if (node->left) 14 | stack.push(node->left); 15 | if (node->right) 16 | stack.push(node->right); 17 | } 18 | reverse(res.begin(), res.end()); 19 | return res; 20 | } -------------------------------------------------------------------------------- /GO/Web/serve.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | import ( 4 | "net/http" 5 | "github.com/gorilla/mux" 6 | "html/template" 7 | "log" 8 | ) 9 | 10 | var templates *template.Template 11 | 12 | func main(){ 13 | templates = template.Must(template.ParseGlob("templates/*.html")); 14 | r:= mux.NewRouter(); 15 | r.HandleFunc("/",handle).Methods("GET"); 16 | http.Handle("/",r); 17 | 18 | http.ListenAndServe(":8000",nil); 19 | log.Println("Server started on port 8000") 20 | } 21 | 22 | func handle(w http.ResponseWriter , r * http.Request){ 23 | templates.ExecuteTemplate(w,"index.html",nil); 24 | } -------------------------------------------------------------------------------- /android/android intro screen/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #18a3fe 4 | #18a3fe 5 | #18a3fe 6 | 7 | #4c0fff 8 | #18a3fe 9 | 10 | #c0c0c0 11 | #000000 12 | #656565 13 | 14 | -------------------------------------------------------------------------------- /android/autosuggestions/app/src/main/res/anim/fade_scale_animation.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 16 | -------------------------------------------------------------------------------- /android/android intro screen/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 2 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /android/Book Bazar ui/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | -------------------------------------------------------------------------------- /android/autosuggestions/app/src/main/res/drawable/ic_search_black_24dp.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /flutter/Carousel/Carousel Demo/android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | 3 | def flutterProjectRoot = rootProject.projectDir.parentFile.toPath() 4 | 5 | def plugins = new Properties() 6 | def pluginsFile = new File(flutterProjectRoot.toFile(), '.flutter-plugins') 7 | if (pluginsFile.exists()) { 8 | pluginsFile.withReader('UTF-8') { reader -> plugins.load(reader) } 9 | } 10 | 11 | plugins.each { name, path -> 12 | def pluginDirectory = flutterProjectRoot.resolve(path).resolve('android').toFile() 13 | include ":$name" 14 | project(":$name").projectDir = pluginDirectory 15 | } 16 | -------------------------------------------------------------------------------- /flutter/Navigation-Flutter-Demo/android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | 3 | def flutterProjectRoot = rootProject.projectDir.parentFile.toPath() 4 | 5 | def plugins = new Properties() 6 | def pluginsFile = new File(flutterProjectRoot.toFile(), '.flutter-plugins') 7 | if (pluginsFile.exists()) { 8 | pluginsFile.withReader('UTF-8') { reader -> plugins.load(reader) } 9 | } 10 | 11 | plugins.each { name, path -> 12 | def pluginDirectory = flutterProjectRoot.resolve(path).resolve('android').toFile() 13 | include ":$name" 14 | project(":$name").projectDir = pluginDirectory 15 | } 16 | -------------------------------------------------------------------------------- /android/autosuggestions/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | -------------------------------------------------------------------------------- /android/android intro screen/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | -------------------------------------------------------------------------------- /GO/Web/mux.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | import ( 4 | "fmt" 5 | "net/http" 6 | "github.com/gorilla/mux" 7 | ) 8 | 9 | 10 | func main(){ 11 | r:= mux.NewRouter(); 12 | 13 | r.HandleFunc("/",handleMain).Methods("GET"); 14 | r.HandleFunc("/hello",HandleHello).Methods("GET"); 15 | http.Handle("/",r); 16 | 17 | http.ListenAndServe(":8000",nil); 18 | 19 | } 20 | 21 | 22 | func handleMain(w http.ResponseWriter , r * http.Request){ 23 | fmt.Fprint(w , "Yowie vowie Using mux"); 24 | } 25 | 26 | func HandleHello(w http.ResponseWriter , r * http.Request){ 27 | fmt.Fprint(w,"Hello You are at hello route"); 28 | } -------------------------------------------------------------------------------- /android/autosuggestions/app/src/main/res/layout/content_oneplus6.xml: -------------------------------------------------------------------------------- 1 | 2 | 10 | 11 | -------------------------------------------------------------------------------- /flutter/Navigation-Flutter-Demo/lib/screen2.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | class Screen2 extends StatelessWidget { 4 | @override 5 | Widget build(BuildContext context) { 6 | return Scaffold( 7 | appBar: AppBar( 8 | backgroundColor: Colors.blue, 9 | title: Text('Screen 2'), 10 | ), 11 | body: Center( 12 | child: RaisedButton( 13 | color: Colors.blue, 14 | child: Text('Go Back To Screen 1'), 15 | onPressed: () { 16 | Navigator.pop(context); 17 | }, 18 | ), 19 | ), 20 | ); 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /flutter/statefull/README.md: -------------------------------------------------------------------------------- 1 | # statefull 2 | 3 | A new Flutter project. 4 | 5 | ## Getting Started 6 | 7 | This project is a starting point for a Flutter application. 8 | 9 | A few resources to get you started if this is your first Flutter project: 10 | 11 | - [Lab: Write your first Flutter app](https://flutter.dev/docs/get-started/codelab) 12 | - [Cookbook: Useful Flutter samples](https://flutter.dev/docs/cookbook) 13 | 14 | For help getting started with Flutter, view our 15 | [online documentation](https://flutter.dev/docs), which offers tutorials, 16 | samples, guidance on mobile development, and a full API reference. 17 | -------------------------------------------------------------------------------- /flutter/i_am_rich/README.md: -------------------------------------------------------------------------------- 1 | # i_am_rich 2 | 3 | A new Flutter application. 4 | 5 | ## Getting Started 6 | 7 | This project is a starting point for a Flutter application. 8 | 9 | A few resources to get you started if this is your first Flutter project: 10 | 11 | - [Lab: Write your first Flutter app](https://flutter.dev/docs/get-started/codelab) 12 | - [Cookbook: Useful Flutter samples](https://flutter.dev/docs/cookbook) 13 | 14 | For help getting started with Flutter, view our 15 | [online documentation](https://flutter.dev/docs), which offers tutorials, 16 | samples, guidance on mobile development, and a full API reference. 17 | -------------------------------------------------------------------------------- /flutter/i_am_rich/android/build.gradle: -------------------------------------------------------------------------------- 1 | buildscript { 2 | repositories { 3 | google() 4 | jcenter() 5 | } 6 | 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:3.2.1' 9 | } 10 | } 11 | 12 | allprojects { 13 | repositories { 14 | google() 15 | jcenter() 16 | } 17 | } 18 | 19 | rootProject.buildDir = '../build' 20 | subprojects { 21 | project.buildDir = "${rootProject.buildDir}/${project.name}" 22 | } 23 | subprojects { 24 | project.evaluationDependsOn(':app') 25 | } 26 | 27 | task clean(type: Delete) { 28 | delete rootProject.buildDir 29 | } 30 | -------------------------------------------------------------------------------- /android/autosuggestions/app/src/main/res/drawable/ic_search_blacki_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /flutter/Carousel/Carousel Demo/README.md: -------------------------------------------------------------------------------- 1 | # bottomsheet 2 | 3 | A new Flutter application. 4 | 5 | ## Getting Started 6 | 7 | This project is a starting point for a Flutter application. 8 | 9 | A few resources to get you started if this is your first Flutter project: 10 | 11 | - [Lab: Write your first Flutter app](https://flutter.dev/docs/get-started/codelab) 12 | - [Cookbook: Useful Flutter samples](https://flutter.dev/docs/cookbook) 13 | 14 | For help getting started with Flutter, view our 15 | [online documentation](https://flutter.dev/docs), which offers tutorials, 16 | samples, guidance on mobile development, and a full API reference. 17 | -------------------------------------------------------------------------------- /flutter/Carousel/Carousel Demo/android/build.gradle: -------------------------------------------------------------------------------- 1 | buildscript { 2 | repositories { 3 | google() 4 | jcenter() 5 | } 6 | 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:3.2.1' 9 | } 10 | } 11 | 12 | allprojects { 13 | repositories { 14 | google() 15 | jcenter() 16 | } 17 | } 18 | 19 | rootProject.buildDir = '../build' 20 | subprojects { 21 | project.buildDir = "${rootProject.buildDir}/${project.name}" 22 | } 23 | subprojects { 24 | project.evaluationDependsOn(':app') 25 | } 26 | 27 | task clean(type: Delete) { 28 | delete rootProject.buildDir 29 | } 30 | -------------------------------------------------------------------------------- /flutter/Navigation-Flutter-Demo/android/build.gradle: -------------------------------------------------------------------------------- 1 | buildscript { 2 | repositories { 3 | google() 4 | jcenter() 5 | } 6 | 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:3.2.1' 9 | } 10 | } 11 | 12 | allprojects { 13 | repositories { 14 | google() 15 | jcenter() 16 | } 17 | } 18 | 19 | rootProject.buildDir = '../build' 20 | subprojects { 21 | project.buildDir = "${rootProject.buildDir}/${project.name}" 22 | } 23 | subprojects { 24 | project.evaluationDependsOn(':app') 25 | } 26 | 27 | task clean(type: Delete) { 28 | delete rootProject.buildDir 29 | } 30 | -------------------------------------------------------------------------------- /android/Book Bazar ui/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | -------------------------------------------------------------------------------- /android/autosuggestions/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | -------------------------------------------------------------------------------- /android/android intro screen/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | -------------------------------------------------------------------------------- /Java/reverse.java: -------------------------------------------------------------------------------- 1 | import java.util.*; 2 | class main 3 | { 4 | public static void main(String args[]) 5 | { 6 | Scanner scan=new Scanner(System.in); 7 | int n=scan.nextInt(); 8 | Stack s=new Stack(); 9 | int digit,count=0; 10 | while(n!=0) 11 | { 12 | digit=n%10; 13 | s.push(digit); 14 | n=n/10; 15 | } 16 | int new_number=0; 17 | while(s.empty()!=true) 18 | { 19 | new_number=new_number+(int)Math.pow(10,count)*s.pop(); 20 | count++; 21 | } 22 | System.out.println(new_number); 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /android/Book Bazar ui/.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 14 | 15 | -------------------------------------------------------------------------------- /android/autosuggestions/.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 14 | 15 | -------------------------------------------------------------------------------- /android/android intro screen/.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 14 | 15 | -------------------------------------------------------------------------------- /C/Strings/words and vowels.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | int main() 5 | { 6 | char a[1000]; 7 | scanf("%[^\n]s",a); 8 | 9 | int i,vowels=0,c=0,w=0; 10 | for(i=0;a[i]!='\0';i++){ 11 | if(a[i] == 'a' || a[i] == 'e' ||a[i] =='i' ||a[i] == 'o' || a[i] == 'u'|| 12 | a[i] == 'A' || a[i] == 'E' || a[i] == 'I' || a[i] == 'O'|| a[i] == 'U'){ 13 | vowels++; 14 | } 15 | else if( (a[i] >= 65 && a[i] <=90) || (a[i] >=97 && a[i]<=122) ){ 16 | c++; 17 | } 18 | else if(a[i] == ' ' && a[i-1] != ' '){ 19 | w++; 20 | } 21 | } 22 | 23 | 24 | printf("consonents %d\nvowels %d\nword %d",c ,vowels,w+1); 25 | } 26 | -------------------------------------------------------------------------------- /android/Book Bazar ui/app/src/main/java/com/example/dell/mybookapplication/models/Slide.java: -------------------------------------------------------------------------------- 1 | package com.example.dell.mybookapplication.models; 2 | 3 | public class Slide { 4 | private int Image; 5 | private String Title; 6 | 7 | public Slide(int image, String title) { 8 | Image = image; 9 | Title = title; 10 | } 11 | 12 | public int getImage() { 13 | return Image; 14 | } 15 | 16 | public void setImage(int image) { 17 | Image = image; 18 | } 19 | 20 | public String getTitle() { 21 | return Title; 22 | } 23 | 24 | public void setTitle(String title) { 25 | Title = title; 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /android/Book Bazar ui/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/Book Bazar ui/app/src/main/res/drawable-v21/ic_menu_camera.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 12 | 13 | -------------------------------------------------------------------------------- /android/Book Bazar ui/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 | google() 6 | jcenter() 7 | 8 | } 9 | dependencies { 10 | classpath 'com.android.tools.build:gradle:3.4.1' 11 | 12 | // NOTE: Do not place your application dependencies here; they belong 13 | // in the individual module build.gradle files 14 | } 15 | } 16 | 17 | allprojects { 18 | repositories { 19 | google() 20 | jcenter() 21 | 22 | } 23 | } 24 | 25 | task clean(type: Delete) { 26 | delete rootProject.buildDir 27 | } 28 | -------------------------------------------------------------------------------- /android/autosuggestions/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 | google() 6 | jcenter() 7 | 8 | } 9 | dependencies { 10 | classpath 'com.android.tools.build:gradle:3.4.1' 11 | 12 | // NOTE: Do not place your application dependencies here; they belong 13 | // in the individual module build.gradle files 14 | } 15 | } 16 | 17 | allprojects { 18 | repositories { 19 | google() 20 | jcenter() 21 | 22 | } 23 | } 24 | 25 | task clean(type: Delete) { 26 | delete rootProject.buildDir 27 | } 28 | -------------------------------------------------------------------------------- /android/android intro screen/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 | google() 6 | jcenter() 7 | 8 | } 9 | dependencies { 10 | classpath 'com.android.tools.build:gradle:3.4.0' 11 | 12 | // NOTE: Do not place your application dependencies here; they belong 13 | // in the individual module build.gradle files 14 | } 15 | } 16 | 17 | allprojects { 18 | repositories { 19 | google() 20 | jcenter() 21 | 22 | } 23 | } 24 | 25 | task clean(type: Delete) { 26 | delete rootProject.buildDir 27 | } 28 | -------------------------------------------------------------------------------- /android/autosuggestions/app/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- 1 | 5 | 12 | 13 | 19 | 20 | -------------------------------------------------------------------------------- /flutter/Navigation-Flutter-Demo/lib/screen1.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'screen2.dart'; 3 | 4 | class Screen1 extends StatelessWidget { 5 | @override 6 | Widget build(BuildContext context) { 7 | return Scaffold( 8 | appBar: AppBar( 9 | backgroundColor: Colors.red, 10 | title: Text('Screen 1'), 11 | ), 12 | body: Center( 13 | child: RaisedButton( 14 | color: Colors.red, 15 | child: Text('Go Forwards To Screen 2'), 16 | onPressed: () { 17 | Navigator.push(context, MaterialPageRoute(builder: (context) { 18 | return Screen2(); 19 | })); 20 | }, 21 | ), 22 | ), 23 | ); 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /flutter/statefull/android/build.gradle: -------------------------------------------------------------------------------- 1 | buildscript { 2 | ext.kotlin_version = '1.2.71' 3 | repositories { 4 | google() 5 | jcenter() 6 | } 7 | 8 | dependencies { 9 | classpath 'com.android.tools.build:gradle:3.2.1' 10 | classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" 11 | } 12 | } 13 | 14 | allprojects { 15 | repositories { 16 | google() 17 | jcenter() 18 | } 19 | } 20 | 21 | rootProject.buildDir = '../build' 22 | subprojects { 23 | project.buildDir = "${rootProject.buildDir}/${project.name}" 24 | } 25 | subprojects { 26 | project.evaluationDependsOn(':app') 27 | } 28 | 29 | task clean(type: Delete) { 30 | delete rootProject.buildDir 31 | } 32 | -------------------------------------------------------------------------------- /Java/file.java: -------------------------------------------------------------------------------- 1 | import java.util.*; 2 | import java.io.*; 3 | 4 | class main 5 | { 6 | public static void main(String args[]) 7 | { 8 | File data = new File("demo.txt"); 9 | FileInputStream file =null; 10 | try 11 | { 12 | file= new FileInputStream(data); 13 | LineNumberInputStream l=new LineNumberInputStream(file); 14 | System.out.print(l.getLineNumber()+1); 15 | int n; 16 | while((n=l.read())!=-1) 17 | { 18 | System.out.print((char)n); 19 | if((char)n=='\n') 20 | { 21 | System.out.print(l.getLineNumber()+1); 22 | 23 | } 24 | } 25 | } 26 | catch(Exception e) 27 | {} 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /Java/second_largest.java: -------------------------------------------------------------------------------- 1 | import java.util.*; 2 | 3 | public class Main 4 | { 5 | public static void main(String args[]) 6 | { 7 | ArrayList a=new ArrayList(); 8 | a.add(1); 9 | a.add(2); 10 | a.add(3); 11 | a.add(4); 12 | a.add(5); 13 | a.add(6); 14 | int min=434343,max=-32322; 15 | for(int i=0;imax) 18 | max=a.get(i); 19 | if(a.get(i)min) 25 | min=a.get(i); 26 | } 27 | System.out.println(min); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /C++/integer-to-roman.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | using namespace std; 3 | // #include 4 | // #include 5 | 6 | string conversion(int num){ 7 | 8 | int number[] = {1,4,5,9,10,40,50,90,100,400,500,900,1000}; 9 | string roman[] = {"I" ,"IV","V" , "IX", "X" , "XL" , "L" ,"XC" , "C" , "CD", "D" , "CM" ,"M"}; 10 | 11 | int i =12; 12 | string res; 13 | 14 | while(num>0){ 15 | int div = num / number[i]; 16 | num = num % number[i]; 17 | 18 | while(div--){ 19 | res+=roman[i]; 20 | } 21 | i--; 22 | } 23 | 24 | return res; 25 | } 26 | 27 | 28 | int main(){ 29 | int number; 30 | printf("Enter The number you want to convert\n"); 31 | scanf("%d",&number); 32 | string a = conversion(number); 33 | cout<left),height(root->right)); 15 | } 16 | int diameter(Node* node) 17 | { 18 | if(!node) 19 | return 0; 20 | int lst = diameter(node->left); //LEFT SUBTREE 21 | int rst = diameter(node->right); //RIGHT SUBTREE 22 | return max(height(node->left)+height(node->right)+1, max(lst,rst)); 23 | } -------------------------------------------------------------------------------- /android/Book Bazar ui/app/src/main/res/drawable-v21/ic_menu_share.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /C/90degreeRotation.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | //Rotate an array 90 degrees without using any extra auxilary space 4 | 5 | int main(){ 6 | int n; 7 | scanf("%d",&n); 8 | int arr[n][n]; 9 | for(int i=0;i 2 | 3 | int check_anagram(char [], char []); 4 | 5 | int main() 6 | { 7 | char a[100],b[100]; 8 | scanf("%[^\n]s",&a); 9 | scanf(" %[^\n]s",&b); 10 | 11 | int k = strlen(a); 12 | int l = strlen(b); 13 | int temp; 14 | 15 | if(k !=l){ 16 | printf("not anagram"); 17 | }else{ 18 | int i,j; 19 | 20 | for(i=0;i 2 | 3 | 4 | 10 | 11 | 15 | 16 | 10 | 11 | 15 | 16 | 10 | 11 | 15 | 16 |