├── Android ├── AppLauncher │ ├── .gitignore │ ├── .idea │ │ ├── .name │ │ ├── compiler.xml │ │ ├── copyright │ │ │ └── profiles_settings.xml │ │ ├── encodings.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ └── runConfigurations.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── morpheus │ │ │ │ └── applauncher │ │ │ │ └── ApplicationTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── morpheus │ │ │ │ │ └── applauncher │ │ │ │ │ └── MainActivity.java │ │ │ └── res │ │ │ │ ├── layout │ │ │ │ ├── activity_main.xml │ │ │ │ └── listelement.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values-w820dp │ │ │ │ └── dimens.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── dimens.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── morpheus │ │ │ └── applauncher │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Camera │ ├── .gitignore │ ├── .idea │ │ ├── .name │ │ ├── compiler.xml │ │ ├── copyright │ │ │ └── profiles_settings.xml │ │ ├── encodings.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ └── runConfigurations.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── morpheus │ │ │ │ └── camera │ │ │ │ └── ApplicationTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── morpheus │ │ │ │ │ └── camera │ │ │ │ │ └── MainActivity.java │ │ │ └── res │ │ │ │ ├── layout │ │ │ │ └── activity_main.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values-w820dp │ │ │ │ └── dimens.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── dimens.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── morpheus │ │ │ └── camera │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── DragNDrop │ ├── .gitignore │ ├── .idea │ │ ├── .name │ │ ├── compiler.xml │ │ ├── copyright │ │ │ └── profiles_settings.xml │ │ ├── encodings.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ └── runConfigurations.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── morpheus │ │ │ │ └── dragndrop │ │ │ │ └── ApplicationTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── morpheus │ │ │ │ │ └── dragndrop │ │ │ │ │ └── MainActivity.java │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── myimg.jpg │ │ │ │ ├── layout │ │ │ │ └── activity_main.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values-w820dp │ │ │ │ └── dimens.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── dimens.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── morpheus │ │ │ └── dragndrop │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── FloatingButton │ ├── .gitignore │ ├── .idea │ │ ├── .name │ │ ├── compiler.xml │ │ ├── copyright │ │ │ └── profiles_settings.xml │ │ ├── encodings.xml │ │ ├── gradle.xml │ │ ├── inspectionProfiles │ │ │ ├── Project_Default.xml │ │ │ └── profiles_settings.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ └── runConfigurations.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── morpheus │ │ │ │ └── floatingbutton │ │ │ │ └── ApplicationTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── morpheus │ │ │ │ │ └── floatingbutton │ │ │ │ │ ├── Adapter.java │ │ │ │ │ └── MainActivity.java │ │ │ └── res │ │ │ │ ├── layout │ │ │ │ ├── activity_main.xml │ │ │ │ └── list_row.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_favorite_black_24dp.png │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_favorite_black_24dp.png │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_favorite_black_24dp.png │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_favorite_black_24dp.png │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_favorite_black_24dp.png │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values-w820dp │ │ │ │ └── dimens.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── dimens.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── morpheus │ │ │ └── floatingbutton │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── FloatingButtonsAndRecyclerViews │ ├── .gitignore │ ├── .idea │ │ ├── compiler.xml │ │ ├── copyright │ │ │ └── profiles_settings.xml │ │ ├── encodings.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ └── runConfigurations.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── morpheus │ │ │ │ └── floatingbuttonsandrecyclerviews │ │ │ │ └── ApplicationTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── morpheus │ │ │ │ │ └── floatingbuttonsandrecyclerviews │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ └── MeinAdapter.java │ │ │ └── res │ │ │ │ ├── layout │ │ │ │ ├── activity_main.xml │ │ │ │ └── list_row.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_favorite_black_24dp.png │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_favorite_black_24dp.png │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_favorite_black_24dp.png │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_favorite_black_24dp.png │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_favorite_black_24dp.png │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values-w820dp │ │ │ │ └── dimens.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── dimens.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── morpheus │ │ │ └── floatingbuttonsandrecyclerviews │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── GridDragDrop │ ├── .gitignore │ ├── .idea │ │ ├── .name │ │ ├── compiler.xml │ │ ├── copyright │ │ │ └── profiles_settings.xml │ │ ├── encodings.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ └── runConfigurations.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── morpheus │ │ │ │ └── griddragdrop │ │ │ │ └── ApplicationTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── morpheus │ │ │ │ │ └── griddragdrop │ │ │ │ │ ├── DragGridAdapter.java │ │ │ │ │ └── MainActivity.java │ │ │ └── res │ │ │ │ ├── layout │ │ │ │ └── activity_main.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values-w820dp │ │ │ │ └── dimens.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── dimens.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── morpheus │ │ │ └── griddragdrop │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── MyApplication │ ├── .gitignore │ ├── .idea │ │ ├── .name │ │ ├── compiler.xml │ │ ├── copyright │ │ │ └── profiles_settings.xml │ │ ├── encodings.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ └── runConfigurations.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── morpheus │ │ │ │ └── myapplication │ │ │ │ └── ApplicationTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── morpheus │ │ │ │ │ └── myapplication │ │ │ │ │ └── MainActivity.java │ │ │ └── res │ │ │ │ ├── layout │ │ │ │ └── activity_main.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values-w820dp │ │ │ │ └── dimens.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── dimens.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── morpheus │ │ │ └── myapplication │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── MyApplication2 │ ├── .gitignore │ ├── .idea │ │ ├── .name │ │ ├── compiler.xml │ │ ├── copyright │ │ │ └── profiles_settings.xml │ │ ├── encodings.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ └── runConfigurations.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── morpheus │ │ │ │ └── myapplication │ │ │ │ └── ApplicationTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── morpheus │ │ │ │ │ └── myapplication │ │ │ │ │ ├── BlankFragment.java │ │ │ │ │ ├── EinVoelligAnderes.java │ │ │ │ │ └── MainActivity.java │ │ │ └── res │ │ │ │ ├── layout │ │ │ │ ├── activity_main.xml │ │ │ │ ├── fragment_blank.xml │ │ │ │ └── fragment_blank_fragment2.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values-w820dp │ │ │ │ └── dimens.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── dimens.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── morpheus │ │ │ └── myapplication │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Networking │ ├── .gitignore │ ├── .idea │ │ ├── .name │ │ ├── compiler.xml │ │ ├── copyright │ │ │ └── profiles_settings.xml │ │ ├── encodings.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ └── runConfigurations.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── morpheus │ │ │ │ └── networking │ │ │ │ └── ApplicationTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── morpheus │ │ │ │ │ └── networking │ │ │ │ │ └── MainActivity.java │ │ │ └── res │ │ │ │ ├── layout │ │ │ │ └── activity_main.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values-w820dp │ │ │ │ └── dimens.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── dimens.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── morpheus │ │ │ └── networking │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── NotificationService │ ├── .gitignore │ ├── .idea │ │ ├── compiler.xml │ │ ├── copyright │ │ │ └── profiles_settings.xml │ │ ├── encodings.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ └── runConfigurations.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── morpheus │ │ │ │ └── notificationservice │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── morpheus │ │ │ │ │ └── notificationservice │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ └── Notifier.java │ │ │ └── res │ │ │ │ ├── layout │ │ │ │ └── activity_main.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values-w820dp │ │ │ │ └── dimens.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── dimens.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── morpheus │ │ │ └── notificationservice │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── RechteabfrageAPI23 │ ├── .gitignore │ ├── .idea │ │ ├── compiler.xml │ │ ├── copyright │ │ │ └── profiles_settings.xml │ │ ├── encodings.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ └── runConfigurations.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── morpheus │ │ │ │ └── rechteabfrageapi23 │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── morpheus │ │ │ │ │ └── rechteabfrageapi23 │ │ │ │ │ └── MainActivity.java │ │ │ └── res │ │ │ │ ├── layout │ │ │ │ └── activity_main.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values-w820dp │ │ │ │ └── dimens.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── dimens.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── morpheus │ │ │ └── rechteabfrageapi23 │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle └── Tabz │ ├── .gitignore │ ├── .idea │ ├── .name │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── encodings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── morpheus │ │ │ └── tabz │ │ │ └── ApplicationTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── morpheus │ │ │ │ └── tabz │ │ │ │ ├── BlankFragment.java │ │ │ │ ├── CollectionPagerAdapter.java │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ └── fragment_blank.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── morpheus │ │ └── tabz │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Bash └── KlickMichIchBinEineFee ├── C ├── a.out ├── compiling_error.txt ├── datei.c ├── datei.h ├── first.c ├── first.txt ├── out └── wrapup.c ├── Cpp ├── Vektor.cpp ├── Vektor.h ├── a.out ├── compiling_error.txt ├── main ├── multithreading.cpp └── myfile.cpp ├── Flask ├── RestplusAPI │ ├── api │ │ ├── myapi.py │ │ └── shop │ │ │ ├── api_definition.py │ │ │ ├── domain_logic.py │ │ │ ├── endpoints │ │ │ └── products.py │ │ │ └── parsers.py │ ├── app.py │ ├── database │ │ ├── db.py │ │ └── dtos.py │ ├── db.sqlite │ └── settings.py └── flask_jwt.py ├── HTML ├── .idea │ ├── HTML.iml │ ├── copyright │ │ └── profiles_settings.xml │ ├── misc.xml │ ├── modules.xml │ └── workspace.xml ├── HTML.jpg ├── MO-logo.png ├── Site.html ├── Site.html~ ├── Site2.html ├── Site2.html~ ├── Site3.html ├── Site3.html~ ├── Ubuntu-R.ttf ├── scripts.js ├── scripts.js~ ├── style.css ├── style.css~ ├── style3.css ├── style3.css~ ├── styles.css └── styles.css~ ├── JavaTuts ├── Automat │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── bin │ │ ├── Automat.class │ │ ├── Main.class │ │ └── Zustand.class │ └── src │ │ ├── Automat.java │ │ ├── Main.java │ │ └── Zustand.java ├── Bildbearbeitung │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── Poro.png │ ├── PoroChanged.png │ ├── bin │ │ └── Main.class │ └── src │ │ ├── Main.java │ │ └── wallpaper-1467792.jpg ├── Bäume │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── bin │ │ ├── Node.class │ │ └── Tree.class │ └── src │ │ ├── Node.java │ │ └── Tree.java ├── Caesar │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── bin │ │ └── Main.class │ └── src │ │ └── Main.java ├── Damenproblem Java │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── bin │ │ └── Queens.class │ └── src │ │ └── Queens.java ├── Datei │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── bin │ │ └── Main.class │ ├── soundso.txt │ └── src │ │ └── Main.java ├── Datenhaltung.properties ├── Datenhaltung.script ├── Datenhaltung │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── bin │ │ ├── Main.class │ │ └── Parser.class │ ├── home │ │ └── simon │ │ │ └── trash │ │ │ ├── hsql.lck │ │ │ ├── hsql.log │ │ │ ├── hsql.properties │ │ │ └── hsql.script │ └── src │ │ ├── Main.java │ │ └── Parser.java ├── Datenstrukturen von JVM │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── bin │ │ ├── Main.class │ │ └── MyComparable.class │ └── src │ │ ├── Main.java │ │ └── MyComparable.java ├── DebuggingUndComments │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── bin │ │ ├── HelperClass.class │ │ ├── JUnitTest.class │ │ └── Main.class │ ├── doc │ │ ├── Main.html │ │ ├── allclasses-frame.html │ │ ├── allclasses-noframe.html │ │ ├── class-use │ │ │ └── Main.html │ │ ├── constant-values.html │ │ ├── deprecated-list.html │ │ ├── help-doc.html │ │ ├── index-files │ │ │ └── index-1.html │ │ ├── index.html │ │ ├── overview-tree.html │ │ ├── package-frame.html │ │ ├── package-list │ │ ├── package-summary.html │ │ ├── package-tree.html │ │ ├── package-use.html │ │ ├── script.js │ │ └── stylesheet.css │ └── src │ │ ├── HelperClass.java │ │ ├── JUnitTest.java │ │ └── Main.java ├── EdgeDetector │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── Output.jpg │ ├── bin │ │ └── EdgeDetector.class │ └── src │ │ └── EdgeDetector.java ├── Encoding │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── bin │ │ ├── Encoder.class │ │ ├── Main.class │ │ └── Wrapper.class │ └── src │ │ ├── Encoder.java │ │ ├── Main.java │ │ └── Wrapper.java ├── Enums │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── bin │ │ ├── Difficulty.class │ │ └── Main.class │ └── src │ │ ├── Difficulty.java │ │ └── Main.java ├── Exceptions │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── bin │ │ ├── CustomException.class │ │ └── Main.class │ └── src │ │ ├── CustomException.java │ │ └── Main.java ├── Fifo │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── bin │ │ ├── Element.class │ │ ├── Fifo.class │ │ └── Main.class │ └── src │ │ ├── Element.java │ │ ├── Fifo.java │ │ └── Main.java ├── Generics │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── bin │ │ ├── Gen.class │ │ ├── Generics.class │ │ ├── Sub.class │ │ ├── Sub2.class │ │ ├── Super.class │ │ └── Super2.class │ └── src │ │ ├── Gen.java │ │ ├── Generics.java │ │ ├── Sub.java │ │ ├── Sub2.java │ │ ├── Super.java │ │ └── Super2.java ├── Graphen │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── bin │ │ ├── Graph.class │ │ ├── Kante.class │ │ └── Main.class │ └── src │ │ ├── Graph.java │ │ ├── Kante.java │ │ └── Main.java ├── HelloWorld │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── bin │ │ ├── HelloWorld.class │ │ ├── Laufzeit.class │ │ ├── List.class │ │ └── ListElement.class │ └── src │ │ ├── HelloWorld.java │ │ ├── Laufzeit.java │ │ ├── List.java │ │ └── ListElement.java ├── JavaWrapUp │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── bin │ │ ├── Hund.class │ │ ├── Main.class │ │ └── Tier.class │ └── src │ │ ├── Hund.java │ │ ├── Main.java │ │ └── Tier.java ├── KNN │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── bin │ │ ├── DataObject.class │ │ └── Main.class │ └── src │ │ ├── DataObject.java │ │ └── Main.java ├── Labyrinth │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── bin │ │ └── Labyrinth.class │ ├── saved.png │ └── src │ │ └── Labyrinth.java ├── Logs │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── Log.txt │ ├── bin │ │ ├── LogMain$1.class │ │ └── LogMain.class │ └── src │ │ └── LogMain.java ├── MarkovModell │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── bin │ │ ├── Main.class │ │ └── Zustand.class │ └── src │ │ ├── Main.java │ │ └── Zustand.java ├── MiniServer │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── bin │ │ ├── Client.class │ │ └── Server.class │ └── src │ │ ├── Client.java │ │ └── Server.java ├── Multithreading │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── bin │ │ ├── Blubb.class │ │ ├── CustomThread.class │ │ └── Main.class │ └── src │ │ ├── Blubb.java │ │ ├── CustomThread.java │ │ └── Main.java ├── Multithreading2 │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── bin │ │ ├── Communicator.class │ │ ├── Thread1.class │ │ └── Thread2.class │ └── src │ │ ├── Communicator.java │ │ ├── Thread1.java │ │ └── Thread2.java ├── NeurnalesNetz │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── bin │ │ ├── Main.class │ │ ├── Netz.class │ │ └── Neuron.class │ └── src │ │ ├── Main.java │ │ ├── Netz.java │ │ └── Neuron.java ├── Objektorientierung2 │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── bin │ │ ├── Elefant.class │ │ ├── Hund.class │ │ ├── Main$1.class │ │ ├── Main.class │ │ └── Tier.class │ └── src │ │ ├── Elefant.java │ │ ├── Hund.java │ │ ├── Main.java │ │ └── Tier.java ├── Objektorientierung2b │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── bin │ │ ├── Sub.class │ │ ├── Super$B.class │ │ └── Super.class │ └── src │ │ ├── Sub.java │ │ └── Super.java ├── PacMan │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── Dot.png │ ├── bin │ │ ├── Board$TAdapter.class │ │ ├── Board.class │ │ ├── Moving.class │ │ ├── Pacman$1.class │ │ └── Pacman.class │ ├── chompersprites.png │ └── src │ │ ├── Board.java │ │ ├── Moving.java │ │ └── Pacman.java ├── Parzen Windows │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── bin │ │ ├── DataObject.class │ │ └── Main.class │ └── src │ │ ├── DataObject.java │ │ └── Main.java ├── Printing │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── bin │ │ ├── Main.class │ │ └── PrintObject.class │ └── src │ │ ├── Main.java │ │ └── PrintObject.java ├── Quantisierer │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── bin │ │ └── Main.class │ └── src │ │ └── Main.java ├── RSA │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── bin │ │ └── Main.class │ └── src │ │ └── Main.java ├── RayTracer │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── bin │ │ ├── Camera.class │ │ ├── Light.class │ │ ├── Material.class │ │ ├── Object3D.class │ │ ├── Output.class │ │ ├── PointLight.class │ │ ├── Ray.class │ │ ├── RayTracer.class │ │ ├── Scene.class │ │ ├── Sphere.class │ │ ├── Util.class │ │ └── Vector3D.class │ └── src │ │ ├── Camera.java │ │ ├── Light.java │ │ ├── Material.java │ │ ├── Object3D.java │ │ ├── Output.java │ │ ├── PointLight.java │ │ ├── Ray.java │ │ ├── RayTracer.java │ │ ├── Scene.java │ │ ├── Sphere.java │ │ ├── Util.java │ │ └── Vector3D.java ├── Reflection │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── bin │ │ ├── Main.class │ │ └── com │ │ │ └── morpheus │ │ │ └── de │ │ │ └── SomeObject.class │ └── src │ │ ├── Main.java │ │ └── com │ │ └── morpheus │ │ └── de │ │ └── SomeObject.java ├── Snake │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── Thumbs.db │ ├── apple-big.jpg │ ├── apple.png │ ├── bin │ │ ├── Game.class │ │ ├── Snake$1.class │ │ ├── Snake.class │ │ └── SnakeListener.class │ ├── head-big.png │ ├── head.png │ ├── src │ │ ├── Game.java │ │ ├── Snake.java │ │ └── SnakeListener.java │ └── tail.png ├── Sortieren │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── bin │ │ └── Sort.class │ └── src │ │ └── Sort.java ├── Swing │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── bin │ │ ├── Main$1.class │ │ ├── Main$2.class │ │ ├── Main$3.class │ │ ├── Main$4.class │ │ ├── Main$5.class │ │ ├── Main$6.class │ │ └── Main.class │ └── src │ │ └── Main.java ├── SwingGridBagLayout │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── bin │ │ └── GridBadLayout.class │ └── src │ │ └── GridBadLayout.java ├── Test │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── bin │ │ ├── Main$1.class │ │ ├── Main$2.class │ │ ├── Main$3.class │ │ └── Main.class │ └── src │ │ └── Main.java ├── Thumbs.db ├── Time │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── bin │ │ └── Time.class │ └── src │ │ └── Time.java ├── Timer │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── bin │ │ ├── Time$1.class │ │ └── Time.class │ └── src │ │ └── Time.java ├── YoutubeCrawler │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── bin │ │ └── Main.class │ └── src │ │ └── Main.java ├── YoutubePlayer │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── bin │ │ ├── Main$1.class │ │ ├── Main$2.class │ │ └── Main.class │ └── src │ │ └── Main.java ├── YoutubeViewer │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── bin │ │ ├── YoutubeInSwing$1.class │ │ ├── YoutubeInSwing$2.class │ │ └── YoutubeInSwing.class │ └── src │ │ └── YoutubeInSwing.java └── Zwischenablage │ ├── .classpath │ ├── .project │ ├── .settings │ └── org.eclipse.jdt.core.prefs │ ├── bin │ └── Main.class │ └── src │ └── Main.java ├── Kotlin ├── HelloWorld │ ├── data │ │ ├── data.txt │ │ └── meineDaten2.txt │ ├── src │ │ ├── Bonus.kt │ │ ├── Circle.kt │ │ ├── CollectionsGuide.kt │ │ ├── Computer.kt │ │ ├── Exceptions.kt │ │ ├── Extensions.kt │ │ ├── Files.kt │ │ ├── Lambda.kt │ │ ├── Scoping.kt │ │ ├── String.kt │ │ ├── Time.kt │ │ ├── functionsForAll.kt │ │ ├── functionsUebung.kt │ │ ├── klassen.kt │ │ ├── kotlinforall.kt │ │ ├── main.kt │ │ ├── rekursion.kt │ │ └── rekursionUebung.kt │ └── test │ │ └── test.kt ├── Interop │ ├── Interop.iml │ └── src │ │ ├── Jav.java │ │ ├── Main.java │ │ └── kot.kt ├── JVM Kotlin │ ├── JVM Kotlin.iml │ ├── src │ │ ├── Advanced OOP.kt │ │ ├── HTTP.kt │ │ ├── HigherOrder.kt │ │ ├── Main.kt │ │ ├── Soup.kt │ │ ├── dataclasses.kt │ │ ├── delegation.kt │ │ ├── enums.kt │ │ ├── innerclasses.kt │ │ ├── singleton.kt │ │ └── varargs.kt │ └── tests │ │ └── MyClassTest.kt ├── Modules │ └── src │ │ └── de │ │ └── themorpheus │ │ ├── Main │ │ └── main.kt │ │ └── User │ │ └── User.kt └── Text-adventure │ └── src │ ├── Consumable.kt │ ├── Fight.kt │ ├── Heiltrank.kt │ ├── IngameCharacter.kt │ ├── Item.kt │ ├── Main.kt │ ├── NPC.kt │ ├── Ork.kt │ ├── SchwertDesZerstoerers.kt │ ├── Spieler.kt │ ├── Spielfeld.kt │ ├── Wabe.kt │ └── Waffe.kt ├── Python Discord Bots ├── Music.py ├── ReactionRole.py ├── Roulette Bot.py ├── SeniorMembers.py ├── TutorialBot.py └── Wichtel.py ├── Python-Algo ├── dijkstra.py ├── graphs.py └── maze.py ├── Python ├── .idea │ ├── .name │ ├── Python.iml │ ├── encodings.xml │ ├── misc.xml │ ├── modules.xml │ └── workspace.xml ├── AbstractClasses │ ├── Hund.py │ ├── Tier.py │ └── __pycache__ │ │ └── Tier.cpython-34.pyc ├── Enum.py ├── Faktorisieren.py ├── Grid.py ├── MagicMethods.py ├── MyGui.py ├── Namen ├── Namen.txt ├── Primzahlen.py ├── Python.jpg ├── Python.jpg.zip ├── Python.png ├── Python.thumbnail ├── PythonAbklatsch.jpg ├── PythonHacking │ ├── AES.py │ ├── Backdoor.py │ ├── BackdoorSender.py │ ├── DDOS.py │ ├── ExtractExifFromImage.py │ ├── FormBruteForce.py │ ├── Keylogger.py │ ├── Main.py │ ├── Passwordcracker.py │ ├── PortScanner.py │ ├── Python.jpg │ ├── Steganography.py │ ├── __init__.py │ ├── log.txt │ ├── myFile_encrypted.py │ ├── packetsniffer.py │ ├── passwordlist.txt │ └── rainbowtable.txt ├── Stuff2.py ├── Temperatur.py ├── Textadventure.py ├── TicTacToe.py ├── Vokabeltrainer.py ├── Voktrainer.py ├── __pycache__ │ ├── firstTry.cpython-34.pyc │ ├── somemodule.cpython-34.pyc │ ├── turtle.cpython-34.pyc │ └── turtletest.cpython-34.pyc ├── dist │ ├── _bz2.pyd │ ├── _ctypes.pyd │ ├── _hashlib.pyd │ ├── _lzma.pyd │ ├── _socket.pyd │ ├── _ssl.pyd │ ├── _tkinter.pyd │ ├── pyexpat.pyd │ ├── python34.dll │ ├── select.pyd │ ├── tcl │ │ ├── dde1.4 │ │ │ ├── pkgIndex.tcl │ │ │ └── tcldde14.dll │ │ ├── itcl4.0.0 │ │ │ ├── itcl.tcl │ │ │ ├── itcl40t.dll │ │ │ ├── itclHullCmds.tcl │ │ │ ├── itclWidget.tcl │ │ │ └── pkgIndex.tcl │ │ ├── itclstub40.lib │ │ ├── reg1.3 │ │ │ ├── pkgIndex.tcl │ │ │ └── tclreg13.dll │ │ ├── sqlite33.8.0 │ │ │ ├── pkgIndex.tcl │ │ │ ├── sqlite3.n │ │ │ └── sqlite3380t.dll │ │ ├── tcl8.6 │ │ │ ├── auto.tcl │ │ │ ├── clock.tcl │ │ │ ├── encoding │ │ │ │ ├── ascii.enc │ │ │ │ ├── big5.enc │ │ │ │ ├── cp1250.enc │ │ │ │ ├── cp1251.enc │ │ │ │ ├── cp1252.enc │ │ │ │ ├── cp1253.enc │ │ │ │ ├── cp1254.enc │ │ │ │ ├── cp1255.enc │ │ │ │ ├── cp1256.enc │ │ │ │ ├── cp1257.enc │ │ │ │ ├── cp1258.enc │ │ │ │ ├── cp437.enc │ │ │ │ ├── cp737.enc │ │ │ │ ├── cp775.enc │ │ │ │ ├── cp850.enc │ │ │ │ ├── cp852.enc │ │ │ │ ├── cp855.enc │ │ │ │ ├── cp857.enc │ │ │ │ ├── cp860.enc │ │ │ │ ├── cp861.enc │ │ │ │ ├── cp862.enc │ │ │ │ ├── cp863.enc │ │ │ │ ├── cp864.enc │ │ │ │ ├── cp865.enc │ │ │ │ ├── cp866.enc │ │ │ │ ├── cp869.enc │ │ │ │ ├── cp874.enc │ │ │ │ ├── cp932.enc │ │ │ │ ├── cp936.enc │ │ │ │ ├── cp949.enc │ │ │ │ ├── cp950.enc │ │ │ │ ├── dingbats.enc │ │ │ │ ├── ebcdic.enc │ │ │ │ ├── euc-cn.enc │ │ │ │ ├── euc-jp.enc │ │ │ │ ├── euc-kr.enc │ │ │ │ ├── gb12345.enc │ │ │ │ ├── gb1988.enc │ │ │ │ ├── gb2312-raw.enc │ │ │ │ ├── gb2312.enc │ │ │ │ ├── iso2022-jp.enc │ │ │ │ ├── iso2022-kr.enc │ │ │ │ ├── iso2022.enc │ │ │ │ ├── iso8859-1.enc │ │ │ │ ├── iso8859-10.enc │ │ │ │ ├── iso8859-13.enc │ │ │ │ ├── iso8859-14.enc │ │ │ │ ├── iso8859-15.enc │ │ │ │ ├── iso8859-16.enc │ │ │ │ ├── iso8859-2.enc │ │ │ │ ├── iso8859-3.enc │ │ │ │ ├── iso8859-4.enc │ │ │ │ ├── iso8859-5.enc │ │ │ │ ├── iso8859-6.enc │ │ │ │ ├── iso8859-7.enc │ │ │ │ ├── iso8859-8.enc │ │ │ │ ├── iso8859-9.enc │ │ │ │ ├── jis0201.enc │ │ │ │ ├── jis0208.enc │ │ │ │ ├── jis0212.enc │ │ │ │ ├── koi8-r.enc │ │ │ │ ├── koi8-u.enc │ │ │ │ ├── ksc5601.enc │ │ │ │ ├── macCentEuro.enc │ │ │ │ ├── macCroatian.enc │ │ │ │ ├── macCyrillic.enc │ │ │ │ ├── macDingbats.enc │ │ │ │ ├── macGreek.enc │ │ │ │ ├── macIceland.enc │ │ │ │ ├── macJapan.enc │ │ │ │ ├── macRoman.enc │ │ │ │ ├── macRomania.enc │ │ │ │ ├── macThai.enc │ │ │ │ ├── macTurkish.enc │ │ │ │ ├── macUkraine.enc │ │ │ │ ├── shiftjis.enc │ │ │ │ ├── symbol.enc │ │ │ │ └── tis-620.enc │ │ │ ├── history.tcl │ │ │ ├── http1.0 │ │ │ │ ├── http.tcl │ │ │ │ └── pkgIndex.tcl │ │ │ ├── init.tcl │ │ │ ├── msgs │ │ │ │ ├── af.msg │ │ │ │ ├── af_za.msg │ │ │ │ ├── ar.msg │ │ │ │ ├── ar_in.msg │ │ │ │ ├── ar_jo.msg │ │ │ │ ├── ar_lb.msg │ │ │ │ ├── ar_sy.msg │ │ │ │ ├── be.msg │ │ │ │ ├── bg.msg │ │ │ │ ├── bn.msg │ │ │ │ ├── bn_in.msg │ │ │ │ ├── ca.msg │ │ │ │ ├── cs.msg │ │ │ │ ├── da.msg │ │ │ │ ├── de.msg │ │ │ │ ├── de_at.msg │ │ │ │ ├── de_be.msg │ │ │ │ ├── el.msg │ │ │ │ ├── en_au.msg │ │ │ │ ├── en_be.msg │ │ │ │ ├── en_bw.msg │ │ │ │ ├── en_ca.msg │ │ │ │ ├── en_gb.msg │ │ │ │ ├── en_hk.msg │ │ │ │ ├── en_ie.msg │ │ │ │ ├── en_in.msg │ │ │ │ ├── en_nz.msg │ │ │ │ ├── en_ph.msg │ │ │ │ ├── en_sg.msg │ │ │ │ ├── en_za.msg │ │ │ │ ├── en_zw.msg │ │ │ │ ├── eo.msg │ │ │ │ ├── es.msg │ │ │ │ ├── es_ar.msg │ │ │ │ ├── es_bo.msg │ │ │ │ ├── es_cl.msg │ │ │ │ ├── es_co.msg │ │ │ │ ├── es_cr.msg │ │ │ │ ├── es_do.msg │ │ │ │ ├── es_ec.msg │ │ │ │ ├── es_gt.msg │ │ │ │ ├── es_hn.msg │ │ │ │ ├── es_mx.msg │ │ │ │ ├── es_ni.msg │ │ │ │ ├── es_pa.msg │ │ │ │ ├── es_pe.msg │ │ │ │ ├── es_pr.msg │ │ │ │ ├── es_py.msg │ │ │ │ ├── es_sv.msg │ │ │ │ ├── es_uy.msg │ │ │ │ ├── es_ve.msg │ │ │ │ ├── et.msg │ │ │ │ ├── eu.msg │ │ │ │ ├── eu_es.msg │ │ │ │ ├── fa.msg │ │ │ │ ├── fa_in.msg │ │ │ │ ├── fa_ir.msg │ │ │ │ ├── fi.msg │ │ │ │ ├── fo.msg │ │ │ │ ├── fo_fo.msg │ │ │ │ ├── fr.msg │ │ │ │ ├── fr_be.msg │ │ │ │ ├── fr_ca.msg │ │ │ │ ├── fr_ch.msg │ │ │ │ ├── ga.msg │ │ │ │ ├── ga_ie.msg │ │ │ │ ├── gl.msg │ │ │ │ ├── gl_es.msg │ │ │ │ ├── gv.msg │ │ │ │ ├── gv_gb.msg │ │ │ │ ├── he.msg │ │ │ │ ├── hi.msg │ │ │ │ ├── hi_in.msg │ │ │ │ ├── hr.msg │ │ │ │ ├── hu.msg │ │ │ │ ├── id.msg │ │ │ │ ├── id_id.msg │ │ │ │ ├── is.msg │ │ │ │ ├── it.msg │ │ │ │ ├── it_ch.msg │ │ │ │ ├── ja.msg │ │ │ │ ├── kl.msg │ │ │ │ ├── kl_gl.msg │ │ │ │ ├── ko.msg │ │ │ │ ├── ko_kr.msg │ │ │ │ ├── kok.msg │ │ │ │ ├── kok_in.msg │ │ │ │ ├── kw.msg │ │ │ │ ├── kw_gb.msg │ │ │ │ ├── lt.msg │ │ │ │ ├── lv.msg │ │ │ │ ├── mk.msg │ │ │ │ ├── mr.msg │ │ │ │ ├── mr_in.msg │ │ │ │ ├── ms.msg │ │ │ │ ├── ms_my.msg │ │ │ │ ├── mt.msg │ │ │ │ ├── nb.msg │ │ │ │ ├── nl.msg │ │ │ │ ├── nl_be.msg │ │ │ │ ├── nn.msg │ │ │ │ ├── pl.msg │ │ │ │ ├── pt.msg │ │ │ │ ├── pt_br.msg │ │ │ │ ├── ro.msg │ │ │ │ ├── ru.msg │ │ │ │ ├── ru_ua.msg │ │ │ │ ├── sh.msg │ │ │ │ ├── sk.msg │ │ │ │ ├── sl.msg │ │ │ │ ├── sq.msg │ │ │ │ ├── sr.msg │ │ │ │ ├── sv.msg │ │ │ │ ├── sw.msg │ │ │ │ ├── ta.msg │ │ │ │ ├── ta_in.msg │ │ │ │ ├── te.msg │ │ │ │ ├── te_in.msg │ │ │ │ ├── th.msg │ │ │ │ ├── tr.msg │ │ │ │ ├── uk.msg │ │ │ │ ├── vi.msg │ │ │ │ ├── zh.msg │ │ │ │ ├── zh_cn.msg │ │ │ │ ├── zh_hk.msg │ │ │ │ ├── zh_sg.msg │ │ │ │ └── zh_tw.msg │ │ │ ├── opt0.4 │ │ │ │ ├── optparse.tcl │ │ │ │ └── pkgIndex.tcl │ │ │ ├── package.tcl │ │ │ ├── parray.tcl │ │ │ ├── safe.tcl │ │ │ ├── tclIndex │ │ │ ├── tm.tcl │ │ │ ├── tzdata │ │ │ │ ├── Africa │ │ │ │ │ ├── Abidjan │ │ │ │ │ ├── Accra │ │ │ │ │ ├── Addis_Ababa │ │ │ │ │ ├── Algiers │ │ │ │ │ ├── Asmara │ │ │ │ │ ├── Asmera │ │ │ │ │ ├── Bamako │ │ │ │ │ ├── Bangui │ │ │ │ │ ├── Banjul │ │ │ │ │ ├── Bissau │ │ │ │ │ ├── Blantyre │ │ │ │ │ ├── Brazzaville │ │ │ │ │ ├── Bujumbura │ │ │ │ │ ├── Cairo │ │ │ │ │ ├── Casablanca │ │ │ │ │ ├── Ceuta │ │ │ │ │ ├── Conakry │ │ │ │ │ ├── Dakar │ │ │ │ │ ├── Dar_es_Salaam │ │ │ │ │ ├── Djibouti │ │ │ │ │ ├── Douala │ │ │ │ │ ├── El_Aaiun │ │ │ │ │ ├── Freetown │ │ │ │ │ ├── Gaborone │ │ │ │ │ ├── Harare │ │ │ │ │ ├── Johannesburg │ │ │ │ │ ├── Juba │ │ │ │ │ ├── Kampala │ │ │ │ │ ├── Khartoum │ │ │ │ │ ├── Kigali │ │ │ │ │ ├── Kinshasa │ │ │ │ │ ├── Lagos │ │ │ │ │ ├── Libreville │ │ │ │ │ ├── Lome │ │ │ │ │ ├── Luanda │ │ │ │ │ ├── Lubumbashi │ │ │ │ │ ├── Lusaka │ │ │ │ │ ├── Malabo │ │ │ │ │ ├── Maputo │ │ │ │ │ ├── Maseru │ │ │ │ │ ├── Mbabane │ │ │ │ │ ├── Mogadishu │ │ │ │ │ ├── Monrovia │ │ │ │ │ ├── Nairobi │ │ │ │ │ ├── Ndjamena │ │ │ │ │ ├── Niamey │ │ │ │ │ ├── Nouakchott │ │ │ │ │ ├── Ouagadougou │ │ │ │ │ ├── Porto-Novo │ │ │ │ │ ├── Sao_Tome │ │ │ │ │ ├── Timbuktu │ │ │ │ │ ├── Tripoli │ │ │ │ │ ├── Tunis │ │ │ │ │ └── Windhoek │ │ │ │ ├── America │ │ │ │ │ ├── Adak │ │ │ │ │ ├── Anchorage │ │ │ │ │ ├── Anguilla │ │ │ │ │ ├── Antigua │ │ │ │ │ ├── Araguaina │ │ │ │ │ ├── Argentina │ │ │ │ │ │ ├── Buenos_Aires │ │ │ │ │ │ ├── Catamarca │ │ │ │ │ │ ├── ComodRivadavia │ │ │ │ │ │ ├── Cordoba │ │ │ │ │ │ ├── Jujuy │ │ │ │ │ │ ├── La_Rioja │ │ │ │ │ │ ├── Mendoza │ │ │ │ │ │ ├── Rio_Gallegos │ │ │ │ │ │ ├── Salta │ │ │ │ │ │ ├── San_Juan │ │ │ │ │ │ ├── San_Luis │ │ │ │ │ │ ├── Tucuman │ │ │ │ │ │ └── Ushuaia │ │ │ │ │ ├── Aruba │ │ │ │ │ ├── Asuncion │ │ │ │ │ ├── Atikokan │ │ │ │ │ ├── Atka │ │ │ │ │ ├── Bahia │ │ │ │ │ ├── Bahia_Banderas │ │ │ │ │ ├── Barbados │ │ │ │ │ ├── Belem │ │ │ │ │ ├── Belize │ │ │ │ │ ├── Blanc-Sablon │ │ │ │ │ ├── Boa_Vista │ │ │ │ │ ├── Bogota │ │ │ │ │ ├── Boise │ │ │ │ │ ├── Buenos_Aires │ │ │ │ │ ├── Cambridge_Bay │ │ │ │ │ ├── Campo_Grande │ │ │ │ │ ├── Cancun │ │ │ │ │ ├── Caracas │ │ │ │ │ ├── Catamarca │ │ │ │ │ ├── Cayenne │ │ │ │ │ ├── Cayman │ │ │ │ │ ├── Chicago │ │ │ │ │ ├── Chihuahua │ │ │ │ │ ├── Coral_Harbour │ │ │ │ │ ├── Cordoba │ │ │ │ │ ├── Costa_Rica │ │ │ │ │ ├── Creston │ │ │ │ │ ├── Cuiaba │ │ │ │ │ ├── Curacao │ │ │ │ │ ├── Danmarkshavn │ │ │ │ │ ├── Dawson │ │ │ │ │ ├── Dawson_Creek │ │ │ │ │ ├── Denver │ │ │ │ │ ├── Detroit │ │ │ │ │ ├── Dominica │ │ │ │ │ ├── Edmonton │ │ │ │ │ ├── Eirunepe │ │ │ │ │ ├── El_Salvador │ │ │ │ │ ├── Ensenada │ │ │ │ │ ├── Fort_Wayne │ │ │ │ │ ├── Fortaleza │ │ │ │ │ ├── Glace_Bay │ │ │ │ │ ├── Godthab │ │ │ │ │ ├── Goose_Bay │ │ │ │ │ ├── Grand_Turk │ │ │ │ │ ├── Grenada │ │ │ │ │ ├── Guadeloupe │ │ │ │ │ ├── Guatemala │ │ │ │ │ ├── Guayaquil │ │ │ │ │ ├── Guyana │ │ │ │ │ ├── Halifax │ │ │ │ │ ├── Havana │ │ │ │ │ ├── Hermosillo │ │ │ │ │ ├── Indiana │ │ │ │ │ │ ├── Indianapolis │ │ │ │ │ │ ├── Knox │ │ │ │ │ │ ├── Marengo │ │ │ │ │ │ ├── Petersburg │ │ │ │ │ │ ├── Tell_City │ │ │ │ │ │ ├── Vevay │ │ │ │ │ │ ├── Vincennes │ │ │ │ │ │ └── Winamac │ │ │ │ │ ├── Indianapolis │ │ │ │ │ ├── Inuvik │ │ │ │ │ ├── Iqaluit │ │ │ │ │ ├── Jamaica │ │ │ │ │ ├── Jujuy │ │ │ │ │ ├── Juneau │ │ │ │ │ ├── Kentucky │ │ │ │ │ │ ├── Louisville │ │ │ │ │ │ └── Monticello │ │ │ │ │ ├── Knox_IN │ │ │ │ │ ├── Kralendijk │ │ │ │ │ ├── La_Paz │ │ │ │ │ ├── Lima │ │ │ │ │ ├── Los_Angeles │ │ │ │ │ ├── Louisville │ │ │ │ │ ├── Lower_Princes │ │ │ │ │ ├── Maceio │ │ │ │ │ ├── Managua │ │ │ │ │ ├── Manaus │ │ │ │ │ ├── Marigot │ │ │ │ │ ├── Martinique │ │ │ │ │ ├── Matamoros │ │ │ │ │ ├── Mazatlan │ │ │ │ │ ├── Mendoza │ │ │ │ │ ├── Menominee │ │ │ │ │ ├── Merida │ │ │ │ │ ├── Metlakatla │ │ │ │ │ ├── Mexico_City │ │ │ │ │ ├── Miquelon │ │ │ │ │ ├── Moncton │ │ │ │ │ ├── Monterrey │ │ │ │ │ ├── Montevideo │ │ │ │ │ ├── Montreal │ │ │ │ │ ├── Montserrat │ │ │ │ │ ├── Nassau │ │ │ │ │ ├── New_York │ │ │ │ │ ├── Nipigon │ │ │ │ │ ├── Nome │ │ │ │ │ ├── Noronha │ │ │ │ │ ├── North_Dakota │ │ │ │ │ │ ├── Beulah │ │ │ │ │ │ ├── Center │ │ │ │ │ │ └── New_Salem │ │ │ │ │ ├── Ojinaga │ │ │ │ │ ├── Panama │ │ │ │ │ ├── Pangnirtung │ │ │ │ │ ├── Paramaribo │ │ │ │ │ ├── Phoenix │ │ │ │ │ ├── Port-au-Prince │ │ │ │ │ ├── Port_of_Spain │ │ │ │ │ ├── Porto_Acre │ │ │ │ │ ├── Porto_Velho │ │ │ │ │ ├── Puerto_Rico │ │ │ │ │ ├── Rainy_River │ │ │ │ │ ├── Rankin_Inlet │ │ │ │ │ ├── Recife │ │ │ │ │ ├── Regina │ │ │ │ │ ├── Resolute │ │ │ │ │ ├── Rio_Branco │ │ │ │ │ ├── Rosario │ │ │ │ │ ├── Santa_Isabel │ │ │ │ │ ├── Santarem │ │ │ │ │ ├── Santiago │ │ │ │ │ ├── Santo_Domingo │ │ │ │ │ ├── Sao_Paulo │ │ │ │ │ ├── Scoresbysund │ │ │ │ │ ├── Shiprock │ │ │ │ │ ├── Sitka │ │ │ │ │ ├── St_Barthelemy │ │ │ │ │ ├── St_Johns │ │ │ │ │ ├── St_Kitts │ │ │ │ │ ├── St_Lucia │ │ │ │ │ ├── St_Thomas │ │ │ │ │ ├── St_Vincent │ │ │ │ │ ├── Swift_Current │ │ │ │ │ ├── Tegucigalpa │ │ │ │ │ ├── Thule │ │ │ │ │ ├── Thunder_Bay │ │ │ │ │ ├── Tijuana │ │ │ │ │ ├── Toronto │ │ │ │ │ ├── Tortola │ │ │ │ │ ├── Vancouver │ │ │ │ │ ├── Virgin │ │ │ │ │ ├── Whitehorse │ │ │ │ │ ├── Winnipeg │ │ │ │ │ ├── Yakutat │ │ │ │ │ └── Yellowknife │ │ │ │ ├── Antarctica │ │ │ │ │ ├── Casey │ │ │ │ │ ├── Davis │ │ │ │ │ ├── DumontDUrville │ │ │ │ │ ├── Macquarie │ │ │ │ │ ├── Mawson │ │ │ │ │ ├── McMurdo │ │ │ │ │ ├── Palmer │ │ │ │ │ ├── Rothera │ │ │ │ │ ├── South_Pole │ │ │ │ │ ├── Syowa │ │ │ │ │ └── Vostok │ │ │ │ ├── Arctic │ │ │ │ │ └── Longyearbyen │ │ │ │ ├── Asia │ │ │ │ │ ├── Aden │ │ │ │ │ ├── Almaty │ │ │ │ │ ├── Amman │ │ │ │ │ ├── Anadyr │ │ │ │ │ ├── Aqtau │ │ │ │ │ ├── Aqtobe │ │ │ │ │ ├── Ashgabat │ │ │ │ │ ├── Ashkhabad │ │ │ │ │ ├── Baghdad │ │ │ │ │ ├── Bahrain │ │ │ │ │ ├── Baku │ │ │ │ │ ├── Bangkok │ │ │ │ │ ├── Beirut │ │ │ │ │ ├── Bishkek │ │ │ │ │ ├── Brunei │ │ │ │ │ ├── Calcutta │ │ │ │ │ ├── Choibalsan │ │ │ │ │ ├── Chongqing │ │ │ │ │ ├── Chungking │ │ │ │ │ ├── Colombo │ │ │ │ │ ├── Dacca │ │ │ │ │ ├── Damascus │ │ │ │ │ ├── Dhaka │ │ │ │ │ ├── Dili │ │ │ │ │ ├── Dubai │ │ │ │ │ ├── Dushanbe │ │ │ │ │ ├── Gaza │ │ │ │ │ ├── Harbin │ │ │ │ │ ├── Hebron │ │ │ │ │ ├── Ho_Chi_Minh │ │ │ │ │ ├── Hong_Kong │ │ │ │ │ ├── Hovd │ │ │ │ │ ├── Irkutsk │ │ │ │ │ ├── Istanbul │ │ │ │ │ ├── Jakarta │ │ │ │ │ ├── Jayapura │ │ │ │ │ ├── Jerusalem │ │ │ │ │ ├── Kabul │ │ │ │ │ ├── Kamchatka │ │ │ │ │ ├── Karachi │ │ │ │ │ ├── Kashgar │ │ │ │ │ ├── Kathmandu │ │ │ │ │ ├── Katmandu │ │ │ │ │ ├── Khandyga │ │ │ │ │ ├── Kolkata │ │ │ │ │ ├── Krasnoyarsk │ │ │ │ │ ├── Kuala_Lumpur │ │ │ │ │ ├── Kuching │ │ │ │ │ ├── Kuwait │ │ │ │ │ ├── Macao │ │ │ │ │ ├── Macau │ │ │ │ │ ├── Magadan │ │ │ │ │ ├── Makassar │ │ │ │ │ ├── Manila │ │ │ │ │ ├── Muscat │ │ │ │ │ ├── Nicosia │ │ │ │ │ ├── Novokuznetsk │ │ │ │ │ ├── Novosibirsk │ │ │ │ │ ├── Omsk │ │ │ │ │ ├── Oral │ │ │ │ │ ├── Phnom_Penh │ │ │ │ │ ├── Pontianak │ │ │ │ │ ├── Pyongyang │ │ │ │ │ ├── Qatar │ │ │ │ │ ├── Qyzylorda │ │ │ │ │ ├── Rangoon │ │ │ │ │ ├── Riyadh │ │ │ │ │ ├── Saigon │ │ │ │ │ ├── Sakhalin │ │ │ │ │ ├── Samarkand │ │ │ │ │ ├── Seoul │ │ │ │ │ ├── Shanghai │ │ │ │ │ ├── Singapore │ │ │ │ │ ├── Taipei │ │ │ │ │ ├── Tashkent │ │ │ │ │ ├── Tbilisi │ │ │ │ │ ├── Tehran │ │ │ │ │ ├── Tel_Aviv │ │ │ │ │ ├── Thimbu │ │ │ │ │ ├── Thimphu │ │ │ │ │ ├── Tokyo │ │ │ │ │ ├── Ujung_Pandang │ │ │ │ │ ├── Ulaanbaatar │ │ │ │ │ ├── Ulan_Bator │ │ │ │ │ ├── Urumqi │ │ │ │ │ ├── Ust-Nera │ │ │ │ │ ├── Vientiane │ │ │ │ │ ├── Vladivostok │ │ │ │ │ ├── Yakutsk │ │ │ │ │ ├── Yekaterinburg │ │ │ │ │ └── Yerevan │ │ │ │ ├── Atlantic │ │ │ │ │ ├── Azores │ │ │ │ │ ├── Bermuda │ │ │ │ │ ├── Canary │ │ │ │ │ ├── Cape_Verde │ │ │ │ │ ├── Faeroe │ │ │ │ │ ├── Faroe │ │ │ │ │ ├── Jan_Mayen │ │ │ │ │ ├── Madeira │ │ │ │ │ ├── Reykjavik │ │ │ │ │ ├── South_Georgia │ │ │ │ │ ├── St_Helena │ │ │ │ │ └── Stanley │ │ │ │ ├── Australia │ │ │ │ │ ├── ACT │ │ │ │ │ ├── Adelaide │ │ │ │ │ ├── Brisbane │ │ │ │ │ ├── Broken_Hill │ │ │ │ │ ├── Canberra │ │ │ │ │ ├── Currie │ │ │ │ │ ├── Darwin │ │ │ │ │ ├── Eucla │ │ │ │ │ ├── Hobart │ │ │ │ │ ├── LHI │ │ │ │ │ ├── Lindeman │ │ │ │ │ ├── Lord_Howe │ │ │ │ │ ├── Melbourne │ │ │ │ │ ├── NSW │ │ │ │ │ ├── North │ │ │ │ │ ├── Perth │ │ │ │ │ ├── Queensland │ │ │ │ │ ├── South │ │ │ │ │ ├── Sydney │ │ │ │ │ ├── Tasmania │ │ │ │ │ ├── Victoria │ │ │ │ │ ├── West │ │ │ │ │ └── Yancowinna │ │ │ │ ├── Brazil │ │ │ │ │ ├── Acre │ │ │ │ │ ├── DeNoronha │ │ │ │ │ ├── East │ │ │ │ │ └── West │ │ │ │ ├── CET │ │ │ │ ├── CST6CDT │ │ │ │ ├── Canada │ │ │ │ │ ├── Atlantic │ │ │ │ │ ├── Central │ │ │ │ │ ├── East-Saskatchewan │ │ │ │ │ ├── Eastern │ │ │ │ │ ├── Mountain │ │ │ │ │ ├── Newfoundland │ │ │ │ │ ├── Pacific │ │ │ │ │ ├── Saskatchewan │ │ │ │ │ └── Yukon │ │ │ │ ├── Chile │ │ │ │ │ ├── Continental │ │ │ │ │ └── EasterIsland │ │ │ │ ├── Cuba │ │ │ │ ├── EET │ │ │ │ ├── EST │ │ │ │ ├── EST5EDT │ │ │ │ ├── Egypt │ │ │ │ ├── Eire │ │ │ │ ├── Etc │ │ │ │ │ ├── GMT │ │ │ │ │ ├── GMT+0 │ │ │ │ │ ├── GMT+1 │ │ │ │ │ ├── GMT+10 │ │ │ │ │ ├── GMT+11 │ │ │ │ │ ├── GMT+12 │ │ │ │ │ ├── GMT+2 │ │ │ │ │ ├── GMT+3 │ │ │ │ │ ├── GMT+4 │ │ │ │ │ ├── GMT+5 │ │ │ │ │ ├── GMT+6 │ │ │ │ │ ├── GMT+7 │ │ │ │ │ ├── GMT+8 │ │ │ │ │ ├── GMT+9 │ │ │ │ │ ├── GMT-0 │ │ │ │ │ ├── GMT-1 │ │ │ │ │ ├── GMT-10 │ │ │ │ │ ├── GMT-11 │ │ │ │ │ ├── GMT-12 │ │ │ │ │ ├── GMT-13 │ │ │ │ │ ├── GMT-14 │ │ │ │ │ ├── GMT-2 │ │ │ │ │ ├── GMT-3 │ │ │ │ │ ├── GMT-4 │ │ │ │ │ ├── GMT-5 │ │ │ │ │ ├── GMT-6 │ │ │ │ │ ├── GMT-7 │ │ │ │ │ ├── GMT-8 │ │ │ │ │ ├── GMT-9 │ │ │ │ │ ├── GMT0 │ │ │ │ │ ├── Greenwich │ │ │ │ │ ├── UCT │ │ │ │ │ ├── UTC │ │ │ │ │ ├── Universal │ │ │ │ │ └── Zulu │ │ │ │ ├── Europe │ │ │ │ │ ├── Amsterdam │ │ │ │ │ ├── Andorra │ │ │ │ │ ├── Athens │ │ │ │ │ ├── Belfast │ │ │ │ │ ├── Belgrade │ │ │ │ │ ├── Berlin │ │ │ │ │ ├── Bratislava │ │ │ │ │ ├── Brussels │ │ │ │ │ ├── Bucharest │ │ │ │ │ ├── Budapest │ │ │ │ │ ├── Busingen │ │ │ │ │ ├── Chisinau │ │ │ │ │ ├── Copenhagen │ │ │ │ │ ├── Dublin │ │ │ │ │ ├── Gibraltar │ │ │ │ │ ├── Guernsey │ │ │ │ │ ├── Helsinki │ │ │ │ │ ├── Isle_of_Man │ │ │ │ │ ├── Istanbul │ │ │ │ │ ├── Jersey │ │ │ │ │ ├── Kaliningrad │ │ │ │ │ ├── Kiev │ │ │ │ │ ├── Lisbon │ │ │ │ │ ├── Ljubljana │ │ │ │ │ ├── London │ │ │ │ │ ├── Luxembourg │ │ │ │ │ ├── Madrid │ │ │ │ │ ├── Malta │ │ │ │ │ ├── Mariehamn │ │ │ │ │ ├── Minsk │ │ │ │ │ ├── Monaco │ │ │ │ │ ├── Moscow │ │ │ │ │ ├── Nicosia │ │ │ │ │ ├── Oslo │ │ │ │ │ ├── Paris │ │ │ │ │ ├── Podgorica │ │ │ │ │ ├── Prague │ │ │ │ │ ├── Riga │ │ │ │ │ ├── Rome │ │ │ │ │ ├── Samara │ │ │ │ │ ├── San_Marino │ │ │ │ │ ├── Sarajevo │ │ │ │ │ ├── Simferopol │ │ │ │ │ ├── Skopje │ │ │ │ │ ├── Sofia │ │ │ │ │ ├── Stockholm │ │ │ │ │ ├── Tallinn │ │ │ │ │ ├── Tirane │ │ │ │ │ ├── Tiraspol │ │ │ │ │ ├── Uzhgorod │ │ │ │ │ ├── Vaduz │ │ │ │ │ ├── Vatican │ │ │ │ │ ├── Vienna │ │ │ │ │ ├── Vilnius │ │ │ │ │ ├── Volgograd │ │ │ │ │ ├── Warsaw │ │ │ │ │ ├── Zagreb │ │ │ │ │ ├── Zaporozhye │ │ │ │ │ └── Zurich │ │ │ │ ├── GB │ │ │ │ ├── GB-Eire │ │ │ │ ├── GMT │ │ │ │ ├── GMT+0 │ │ │ │ ├── GMT-0 │ │ │ │ ├── GMT0 │ │ │ │ ├── Greenwich │ │ │ │ ├── HST │ │ │ │ ├── Hongkong │ │ │ │ ├── Iceland │ │ │ │ ├── Indian │ │ │ │ │ ├── Antananarivo │ │ │ │ │ ├── Chagos │ │ │ │ │ ├── Christmas │ │ │ │ │ ├── Cocos │ │ │ │ │ ├── Comoro │ │ │ │ │ ├── Kerguelen │ │ │ │ │ ├── Mahe │ │ │ │ │ ├── Maldives │ │ │ │ │ ├── Mauritius │ │ │ │ │ ├── Mayotte │ │ │ │ │ └── Reunion │ │ │ │ ├── Iran │ │ │ │ ├── Israel │ │ │ │ ├── Jamaica │ │ │ │ ├── Japan │ │ │ │ ├── Kwajalein │ │ │ │ ├── Libya │ │ │ │ ├── MET │ │ │ │ ├── MST │ │ │ │ ├── MST7MDT │ │ │ │ ├── Mexico │ │ │ │ │ ├── BajaNorte │ │ │ │ │ ├── BajaSur │ │ │ │ │ └── General │ │ │ │ ├── NZ │ │ │ │ ├── NZ-CHAT │ │ │ │ ├── Navajo │ │ │ │ ├── PRC │ │ │ │ ├── PST8PDT │ │ │ │ ├── Pacific │ │ │ │ │ ├── Apia │ │ │ │ │ ├── Auckland │ │ │ │ │ ├── Chatham │ │ │ │ │ ├── Chuuk │ │ │ │ │ ├── Easter │ │ │ │ │ ├── Efate │ │ │ │ │ ├── Enderbury │ │ │ │ │ ├── Fakaofo │ │ │ │ │ ├── Fiji │ │ │ │ │ ├── Funafuti │ │ │ │ │ ├── Galapagos │ │ │ │ │ ├── Gambier │ │ │ │ │ ├── Guadalcanal │ │ │ │ │ ├── Guam │ │ │ │ │ ├── Honolulu │ │ │ │ │ ├── Johnston │ │ │ │ │ ├── Kiritimati │ │ │ │ │ ├── Kosrae │ │ │ │ │ ├── Kwajalein │ │ │ │ │ ├── Majuro │ │ │ │ │ ├── Marquesas │ │ │ │ │ ├── Midway │ │ │ │ │ ├── Nauru │ │ │ │ │ ├── Niue │ │ │ │ │ ├── Norfolk │ │ │ │ │ ├── Noumea │ │ │ │ │ ├── Pago_Pago │ │ │ │ │ ├── Palau │ │ │ │ │ ├── Pitcairn │ │ │ │ │ ├── Pohnpei │ │ │ │ │ ├── Ponape │ │ │ │ │ ├── Port_Moresby │ │ │ │ │ ├── Rarotonga │ │ │ │ │ ├── Saipan │ │ │ │ │ ├── Samoa │ │ │ │ │ ├── Tahiti │ │ │ │ │ ├── Tarawa │ │ │ │ │ ├── Tongatapu │ │ │ │ │ ├── Truk │ │ │ │ │ ├── Wake │ │ │ │ │ ├── Wallis │ │ │ │ │ └── Yap │ │ │ │ ├── Poland │ │ │ │ ├── Portugal │ │ │ │ ├── ROC │ │ │ │ ├── ROK │ │ │ │ ├── Singapore │ │ │ │ ├── SystemV │ │ │ │ │ ├── AST4 │ │ │ │ │ ├── AST4ADT │ │ │ │ │ ├── CST6 │ │ │ │ │ ├── CST6CDT │ │ │ │ │ ├── EST5 │ │ │ │ │ ├── EST5EDT │ │ │ │ │ ├── HST10 │ │ │ │ │ ├── MST7 │ │ │ │ │ ├── MST7MDT │ │ │ │ │ ├── PST8 │ │ │ │ │ ├── PST8PDT │ │ │ │ │ ├── YST9 │ │ │ │ │ └── YST9YDT │ │ │ │ ├── Turkey │ │ │ │ ├── UCT │ │ │ │ ├── US │ │ │ │ │ ├── Alaska │ │ │ │ │ ├── Aleutian │ │ │ │ │ ├── Arizona │ │ │ │ │ ├── Central │ │ │ │ │ ├── East-Indiana │ │ │ │ │ ├── Eastern │ │ │ │ │ ├── Hawaii │ │ │ │ │ ├── Indiana-Starke │ │ │ │ │ ├── Michigan │ │ │ │ │ ├── Mountain │ │ │ │ │ ├── Pacific │ │ │ │ │ ├── Pacific-New │ │ │ │ │ └── Samoa │ │ │ │ ├── UTC │ │ │ │ ├── Universal │ │ │ │ ├── W-SU │ │ │ │ ├── WET │ │ │ │ └── Zulu │ │ │ └── word.tcl │ │ ├── tcl8 │ │ │ ├── 8.4 │ │ │ │ ├── platform-1.0.12.tm │ │ │ │ └── platform │ │ │ │ │ └── shell-1.1.4.tm │ │ │ ├── 8.5 │ │ │ │ ├── msgcat-1.5.2.tm │ │ │ │ └── tcltest-2.3.6.tm │ │ │ └── 8.6 │ │ │ │ ├── http-2.8.7.tm │ │ │ │ └── tdbc │ │ │ │ └── sqlite3-1.0.0.tm │ │ ├── tcl86t.lib │ │ ├── tclConfig.sh │ │ ├── tclooConfig.sh │ │ ├── tclstub86.lib │ │ ├── tdbc1.0.0 │ │ │ ├── pkgIndex.tcl │ │ │ ├── tdbc.n │ │ │ ├── tdbc.tcl │ │ │ ├── tdbc100.dll │ │ │ ├── tdbcConfig.sh │ │ │ ├── tdbc_connection.n │ │ │ ├── tdbc_mapSqlState.n │ │ │ ├── tdbc_resultset.n │ │ │ ├── tdbc_statement.n │ │ │ ├── tdbc_tokenize.n │ │ │ └── tdbcstub100.lib │ │ ├── tdbcmysql1.0.0 │ │ │ ├── pkgIndex.tcl │ │ │ ├── tdbc_mysql.n │ │ │ ├── tdbcmysql.tcl │ │ │ └── tdbcmysql100.dll │ │ ├── tdbcodbc1.0.0 │ │ │ ├── pkgIndex.tcl │ │ │ ├── tdbc_odbc.n │ │ │ ├── tdbcodbc.tcl │ │ │ └── tdbcodbc100.dll │ │ ├── tdbcpostgres1.0.0 │ │ │ ├── pkgIndex.tcl │ │ │ ├── tdbcpostgres.tcl │ │ │ └── tdbcpostgres100.dll │ │ ├── tdbcsqlite1.0.0 │ │ │ └── tdbc_sqlite3.n │ │ ├── thread2.7.0 │ │ │ ├── pkgIndex.tcl │ │ │ ├── thread.n │ │ │ ├── thread27.dll │ │ │ ├── tpool.n │ │ │ ├── tsv.n │ │ │ ├── ttrace.n │ │ │ └── ttrace.tcl │ │ ├── tix8.4.3 │ │ │ ├── Balloon.tcl │ │ │ ├── BtnBox.tcl │ │ │ ├── CObjView.tcl │ │ │ ├── ChkList.tcl │ │ │ ├── ComboBox.tcl │ │ │ ├── Compat.tcl │ │ │ ├── Console.tcl │ │ │ ├── Control.tcl │ │ │ ├── DefSchm.tcl │ │ │ ├── DialogS.tcl │ │ │ ├── DirBox.tcl │ │ │ ├── DirDlg.tcl │ │ │ ├── DirList.tcl │ │ │ ├── DirTree.tcl │ │ │ ├── DragDrop.tcl │ │ │ ├── DtlList.tcl │ │ │ ├── EFileBox.tcl │ │ │ ├── EFileDlg.tcl │ │ │ ├── Event.tcl │ │ │ ├── FileBox.tcl │ │ │ ├── FileCbx.tcl │ │ │ ├── FileDlg.tcl │ │ │ ├── FileEnt.tcl │ │ │ ├── FloatEnt.tcl │ │ │ ├── Grid.tcl │ │ │ ├── HList.tcl │ │ │ ├── HListDD.tcl │ │ │ ├── IconView.tcl │ │ │ ├── Init.tcl │ │ │ ├── LabEntry.tcl │ │ │ ├── LabFrame.tcl │ │ │ ├── LabWidg.tcl │ │ │ ├── ListNBk.tcl │ │ │ ├── Makefile │ │ │ ├── Meter.tcl │ │ │ ├── MultView.tcl │ │ │ ├── NoteBook.tcl │ │ │ ├── OldUtil.tcl │ │ │ ├── OptMenu.tcl │ │ │ ├── PanedWin.tcl │ │ │ ├── PopMenu.tcl │ │ │ ├── Primitiv.tcl │ │ │ ├── ResizeH.tcl │ │ │ ├── SGrid.tcl │ │ │ ├── SHList.tcl │ │ │ ├── SListBox.tcl │ │ │ ├── STList.tcl │ │ │ ├── SText.tcl │ │ │ ├── SWidget.tcl │ │ │ ├── SWindow.tcl │ │ │ ├── Select.tcl │ │ │ ├── Shell.tcl │ │ │ ├── SimpDlg.tcl │ │ │ ├── StackWin.tcl │ │ │ ├── StatBar.tcl │ │ │ ├── StdBBox.tcl │ │ │ ├── StdShell.tcl │ │ │ ├── TList.tcl │ │ │ ├── Tix.tcl │ │ │ ├── Tree.tcl │ │ │ ├── Utils.tcl │ │ │ ├── VResize.tcl │ │ │ ├── VStack.tcl │ │ │ ├── VTree.tcl │ │ │ ├── Variable.tcl │ │ │ ├── WInfo.tcl │ │ │ ├── bitmaps │ │ │ │ ├── act_fold.gif │ │ │ │ ├── act_fold.xbm │ │ │ │ ├── act_fold.xpm │ │ │ │ ├── balarrow.xbm │ │ │ │ ├── cbxarrow.xbm │ │ │ │ ├── ck_def.xbm │ │ │ │ ├── ck_off.xbm │ │ │ │ ├── ck_on.xbm │ │ │ │ ├── cross.xbm │ │ │ │ ├── decr.xbm │ │ │ │ ├── drop.xbm │ │ │ │ ├── file.gif │ │ │ │ ├── file.xbm │ │ │ │ ├── file.xpm │ │ │ │ ├── folder.gif │ │ │ │ ├── folder.xbm │ │ │ │ ├── folder.xpm │ │ │ │ ├── harddisk.xbm │ │ │ │ ├── hourglas.mask │ │ │ │ ├── hourglas.xbm │ │ │ │ ├── incr.xbm │ │ │ │ ├── info.gif │ │ │ │ ├── info.xpm │ │ │ │ ├── maximize.xbm │ │ │ │ ├── minimize.xbm │ │ │ │ ├── minus.gif │ │ │ │ ├── minus.xbm │ │ │ │ ├── minus.xpm │ │ │ │ ├── minusarm.gif │ │ │ │ ├── minusarm.xbm │ │ │ │ ├── minusarm.xpm │ │ │ │ ├── mktransgif.tcl │ │ │ │ ├── network.xbm │ │ │ │ ├── no_entry.gif │ │ │ │ ├── no_entry.xpm │ │ │ │ ├── openfile.xbm │ │ │ │ ├── openfold.gif │ │ │ │ ├── openfold.xbm │ │ │ │ ├── openfold.xpm │ │ │ │ ├── plus.gif │ │ │ │ ├── plus.xbm │ │ │ │ ├── plus.xpm │ │ │ │ ├── plusarm.gif │ │ │ │ ├── plusarm.xbm │ │ │ │ ├── plusarm.xpm │ │ │ │ ├── resize1.xbm │ │ │ │ ├── resize2.xbm │ │ │ │ ├── restore.xbm │ │ │ │ ├── srcfile.gif │ │ │ │ ├── srcfile.xbm │ │ │ │ ├── srcfile.xpm │ │ │ │ ├── system.xbm │ │ │ │ ├── textfile.gif │ │ │ │ ├── textfile.xbm │ │ │ │ ├── textfile.xpm │ │ │ │ ├── tick.xbm │ │ │ │ ├── warning.gif │ │ │ │ └── warning.xpm │ │ │ ├── demos │ │ │ │ ├── MkChoose.tcl │ │ │ │ ├── MkDirLis.tcl │ │ │ │ ├── MkSample.tcl │ │ │ │ ├── MkScroll.tcl │ │ │ │ ├── bitmaps │ │ │ │ │ ├── about.xpm │ │ │ │ │ ├── bold.xbm │ │ │ │ │ ├── capital.xbm │ │ │ │ │ ├── centerj.xbm │ │ │ │ │ ├── code.xpm │ │ │ │ │ ├── combobox.xbm │ │ │ │ │ ├── combobox.xpm │ │ │ │ │ ├── drivea.xbm │ │ │ │ │ ├── drivea.xpm │ │ │ │ │ ├── exit.xpm │ │ │ │ │ ├── filebox.xbm │ │ │ │ │ ├── filebox.xpm │ │ │ │ │ ├── harddisk.xbm │ │ │ │ │ ├── harddisk.xpm │ │ │ │ │ ├── italic.xbm │ │ │ │ │ ├── justify.xbm │ │ │ │ │ ├── leftj.xbm │ │ │ │ │ ├── netw.xbm │ │ │ │ │ ├── netw.xpm │ │ │ │ │ ├── network.xbm │ │ │ │ │ ├── network.xpm │ │ │ │ │ ├── optmenu.xpm │ │ │ │ │ ├── rightj.xbm │ │ │ │ │ ├── select.xpm │ │ │ │ │ ├── tix.gif │ │ │ │ │ └── underlin.xbm │ │ │ │ ├── samples │ │ │ │ │ ├── AllSampl.tcl │ │ │ │ │ ├── ArrowBtn.tcl │ │ │ │ │ ├── Balloon.tcl │ │ │ │ │ ├── BtnBox.tcl │ │ │ │ │ ├── CObjView.tcl │ │ │ │ │ ├── ChkList.tcl │ │ │ │ │ ├── CmpImg.tcl │ │ │ │ │ ├── CmpImg1.tcl │ │ │ │ │ ├── CmpImg2.tcl │ │ │ │ │ ├── CmpImg3.tcl │ │ │ │ │ ├── CmpImg4.tcl │ │ │ │ │ ├── ComboBox.tcl │ │ │ │ │ ├── Control.tcl │ │ │ │ │ ├── DirDlg.tcl │ │ │ │ │ ├── DirList.tcl │ │ │ │ │ ├── DirTree.tcl │ │ │ │ │ ├── DragDrop.tcl │ │ │ │ │ ├── DynTree.tcl │ │ │ │ │ ├── EFileDlg.tcl │ │ │ │ │ ├── EditGrid.tcl │ │ │ │ │ ├── FileDlg.tcl │ │ │ │ │ ├── FileEnt.tcl │ │ │ │ │ ├── HList1.tcl │ │ │ │ │ ├── LabEntry.tcl │ │ │ │ │ ├── LabFrame.tcl │ │ │ │ │ ├── ListNBK.tcl │ │ │ │ │ ├── Meter.tcl │ │ │ │ │ ├── NoteBook.tcl │ │ │ │ │ ├── OptMenu.tcl │ │ │ │ │ ├── PanedWin.tcl │ │ │ │ │ ├── PopMenu.tcl │ │ │ │ │ ├── SGrid0.tcl │ │ │ │ │ ├── SGrid1.tcl │ │ │ │ │ ├── SHList.tcl │ │ │ │ │ ├── SHList2.tcl │ │ │ │ │ ├── SListBox.tcl │ │ │ │ │ ├── STList1.tcl │ │ │ │ │ ├── STList2.tcl │ │ │ │ │ ├── STList3.tcl │ │ │ │ │ ├── SText.tcl │ │ │ │ │ ├── SWindow.tcl │ │ │ │ │ ├── Sample.tcl │ │ │ │ │ ├── Select.tcl │ │ │ │ │ ├── StdBBox.tcl │ │ │ │ │ ├── Tree.tcl │ │ │ │ │ ├── Xpm.tcl │ │ │ │ │ └── Xpm1.tcl │ │ │ │ ├── tclIndex │ │ │ │ ├── tixwidgets.tcl │ │ │ │ └── widget │ │ │ ├── fs.tcl │ │ │ ├── pkgIndex.tcl │ │ │ ├── pref │ │ │ │ ├── 10Point.fs │ │ │ │ ├── 10Point.fsc │ │ │ │ ├── 12Point.fs │ │ │ │ ├── 12Point.fsc │ │ │ │ ├── 14Point.fs │ │ │ │ ├── 14Point.fsc │ │ │ │ ├── Bisque.cs │ │ │ │ ├── Bisque.csc │ │ │ │ ├── Blue.cs │ │ │ │ ├── Blue.csc │ │ │ │ ├── Gray.cs │ │ │ │ ├── Gray.csc │ │ │ │ ├── Makefile │ │ │ │ ├── Old12Pt.fs │ │ │ │ ├── Old14Pt.fs │ │ │ │ ├── SGIGray.cs │ │ │ │ ├── SGIGray.csc │ │ │ │ ├── TK.cs │ │ │ │ ├── TK.csc │ │ │ │ ├── TK.fs │ │ │ │ ├── TK.fsc │ │ │ │ ├── TixGray.cs │ │ │ │ ├── TixGray.csc │ │ │ │ ├── TkWin.cs │ │ │ │ ├── TkWin.csc │ │ │ │ ├── TkWin.fs │ │ │ │ ├── TkWin.fsc │ │ │ │ ├── WmDefault.cs │ │ │ │ ├── WmDefault.csc │ │ │ │ ├── WmDefault.fs │ │ │ │ ├── WmDefault.fsc │ │ │ │ ├── WmDefault.py │ │ │ │ ├── WmDefault.tcl │ │ │ │ ├── WmDefault.txt │ │ │ │ ├── pkgIndex.tcl │ │ │ │ └── tixmkpref │ │ │ ├── tix84.dll │ │ │ └── tix84.lib │ │ ├── tk8.6 │ │ │ ├── bgerror.tcl │ │ │ ├── button.tcl │ │ │ ├── choosedir.tcl │ │ │ ├── clrpick.tcl │ │ │ ├── comdlg.tcl │ │ │ ├── console.tcl │ │ │ ├── demos │ │ │ │ ├── README │ │ │ │ ├── anilabel.tcl │ │ │ │ ├── aniwave.tcl │ │ │ │ ├── arrow.tcl │ │ │ │ ├── bind.tcl │ │ │ │ ├── bitmap.tcl │ │ │ │ ├── browse │ │ │ │ ├── button.tcl │ │ │ │ ├── check.tcl │ │ │ │ ├── clrpick.tcl │ │ │ │ ├── colors.tcl │ │ │ │ ├── combo.tcl │ │ │ │ ├── cscroll.tcl │ │ │ │ ├── ctext.tcl │ │ │ │ ├── dialog1.tcl │ │ │ │ ├── dialog2.tcl │ │ │ │ ├── en.msg │ │ │ │ ├── entry1.tcl │ │ │ │ ├── entry2.tcl │ │ │ │ ├── entry3.tcl │ │ │ │ ├── filebox.tcl │ │ │ │ ├── floor.tcl │ │ │ │ ├── fontchoose.tcl │ │ │ │ ├── form.tcl │ │ │ │ ├── goldberg.tcl │ │ │ │ ├── hello │ │ │ │ ├── hscale.tcl │ │ │ │ ├── icon.tcl │ │ │ │ ├── image1.tcl │ │ │ │ ├── image2.tcl │ │ │ │ ├── images │ │ │ │ │ ├── earth.gif │ │ │ │ │ ├── earthris.gif │ │ │ │ │ ├── flagdown.xbm │ │ │ │ │ ├── flagup.xbm │ │ │ │ │ ├── gray25.xbm │ │ │ │ │ ├── letters.xbm │ │ │ │ │ ├── noletter.xbm │ │ │ │ │ ├── ouster.png │ │ │ │ │ ├── pattern.xbm │ │ │ │ │ ├── tcllogo.gif │ │ │ │ │ └── teapot.ppm │ │ │ │ ├── items.tcl │ │ │ │ ├── ixset │ │ │ │ ├── knightstour.tcl │ │ │ │ ├── label.tcl │ │ │ │ ├── labelframe.tcl │ │ │ │ ├── license.terms │ │ │ │ ├── mclist.tcl │ │ │ │ ├── menu.tcl │ │ │ │ ├── menubu.tcl │ │ │ │ ├── msgbox.tcl │ │ │ │ ├── nl.msg │ │ │ │ ├── paned1.tcl │ │ │ │ ├── paned2.tcl │ │ │ │ ├── pendulum.tcl │ │ │ │ ├── plot.tcl │ │ │ │ ├── puzzle.tcl │ │ │ │ ├── radio.tcl │ │ │ │ ├── rmt │ │ │ │ ├── rolodex │ │ │ │ ├── ruler.tcl │ │ │ │ ├── sayings.tcl │ │ │ │ ├── search.tcl │ │ │ │ ├── spin.tcl │ │ │ │ ├── square │ │ │ │ ├── states.tcl │ │ │ │ ├── style.tcl │ │ │ │ ├── tclIndex │ │ │ │ ├── tcolor │ │ │ │ ├── text.tcl │ │ │ │ ├── textpeer.tcl │ │ │ │ ├── timer │ │ │ │ ├── toolbar.tcl │ │ │ │ ├── tree.tcl │ │ │ │ ├── ttkbut.tcl │ │ │ │ ├── ttkmenu.tcl │ │ │ │ ├── ttknote.tcl │ │ │ │ ├── ttkpane.tcl │ │ │ │ ├── ttkprogress.tcl │ │ │ │ ├── ttkscale.tcl │ │ │ │ ├── twind.tcl │ │ │ │ ├── unicodeout.tcl │ │ │ │ ├── vscale.tcl │ │ │ │ └── widget │ │ │ ├── dialog.tcl │ │ │ ├── entry.tcl │ │ │ ├── focus.tcl │ │ │ ├── fontchooser.tcl │ │ │ ├── iconlist.tcl │ │ │ ├── icons.tcl │ │ │ ├── images │ │ │ │ ├── README │ │ │ │ ├── lamp.png │ │ │ │ ├── lamp.svg │ │ │ │ ├── logo.eps │ │ │ │ ├── logo100.gif │ │ │ │ ├── logo64.gif │ │ │ │ ├── logoLarge.gif │ │ │ │ ├── logoMed.gif │ │ │ │ ├── pwrdLogo.eps │ │ │ │ ├── pwrdLogo100.gif │ │ │ │ ├── pwrdLogo150.gif │ │ │ │ ├── pwrdLogo175.gif │ │ │ │ ├── pwrdLogo200.gif │ │ │ │ ├── pwrdLogo75.gif │ │ │ │ └── tai-ku.gif │ │ │ ├── license.terms │ │ │ ├── listbox.tcl │ │ │ ├── megawidget.tcl │ │ │ ├── menu.tcl │ │ │ ├── mkpsenc.tcl │ │ │ ├── msgbox.tcl │ │ │ ├── msgs │ │ │ │ ├── cs.msg │ │ │ │ ├── da.msg │ │ │ │ ├── de.msg │ │ │ │ ├── el.msg │ │ │ │ ├── en.msg │ │ │ │ ├── en_gb.msg │ │ │ │ ├── eo.msg │ │ │ │ ├── es.msg │ │ │ │ ├── fr.msg │ │ │ │ ├── hu.msg │ │ │ │ ├── it.msg │ │ │ │ ├── nl.msg │ │ │ │ ├── pl.msg │ │ │ │ ├── pt.msg │ │ │ │ ├── ru.msg │ │ │ │ └── sv.msg │ │ │ ├── obsolete.tcl │ │ │ ├── optMenu.tcl │ │ │ ├── palette.tcl │ │ │ ├── panedwindow.tcl │ │ │ ├── pkgIndex.tcl │ │ │ ├── safetk.tcl │ │ │ ├── scale.tcl │ │ │ ├── scrlbar.tcl │ │ │ ├── spinbox.tcl │ │ │ ├── tclIndex │ │ │ ├── tearoff.tcl │ │ │ ├── text.tcl │ │ │ ├── tk.tcl │ │ │ ├── tkfbox.tcl │ │ │ ├── ttk │ │ │ │ ├── altTheme.tcl │ │ │ │ ├── aquaTheme.tcl │ │ │ │ ├── button.tcl │ │ │ │ ├── clamTheme.tcl │ │ │ │ ├── classicTheme.tcl │ │ │ │ ├── combobox.tcl │ │ │ │ ├── cursors.tcl │ │ │ │ ├── defaults.tcl │ │ │ │ ├── entry.tcl │ │ │ │ ├── fonts.tcl │ │ │ │ ├── menubutton.tcl │ │ │ │ ├── notebook.tcl │ │ │ │ ├── panedwindow.tcl │ │ │ │ ├── progress.tcl │ │ │ │ ├── scale.tcl │ │ │ │ ├── scrollbar.tcl │ │ │ │ ├── sizegrip.tcl │ │ │ │ ├── spinbox.tcl │ │ │ │ ├── treeview.tcl │ │ │ │ ├── ttk.tcl │ │ │ │ ├── utils.tcl │ │ │ │ ├── vistaTheme.tcl │ │ │ │ ├── winTheme.tcl │ │ │ │ └── xpTheme.tcl │ │ │ ├── unsupported.tcl │ │ │ └── xmfbox.tcl │ │ ├── tk86t.lib │ │ └── tkstub86.lib │ ├── tcl86t.dll │ ├── tk86t.dll │ ├── turtletest.exe │ └── unicodedata.pyd ├── email.png ├── firstTry.py ├── log.log ├── logme.txt ├── pillow.py ├── secondTry.py ├── somemodule.py ├── stuff.py ├── text ├── thirdTry.py └── turtletest.py ├── README.md ├── React ├── App.css ├── App.js ├── App.test.js ├── index.css ├── index.js ├── logo.svg ├── serviceWorker.js └── setupTests.js ├── Rust ├── first ├── first.rs ├── second ├── second.rs ├── third.rs ├── tmp09cvax ├── tmp0g8lpp ├── tmp0gphk0 ├── tmp0mu513 ├── tmp0tzjif ├── tmp0ylnsz ├── tmp0yymvk ├── tmp10xyiy ├── tmp1ca3c5 ├── tmp1e1922 ├── tmp1ikczl ├── tmp1ikwma ├── tmp1ku167 ├── tmp1xbwbk ├── tmp21idjz ├── tmp23m3ki ├── tmp24he_6 ├── tmp24j571 ├── tmp2mbbgs ├── tmp2nuoaw ├── tmp2tp92l ├── tmp2x0jr8 ├── tmp2xrh0d ├── tmp34p8ax ├── tmp368d61 ├── tmp3dnhjj ├── tmp3eewm0 ├── tmp3i538z ├── tmp3js2k4 ├── tmp3lefun ├── tmp3n4_ht ├── tmp3ojp6a ├── tmp3v_n9o ├── tmp3yj3vx ├── tmp40ajmh ├── tmp42q7xl ├── tmp45934w ├── tmp465wyu ├── tmp4_027d ├── tmp4_ucj2 ├── tmp4dtgn6 ├── tmp4erpy4 ├── tmp4gs1z1 ├── tmp4if2r4 ├── tmp4jzrr2 ├── tmp4kto7t ├── tmp4pgqv5 ├── tmp4qn3ch ├── tmp4x2mwr ├── tmp4ysbjc ├── tmp533ibb ├── tmp55nom1 ├── tmp582yyw ├── tmp5gbn35 ├── tmp5ket5t ├── tmp5kfitb ├── tmp5suw9d ├── tmp5v33sp ├── tmp601zsn ├── tmp60aozf ├── tmp63akzk ├── tmp67zdqn ├── tmp6__1sl ├── tmp6a_5wo ├── tmp6fwecm ├── tmp6mmyg5 ├── tmp6q2d4f ├── tmp6y7ibv ├── tmp71spbi ├── tmp75d9ps ├── tmp78kk2g ├── tmp78yhbl ├── tmp7asz1e ├── tmp7bcsjh ├── tmp7cu9ec ├── tmp7ecno1 ├── tmp7gj_2c ├── tmp7izhh8 ├── tmp7qhrls ├── tmp7s5n1h ├── tmp7uawui ├── tmp7vqig2 ├── tmp808kzo ├── tmp8298b7 ├── tmp85h59l ├── tmp87ni7q ├── tmp8czfvz ├── tmp8ptgyy ├── tmp8qi75p ├── tmp8s0xe4 ├── tmp8z4fmm ├── tmp92h0am ├── tmp92leer ├── tmp94otxo ├── tmp96glsv ├── tmp997zn0 ├── tmp9_br3k ├── tmp9ejeem ├── tmp9fxzft ├── tmp9gpnsk ├── tmp__nyd3 ├── tmp__qjq5 ├── tmp_dkq3k ├── tmp_m8das ├── tmp_mpelc ├── tmp_r3jf9 ├── tmp_sjoc0 ├── tmp_ssmfl ├── tmpa0nr6o ├── tmpa1rh1c ├── tmpa3n8_q ├── tmpa7bong ├── tmpa7g8rr ├── tmpa81b26 ├── tmpa89eys ├── tmpac9485 ├── tmpaf6sul ├── tmpafsrhs ├── tmpaj5zj2 ├── tmpalxsyb ├── tmpamqp4z ├── tmpayl4nn ├── tmpaz32fr ├── tmpb8vjhr ├── tmpb_raq8 ├── tmpbbxlgz ├── tmpbkczmi ├── tmpblpz6h ├── tmpbmioe3 ├── tmpbnba53 ├── tmpbnmt6y ├── tmpbp00z9 ├── tmpbz73x0 ├── tmpc41dfl ├── tmpc8byvj ├── tmpc9wza2 ├── tmpc_ff6r ├── tmpcf9sn0 ├── tmpcgs1qc ├── tmpchzjuv ├── tmpclvajn ├── tmpcmbu6l ├── tmpcp1tcu ├── tmpd1x14f ├── tmpd43ugq ├── tmpd5dzk8 ├── tmpd9xavk ├── tmpdaml8h ├── tmpdfh37w ├── tmpdfyywt ├── tmpdgt6az ├── tmpdhni0n ├── tmpdkf1po ├── tmpdktusl ├── tmpdsy442 ├── tmpdt1psq ├── tmpdupwt0 ├── tmpdv1tea ├── tmpdvv3l3 ├── tmpdwwbx2 ├── tmpdy2m0r ├── tmpdzfsrz ├── tmpe5pwgn ├── tmpe_33mj ├── tmpe_70t6 ├── tmpebyk2u ├── tmpev44kv ├── tmpez55pp ├── tmpf310qo ├── tmpf5_o63 ├── tmpf5a_cp ├── tmpf5dk12 ├── tmpf9o964 ├── tmpf_gshc ├── tmpfa3x7j ├── tmpfg5u6u ├── tmpfgkr96 ├── tmpfm9tqr ├── tmpfmqajv ├── tmpfpuon6 ├── tmpfqby_t ├── tmpfqiyvn ├── tmpfu0fkb ├── tmpfuhif4 ├── tmpfun8h0 ├── tmpfxl99i ├── tmpfxq6bd ├── tmpfy4b5g ├── tmpgezhug ├── tmpghcxj5 ├── tmpgheby9 ├── tmpgm36aq ├── tmpgqz96t ├── tmpgruwiq ├── tmpgtzui0 ├── tmpgyn4yl ├── tmpgznb5q ├── tmph_gb7a ├── tmpheyi8u ├── tmphfuv87 ├── tmphgoqij ├── tmphhzijo ├── tmphq0_lo ├── tmphxw_8b ├── tmpi24dpp ├── tmpi4m7cg ├── tmpi_jtab ├── tmpiabefb ├── tmpib3gg8 ├── tmpigf1xp ├── tmpik8kmm ├── tmpio3k6_ ├── tmpiolfve ├── tmpit4vbo ├── tmpiwiwky ├── tmpiyetg0 ├── tmpj21rli ├── tmpj48l8b ├── tmpj4xwg6 ├── tmpj8e8p9 ├── tmpj9lfdk ├── tmpjarotu ├── tmpjcknwb ├── tmpjguxvp ├── tmpjnlrem ├── tmpjqxx5c ├── tmpjx7u64 ├── tmpjxl7uu ├── tmpk3d2tp ├── tmpk7he0k ├── tmpkdizy7 ├── tmpkdl52_ ├── tmpkdsdd_ ├── tmpkjlno2 ├── tmpkk_qxz ├── tmpkuk3lc ├── tmpkwwonp ├── tmpkyt8ch ├── tmpl7yop1 ├── tmpl_a1ov ├── tmpld55c4 ├── tmple0mz0 ├── tmplisjr5 ├── tmplkl8l4 ├── tmplm7xfy ├── tmplt45ya ├── tmpltaz63 ├── tmplvkqfx ├── tmplws0o7 ├── tmplxynh_ ├── tmpm0v26g ├── tmpm55u17 ├── tmpm7_m3o ├── tmpmcgwop ├── tmpml6scj ├── tmpmmt31h ├── tmpmn046c ├── tmpmomub4 ├── tmpmv6m73 ├── tmpmvmij0 ├── tmpmw6cne ├── tmpmxyyuq ├── tmpmytrdu ├── tmpmz5dx8 ├── tmpn1o5vk ├── tmpn2su38 ├── tmpn3cchs ├── tmpn8bhe3 ├── tmpn9_y44 ├── tmpn_2vsf ├── tmpngt5_e ├── tmpnk9q6n ├── tmpnl_rsg ├── tmpns8zfs ├── tmpnsjqwo ├── tmpnt9odg ├── tmpnu4_at ├── tmpnvqdww ├── tmpnyfdfm ├── tmpo03buc ├── tmpo35hy1 ├── tmpod7_p1 ├── tmpod7zin ├── tmpofodmw ├── tmpoioxzv ├── tmpois5zn ├── tmporkrk5 ├── tmpot1si7 ├── tmpotdfye ├── tmpovctmy ├── tmpovg279 ├── tmpow1ztf ├── tmpoyb5fy ├── tmpozhn5l ├── tmpozvkbm ├── tmpp0nygm ├── tmpp3e376 ├── tmpp9paqc ├── tmpp_c2yb ├── tmpp_hnsq ├── tmppfhbak ├── tmppgq75q ├── tmpphtcwm ├── tmppi5k83 ├── tmppj5y_c ├── tmppjrnzs ├── tmppl5603 ├── tmppocqyb ├── tmppq6hw9 ├── tmppundwc ├── tmppzde5y ├── tmpq9_8s1 ├── tmpqeis0h ├── tmpqewp2v ├── tmpqh3ie6 ├── tmpqlmpki ├── tmpqmpm3b ├── tmpqsn4e_ ├── tmpqsnuoy ├── tmpquhigt ├── tmpquk9uu ├── tmpqvr0l1 ├── tmpr3smzd ├── tmpr5c0xa ├── tmpr5dn90 ├── tmpre5txb ├── tmprfvye_ ├── tmprfyzkk ├── tmprnmqmh ├── tmprsrj60 ├── tmprv4i4l ├── tmpryd3do ├── tmprzgejs ├── tmps0y3la ├── tmps4v6ij ├── tmps70ezo ├── tmpscsd_s ├── tmpsjmlfd ├── tmpslmyo1 ├── tmpspkpcw ├── tmpt518wt ├── tmpt6bhjf ├── tmptaig3w ├── tmptf7z62 ├── tmptjran7 ├── tmptmd9gw ├── tmptra_rr ├── tmptsqzgf ├── tmptw0vnw ├── tmptwvsdt ├── tmpu0fsqs ├── tmpu5cpn8 ├── tmpue48bb ├── tmpuhqofp ├── tmpulsd9e ├── tmpum6g82 ├── tmpuozkc9 ├── tmpuu4gz_ ├── tmpuwez86 ├── tmpuxts8b ├── tmpuzjln4 ├── tmpv6z4er ├── tmpvcifg6 ├── tmpvh04z9 ├── tmpvi175s ├── tmpvl19jx ├── tmpvnnod4 ├── tmpvq9maa ├── tmpvv2y3q ├── tmpvyzcxa ├── tmpw72pyl ├── tmpw_myb4 ├── tmpw_wrwg ├── tmpwdn3rf ├── tmpwdtaxa ├── tmpwldz76 ├── tmpwmh_fi ├── tmpwnefl5 ├── tmpwnysle ├── tmpwof7vn ├── tmpwsgwnq ├── tmpwx05po ├── tmpwzve7q ├── tmpx7xlxw ├── tmpxiij_c ├── tmpxiop6k ├── tmpxoml7k ├── tmpxsjehy ├── tmpxwdx0x ├── tmpy2nj03 ├── tmpy7jaii ├── tmpya5xe7 ├── tmpydxjoa ├── tmpyg2jvp ├── tmpyjia2j ├── tmpytdq1h ├── tmpz13rmc ├── tmpz2zrmc ├── tmpzf101r ├── tmpzig26d ├── tmpzku2ep ├── tmpzogbko ├── tmpzouixd ├── tmpzphrq2 ├── tmpzpwc57 └── tmpzst5u5 ├── cracking └── msoffice.docx └── libGDX ├── .gitignore ├── android ├── AndroidManifest.xml ├── assets │ ├── badlogic.jpg │ └── data │ │ ├── Schwert.mp3 │ │ ├── Warrior Skeleton Animations │ │ ├── All Parts │ │ │ ├── Thumbs.db │ │ │ ├── arm 2 l.png │ │ │ ├── arm 2 r.png │ │ │ ├── arm l.png │ │ │ ├── arm r.png │ │ │ ├── arm with shield.png │ │ │ ├── back shoulder r.png │ │ │ ├── body.png │ │ │ ├── boot l.png │ │ │ ├── boot r.png │ │ │ ├── hand l.png │ │ │ ├── hand r.png │ │ │ ├── hand with sword.png │ │ │ ├── head dead.png │ │ │ ├── head.png │ │ │ ├── helmet.png │ │ │ ├── led 2 l.png │ │ │ ├── led 2 r.png │ │ │ ├── led l.png │ │ │ ├── led r.png │ │ │ ├── shield.png │ │ │ ├── shoulder l.png │ │ │ ├── shoulder r.png │ │ │ └── sword.png │ │ ├── Attack 1 │ │ │ ├── Separate Sp │ │ │ │ ├── Thumbs.db │ │ │ │ ├── attack (1).png │ │ │ │ ├── attack (10).png │ │ │ │ ├── attack (2).png │ │ │ │ ├── attack (3).png │ │ │ │ ├── attack (4).png │ │ │ │ ├── attack (5).png │ │ │ │ ├── attack (6).png │ │ │ │ ├── attack (7).png │ │ │ │ ├── attack (8).png │ │ │ │ └── attack (9).png │ │ │ ├── Thumbs.db │ │ │ └── attack.png │ │ ├── Attack 2 │ │ │ ├── Separate Sp │ │ │ │ ├── Thumbs.db │ │ │ │ ├── attack_2 (1).png │ │ │ │ ├── attack_2 (10).png │ │ │ │ ├── attack_2 (2).png │ │ │ │ ├── attack_2 (3).png │ │ │ │ ├── attack_2 (4).png │ │ │ │ ├── attack_2 (5).png │ │ │ │ ├── attack_2 (6).png │ │ │ │ ├── attack_2 (7).png │ │ │ │ ├── attack_2 (8).png │ │ │ │ └── attack_2 (9).png │ │ │ ├── Thumbs.db │ │ │ └── attack_2.png │ │ ├── Dead │ │ │ ├── Separate Sp │ │ │ │ ├── Thumbs.db │ │ │ │ ├── dead (1).png │ │ │ │ ├── dead (2).png │ │ │ │ ├── dead (3).png │ │ │ │ ├── dead (4).png │ │ │ │ ├── dead (5).png │ │ │ │ ├── dead (6).png │ │ │ │ ├── dead (7).png │ │ │ │ ├── dead (8).png │ │ │ │ └── dead (9).png │ │ │ ├── Thumbs.db │ │ │ └── dead.png │ │ ├── Defense │ │ │ ├── Separate Sp │ │ │ │ ├── Thumbs.db │ │ │ │ ├── defense (1).png │ │ │ │ ├── defense (10).png │ │ │ │ ├── defense (2).png │ │ │ │ ├── defense (3).png │ │ │ │ ├── defense (4).png │ │ │ │ ├── defense (5).png │ │ │ │ ├── defense (6).png │ │ │ │ ├── defense (7).png │ │ │ │ ├── defense (8).png │ │ │ │ └── defense (9).png │ │ │ ├── Thumbs.db │ │ │ └── defense.png │ │ ├── Thumbs.db │ │ └── Walking │ │ │ ├── Separate Sp │ │ │ ├── Thumbs.db │ │ │ ├── walk (1).png │ │ │ ├── walk (10).png │ │ │ ├── walk (2).png │ │ │ ├── walk (3).png │ │ │ ├── walk (4).png │ │ │ ├── walk (5).png │ │ │ ├── walk (6).png │ │ │ ├── walk (7).png │ │ │ ├── walk (8).png │ │ │ └── walk (9).png │ │ │ ├── Thumbs.db │ │ │ └── walk.png │ │ ├── default.fnt │ │ ├── default.png │ │ ├── particle.p │ │ ├── particle.png │ │ ├── uiskin.atlas │ │ ├── uiskin.json │ │ └── uiskin.png ├── build.gradle ├── ic_launcher-web.png ├── libs │ ├── arm64-v8a │ │ ├── libgdx-box2d.so │ │ └── libgdx.so │ └── x86_64 │ │ ├── libgdx-box2d.so │ │ └── libgdx.so ├── proguard-project.txt ├── project.properties ├── res │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ └── values │ │ ├── strings.xml │ │ └── styles.xml └── src │ └── com │ └── mygdx │ └── game │ └── AndroidLauncher.java ├── build.gradle ├── core ├── build.gradle └── src │ ├── MyGdxGame.gwt.xml │ └── com │ └── mygdx │ └── game │ ├── AbstractScreen.java │ ├── GameScreen.java │ ├── MenuScreen.java │ ├── MyGdxGame.java │ └── Relicts.java ├── data ├── Warrior Skeleton Animations │ ├── All Parts │ │ ├── Thumbs.db │ │ ├── arm 2 l.png │ │ ├── arm 2 r.png │ │ ├── arm l.png │ │ ├── arm r.png │ │ ├── arm with shield.png │ │ ├── back shoulder r.png │ │ ├── body.png │ │ ├── boot l.png │ │ ├── boot r.png │ │ ├── hand l.png │ │ ├── hand r.png │ │ ├── hand with sword.png │ │ ├── head dead.png │ │ ├── head.png │ │ ├── helmet.png │ │ ├── led 2 l.png │ │ ├── led 2 r.png │ │ ├── led l.png │ │ ├── led r.png │ │ ├── shield.png │ │ ├── shoulder l.png │ │ ├── shoulder r.png │ │ └── sword.png │ ├── Attack 1 │ │ ├── Separate Sp │ │ │ ├── Thumbs.db │ │ │ ├── attack (1).png │ │ │ ├── attack (10).png │ │ │ ├── attack (2).png │ │ │ ├── attack (3).png │ │ │ ├── attack (4).png │ │ │ ├── attack (5).png │ │ │ ├── attack (6).png │ │ │ ├── attack (7).png │ │ │ ├── attack (8).png │ │ │ └── attack (9).png │ │ ├── Thumbs.db │ │ └── attack.png │ ├── Attack 2 │ │ ├── Separate Sp │ │ │ ├── Thumbs.db │ │ │ ├── attack_2 (1).png │ │ │ ├── attack_2 (10).png │ │ │ ├── attack_2 (2).png │ │ │ ├── attack_2 (3).png │ │ │ ├── attack_2 (4).png │ │ │ ├── attack_2 (5).png │ │ │ ├── attack_2 (6).png │ │ │ ├── attack_2 (7).png │ │ │ ├── attack_2 (8).png │ │ │ └── attack_2 (9).png │ │ ├── Thumbs.db │ │ └── attack_2.png │ ├── Dead │ │ ├── Separate Sp │ │ │ ├── Thumbs.db │ │ │ ├── dead (1).png │ │ │ ├── dead (2).png │ │ │ ├── dead (3).png │ │ │ ├── dead (4).png │ │ │ ├── dead (5).png │ │ │ ├── dead (6).png │ │ │ ├── dead (7).png │ │ │ ├── dead (8).png │ │ │ └── dead (9).png │ │ ├── Thumbs.db │ │ └── dead.png │ ├── Defense │ │ ├── Separate Sp │ │ │ ├── Thumbs.db │ │ │ ├── defense (1).png │ │ │ ├── defense (10).png │ │ │ ├── defense (2).png │ │ │ ├── defense (3).png │ │ │ ├── defense (4).png │ │ │ ├── defense (5).png │ │ │ ├── defense (6).png │ │ │ ├── defense (7).png │ │ │ ├── defense (8).png │ │ │ └── defense (9).png │ │ ├── Thumbs.db │ │ └── defense.png │ ├── Thumbs.db │ └── Walking │ │ ├── Separate Sp │ │ ├── Thumbs.db │ │ ├── walk (1).png │ │ ├── walk (10).png │ │ ├── walk (2).png │ │ ├── walk (3).png │ │ ├── walk (4).png │ │ ├── walk (5).png │ │ ├── walk (6).png │ │ ├── walk (7).png │ │ ├── walk (8).png │ │ └── walk (9).png │ │ ├── Thumbs.db │ │ └── walk.png ├── dirt.png └── screenshot.png ├── desktop ├── build.gradle └── src │ └── com │ └── mygdx │ └── game │ └── desktop │ └── DesktopLauncher.java ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── html ├── build.gradle ├── src │ └── com │ │ └── mygdx │ │ └── game │ │ ├── GdxDefinition.gwt.xml │ │ ├── GdxDefinitionSuperdev.gwt.xml │ │ └── client │ │ └── HtmlLauncher.java └── webapp │ ├── WEB-INF │ └── web.xml │ ├── index.html │ ├── refresh.png │ ├── soundmanager2-jsmin.js │ ├── soundmanager2-setup.js │ └── styles.css ├── ios ├── Info.plist.xml ├── build.gradle ├── data │ ├── Default-375w-667h@2x.png │ ├── Default-414w-736h@3x.png │ ├── Default-568h@2x.png │ ├── Default.png │ ├── Default@2x.png │ ├── Default@2x~ipad.png │ ├── Default~ipad.png │ ├── Icon-72.png │ ├── Icon-72@2x.png │ ├── Icon.png │ └── Icon@2x.png ├── robovm.properties ├── robovm.xml └── src │ └── com │ └── mygdx │ └── game │ └── IOSLauncher.java └── settings.gradle /Android/AppLauncher/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Android/AppLauncher/.gitignore -------------------------------------------------------------------------------- /Android/AppLauncher/.idea/.name: -------------------------------------------------------------------------------- 1 | AppLauncher -------------------------------------------------------------------------------- /Android/AppLauncher/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Android/AppLauncher/.idea/misc.xml -------------------------------------------------------------------------------- /Android/AppLauncher/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Android/AppLauncher/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Android/AppLauncher/build.gradle -------------------------------------------------------------------------------- /Android/AppLauncher/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Android/AppLauncher/gradlew -------------------------------------------------------------------------------- /Android/AppLauncher/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Android/AppLauncher/gradlew.bat -------------------------------------------------------------------------------- /Android/AppLauncher/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Android/Camera/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Android/Camera/.gitignore -------------------------------------------------------------------------------- /Android/Camera/.idea/.name: -------------------------------------------------------------------------------- 1 | Camera -------------------------------------------------------------------------------- /Android/Camera/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Android/Camera/.idea/compiler.xml -------------------------------------------------------------------------------- /Android/Camera/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Android/Camera/.idea/encodings.xml -------------------------------------------------------------------------------- /Android/Camera/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Android/Camera/.idea/gradle.xml -------------------------------------------------------------------------------- /Android/Camera/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Android/Camera/.idea/misc.xml -------------------------------------------------------------------------------- /Android/Camera/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Android/Camera/.idea/modules.xml -------------------------------------------------------------------------------- /Android/Camera/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Android/Camera/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Android/Camera/app/build.gradle -------------------------------------------------------------------------------- /Android/Camera/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Android/Camera/build.gradle -------------------------------------------------------------------------------- /Android/Camera/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Android/Camera/gradle.properties -------------------------------------------------------------------------------- /Android/Camera/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Android/Camera/gradlew -------------------------------------------------------------------------------- /Android/Camera/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Android/Camera/gradlew.bat -------------------------------------------------------------------------------- /Android/Camera/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Android/DragNDrop/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Android/DragNDrop/.gitignore -------------------------------------------------------------------------------- /Android/DragNDrop/.idea/.name: -------------------------------------------------------------------------------- 1 | DragNDrop -------------------------------------------------------------------------------- /Android/DragNDrop/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Android/DragNDrop/.idea/gradle.xml -------------------------------------------------------------------------------- /Android/DragNDrop/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Android/DragNDrop/.idea/misc.xml -------------------------------------------------------------------------------- /Android/DragNDrop/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Android/DragNDrop/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Android/DragNDrop/app/build.gradle -------------------------------------------------------------------------------- /Android/DragNDrop/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Android/DragNDrop/build.gradle -------------------------------------------------------------------------------- /Android/DragNDrop/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Android/DragNDrop/gradlew -------------------------------------------------------------------------------- /Android/DragNDrop/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Android/DragNDrop/gradlew.bat -------------------------------------------------------------------------------- /Android/DragNDrop/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Android/FloatingButton/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Android/FloatingButton/.gitignore -------------------------------------------------------------------------------- /Android/FloatingButton/.idea/.name: -------------------------------------------------------------------------------- 1 | Floating Button -------------------------------------------------------------------------------- /Android/FloatingButton/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Android/FloatingButton/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Android/FloatingButton/gradlew -------------------------------------------------------------------------------- /Android/FloatingButton/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Android/FloatingButton/gradlew.bat -------------------------------------------------------------------------------- /Android/FloatingButton/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Android/FloatingButtonsAndRecyclerViews/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Android/FloatingButtonsAndRecyclerViews/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Android/GridDragDrop/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Android/GridDragDrop/.gitignore -------------------------------------------------------------------------------- /Android/GridDragDrop/.idea/.name: -------------------------------------------------------------------------------- 1 | GridDragDrop -------------------------------------------------------------------------------- /Android/GridDragDrop/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Android/GridDragDrop/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Android/GridDragDrop/build.gradle -------------------------------------------------------------------------------- /Android/GridDragDrop/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Android/GridDragDrop/gradlew -------------------------------------------------------------------------------- /Android/GridDragDrop/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Android/GridDragDrop/gradlew.bat -------------------------------------------------------------------------------- /Android/GridDragDrop/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Android/MyApplication/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Android/MyApplication/.gitignore -------------------------------------------------------------------------------- /Android/MyApplication/.idea/.name: -------------------------------------------------------------------------------- 1 | My Application -------------------------------------------------------------------------------- /Android/MyApplication/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Android/MyApplication/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Android/MyApplication/build.gradle -------------------------------------------------------------------------------- /Android/MyApplication/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Android/MyApplication/gradlew -------------------------------------------------------------------------------- /Android/MyApplication/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Android/MyApplication/gradlew.bat -------------------------------------------------------------------------------- /Android/MyApplication/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Android/MyApplication2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Android/MyApplication2/.gitignore -------------------------------------------------------------------------------- /Android/MyApplication2/.idea/.name: -------------------------------------------------------------------------------- 1 | My Application -------------------------------------------------------------------------------- /Android/MyApplication2/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Android/MyApplication2/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Android/MyApplication2/gradlew -------------------------------------------------------------------------------- /Android/MyApplication2/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Android/MyApplication2/gradlew.bat -------------------------------------------------------------------------------- /Android/MyApplication2/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Android/Networking/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Android/Networking/.gitignore -------------------------------------------------------------------------------- /Android/Networking/.idea/.name: -------------------------------------------------------------------------------- 1 | Networking -------------------------------------------------------------------------------- /Android/Networking/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Android/Networking/.idea/misc.xml -------------------------------------------------------------------------------- /Android/Networking/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Android/Networking/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Android/Networking/build.gradle -------------------------------------------------------------------------------- /Android/Networking/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Android/Networking/gradlew -------------------------------------------------------------------------------- /Android/Networking/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Android/Networking/gradlew.bat -------------------------------------------------------------------------------- /Android/Networking/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Android/NotificationService/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Android/NotificationService/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Android/RechteabfrageAPI23/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Android/RechteabfrageAPI23/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Android/RechteabfrageAPI23/gradlew -------------------------------------------------------------------------------- /Android/RechteabfrageAPI23/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Android/Tabz/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Android/Tabz/.gitignore -------------------------------------------------------------------------------- /Android/Tabz/.idea/.name: -------------------------------------------------------------------------------- 1 | Tabz -------------------------------------------------------------------------------- /Android/Tabz/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Android/Tabz/.idea/compiler.xml -------------------------------------------------------------------------------- /Android/Tabz/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Android/Tabz/.idea/encodings.xml -------------------------------------------------------------------------------- /Android/Tabz/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Android/Tabz/.idea/gradle.xml -------------------------------------------------------------------------------- /Android/Tabz/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Android/Tabz/.idea/misc.xml -------------------------------------------------------------------------------- /Android/Tabz/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Android/Tabz/.idea/modules.xml -------------------------------------------------------------------------------- /Android/Tabz/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Android/Tabz/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Android/Tabz/app/build.gradle -------------------------------------------------------------------------------- /Android/Tabz/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Android/Tabz/build.gradle -------------------------------------------------------------------------------- /Android/Tabz/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Android/Tabz/gradle.properties -------------------------------------------------------------------------------- /Android/Tabz/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Android/Tabz/gradlew -------------------------------------------------------------------------------- /Android/Tabz/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Android/Tabz/gradlew.bat -------------------------------------------------------------------------------- /Android/Tabz/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Bash/KlickMichIchBinEineFee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Bash/KlickMichIchBinEineFee -------------------------------------------------------------------------------- /C/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/C/a.out -------------------------------------------------------------------------------- /C/compiling_error.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/C/compiling_error.txt -------------------------------------------------------------------------------- /C/datei.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/C/datei.c -------------------------------------------------------------------------------- /C/datei.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/C/datei.h -------------------------------------------------------------------------------- /C/first.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/C/first.c -------------------------------------------------------------------------------- /C/first.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/C/first.txt -------------------------------------------------------------------------------- /C/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/C/out -------------------------------------------------------------------------------- /C/wrapup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/C/wrapup.c -------------------------------------------------------------------------------- /Cpp/Vektor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Cpp/Vektor.cpp -------------------------------------------------------------------------------- /Cpp/Vektor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Cpp/Vektor.h -------------------------------------------------------------------------------- /Cpp/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Cpp/a.out -------------------------------------------------------------------------------- /Cpp/compiling_error.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Cpp/compiling_error.txt -------------------------------------------------------------------------------- /Cpp/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Cpp/main -------------------------------------------------------------------------------- /Cpp/multithreading.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Cpp/multithreading.cpp -------------------------------------------------------------------------------- /Cpp/myfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Cpp/myfile.cpp -------------------------------------------------------------------------------- /Flask/RestplusAPI/api/myapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Flask/RestplusAPI/api/myapi.py -------------------------------------------------------------------------------- /Flask/RestplusAPI/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Flask/RestplusAPI/app.py -------------------------------------------------------------------------------- /Flask/RestplusAPI/database/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Flask/RestplusAPI/database/db.py -------------------------------------------------------------------------------- /Flask/RestplusAPI/database/dtos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Flask/RestplusAPI/database/dtos.py -------------------------------------------------------------------------------- /Flask/RestplusAPI/db.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Flask/RestplusAPI/db.sqlite -------------------------------------------------------------------------------- /Flask/RestplusAPI/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Flask/RestplusAPI/settings.py -------------------------------------------------------------------------------- /Flask/flask_jwt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Flask/flask_jwt.py -------------------------------------------------------------------------------- /HTML/.idea/HTML.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/HTML/.idea/HTML.iml -------------------------------------------------------------------------------- /HTML/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/HTML/.idea/misc.xml -------------------------------------------------------------------------------- /HTML/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/HTML/.idea/modules.xml -------------------------------------------------------------------------------- /HTML/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/HTML/.idea/workspace.xml -------------------------------------------------------------------------------- /HTML/HTML.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/HTML/HTML.jpg -------------------------------------------------------------------------------- /HTML/MO-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/HTML/MO-logo.png -------------------------------------------------------------------------------- /HTML/Site.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/HTML/Site.html -------------------------------------------------------------------------------- /HTML/Site.html~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/HTML/Site.html~ -------------------------------------------------------------------------------- /HTML/Site2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/HTML/Site2.html -------------------------------------------------------------------------------- /HTML/Site2.html~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/HTML/Site2.html~ -------------------------------------------------------------------------------- /HTML/Site3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/HTML/Site3.html -------------------------------------------------------------------------------- /HTML/Site3.html~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/HTML/Site3.html~ -------------------------------------------------------------------------------- /HTML/Ubuntu-R.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/HTML/Ubuntu-R.ttf -------------------------------------------------------------------------------- /HTML/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/HTML/scripts.js -------------------------------------------------------------------------------- /HTML/scripts.js~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/HTML/scripts.js~ -------------------------------------------------------------------------------- /HTML/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/HTML/style.css -------------------------------------------------------------------------------- /HTML/style.css~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/HTML/style.css~ -------------------------------------------------------------------------------- /HTML/style3.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/HTML/style3.css -------------------------------------------------------------------------------- /HTML/style3.css~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/HTML/style3.css~ -------------------------------------------------------------------------------- /HTML/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/HTML/styles.css -------------------------------------------------------------------------------- /HTML/styles.css~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/HTML/styles.css~ -------------------------------------------------------------------------------- /JavaTuts/Automat/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Automat/.classpath -------------------------------------------------------------------------------- /JavaTuts/Automat/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Automat/.project -------------------------------------------------------------------------------- /JavaTuts/Automat/bin/Automat.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Automat/bin/Automat.class -------------------------------------------------------------------------------- /JavaTuts/Automat/bin/Main.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Automat/bin/Main.class -------------------------------------------------------------------------------- /JavaTuts/Automat/bin/Zustand.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Automat/bin/Zustand.class -------------------------------------------------------------------------------- /JavaTuts/Automat/src/Automat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Automat/src/Automat.java -------------------------------------------------------------------------------- /JavaTuts/Automat/src/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Automat/src/Main.java -------------------------------------------------------------------------------- /JavaTuts/Automat/src/Zustand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Automat/src/Zustand.java -------------------------------------------------------------------------------- /JavaTuts/Bildbearbeitung/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Bildbearbeitung/.project -------------------------------------------------------------------------------- /JavaTuts/Bildbearbeitung/Poro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Bildbearbeitung/Poro.png -------------------------------------------------------------------------------- /JavaTuts/Bäume/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Bäume/.classpath -------------------------------------------------------------------------------- /JavaTuts/Bäume/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Bäume/.project -------------------------------------------------------------------------------- /JavaTuts/Bäume/bin/Node.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Bäume/bin/Node.class -------------------------------------------------------------------------------- /JavaTuts/Bäume/bin/Tree.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Bäume/bin/Tree.class -------------------------------------------------------------------------------- /JavaTuts/Bäume/src/Node.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Bäume/src/Node.java -------------------------------------------------------------------------------- /JavaTuts/Bäume/src/Tree.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Bäume/src/Tree.java -------------------------------------------------------------------------------- /JavaTuts/Caesar/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Caesar/.classpath -------------------------------------------------------------------------------- /JavaTuts/Caesar/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Caesar/.project -------------------------------------------------------------------------------- /JavaTuts/Caesar/bin/Main.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Caesar/bin/Main.class -------------------------------------------------------------------------------- /JavaTuts/Caesar/src/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Caesar/src/Main.java -------------------------------------------------------------------------------- /JavaTuts/Datei/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Datei/.classpath -------------------------------------------------------------------------------- /JavaTuts/Datei/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Datei/.project -------------------------------------------------------------------------------- /JavaTuts/Datei/bin/Main.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Datei/bin/Main.class -------------------------------------------------------------------------------- /JavaTuts/Datei/soundso.txt: -------------------------------------------------------------------------------- 1 | ich bin eine Datei 2 | -------------------------------------------------------------------------------- /JavaTuts/Datei/src/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Datei/src/Main.java -------------------------------------------------------------------------------- /JavaTuts/Datenhaltung.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Datenhaltung.properties -------------------------------------------------------------------------------- /JavaTuts/Datenhaltung.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Datenhaltung.script -------------------------------------------------------------------------------- /JavaTuts/Datenhaltung/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Datenhaltung/.classpath -------------------------------------------------------------------------------- /JavaTuts/Datenhaltung/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Datenhaltung/.project -------------------------------------------------------------------------------- /JavaTuts/Datenhaltung/home/simon/trash/hsql.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /JavaTuts/DebuggingUndComments/doc/package-list: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /JavaTuts/EdgeDetector/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/EdgeDetector/.classpath -------------------------------------------------------------------------------- /JavaTuts/EdgeDetector/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/EdgeDetector/.project -------------------------------------------------------------------------------- /JavaTuts/EdgeDetector/Output.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/EdgeDetector/Output.jpg -------------------------------------------------------------------------------- /JavaTuts/Encoding/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Encoding/.classpath -------------------------------------------------------------------------------- /JavaTuts/Encoding/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Encoding/.project -------------------------------------------------------------------------------- /JavaTuts/Encoding/bin/Main.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Encoding/bin/Main.class -------------------------------------------------------------------------------- /JavaTuts/Encoding/src/Encoder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Encoding/src/Encoder.java -------------------------------------------------------------------------------- /JavaTuts/Encoding/src/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Encoding/src/Main.java -------------------------------------------------------------------------------- /JavaTuts/Encoding/src/Wrapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Encoding/src/Wrapper.java -------------------------------------------------------------------------------- /JavaTuts/Enums/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Enums/.classpath -------------------------------------------------------------------------------- /JavaTuts/Enums/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Enums/.project -------------------------------------------------------------------------------- /JavaTuts/Enums/bin/Main.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Enums/bin/Main.class -------------------------------------------------------------------------------- /JavaTuts/Enums/src/Difficulty.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Enums/src/Difficulty.java -------------------------------------------------------------------------------- /JavaTuts/Enums/src/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Enums/src/Main.java -------------------------------------------------------------------------------- /JavaTuts/Exceptions/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Exceptions/.classpath -------------------------------------------------------------------------------- /JavaTuts/Exceptions/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Exceptions/.project -------------------------------------------------------------------------------- /JavaTuts/Exceptions/bin/Main.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Exceptions/bin/Main.class -------------------------------------------------------------------------------- /JavaTuts/Exceptions/src/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Exceptions/src/Main.java -------------------------------------------------------------------------------- /JavaTuts/Fifo/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Fifo/.classpath -------------------------------------------------------------------------------- /JavaTuts/Fifo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Fifo/.project -------------------------------------------------------------------------------- /JavaTuts/Fifo/bin/Element.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Fifo/bin/Element.class -------------------------------------------------------------------------------- /JavaTuts/Fifo/bin/Fifo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Fifo/bin/Fifo.class -------------------------------------------------------------------------------- /JavaTuts/Fifo/bin/Main.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Fifo/bin/Main.class -------------------------------------------------------------------------------- /JavaTuts/Fifo/src/Element.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Fifo/src/Element.java -------------------------------------------------------------------------------- /JavaTuts/Fifo/src/Fifo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Fifo/src/Fifo.java -------------------------------------------------------------------------------- /JavaTuts/Fifo/src/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Fifo/src/Main.java -------------------------------------------------------------------------------- /JavaTuts/Generics/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Generics/.classpath -------------------------------------------------------------------------------- /JavaTuts/Generics/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Generics/.project -------------------------------------------------------------------------------- /JavaTuts/Generics/bin/Gen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Generics/bin/Gen.class -------------------------------------------------------------------------------- /JavaTuts/Generics/bin/Sub.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Generics/bin/Sub.class -------------------------------------------------------------------------------- /JavaTuts/Generics/bin/Sub2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Generics/bin/Sub2.class -------------------------------------------------------------------------------- /JavaTuts/Generics/bin/Super.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Generics/bin/Super.class -------------------------------------------------------------------------------- /JavaTuts/Generics/bin/Super2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Generics/bin/Super2.class -------------------------------------------------------------------------------- /JavaTuts/Generics/src/Gen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Generics/src/Gen.java -------------------------------------------------------------------------------- /JavaTuts/Generics/src/Sub.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Generics/src/Sub.java -------------------------------------------------------------------------------- /JavaTuts/Generics/src/Sub2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Generics/src/Sub2.java -------------------------------------------------------------------------------- /JavaTuts/Generics/src/Super.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Generics/src/Super.java -------------------------------------------------------------------------------- /JavaTuts/Generics/src/Super2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Generics/src/Super2.java -------------------------------------------------------------------------------- /JavaTuts/Graphen/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Graphen/.classpath -------------------------------------------------------------------------------- /JavaTuts/Graphen/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Graphen/.project -------------------------------------------------------------------------------- /JavaTuts/Graphen/bin/Graph.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Graphen/bin/Graph.class -------------------------------------------------------------------------------- /JavaTuts/Graphen/bin/Kante.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Graphen/bin/Kante.class -------------------------------------------------------------------------------- /JavaTuts/Graphen/bin/Main.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Graphen/bin/Main.class -------------------------------------------------------------------------------- /JavaTuts/Graphen/src/Graph.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Graphen/src/Graph.java -------------------------------------------------------------------------------- /JavaTuts/Graphen/src/Kante.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Graphen/src/Kante.java -------------------------------------------------------------------------------- /JavaTuts/Graphen/src/Main.java: -------------------------------------------------------------------------------- 1 | 2 | public class Main { 3 | 4 | } 5 | -------------------------------------------------------------------------------- /JavaTuts/HelloWorld/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/HelloWorld/.classpath -------------------------------------------------------------------------------- /JavaTuts/HelloWorld/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/HelloWorld/.project -------------------------------------------------------------------------------- /JavaTuts/HelloWorld/bin/List.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/HelloWorld/bin/List.class -------------------------------------------------------------------------------- /JavaTuts/HelloWorld/src/List.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/HelloWorld/src/List.java -------------------------------------------------------------------------------- /JavaTuts/JavaWrapUp/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/JavaWrapUp/.classpath -------------------------------------------------------------------------------- /JavaTuts/JavaWrapUp/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/JavaWrapUp/.project -------------------------------------------------------------------------------- /JavaTuts/JavaWrapUp/bin/Hund.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/JavaWrapUp/bin/Hund.class -------------------------------------------------------------------------------- /JavaTuts/JavaWrapUp/bin/Main.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/JavaWrapUp/bin/Main.class -------------------------------------------------------------------------------- /JavaTuts/JavaWrapUp/bin/Tier.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/JavaWrapUp/bin/Tier.class -------------------------------------------------------------------------------- /JavaTuts/JavaWrapUp/src/Hund.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/JavaWrapUp/src/Hund.java -------------------------------------------------------------------------------- /JavaTuts/JavaWrapUp/src/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/JavaWrapUp/src/Main.java -------------------------------------------------------------------------------- /JavaTuts/JavaWrapUp/src/Tier.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/JavaWrapUp/src/Tier.java -------------------------------------------------------------------------------- /JavaTuts/KNN/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/KNN/.classpath -------------------------------------------------------------------------------- /JavaTuts/KNN/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/KNN/.project -------------------------------------------------------------------------------- /JavaTuts/KNN/bin/DataObject.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/KNN/bin/DataObject.class -------------------------------------------------------------------------------- /JavaTuts/KNN/bin/Main.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/KNN/bin/Main.class -------------------------------------------------------------------------------- /JavaTuts/KNN/src/DataObject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/KNN/src/DataObject.java -------------------------------------------------------------------------------- /JavaTuts/KNN/src/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/KNN/src/Main.java -------------------------------------------------------------------------------- /JavaTuts/Labyrinth/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Labyrinth/.classpath -------------------------------------------------------------------------------- /JavaTuts/Labyrinth/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Labyrinth/.project -------------------------------------------------------------------------------- /JavaTuts/Labyrinth/saved.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Labyrinth/saved.png -------------------------------------------------------------------------------- /JavaTuts/Logs/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Logs/.classpath -------------------------------------------------------------------------------- /JavaTuts/Logs/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Logs/.project -------------------------------------------------------------------------------- /JavaTuts/Logs/Log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Logs/Log.txt -------------------------------------------------------------------------------- /JavaTuts/Logs/bin/LogMain$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Logs/bin/LogMain$1.class -------------------------------------------------------------------------------- /JavaTuts/Logs/bin/LogMain.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Logs/bin/LogMain.class -------------------------------------------------------------------------------- /JavaTuts/Logs/src/LogMain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Logs/src/LogMain.java -------------------------------------------------------------------------------- /JavaTuts/MarkovModell/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/MarkovModell/.classpath -------------------------------------------------------------------------------- /JavaTuts/MarkovModell/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/MarkovModell/.project -------------------------------------------------------------------------------- /JavaTuts/MiniServer/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/MiniServer/.classpath -------------------------------------------------------------------------------- /JavaTuts/MiniServer/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/MiniServer/.project -------------------------------------------------------------------------------- /JavaTuts/Multithreading/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Multithreading/.classpath -------------------------------------------------------------------------------- /JavaTuts/Multithreading/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Multithreading/.project -------------------------------------------------------------------------------- /JavaTuts/Multithreading2/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Multithreading2/.project -------------------------------------------------------------------------------- /JavaTuts/NeurnalesNetz/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/NeurnalesNetz/.classpath -------------------------------------------------------------------------------- /JavaTuts/NeurnalesNetz/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/NeurnalesNetz/.project -------------------------------------------------------------------------------- /JavaTuts/PacMan/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/PacMan/.classpath -------------------------------------------------------------------------------- /JavaTuts/PacMan/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/PacMan/.project -------------------------------------------------------------------------------- /JavaTuts/PacMan/Dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/PacMan/Dot.png -------------------------------------------------------------------------------- /JavaTuts/PacMan/bin/Board.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/PacMan/bin/Board.class -------------------------------------------------------------------------------- /JavaTuts/PacMan/bin/Moving.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/PacMan/bin/Moving.class -------------------------------------------------------------------------------- /JavaTuts/PacMan/bin/Pacman$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/PacMan/bin/Pacman$1.class -------------------------------------------------------------------------------- /JavaTuts/PacMan/bin/Pacman.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/PacMan/bin/Pacman.class -------------------------------------------------------------------------------- /JavaTuts/PacMan/chompersprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/PacMan/chompersprites.png -------------------------------------------------------------------------------- /JavaTuts/PacMan/src/Board.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/PacMan/src/Board.java -------------------------------------------------------------------------------- /JavaTuts/PacMan/src/Moving.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/PacMan/src/Moving.java -------------------------------------------------------------------------------- /JavaTuts/PacMan/src/Pacman.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/PacMan/src/Pacman.java -------------------------------------------------------------------------------- /JavaTuts/Parzen Windows/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Parzen Windows/.classpath -------------------------------------------------------------------------------- /JavaTuts/Parzen Windows/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Parzen Windows/.project -------------------------------------------------------------------------------- /JavaTuts/Printing/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Printing/.classpath -------------------------------------------------------------------------------- /JavaTuts/Printing/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Printing/.project -------------------------------------------------------------------------------- /JavaTuts/Printing/bin/Main.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Printing/bin/Main.class -------------------------------------------------------------------------------- /JavaTuts/Printing/src/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Printing/src/Main.java -------------------------------------------------------------------------------- /JavaTuts/Quantisierer/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Quantisierer/.classpath -------------------------------------------------------------------------------- /JavaTuts/Quantisierer/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Quantisierer/.project -------------------------------------------------------------------------------- /JavaTuts/RSA/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/RSA/.classpath -------------------------------------------------------------------------------- /JavaTuts/RSA/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/RSA/.project -------------------------------------------------------------------------------- /JavaTuts/RSA/bin/Main.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/RSA/bin/Main.class -------------------------------------------------------------------------------- /JavaTuts/RSA/src/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/RSA/src/Main.java -------------------------------------------------------------------------------- /JavaTuts/RayTracer/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/RayTracer/.classpath -------------------------------------------------------------------------------- /JavaTuts/RayTracer/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/RayTracer/.project -------------------------------------------------------------------------------- /JavaTuts/RayTracer/bin/Light.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/RayTracer/bin/Light.class -------------------------------------------------------------------------------- /JavaTuts/RayTracer/bin/Ray.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/RayTracer/bin/Ray.class -------------------------------------------------------------------------------- /JavaTuts/RayTracer/bin/Scene.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/RayTracer/bin/Scene.class -------------------------------------------------------------------------------- /JavaTuts/RayTracer/bin/Util.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/RayTracer/bin/Util.class -------------------------------------------------------------------------------- /JavaTuts/RayTracer/src/Camera.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/RayTracer/src/Camera.java -------------------------------------------------------------------------------- /JavaTuts/RayTracer/src/Light.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/RayTracer/src/Light.java -------------------------------------------------------------------------------- /JavaTuts/RayTracer/src/Output.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/RayTracer/src/Output.java -------------------------------------------------------------------------------- /JavaTuts/RayTracer/src/Ray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/RayTracer/src/Ray.java -------------------------------------------------------------------------------- /JavaTuts/RayTracer/src/Scene.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/RayTracer/src/Scene.java -------------------------------------------------------------------------------- /JavaTuts/RayTracer/src/Sphere.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/RayTracer/src/Sphere.java -------------------------------------------------------------------------------- /JavaTuts/RayTracer/src/Util.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/RayTracer/src/Util.java -------------------------------------------------------------------------------- /JavaTuts/Reflection/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Reflection/.classpath -------------------------------------------------------------------------------- /JavaTuts/Reflection/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Reflection/.project -------------------------------------------------------------------------------- /JavaTuts/Reflection/bin/Main.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Reflection/bin/Main.class -------------------------------------------------------------------------------- /JavaTuts/Reflection/src/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Reflection/src/Main.java -------------------------------------------------------------------------------- /JavaTuts/Snake/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Snake/.classpath -------------------------------------------------------------------------------- /JavaTuts/Snake/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Snake/.project -------------------------------------------------------------------------------- /JavaTuts/Snake/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Snake/Thumbs.db -------------------------------------------------------------------------------- /JavaTuts/Snake/apple-big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Snake/apple-big.jpg -------------------------------------------------------------------------------- /JavaTuts/Snake/apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Snake/apple.png -------------------------------------------------------------------------------- /JavaTuts/Snake/bin/Game.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Snake/bin/Game.class -------------------------------------------------------------------------------- /JavaTuts/Snake/bin/Snake$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Snake/bin/Snake$1.class -------------------------------------------------------------------------------- /JavaTuts/Snake/bin/Snake.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Snake/bin/Snake.class -------------------------------------------------------------------------------- /JavaTuts/Snake/head-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Snake/head-big.png -------------------------------------------------------------------------------- /JavaTuts/Snake/head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Snake/head.png -------------------------------------------------------------------------------- /JavaTuts/Snake/src/Game.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Snake/src/Game.java -------------------------------------------------------------------------------- /JavaTuts/Snake/src/Snake.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Snake/src/Snake.java -------------------------------------------------------------------------------- /JavaTuts/Snake/tail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Snake/tail.png -------------------------------------------------------------------------------- /JavaTuts/Sortieren/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Sortieren/.classpath -------------------------------------------------------------------------------- /JavaTuts/Sortieren/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Sortieren/.project -------------------------------------------------------------------------------- /JavaTuts/Sortieren/bin/Sort.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Sortieren/bin/Sort.class -------------------------------------------------------------------------------- /JavaTuts/Sortieren/src/Sort.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Sortieren/src/Sort.java -------------------------------------------------------------------------------- /JavaTuts/Swing/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Swing/.classpath -------------------------------------------------------------------------------- /JavaTuts/Swing/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Swing/.project -------------------------------------------------------------------------------- /JavaTuts/Swing/bin/Main$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Swing/bin/Main$1.class -------------------------------------------------------------------------------- /JavaTuts/Swing/bin/Main$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Swing/bin/Main$2.class -------------------------------------------------------------------------------- /JavaTuts/Swing/bin/Main$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Swing/bin/Main$3.class -------------------------------------------------------------------------------- /JavaTuts/Swing/bin/Main$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Swing/bin/Main$4.class -------------------------------------------------------------------------------- /JavaTuts/Swing/bin/Main$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Swing/bin/Main$5.class -------------------------------------------------------------------------------- /JavaTuts/Swing/bin/Main$6.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Swing/bin/Main$6.class -------------------------------------------------------------------------------- /JavaTuts/Swing/bin/Main.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Swing/bin/Main.class -------------------------------------------------------------------------------- /JavaTuts/Swing/src/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Swing/src/Main.java -------------------------------------------------------------------------------- /JavaTuts/Test/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Test/.classpath -------------------------------------------------------------------------------- /JavaTuts/Test/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Test/.project -------------------------------------------------------------------------------- /JavaTuts/Test/bin/Main$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Test/bin/Main$1.class -------------------------------------------------------------------------------- /JavaTuts/Test/bin/Main$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Test/bin/Main$2.class -------------------------------------------------------------------------------- /JavaTuts/Test/bin/Main$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Test/bin/Main$3.class -------------------------------------------------------------------------------- /JavaTuts/Test/bin/Main.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Test/bin/Main.class -------------------------------------------------------------------------------- /JavaTuts/Test/src/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Test/src/Main.java -------------------------------------------------------------------------------- /JavaTuts/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Thumbs.db -------------------------------------------------------------------------------- /JavaTuts/Time/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Time/.classpath -------------------------------------------------------------------------------- /JavaTuts/Time/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Time/.project -------------------------------------------------------------------------------- /JavaTuts/Time/bin/Time.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Time/bin/Time.class -------------------------------------------------------------------------------- /JavaTuts/Time/src/Time.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Time/src/Time.java -------------------------------------------------------------------------------- /JavaTuts/Timer/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Timer/.classpath -------------------------------------------------------------------------------- /JavaTuts/Timer/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Timer/.project -------------------------------------------------------------------------------- /JavaTuts/Timer/bin/Time$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Timer/bin/Time$1.class -------------------------------------------------------------------------------- /JavaTuts/Timer/bin/Time.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Timer/bin/Time.class -------------------------------------------------------------------------------- /JavaTuts/Timer/src/Time.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Timer/src/Time.java -------------------------------------------------------------------------------- /JavaTuts/YoutubeCrawler/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/YoutubeCrawler/.classpath -------------------------------------------------------------------------------- /JavaTuts/YoutubeCrawler/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/YoutubeCrawler/.project -------------------------------------------------------------------------------- /JavaTuts/YoutubePlayer/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/YoutubePlayer/.classpath -------------------------------------------------------------------------------- /JavaTuts/YoutubePlayer/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/YoutubePlayer/.project -------------------------------------------------------------------------------- /JavaTuts/YoutubeViewer/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/YoutubeViewer/.classpath -------------------------------------------------------------------------------- /JavaTuts/YoutubeViewer/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/YoutubeViewer/.project -------------------------------------------------------------------------------- /JavaTuts/Zwischenablage/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Zwischenablage/.classpath -------------------------------------------------------------------------------- /JavaTuts/Zwischenablage/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/JavaTuts/Zwischenablage/.project -------------------------------------------------------------------------------- /Kotlin/HelloWorld/data/data.txt: -------------------------------------------------------------------------------- 1 | irgendwas 2 | in der 3 | Datei! 4 | blubb____:.öüäß 5 | -------------------------------------------------------------------------------- /Kotlin/HelloWorld/src/Bonus.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Kotlin/HelloWorld/src/Bonus.kt -------------------------------------------------------------------------------- /Kotlin/HelloWorld/src/Circle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Kotlin/HelloWorld/src/Circle.kt -------------------------------------------------------------------------------- /Kotlin/HelloWorld/src/Computer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Kotlin/HelloWorld/src/Computer.kt -------------------------------------------------------------------------------- /Kotlin/HelloWorld/src/Files.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Kotlin/HelloWorld/src/Files.kt -------------------------------------------------------------------------------- /Kotlin/HelloWorld/src/Lambda.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Kotlin/HelloWorld/src/Lambda.kt -------------------------------------------------------------------------------- /Kotlin/HelloWorld/src/Scoping.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Kotlin/HelloWorld/src/Scoping.kt -------------------------------------------------------------------------------- /Kotlin/HelloWorld/src/String.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Kotlin/HelloWorld/src/String.kt -------------------------------------------------------------------------------- /Kotlin/HelloWorld/src/Time.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Kotlin/HelloWorld/src/Time.kt -------------------------------------------------------------------------------- /Kotlin/HelloWorld/src/klassen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Kotlin/HelloWorld/src/klassen.kt -------------------------------------------------------------------------------- /Kotlin/HelloWorld/src/main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Kotlin/HelloWorld/src/main.kt -------------------------------------------------------------------------------- /Kotlin/HelloWorld/src/rekursion.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Kotlin/HelloWorld/src/rekursion.kt -------------------------------------------------------------------------------- /Kotlin/HelloWorld/test/test.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Kotlin/HelloWorld/test/test.kt -------------------------------------------------------------------------------- /Kotlin/Interop/Interop.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Kotlin/Interop/Interop.iml -------------------------------------------------------------------------------- /Kotlin/Interop/src/Jav.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Kotlin/Interop/src/Jav.java -------------------------------------------------------------------------------- /Kotlin/Interop/src/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Kotlin/Interop/src/Main.java -------------------------------------------------------------------------------- /Kotlin/Interop/src/kot.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Kotlin/Interop/src/kot.kt -------------------------------------------------------------------------------- /Kotlin/JVM Kotlin/JVM Kotlin.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Kotlin/JVM Kotlin/JVM Kotlin.iml -------------------------------------------------------------------------------- /Kotlin/JVM Kotlin/src/HTTP.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Kotlin/JVM Kotlin/src/HTTP.kt -------------------------------------------------------------------------------- /Kotlin/JVM Kotlin/src/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Kotlin/JVM Kotlin/src/Main.kt -------------------------------------------------------------------------------- /Kotlin/JVM Kotlin/src/Soup.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Kotlin/JVM Kotlin/src/Soup.kt -------------------------------------------------------------------------------- /Kotlin/JVM Kotlin/src/enums.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Kotlin/JVM Kotlin/src/enums.kt -------------------------------------------------------------------------------- /Kotlin/JVM Kotlin/src/singleton.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Kotlin/JVM Kotlin/src/singleton.kt -------------------------------------------------------------------------------- /Kotlin/JVM Kotlin/src/varargs.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Kotlin/JVM Kotlin/src/varargs.kt -------------------------------------------------------------------------------- /Kotlin/Modules/src/de/themorpheus/User/User.kt: -------------------------------------------------------------------------------- 1 | class User { 2 | fun die(){ 3 | print("I'm dead") 4 | } 5 | } -------------------------------------------------------------------------------- /Kotlin/Text-adventure/src/Consumable.kt: -------------------------------------------------------------------------------- 1 | interface Consumable : Item { 2 | } -------------------------------------------------------------------------------- /Kotlin/Text-adventure/src/Fight.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Kotlin/Text-adventure/src/Fight.kt -------------------------------------------------------------------------------- /Kotlin/Text-adventure/src/Item.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Kotlin/Text-adventure/src/Item.kt -------------------------------------------------------------------------------- /Kotlin/Text-adventure/src/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Kotlin/Text-adventure/src/Main.kt -------------------------------------------------------------------------------- /Kotlin/Text-adventure/src/NPC.kt: -------------------------------------------------------------------------------- 1 | interface NPC { 2 | } -------------------------------------------------------------------------------- /Kotlin/Text-adventure/src/Ork.kt: -------------------------------------------------------------------------------- 1 | class Ork : IngameCharacter(20, 3) { 2 | } -------------------------------------------------------------------------------- /Kotlin/Text-adventure/src/Wabe.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Kotlin/Text-adventure/src/Wabe.kt -------------------------------------------------------------------------------- /Kotlin/Text-adventure/src/Waffe.kt: -------------------------------------------------------------------------------- 1 | interface Waffe : Item { 2 | } -------------------------------------------------------------------------------- /Python Discord Bots/Music.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python Discord Bots/Music.py -------------------------------------------------------------------------------- /Python Discord Bots/TutorialBot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python Discord Bots/TutorialBot.py -------------------------------------------------------------------------------- /Python Discord Bots/Wichtel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python Discord Bots/Wichtel.py -------------------------------------------------------------------------------- /Python-Algo/dijkstra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python-Algo/dijkstra.py -------------------------------------------------------------------------------- /Python-Algo/graphs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python-Algo/graphs.py -------------------------------------------------------------------------------- /Python-Algo/maze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python-Algo/maze.py -------------------------------------------------------------------------------- /Python/.idea/.name: -------------------------------------------------------------------------------- 1 | Python -------------------------------------------------------------------------------- /Python/.idea/Python.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/.idea/Python.iml -------------------------------------------------------------------------------- /Python/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/.idea/encodings.xml -------------------------------------------------------------------------------- /Python/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/.idea/misc.xml -------------------------------------------------------------------------------- /Python/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/.idea/modules.xml -------------------------------------------------------------------------------- /Python/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/.idea/workspace.xml -------------------------------------------------------------------------------- /Python/AbstractClasses/Hund.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/AbstractClasses/Hund.py -------------------------------------------------------------------------------- /Python/AbstractClasses/Tier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/AbstractClasses/Tier.py -------------------------------------------------------------------------------- /Python/Enum.py: -------------------------------------------------------------------------------- 1 | class Gefahr: 2 | niedrig, mittel, hoch = range(3) 3 | 4 | -------------------------------------------------------------------------------- /Python/Faktorisieren.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/Faktorisieren.py -------------------------------------------------------------------------------- /Python/Grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/Grid.py -------------------------------------------------------------------------------- /Python/MagicMethods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/MagicMethods.py -------------------------------------------------------------------------------- /Python/MyGui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/MyGui.py -------------------------------------------------------------------------------- /Python/Namen: -------------------------------------------------------------------------------- 1 | Hamburg 2 | -------------------------------------------------------------------------------- /Python/Namen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/Namen.txt -------------------------------------------------------------------------------- /Python/Primzahlen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/Primzahlen.py -------------------------------------------------------------------------------- /Python/Python.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/Python.jpg -------------------------------------------------------------------------------- /Python/Python.jpg.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/Python.jpg.zip -------------------------------------------------------------------------------- /Python/Python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/Python.png -------------------------------------------------------------------------------- /Python/Python.thumbnail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/Python.thumbnail -------------------------------------------------------------------------------- /Python/PythonAbklatsch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/PythonAbklatsch.jpg -------------------------------------------------------------------------------- /Python/PythonHacking/AES.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/PythonHacking/AES.py -------------------------------------------------------------------------------- /Python/PythonHacking/Backdoor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/PythonHacking/Backdoor.py -------------------------------------------------------------------------------- /Python/PythonHacking/DDOS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/PythonHacking/DDOS.py -------------------------------------------------------------------------------- /Python/PythonHacking/FormBruteForce.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/PythonHacking/Keylogger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/PythonHacking/Keylogger.py -------------------------------------------------------------------------------- /Python/PythonHacking/Main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/PythonHacking/Main.py -------------------------------------------------------------------------------- /Python/PythonHacking/Python.jpg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/PythonHacking/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/PythonHacking/log.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Stuff2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/Stuff2.py -------------------------------------------------------------------------------- /Python/Temperatur.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/Temperatur.py -------------------------------------------------------------------------------- /Python/Textadventure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/Textadventure.py -------------------------------------------------------------------------------- /Python/TicTacToe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/TicTacToe.py -------------------------------------------------------------------------------- /Python/Vokabeltrainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/Vokabeltrainer.py -------------------------------------------------------------------------------- /Python/Voktrainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/Voktrainer.py -------------------------------------------------------------------------------- /Python/dist/_bz2.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/dist/_bz2.pyd -------------------------------------------------------------------------------- /Python/dist/_ctypes.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/dist/_ctypes.pyd -------------------------------------------------------------------------------- /Python/dist/_hashlib.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/dist/_hashlib.pyd -------------------------------------------------------------------------------- /Python/dist/_lzma.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/dist/_lzma.pyd -------------------------------------------------------------------------------- /Python/dist/_socket.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/dist/_socket.pyd -------------------------------------------------------------------------------- /Python/dist/_ssl.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/dist/_ssl.pyd -------------------------------------------------------------------------------- /Python/dist/_tkinter.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/dist/_tkinter.pyd -------------------------------------------------------------------------------- /Python/dist/pyexpat.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/dist/pyexpat.pyd -------------------------------------------------------------------------------- /Python/dist/python34.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/dist/python34.dll -------------------------------------------------------------------------------- /Python/dist/select.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/dist/select.pyd -------------------------------------------------------------------------------- /Python/dist/tcl/itcl4.0.0/itcl.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/dist/tcl/itcl4.0.0/itcl.tcl -------------------------------------------------------------------------------- /Python/dist/tcl/itclstub40.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/dist/tcl/itclstub40.lib -------------------------------------------------------------------------------- /Python/dist/tcl/tcl8.6/auto.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/dist/tcl/tcl8.6/auto.tcl -------------------------------------------------------------------------------- /Python/dist/tcl/tcl8.6/clock.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/dist/tcl/tcl8.6/clock.tcl -------------------------------------------------------------------------------- /Python/dist/tcl/tcl8.6/history.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/dist/tcl/tcl8.6/history.tcl -------------------------------------------------------------------------------- /Python/dist/tcl/tcl8.6/init.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/dist/tcl/tcl8.6/init.tcl -------------------------------------------------------------------------------- /Python/dist/tcl/tcl8.6/msgs/af.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/dist/tcl/tcl8.6/msgs/af.msg -------------------------------------------------------------------------------- /Python/dist/tcl/tcl8.6/msgs/ar.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/dist/tcl/tcl8.6/msgs/ar.msg -------------------------------------------------------------------------------- /Python/dist/tcl/tcl8.6/msgs/be.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/dist/tcl/tcl8.6/msgs/be.msg -------------------------------------------------------------------------------- /Python/dist/tcl/tcl8.6/msgs/bg.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/dist/tcl/tcl8.6/msgs/bg.msg -------------------------------------------------------------------------------- /Python/dist/tcl/tcl8.6/msgs/bn.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/dist/tcl/tcl8.6/msgs/bn.msg -------------------------------------------------------------------------------- /Python/dist/tcl/tcl8.6/msgs/ca.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/dist/tcl/tcl8.6/msgs/ca.msg -------------------------------------------------------------------------------- /Python/dist/tcl/tcl8.6/msgs/cs.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/dist/tcl/tcl8.6/msgs/cs.msg -------------------------------------------------------------------------------- /Python/dist/tcl/tcl8.6/msgs/da.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/dist/tcl/tcl8.6/msgs/da.msg -------------------------------------------------------------------------------- /Python/dist/tcl/tcl8.6/msgs/de.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/dist/tcl/tcl8.6/msgs/de.msg -------------------------------------------------------------------------------- /Python/dist/tcl/tcl8.6/msgs/el.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/dist/tcl/tcl8.6/msgs/el.msg -------------------------------------------------------------------------------- /Python/dist/tcl/tcl8.6/msgs/eo.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/dist/tcl/tcl8.6/msgs/eo.msg -------------------------------------------------------------------------------- /Python/dist/tcl/tcl8.6/msgs/es.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/dist/tcl/tcl8.6/msgs/es.msg -------------------------------------------------------------------------------- /Python/dist/tcl/tcl8.6/msgs/et.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/dist/tcl/tcl8.6/msgs/et.msg -------------------------------------------------------------------------------- /Python/dist/tcl/tcl8.6/msgs/eu.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/dist/tcl/tcl8.6/msgs/eu.msg -------------------------------------------------------------------------------- /Python/dist/tcl/tcl8.6/msgs/fa.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/dist/tcl/tcl8.6/msgs/fa.msg -------------------------------------------------------------------------------- /Python/dist/tcl/tcl8.6/safe.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/dist/tcl/tcl8.6/safe.tcl -------------------------------------------------------------------------------- /Python/dist/tcl/tcl8.6/tclIndex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/dist/tcl/tcl8.6/tclIndex -------------------------------------------------------------------------------- /Python/dist/tcl/tcl8.6/tm.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/dist/tcl/tcl8.6/tm.tcl -------------------------------------------------------------------------------- /Python/dist/tcl/tcl8.6/word.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/dist/tcl/tcl8.6/word.tcl -------------------------------------------------------------------------------- /Python/dist/tcl/tcl86t.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/dist/tcl/tcl86t.lib -------------------------------------------------------------------------------- /Python/dist/tcl/tclConfig.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/dist/tcl/tclConfig.sh -------------------------------------------------------------------------------- /Python/dist/tcl/tclooConfig.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/dist/tcl/tclooConfig.sh -------------------------------------------------------------------------------- /Python/dist/tcl/tclstub86.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/dist/tcl/tclstub86.lib -------------------------------------------------------------------------------- /Python/dist/tcl/tix8.4.3/fs.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/dist/tcl/tix8.4.3/fs.tcl -------------------------------------------------------------------------------- /Python/dist/tcl/tk8.6/demos/rmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/dist/tcl/tk8.6/demos/rmt -------------------------------------------------------------------------------- /Python/dist/tcl/tk8.6/entry.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/dist/tcl/tk8.6/entry.tcl -------------------------------------------------------------------------------- /Python/dist/tcl/tk8.6/focus.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/dist/tcl/tk8.6/focus.tcl -------------------------------------------------------------------------------- /Python/dist/tcl/tk8.6/icons.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/dist/tcl/tk8.6/icons.tcl -------------------------------------------------------------------------------- /Python/dist/tcl/tk8.6/menu.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/dist/tcl/tk8.6/menu.tcl -------------------------------------------------------------------------------- /Python/dist/tcl/tk8.6/scale.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/dist/tcl/tk8.6/scale.tcl -------------------------------------------------------------------------------- /Python/dist/tcl/tk8.6/tclIndex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/dist/tcl/tk8.6/tclIndex -------------------------------------------------------------------------------- /Python/dist/tcl/tk8.6/text.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/dist/tcl/tk8.6/text.tcl -------------------------------------------------------------------------------- /Python/dist/tcl/tk8.6/tk.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/dist/tcl/tk8.6/tk.tcl -------------------------------------------------------------------------------- /Python/dist/tcl/tk86t.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/dist/tcl/tk86t.lib -------------------------------------------------------------------------------- /Python/dist/tcl/tkstub86.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/dist/tcl/tkstub86.lib -------------------------------------------------------------------------------- /Python/dist/tcl86t.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/dist/tcl86t.dll -------------------------------------------------------------------------------- /Python/dist/tk86t.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/dist/tk86t.dll -------------------------------------------------------------------------------- /Python/dist/turtletest.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/dist/turtletest.exe -------------------------------------------------------------------------------- /Python/dist/unicodedata.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/dist/unicodedata.pyd -------------------------------------------------------------------------------- /Python/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/email.png -------------------------------------------------------------------------------- /Python/firstTry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/firstTry.py -------------------------------------------------------------------------------- /Python/log.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/log.log -------------------------------------------------------------------------------- /Python/logme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/logme.txt -------------------------------------------------------------------------------- /Python/pillow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/pillow.py -------------------------------------------------------------------------------- /Python/secondTry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/secondTry.py -------------------------------------------------------------------------------- /Python/somemodule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/somemodule.py -------------------------------------------------------------------------------- /Python/stuff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/stuff.py -------------------------------------------------------------------------------- /Python/text: -------------------------------------------------------------------------------- 1 | edfrghzjkl 2 | juk4. Zeile -------------------------------------------------------------------------------- /Python/thirdTry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/thirdTry.py -------------------------------------------------------------------------------- /Python/turtletest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Python/turtletest.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/README.md -------------------------------------------------------------------------------- /React/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/React/App.css -------------------------------------------------------------------------------- /React/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/React/App.js -------------------------------------------------------------------------------- /React/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/React/App.test.js -------------------------------------------------------------------------------- /React/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/React/index.css -------------------------------------------------------------------------------- /React/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/React/index.js -------------------------------------------------------------------------------- /React/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/React/logo.svg -------------------------------------------------------------------------------- /React/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/React/serviceWorker.js -------------------------------------------------------------------------------- /React/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/React/setupTests.js -------------------------------------------------------------------------------- /Rust/first: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/first -------------------------------------------------------------------------------- /Rust/first.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/first.rs -------------------------------------------------------------------------------- /Rust/second: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/second -------------------------------------------------------------------------------- /Rust/second.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/second.rs -------------------------------------------------------------------------------- /Rust/third.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rust/tmp09cvax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp09cvax -------------------------------------------------------------------------------- /Rust/tmp0g8lpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp0g8lpp -------------------------------------------------------------------------------- /Rust/tmp0gphk0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp0gphk0 -------------------------------------------------------------------------------- /Rust/tmp0mu513: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp0mu513 -------------------------------------------------------------------------------- /Rust/tmp0tzjif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp0tzjif -------------------------------------------------------------------------------- /Rust/tmp0ylnsz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp0ylnsz -------------------------------------------------------------------------------- /Rust/tmp0yymvk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp0yymvk -------------------------------------------------------------------------------- /Rust/tmp10xyiy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp10xyiy -------------------------------------------------------------------------------- /Rust/tmp1ca3c5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp1ca3c5 -------------------------------------------------------------------------------- /Rust/tmp1e1922: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp1e1922 -------------------------------------------------------------------------------- /Rust/tmp1ikczl: -------------------------------------------------------------------------------- 1 | fn main() { 2 | p; 3 | } -------------------------------------------------------------------------------- /Rust/tmp1ikwma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp1ikwma -------------------------------------------------------------------------------- /Rust/tmp1ku167: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp1ku167 -------------------------------------------------------------------------------- /Rust/tmp1xbwbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp1xbwbk -------------------------------------------------------------------------------- /Rust/tmp21idjz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp21idjz -------------------------------------------------------------------------------- /Rust/tmp23m3ki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp23m3ki -------------------------------------------------------------------------------- /Rust/tmp24he_6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp24he_6 -------------------------------------------------------------------------------- /Rust/tmp24j571: -------------------------------------------------------------------------------- 1 | fn main() { 2 | let v 3 | } -------------------------------------------------------------------------------- /Rust/tmp2mbbgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp2mbbgs -------------------------------------------------------------------------------- /Rust/tmp2nuoaw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp2nuoaw -------------------------------------------------------------------------------- /Rust/tmp2tp92l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp2tp92l -------------------------------------------------------------------------------- /Rust/tmp2x0jr8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp2x0jr8 -------------------------------------------------------------------------------- /Rust/tmp2xrh0d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp2xrh0d -------------------------------------------------------------------------------- /Rust/tmp34p8ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp34p8ax -------------------------------------------------------------------------------- /Rust/tmp368d61: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp368d61 -------------------------------------------------------------------------------- /Rust/tmp3dnhjj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp3dnhjj -------------------------------------------------------------------------------- /Rust/tmp3eewm0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp3eewm0 -------------------------------------------------------------------------------- /Rust/tmp3i538z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp3i538z -------------------------------------------------------------------------------- /Rust/tmp3js2k4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp3js2k4 -------------------------------------------------------------------------------- /Rust/tmp3lefun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp3lefun -------------------------------------------------------------------------------- /Rust/tmp3n4_ht: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp3n4_ht -------------------------------------------------------------------------------- /Rust/tmp3ojp6a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp3ojp6a -------------------------------------------------------------------------------- /Rust/tmp3v_n9o: -------------------------------------------------------------------------------- 1 | fn main() { 2 | println!("Foo");; 3 | } -------------------------------------------------------------------------------- /Rust/tmp3yj3vx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp3yj3vx -------------------------------------------------------------------------------- /Rust/tmp40ajmh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp40ajmh -------------------------------------------------------------------------------- /Rust/tmp42q7xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp42q7xl -------------------------------------------------------------------------------- /Rust/tmp45934w: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp45934w -------------------------------------------------------------------------------- /Rust/tmp465wyu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp465wyu -------------------------------------------------------------------------------- /Rust/tmp4_027d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp4_027d -------------------------------------------------------------------------------- /Rust/tmp4_ucj2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp4_ucj2 -------------------------------------------------------------------------------- /Rust/tmp4dtgn6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp4dtgn6 -------------------------------------------------------------------------------- /Rust/tmp4erpy4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp4erpy4 -------------------------------------------------------------------------------- /Rust/tmp4gs1z1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp4gs1z1 -------------------------------------------------------------------------------- /Rust/tmp4if2r4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp4if2r4 -------------------------------------------------------------------------------- /Rust/tmp4jzrr2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp4jzrr2 -------------------------------------------------------------------------------- /Rust/tmp4kto7t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp4kto7t -------------------------------------------------------------------------------- /Rust/tmp4pgqv5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp4pgqv5 -------------------------------------------------------------------------------- /Rust/tmp4qn3ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp4qn3ch -------------------------------------------------------------------------------- /Rust/tmp4x2mwr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp4x2mwr -------------------------------------------------------------------------------- /Rust/tmp4ysbjc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp4ysbjc -------------------------------------------------------------------------------- /Rust/tmp533ibb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp533ibb -------------------------------------------------------------------------------- /Rust/tmp55nom1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp55nom1 -------------------------------------------------------------------------------- /Rust/tmp582yyw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp582yyw -------------------------------------------------------------------------------- /Rust/tmp5gbn35: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp5gbn35 -------------------------------------------------------------------------------- /Rust/tmp5ket5t: -------------------------------------------------------------------------------- 1 | i -------------------------------------------------------------------------------- /Rust/tmp5kfitb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp5kfitb -------------------------------------------------------------------------------- /Rust/tmp5suw9d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp5suw9d -------------------------------------------------------------------------------- /Rust/tmp5v33sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp5v33sp -------------------------------------------------------------------------------- /Rust/tmp601zsn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp601zsn -------------------------------------------------------------------------------- /Rust/tmp60aozf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp60aozf -------------------------------------------------------------------------------- /Rust/tmp63akzk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp63akzk -------------------------------------------------------------------------------- /Rust/tmp67zdqn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp67zdqn -------------------------------------------------------------------------------- /Rust/tmp6__1sl: -------------------------------------------------------------------------------- 1 | fn main() { 2 | let v = vec 3 | } -------------------------------------------------------------------------------- /Rust/tmp6a_5wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp6a_5wo -------------------------------------------------------------------------------- /Rust/tmp6fwecm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp6fwecm -------------------------------------------------------------------------------- /Rust/tmp6mmyg5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp6mmyg5 -------------------------------------------------------------------------------- /Rust/tmp6q2d4f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp6q2d4f -------------------------------------------------------------------------------- /Rust/tmp6y7ibv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp6y7ibv -------------------------------------------------------------------------------- /Rust/tmp71spbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp71spbi -------------------------------------------------------------------------------- /Rust/tmp75d9ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp75d9ps -------------------------------------------------------------------------------- /Rust/tmp78kk2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp78kk2g -------------------------------------------------------------------------------- /Rust/tmp78yhbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp78yhbl -------------------------------------------------------------------------------- /Rust/tmp7asz1e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp7asz1e -------------------------------------------------------------------------------- /Rust/tmp7bcsjh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp7bcsjh -------------------------------------------------------------------------------- /Rust/tmp7cu9ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp7cu9ec -------------------------------------------------------------------------------- /Rust/tmp7ecno1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp7ecno1 -------------------------------------------------------------------------------- /Rust/tmp7gj_2c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp7gj_2c -------------------------------------------------------------------------------- /Rust/tmp7izhh8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp7izhh8 -------------------------------------------------------------------------------- /Rust/tmp7qhrls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp7qhrls -------------------------------------------------------------------------------- /Rust/tmp7s5n1h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp7s5n1h -------------------------------------------------------------------------------- /Rust/tmp7uawui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp7uawui -------------------------------------------------------------------------------- /Rust/tmp7vqig2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp7vqig2 -------------------------------------------------------------------------------- /Rust/tmp808kzo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp808kzo -------------------------------------------------------------------------------- /Rust/tmp8298b7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp8298b7 -------------------------------------------------------------------------------- /Rust/tmp85h59l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp85h59l -------------------------------------------------------------------------------- /Rust/tmp87ni7q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp87ni7q -------------------------------------------------------------------------------- /Rust/tmp8czfvz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp8czfvz -------------------------------------------------------------------------------- /Rust/tmp8ptgyy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp8ptgyy -------------------------------------------------------------------------------- /Rust/tmp8qi75p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp8qi75p -------------------------------------------------------------------------------- /Rust/tmp8s0xe4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp8s0xe4 -------------------------------------------------------------------------------- /Rust/tmp8z4fmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp8z4fmm -------------------------------------------------------------------------------- /Rust/tmp92h0am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp92h0am -------------------------------------------------------------------------------- /Rust/tmp92leer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp92leer -------------------------------------------------------------------------------- /Rust/tmp94otxo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp94otxo -------------------------------------------------------------------------------- /Rust/tmp96glsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp96glsv -------------------------------------------------------------------------------- /Rust/tmp997zn0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp997zn0 -------------------------------------------------------------------------------- /Rust/tmp9_br3k: -------------------------------------------------------------------------------- 1 | fn main() { 2 | l 3 | } -------------------------------------------------------------------------------- /Rust/tmp9ejeem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp9ejeem -------------------------------------------------------------------------------- /Rust/tmp9fxzft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp9fxzft -------------------------------------------------------------------------------- /Rust/tmp9gpnsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp9gpnsk -------------------------------------------------------------------------------- /Rust/tmp__nyd3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp__nyd3 -------------------------------------------------------------------------------- /Rust/tmp__qjq5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp__qjq5 -------------------------------------------------------------------------------- /Rust/tmp_dkq3k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp_dkq3k -------------------------------------------------------------------------------- /Rust/tmp_m8das: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp_m8das -------------------------------------------------------------------------------- /Rust/tmp_mpelc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp_mpelc -------------------------------------------------------------------------------- /Rust/tmp_r3jf9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp_r3jf9 -------------------------------------------------------------------------------- /Rust/tmp_sjoc0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp_sjoc0 -------------------------------------------------------------------------------- /Rust/tmp_ssmfl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmp_ssmfl -------------------------------------------------------------------------------- /Rust/tmpa0nr6o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpa0nr6o -------------------------------------------------------------------------------- /Rust/tmpa1rh1c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpa1rh1c -------------------------------------------------------------------------------- /Rust/tmpa3n8_q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpa3n8_q -------------------------------------------------------------------------------- /Rust/tmpa7bong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpa7bong -------------------------------------------------------------------------------- /Rust/tmpa7g8rr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpa7g8rr -------------------------------------------------------------------------------- /Rust/tmpa81b26: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpa81b26 -------------------------------------------------------------------------------- /Rust/tmpa89eys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpa89eys -------------------------------------------------------------------------------- /Rust/tmpac9485: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpac9485 -------------------------------------------------------------------------------- /Rust/tmpaf6sul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpaf6sul -------------------------------------------------------------------------------- /Rust/tmpafsrhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpafsrhs -------------------------------------------------------------------------------- /Rust/tmpaj5zj2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpaj5zj2 -------------------------------------------------------------------------------- /Rust/tmpalxsyb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpalxsyb -------------------------------------------------------------------------------- /Rust/tmpamqp4z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpamqp4z -------------------------------------------------------------------------------- /Rust/tmpayl4nn: -------------------------------------------------------------------------------- 1 | da -------------------------------------------------------------------------------- /Rust/tmpaz32fr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpaz32fr -------------------------------------------------------------------------------- /Rust/tmpb8vjhr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpb8vjhr -------------------------------------------------------------------------------- /Rust/tmpb_raq8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpb_raq8 -------------------------------------------------------------------------------- /Rust/tmpbbxlgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpbbxlgz -------------------------------------------------------------------------------- /Rust/tmpbkczmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpbkczmi -------------------------------------------------------------------------------- /Rust/tmpblpz6h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpblpz6h -------------------------------------------------------------------------------- /Rust/tmpbmioe3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpbmioe3 -------------------------------------------------------------------------------- /Rust/tmpbnba53: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpbnba53 -------------------------------------------------------------------------------- /Rust/tmpbnmt6y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpbnmt6y -------------------------------------------------------------------------------- /Rust/tmpbp00z9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpbp00z9 -------------------------------------------------------------------------------- /Rust/tmpbz73x0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpbz73x0 -------------------------------------------------------------------------------- /Rust/tmpc41dfl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpc41dfl -------------------------------------------------------------------------------- /Rust/tmpc8byvj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpc8byvj -------------------------------------------------------------------------------- /Rust/tmpc9wza2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpc9wza2 -------------------------------------------------------------------------------- /Rust/tmpc_ff6r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpc_ff6r -------------------------------------------------------------------------------- /Rust/tmpcf9sn0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpcf9sn0 -------------------------------------------------------------------------------- /Rust/tmpcgs1qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpcgs1qc -------------------------------------------------------------------------------- /Rust/tmpchzjuv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpchzjuv -------------------------------------------------------------------------------- /Rust/tmpclvajn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpclvajn -------------------------------------------------------------------------------- /Rust/tmpcmbu6l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpcmbu6l -------------------------------------------------------------------------------- /Rust/tmpcp1tcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpcp1tcu -------------------------------------------------------------------------------- /Rust/tmpd1x14f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpd1x14f -------------------------------------------------------------------------------- /Rust/tmpd43ugq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpd43ugq -------------------------------------------------------------------------------- /Rust/tmpd5dzk8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpd5dzk8 -------------------------------------------------------------------------------- /Rust/tmpd9xavk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpd9xavk -------------------------------------------------------------------------------- /Rust/tmpdaml8h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpdaml8h -------------------------------------------------------------------------------- /Rust/tmpdfh37w: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpdfh37w -------------------------------------------------------------------------------- /Rust/tmpdfyywt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpdfyywt -------------------------------------------------------------------------------- /Rust/tmpdgt6az: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpdgt6az -------------------------------------------------------------------------------- /Rust/tmpdhni0n: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpdhni0n -------------------------------------------------------------------------------- /Rust/tmpdkf1po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpdkf1po -------------------------------------------------------------------------------- /Rust/tmpdktusl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpdktusl -------------------------------------------------------------------------------- /Rust/tmpdsy442: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpdsy442 -------------------------------------------------------------------------------- /Rust/tmpdt1psq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpdt1psq -------------------------------------------------------------------------------- /Rust/tmpdupwt0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpdupwt0 -------------------------------------------------------------------------------- /Rust/tmpdv1tea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpdv1tea -------------------------------------------------------------------------------- /Rust/tmpdvv3l3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpdvv3l3 -------------------------------------------------------------------------------- /Rust/tmpdwwbx2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpdwwbx2 -------------------------------------------------------------------------------- /Rust/tmpdy2m0r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpdy2m0r -------------------------------------------------------------------------------- /Rust/tmpdzfsrz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpdzfsrz -------------------------------------------------------------------------------- /Rust/tmpe5pwgn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpe5pwgn -------------------------------------------------------------------------------- /Rust/tmpe_33mj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpe_33mj -------------------------------------------------------------------------------- /Rust/tmpe_70t6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpe_70t6 -------------------------------------------------------------------------------- /Rust/tmpebyk2u: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpebyk2u -------------------------------------------------------------------------------- /Rust/tmpev44kv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpev44kv -------------------------------------------------------------------------------- /Rust/tmpez55pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpez55pp -------------------------------------------------------------------------------- /Rust/tmpf310qo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpf310qo -------------------------------------------------------------------------------- /Rust/tmpf5_o63: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpf5_o63 -------------------------------------------------------------------------------- /Rust/tmpf5a_cp: -------------------------------------------------------------------------------- 1 | fn d -------------------------------------------------------------------------------- /Rust/tmpf5dk12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpf5dk12 -------------------------------------------------------------------------------- /Rust/tmpf9o964: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpf9o964 -------------------------------------------------------------------------------- /Rust/tmpf_gshc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpf_gshc -------------------------------------------------------------------------------- /Rust/tmpfa3x7j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpfa3x7j -------------------------------------------------------------------------------- /Rust/tmpfg5u6u: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpfg5u6u -------------------------------------------------------------------------------- /Rust/tmpfgkr96: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpfgkr96 -------------------------------------------------------------------------------- /Rust/tmpfm9tqr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpfm9tqr -------------------------------------------------------------------------------- /Rust/tmpfmqajv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpfmqajv -------------------------------------------------------------------------------- /Rust/tmpfpuon6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpfpuon6 -------------------------------------------------------------------------------- /Rust/tmpfqby_t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpfqby_t -------------------------------------------------------------------------------- /Rust/tmpfqiyvn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpfqiyvn -------------------------------------------------------------------------------- /Rust/tmpfu0fkb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpfu0fkb -------------------------------------------------------------------------------- /Rust/tmpfuhif4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpfuhif4 -------------------------------------------------------------------------------- /Rust/tmpfun8h0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpfun8h0 -------------------------------------------------------------------------------- /Rust/tmpfxl99i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpfxl99i -------------------------------------------------------------------------------- /Rust/tmpfxq6bd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpfxq6bd -------------------------------------------------------------------------------- /Rust/tmpfy4b5g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpfy4b5g -------------------------------------------------------------------------------- /Rust/tmpgezhug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpgezhug -------------------------------------------------------------------------------- /Rust/tmpghcxj5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpghcxj5 -------------------------------------------------------------------------------- /Rust/tmpgheby9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpgheby9 -------------------------------------------------------------------------------- /Rust/tmpgm36aq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpgm36aq -------------------------------------------------------------------------------- /Rust/tmpgqz96t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpgqz96t -------------------------------------------------------------------------------- /Rust/tmpgruwiq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpgruwiq -------------------------------------------------------------------------------- /Rust/tmpgtzui0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpgtzui0 -------------------------------------------------------------------------------- /Rust/tmpgyn4yl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpgyn4yl -------------------------------------------------------------------------------- /Rust/tmpgznb5q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpgznb5q -------------------------------------------------------------------------------- /Rust/tmph_gb7a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmph_gb7a -------------------------------------------------------------------------------- /Rust/tmpheyi8u: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpheyi8u -------------------------------------------------------------------------------- /Rust/tmphfuv87: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmphfuv87 -------------------------------------------------------------------------------- /Rust/tmphgoqij: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmphgoqij -------------------------------------------------------------------------------- /Rust/tmphhzijo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmphhzijo -------------------------------------------------------------------------------- /Rust/tmphq0_lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmphq0_lo -------------------------------------------------------------------------------- /Rust/tmphxw_8b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmphxw_8b -------------------------------------------------------------------------------- /Rust/tmpi24dpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpi24dpp -------------------------------------------------------------------------------- /Rust/tmpi4m7cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpi4m7cg -------------------------------------------------------------------------------- /Rust/tmpi_jtab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpi_jtab -------------------------------------------------------------------------------- /Rust/tmpiabefb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpiabefb -------------------------------------------------------------------------------- /Rust/tmpib3gg8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpib3gg8 -------------------------------------------------------------------------------- /Rust/tmpigf1xp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpigf1xp -------------------------------------------------------------------------------- /Rust/tmpik8kmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpik8kmm -------------------------------------------------------------------------------- /Rust/tmpio3k6_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpio3k6_ -------------------------------------------------------------------------------- /Rust/tmpiolfve: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpiolfve -------------------------------------------------------------------------------- /Rust/tmpit4vbo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpit4vbo -------------------------------------------------------------------------------- /Rust/tmpiwiwky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpiwiwky -------------------------------------------------------------------------------- /Rust/tmpiyetg0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpiyetg0 -------------------------------------------------------------------------------- /Rust/tmpj21rli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpj21rli -------------------------------------------------------------------------------- /Rust/tmpj48l8b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpj48l8b -------------------------------------------------------------------------------- /Rust/tmpj4xwg6: -------------------------------------------------------------------------------- 1 | fn de -------------------------------------------------------------------------------- /Rust/tmpj8e8p9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpj8e8p9 -------------------------------------------------------------------------------- /Rust/tmpj9lfdk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpj9lfdk -------------------------------------------------------------------------------- /Rust/tmpjarotu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpjarotu -------------------------------------------------------------------------------- /Rust/tmpjcknwb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpjcknwb -------------------------------------------------------------------------------- /Rust/tmpjguxvp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpjguxvp -------------------------------------------------------------------------------- /Rust/tmpjnlrem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpjnlrem -------------------------------------------------------------------------------- /Rust/tmpjqxx5c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpjqxx5c -------------------------------------------------------------------------------- /Rust/tmpjx7u64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpjx7u64 -------------------------------------------------------------------------------- /Rust/tmpjxl7uu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpjxl7uu -------------------------------------------------------------------------------- /Rust/tmpk3d2tp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpk3d2tp -------------------------------------------------------------------------------- /Rust/tmpk7he0k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpk7he0k -------------------------------------------------------------------------------- /Rust/tmpkdizy7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpkdizy7 -------------------------------------------------------------------------------- /Rust/tmpkdl52_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpkdl52_ -------------------------------------------------------------------------------- /Rust/tmpkdsdd_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpkdsdd_ -------------------------------------------------------------------------------- /Rust/tmpkjlno2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpkjlno2 -------------------------------------------------------------------------------- /Rust/tmpkk_qxz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpkk_qxz -------------------------------------------------------------------------------- /Rust/tmpkuk3lc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpkuk3lc -------------------------------------------------------------------------------- /Rust/tmpkwwonp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpkwwonp -------------------------------------------------------------------------------- /Rust/tmpkyt8ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpkyt8ch -------------------------------------------------------------------------------- /Rust/tmpl7yop1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpl7yop1 -------------------------------------------------------------------------------- /Rust/tmpl_a1ov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpl_a1ov -------------------------------------------------------------------------------- /Rust/tmpld55c4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpld55c4 -------------------------------------------------------------------------------- /Rust/tmple0mz0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmple0mz0 -------------------------------------------------------------------------------- /Rust/tmplisjr5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmplisjr5 -------------------------------------------------------------------------------- /Rust/tmplkl8l4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmplkl8l4 -------------------------------------------------------------------------------- /Rust/tmplm7xfy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmplm7xfy -------------------------------------------------------------------------------- /Rust/tmplt45ya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmplt45ya -------------------------------------------------------------------------------- /Rust/tmpltaz63: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpltaz63 -------------------------------------------------------------------------------- /Rust/tmplvkqfx: -------------------------------------------------------------------------------- 1 | d -------------------------------------------------------------------------------- /Rust/tmplws0o7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmplws0o7 -------------------------------------------------------------------------------- /Rust/tmplxynh_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmplxynh_ -------------------------------------------------------------------------------- /Rust/tmpm0v26g: -------------------------------------------------------------------------------- 1 | das -------------------------------------------------------------------------------- /Rust/tmpm55u17: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpm55u17 -------------------------------------------------------------------------------- /Rust/tmpm7_m3o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpm7_m3o -------------------------------------------------------------------------------- /Rust/tmpmcgwop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpmcgwop -------------------------------------------------------------------------------- /Rust/tmpml6scj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpml6scj -------------------------------------------------------------------------------- /Rust/tmpmmt31h: -------------------------------------------------------------------------------- 1 | fn M -------------------------------------------------------------------------------- /Rust/tmpmn046c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpmn046c -------------------------------------------------------------------------------- /Rust/tmpmomub4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpmomub4 -------------------------------------------------------------------------------- /Rust/tmpmv6m73: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpmv6m73 -------------------------------------------------------------------------------- /Rust/tmpmvmij0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpmvmij0 -------------------------------------------------------------------------------- /Rust/tmpmw6cne: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpmw6cne -------------------------------------------------------------------------------- /Rust/tmpmxyyuq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpmxyyuq -------------------------------------------------------------------------------- /Rust/tmpmytrdu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpmytrdu -------------------------------------------------------------------------------- /Rust/tmpmz5dx8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpmz5dx8 -------------------------------------------------------------------------------- /Rust/tmpn1o5vk: -------------------------------------------------------------------------------- 1 | fn main() { 2 | let v = ve 3 | } -------------------------------------------------------------------------------- /Rust/tmpn2su38: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpn2su38 -------------------------------------------------------------------------------- /Rust/tmpn3cchs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpn3cchs -------------------------------------------------------------------------------- /Rust/tmpn8bhe3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpn8bhe3 -------------------------------------------------------------------------------- /Rust/tmpn9_y44: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpn9_y44 -------------------------------------------------------------------------------- /Rust/tmpn_2vsf: -------------------------------------------------------------------------------- 1 | fn main() { 2 | println!("Fo");; 3 | } -------------------------------------------------------------------------------- /Rust/tmpngt5_e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpngt5_e -------------------------------------------------------------------------------- /Rust/tmpnk9q6n: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpnk9q6n -------------------------------------------------------------------------------- /Rust/tmpnl_rsg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpnl_rsg -------------------------------------------------------------------------------- /Rust/tmpns8zfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpns8zfs -------------------------------------------------------------------------------- /Rust/tmpnsjqwo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpnsjqwo -------------------------------------------------------------------------------- /Rust/tmpnt9odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpnt9odg -------------------------------------------------------------------------------- /Rust/tmpnu4_at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpnu4_at -------------------------------------------------------------------------------- /Rust/tmpnvqdww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpnvqdww -------------------------------------------------------------------------------- /Rust/tmpnyfdfm: -------------------------------------------------------------------------------- 1 | f -------------------------------------------------------------------------------- /Rust/tmpo03buc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpo03buc -------------------------------------------------------------------------------- /Rust/tmpo35hy1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpo35hy1 -------------------------------------------------------------------------------- /Rust/tmpod7_p1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpod7_p1 -------------------------------------------------------------------------------- /Rust/tmpod7zin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpod7zin -------------------------------------------------------------------------------- /Rust/tmpofodmw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpofodmw -------------------------------------------------------------------------------- /Rust/tmpoioxzv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpoioxzv -------------------------------------------------------------------------------- /Rust/tmpois5zn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpois5zn -------------------------------------------------------------------------------- /Rust/tmporkrk5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmporkrk5 -------------------------------------------------------------------------------- /Rust/tmpot1si7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpot1si7 -------------------------------------------------------------------------------- /Rust/tmpotdfye: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpotdfye -------------------------------------------------------------------------------- /Rust/tmpovctmy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpovctmy -------------------------------------------------------------------------------- /Rust/tmpovg279: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpovg279 -------------------------------------------------------------------------------- /Rust/tmpow1ztf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpow1ztf -------------------------------------------------------------------------------- /Rust/tmpoyb5fy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpoyb5fy -------------------------------------------------------------------------------- /Rust/tmpozhn5l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpozhn5l -------------------------------------------------------------------------------- /Rust/tmpozvkbm: -------------------------------------------------------------------------------- 1 | fn -------------------------------------------------------------------------------- /Rust/tmpp0nygm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpp0nygm -------------------------------------------------------------------------------- /Rust/tmpp3e376: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpp3e376 -------------------------------------------------------------------------------- /Rust/tmpp9paqc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpp9paqc -------------------------------------------------------------------------------- /Rust/tmpp_c2yb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpp_c2yb -------------------------------------------------------------------------------- /Rust/tmpp_hnsq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpp_hnsq -------------------------------------------------------------------------------- /Rust/tmppfhbak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmppfhbak -------------------------------------------------------------------------------- /Rust/tmppgq75q: -------------------------------------------------------------------------------- 1 | fn main() { 2 | println!("F");; 3 | } -------------------------------------------------------------------------------- /Rust/tmpphtcwm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpphtcwm -------------------------------------------------------------------------------- /Rust/tmppi5k83: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmppi5k83 -------------------------------------------------------------------------------- /Rust/tmppj5y_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmppj5y_c -------------------------------------------------------------------------------- /Rust/tmppjrnzs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmppjrnzs -------------------------------------------------------------------------------- /Rust/tmppl5603: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmppl5603 -------------------------------------------------------------------------------- /Rust/tmppocqyb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmppocqyb -------------------------------------------------------------------------------- /Rust/tmppq6hw9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmppq6hw9 -------------------------------------------------------------------------------- /Rust/tmppundwc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmppundwc -------------------------------------------------------------------------------- /Rust/tmppzde5y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmppzde5y -------------------------------------------------------------------------------- /Rust/tmpq9_8s1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpq9_8s1 -------------------------------------------------------------------------------- /Rust/tmpqeis0h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpqeis0h -------------------------------------------------------------------------------- /Rust/tmpqewp2v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpqewp2v -------------------------------------------------------------------------------- /Rust/tmpqh3ie6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpqh3ie6 -------------------------------------------------------------------------------- /Rust/tmpqlmpki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpqlmpki -------------------------------------------------------------------------------- /Rust/tmpqmpm3b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpqmpm3b -------------------------------------------------------------------------------- /Rust/tmpqsn4e_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpqsn4e_ -------------------------------------------------------------------------------- /Rust/tmpqsnuoy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpqsnuoy -------------------------------------------------------------------------------- /Rust/tmpquhigt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpquhigt -------------------------------------------------------------------------------- /Rust/tmpquk9uu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpquk9uu -------------------------------------------------------------------------------- /Rust/tmpqvr0l1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpqvr0l1 -------------------------------------------------------------------------------- /Rust/tmpr3smzd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpr3smzd -------------------------------------------------------------------------------- /Rust/tmpr5c0xa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpr5c0xa -------------------------------------------------------------------------------- /Rust/tmpr5dn90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpr5dn90 -------------------------------------------------------------------------------- /Rust/tmpre5txb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpre5txb -------------------------------------------------------------------------------- /Rust/tmprfvye_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmprfvye_ -------------------------------------------------------------------------------- /Rust/tmprfyzkk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmprfyzkk -------------------------------------------------------------------------------- /Rust/tmprnmqmh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmprnmqmh -------------------------------------------------------------------------------- /Rust/tmprsrj60: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmprsrj60 -------------------------------------------------------------------------------- /Rust/tmprv4i4l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmprv4i4l -------------------------------------------------------------------------------- /Rust/tmpryd3do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpryd3do -------------------------------------------------------------------------------- /Rust/tmprzgejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmprzgejs -------------------------------------------------------------------------------- /Rust/tmps0y3la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmps0y3la -------------------------------------------------------------------------------- /Rust/tmps4v6ij: -------------------------------------------------------------------------------- 1 | i -------------------------------------------------------------------------------- /Rust/tmps70ezo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmps70ezo -------------------------------------------------------------------------------- /Rust/tmpscsd_s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpscsd_s -------------------------------------------------------------------------------- /Rust/tmpsjmlfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpsjmlfd -------------------------------------------------------------------------------- /Rust/tmpslmyo1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpslmyo1 -------------------------------------------------------------------------------- /Rust/tmpspkpcw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpspkpcw -------------------------------------------------------------------------------- /Rust/tmpt518wt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpt518wt -------------------------------------------------------------------------------- /Rust/tmpt6bhjf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpt6bhjf -------------------------------------------------------------------------------- /Rust/tmptaig3w: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmptaig3w -------------------------------------------------------------------------------- /Rust/tmptf7z62: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmptf7z62 -------------------------------------------------------------------------------- /Rust/tmptjran7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmptjran7 -------------------------------------------------------------------------------- /Rust/tmptmd9gw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmptmd9gw -------------------------------------------------------------------------------- /Rust/tmptra_rr: -------------------------------------------------------------------------------- 1 | irf -------------------------------------------------------------------------------- /Rust/tmptsqzgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmptsqzgf -------------------------------------------------------------------------------- /Rust/tmptw0vnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmptw0vnw -------------------------------------------------------------------------------- /Rust/tmptwvsdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmptwvsdt -------------------------------------------------------------------------------- /Rust/tmpu0fsqs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | let v = v 3 | } -------------------------------------------------------------------------------- /Rust/tmpu5cpn8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpu5cpn8 -------------------------------------------------------------------------------- /Rust/tmpue48bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpue48bb -------------------------------------------------------------------------------- /Rust/tmpuhqofp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpuhqofp -------------------------------------------------------------------------------- /Rust/tmpulsd9e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpulsd9e -------------------------------------------------------------------------------- /Rust/tmpum6g82: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpum6g82 -------------------------------------------------------------------------------- /Rust/tmpuozkc9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpuozkc9 -------------------------------------------------------------------------------- /Rust/tmpuu4gz_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpuu4gz_ -------------------------------------------------------------------------------- /Rust/tmpuwez86: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpuwez86 -------------------------------------------------------------------------------- /Rust/tmpuxts8b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpuxts8b -------------------------------------------------------------------------------- /Rust/tmpuzjln4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpuzjln4 -------------------------------------------------------------------------------- /Rust/tmpv6z4er: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpv6z4er -------------------------------------------------------------------------------- /Rust/tmpvcifg6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpvcifg6 -------------------------------------------------------------------------------- /Rust/tmpvh04z9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpvh04z9 -------------------------------------------------------------------------------- /Rust/tmpvi175s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpvi175s -------------------------------------------------------------------------------- /Rust/tmpvl19jx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpvl19jx -------------------------------------------------------------------------------- /Rust/tmpvnnod4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpvnnod4 -------------------------------------------------------------------------------- /Rust/tmpvq9maa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpvq9maa -------------------------------------------------------------------------------- /Rust/tmpvv2y3q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpvv2y3q -------------------------------------------------------------------------------- /Rust/tmpvyzcxa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpvyzcxa -------------------------------------------------------------------------------- /Rust/tmpw72pyl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpw72pyl -------------------------------------------------------------------------------- /Rust/tmpw_myb4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpw_myb4 -------------------------------------------------------------------------------- /Rust/tmpw_wrwg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpw_wrwg -------------------------------------------------------------------------------- /Rust/tmpwdn3rf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpwdn3rf -------------------------------------------------------------------------------- /Rust/tmpwdtaxa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpwdtaxa -------------------------------------------------------------------------------- /Rust/tmpwldz76: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpwldz76 -------------------------------------------------------------------------------- /Rust/tmpwmh_fi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpwmh_fi -------------------------------------------------------------------------------- /Rust/tmpwnefl5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpwnefl5 -------------------------------------------------------------------------------- /Rust/tmpwnysle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpwnysle -------------------------------------------------------------------------------- /Rust/tmpwof7vn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpwof7vn -------------------------------------------------------------------------------- /Rust/tmpwsgwnq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpwsgwnq -------------------------------------------------------------------------------- /Rust/tmpwx05po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpwx05po -------------------------------------------------------------------------------- /Rust/tmpwzve7q: -------------------------------------------------------------------------------- 1 | s 2 | 3 | fn main() { 4 | println!("Foo2"); 5 | } -------------------------------------------------------------------------------- /Rust/tmpx7xlxw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpx7xlxw -------------------------------------------------------------------------------- /Rust/tmpxiij_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpxiij_c -------------------------------------------------------------------------------- /Rust/tmpxiop6k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpxiop6k -------------------------------------------------------------------------------- /Rust/tmpxoml7k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpxoml7k -------------------------------------------------------------------------------- /Rust/tmpxsjehy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpxsjehy -------------------------------------------------------------------------------- /Rust/tmpxwdx0x: -------------------------------------------------------------------------------- 1 | f -------------------------------------------------------------------------------- /Rust/tmpy2nj03: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpy2nj03 -------------------------------------------------------------------------------- /Rust/tmpy7jaii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpy7jaii -------------------------------------------------------------------------------- /Rust/tmpya5xe7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpya5xe7 -------------------------------------------------------------------------------- /Rust/tmpydxjoa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpydxjoa -------------------------------------------------------------------------------- /Rust/tmpyg2jvp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpyg2jvp -------------------------------------------------------------------------------- /Rust/tmpyjia2j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpyjia2j -------------------------------------------------------------------------------- /Rust/tmpytdq1h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpytdq1h -------------------------------------------------------------------------------- /Rust/tmpz13rmc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpz13rmc -------------------------------------------------------------------------------- /Rust/tmpz2zrmc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpz2zrmc -------------------------------------------------------------------------------- /Rust/tmpzf101r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpzf101r -------------------------------------------------------------------------------- /Rust/tmpzig26d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpzig26d -------------------------------------------------------------------------------- /Rust/tmpzku2ep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpzku2ep -------------------------------------------------------------------------------- /Rust/tmpzogbko: -------------------------------------------------------------------------------- 1 | fn m -------------------------------------------------------------------------------- /Rust/tmpzouixd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpzouixd -------------------------------------------------------------------------------- /Rust/tmpzphrq2: -------------------------------------------------------------------------------- 1 | fn m -------------------------------------------------------------------------------- /Rust/tmpzpwc57: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpzpwc57 -------------------------------------------------------------------------------- /Rust/tmpzst5u5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/Rust/tmpzst5u5 -------------------------------------------------------------------------------- /cracking/msoffice.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/cracking/msoffice.docx -------------------------------------------------------------------------------- /libGDX/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/libGDX/.gitignore -------------------------------------------------------------------------------- /libGDX/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/libGDX/android/build.gradle -------------------------------------------------------------------------------- /libGDX/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/libGDX/build.gradle -------------------------------------------------------------------------------- /libGDX/core/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/libGDX/core/build.gradle -------------------------------------------------------------------------------- /libGDX/data/dirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/libGDX/data/dirt.png -------------------------------------------------------------------------------- /libGDX/data/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/libGDX/data/screenshot.png -------------------------------------------------------------------------------- /libGDX/desktop/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/libGDX/desktop/build.gradle -------------------------------------------------------------------------------- /libGDX/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/libGDX/gradle.properties -------------------------------------------------------------------------------- /libGDX/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/libGDX/gradlew -------------------------------------------------------------------------------- /libGDX/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/libGDX/gradlew.bat -------------------------------------------------------------------------------- /libGDX/html/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/libGDX/html/build.gradle -------------------------------------------------------------------------------- /libGDX/html/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/libGDX/html/webapp/index.html -------------------------------------------------------------------------------- /libGDX/html/webapp/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/libGDX/html/webapp/refresh.png -------------------------------------------------------------------------------- /libGDX/html/webapp/soundmanager2-setup.js: -------------------------------------------------------------------------------- 1 | window.SM2_DEFER = true; -------------------------------------------------------------------------------- /libGDX/html/webapp/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/libGDX/html/webapp/styles.css -------------------------------------------------------------------------------- /libGDX/ios/Info.plist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/libGDX/ios/Info.plist.xml -------------------------------------------------------------------------------- /libGDX/ios/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/libGDX/ios/build.gradle -------------------------------------------------------------------------------- /libGDX/ios/data/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/libGDX/ios/data/Default.png -------------------------------------------------------------------------------- /libGDX/ios/data/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/libGDX/ios/data/Default@2x.png -------------------------------------------------------------------------------- /libGDX/ios/data/Icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/libGDX/ios/data/Icon-72.png -------------------------------------------------------------------------------- /libGDX/ios/data/Icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/libGDX/ios/data/Icon-72@2x.png -------------------------------------------------------------------------------- /libGDX/ios/data/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/libGDX/ios/data/Icon.png -------------------------------------------------------------------------------- /libGDX/ios/data/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/libGDX/ios/data/Icon@2x.png -------------------------------------------------------------------------------- /libGDX/ios/robovm.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/libGDX/ios/robovm.properties -------------------------------------------------------------------------------- /libGDX/ios/robovm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/libGDX/ios/robovm.xml -------------------------------------------------------------------------------- /libGDX/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMorpheus407/Tutorials/HEAD/libGDX/settings.gradle --------------------------------------------------------------------------------