├── .gitignore ├── src ├── SampleCodes │ ├── Sample │ │ ├── datafiles │ │ │ ├── people-empty.csv │ │ │ ├── products-empty.csv │ │ │ ├── numbers-noprime.csv │ │ │ └── numbers2.csv │ │ ├── target │ │ │ └── classes │ │ │ │ └── org │ │ │ │ └── csystem │ │ │ │ ├── app │ │ │ │ ├── App.class │ │ │ │ ├── Device.class │ │ │ │ ├── Application.class │ │ │ │ ├── sensor │ │ │ │ │ ├── entity │ │ │ │ │ │ └── Sensor.class │ │ │ │ │ └── factory │ │ │ │ │ │ └── SensorFactory.class │ │ │ │ └── fraction │ │ │ │ │ ├── ComplexFactory.class │ │ │ │ │ └── FractionFactory.class │ │ │ │ └── random │ │ │ │ └── lottery │ │ │ │ └── NumericLottery.class │ │ ├── src │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── csystem │ │ │ │ └── app │ │ │ │ └── App.java │ │ └── .idea │ │ │ ├── .gitignore │ │ │ ├── jpa-buddy.xml │ │ │ ├── vcs.xml │ │ │ └── encodings.xml │ ├── SampleJavaBasic │ │ ├── .idea │ │ │ ├── .gitignore │ │ │ ├── codeStyles │ │ │ │ └── codeStyleConfig.xml │ │ │ ├── misc.xml │ │ │ ├── vcs.xml │ │ │ └── modules.xml │ │ └── src │ │ │ ├── org │ │ │ └── csystem │ │ │ │ ├── parser │ │ │ │ ├── IParser.java │ │ │ │ ├── source │ │ │ │ │ └── ISource.java │ │ │ │ └── ISourceParser.java │ │ │ │ └── game │ │ │ │ └── card │ │ │ │ ├── CardType.java │ │ │ │ └── CardValue.java │ │ │ └── com │ │ │ └── baharkaradavut │ │ │ └── company │ │ │ └── staff │ │ │ └── IEmployee.java │ └── CodingChallenges │ │ ├── target │ │ ├── maven-status │ │ │ └── maven-compiler-plugin │ │ │ │ ├── compile │ │ │ │ └── default-compile │ │ │ │ │ └── createdFiles.lst │ │ │ │ └── testCompile │ │ │ │ └── default-testCompile │ │ │ │ └── createdFiles.lst │ │ ├── maven-archiver │ │ │ └── pom.properties │ │ ├── org-csystem-util-12.0.0.jar │ │ ├── classes │ │ │ └── org │ │ │ │ └── csystem │ │ │ │ ├── collection │ │ │ │ ├── CSDQueue.class │ │ │ │ ├── CSDStack.class │ │ │ │ ├── CSDArrayList.class │ │ │ │ ├── CSDLinkedList.class │ │ │ │ ├── CSDMinStack.class │ │ │ │ ├── CSDBoundedQueue.class │ │ │ │ ├── CSDBoundedStack.class │ │ │ │ ├── CSDSLinkedList.class │ │ │ │ ├── CSDArrayListStack.class │ │ │ │ ├── CSDLinkedList$Node.class │ │ │ │ ├── CSDSLinkedList$Node.class │ │ │ │ ├── CSDArrayListNotNullable.class │ │ │ │ └── exception │ │ │ │ │ ├── FullQueueException.class │ │ │ │ │ └── FullStackException.class │ │ │ │ └── recursion │ │ │ │ └── util │ │ │ │ ├── Util.class │ │ │ │ ├── RecursionUtil.class │ │ │ │ └── StandardDeviationInfo.class │ │ └── test-classes │ │ │ └── org │ │ │ └── csystem │ │ │ ├── recursion │ │ │ └── util │ │ │ │ ├── UtilGcdTest.class │ │ │ │ ├── UtilFactorialTest.class │ │ │ │ ├── UtilWriteNumberTest.class │ │ │ │ ├── RecursionUtilGcdTest.class │ │ │ │ ├── UtilGcdTest$DataInfo.class │ │ │ │ ├── UtilReverseStringTest.class │ │ │ │ ├── UtilFibonacciNumberTest.class │ │ │ │ ├── RecursionUtilFactorialTest.class │ │ │ │ ├── UtilFactorialTest$DataInfo.class │ │ │ │ ├── UtilWriteReverseStringTest.class │ │ │ │ ├── RecursionUtilGcdTest$DataInfo.class │ │ │ │ ├── RecursionUtilWriteNumberTest.class │ │ │ │ ├── RecursionUtilReverseStringTest.class │ │ │ │ ├── UtilReverseStringTest$DataInfo.class │ │ │ │ ├── RecursionUtilFibonacciNumberTest.class │ │ │ │ ├── UtilFibonacciNumberTest$DataInfo.class │ │ │ │ ├── RecursionUtilFactorialTest$DataInfo.class │ │ │ │ ├── RecursionUtilWriteReverseStringTest.class │ │ │ │ ├── RecursionUtilReverseStringTest$DataInfo.class │ │ │ │ └── RecursionUtilFibonacciNumberTest$DataInfo.class │ │ │ └── collection │ │ │ ├── CSDStackSearchTest.class │ │ │ ├── CSDBoundedStackSearchTest.class │ │ │ ├── CSDArrayListStackSearchTest.class │ │ │ ├── CSDBoundedStackPopMethodTest.class │ │ │ ├── CSDStackSearchTest$DataInfo.class │ │ │ ├── CSDArrayListStackPopMethodTest.class │ │ │ ├── CSDBoundedStackPeekMethodTest.class │ │ │ ├── CSDStackPopThrowsExceptionTest.class │ │ │ ├── CSDArrayListStackPeekMethodTest.class │ │ │ ├── CSDArrayListStackPopMethodEmptyTest.class │ │ │ ├── CSDBoundedStackSearchTest$DataInfo.class │ │ │ ├── CSDArrayListStackSearchTest$DataInfo.class │ │ │ ├── CSDBoundedQueueAddThrowsExceptionTest.class │ │ │ ├── CSDBoundedQueueOfferReturnsFalseTest.class │ │ │ ├── CSDBoundedStackPeekMethodTest$DataInfo.class │ │ │ ├── CSDBoundedStackPopMethodTest$DataInfo.class │ │ │ ├── CSDBoundedStackPopThrowsExceptionTest.class │ │ │ ├── CSDBoundedStackPushThrowsExceptionTest.class │ │ │ ├── CSDArrayListStackPeekMethodTest$DataInfo.class │ │ │ ├── CSDArrayListStackPeekThrowsExceptionTest.class │ │ │ ├── CSDArrayListStackPopMethodTest$DataInfo.class │ │ │ ├── CSDArrayListStackPopThrowsExceptionTest.class │ │ │ └── CSDArrayListStackPopMethodEmptyTest$DataInfo.class │ │ ├── .idea │ │ ├── .gitignore │ │ ├── jpa-buddy.xml │ │ └── vcs.xml │ │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── csystem │ │ └── recursion │ │ └── util │ │ └── StandardDeviationInfo.java ├── Libraries │ ├── CSDLibraries │ │ ├── DataSourceLib │ │ │ ├── datafiles │ │ │ │ ├── people-empty.csv │ │ │ │ └── products-empty.csv │ │ │ ├── src │ │ │ │ ├── test │ │ │ │ │ └── java │ │ │ │ │ │ └── org │ │ │ │ │ │ └── csystem │ │ │ │ │ │ └── util │ │ │ │ │ │ └── datasource │ │ │ │ │ │ └── SampleTest.java │ │ │ │ └── main │ │ │ │ │ └── java │ │ │ │ │ └── org │ │ │ │ │ └── csystem │ │ │ │ │ └── util │ │ │ │ │ └── datasource │ │ │ │ │ └── people │ │ │ │ │ └── MaritalStatus.java │ │ │ └── .mvn │ │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── DateTimeLegacyLib │ │ │ ├── doc │ │ │ │ ├── element-list │ │ │ │ ├── legal │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── COPYRIGHT │ │ │ │ ├── module-search-index.js │ │ │ │ ├── tag-search-index.js │ │ │ │ ├── resources │ │ │ │ │ ├── x.png │ │ │ │ │ └── glass.png │ │ │ │ └── package-search-index.js │ │ │ ├── target │ │ │ │ ├── maven-status │ │ │ │ │ └── maven-compiler-plugin │ │ │ │ │ │ └── testCompile │ │ │ │ │ │ └── default-testCompile │ │ │ │ │ │ ├── inputFiles.lst │ │ │ │ │ │ └── createdFiles.lst │ │ │ │ ├── maven-archiver │ │ │ │ │ └── pom.properties │ │ │ │ ├── org-csystem-util-datetime-legacy-11.1.0.jar │ │ │ │ └── classes │ │ │ │ │ └── org │ │ │ │ │ └── csystem │ │ │ │ │ └── util │ │ │ │ │ └── datetime │ │ │ │ │ └── legacy │ │ │ │ │ ├── Month.class │ │ │ │ │ ├── DateTime.class │ │ │ │ │ ├── DayOfWeek.class │ │ │ │ │ └── DateTimeException.class │ │ │ ├── .idea │ │ │ │ ├── .gitignore │ │ │ │ ├── jpa-buddy.xml │ │ │ │ └── vcs.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── csystem │ │ │ │ └── util │ │ │ │ └── datetime │ │ │ │ └── legacy │ │ │ │ ├── DayOfWeek.java │ │ │ │ └── Month.java │ │ ├── SchedulerLib │ │ │ ├── target │ │ │ │ ├── maven-status │ │ │ │ │ └── maven-compiler-plugin │ │ │ │ │ │ ├── compile │ │ │ │ │ │ └── default-compile │ │ │ │ │ │ │ └── createdFiles.lst │ │ │ │ │ │ └── testCompile │ │ │ │ │ │ └── default-testCompile │ │ │ │ │ │ └── createdFiles.lst │ │ │ │ ├── maven-archiver │ │ │ │ │ └── pom.properties │ │ │ │ ├── org-csystem-scheduler-13.0.0.jar │ │ │ │ ├── org-csystem-scheduler-13.1.0.jar │ │ │ │ ├── org-csystem-scheduler-14.0.0.jar │ │ │ │ ├── org-csystem-scheduler-14.0.1.jar │ │ │ │ ├── classes │ │ │ │ │ └── org │ │ │ │ │ │ └── csystem │ │ │ │ │ │ └── scheduler │ │ │ │ │ │ ├── Scheduler.class │ │ │ │ │ │ ├── Scheduler$1.class │ │ │ │ │ │ ├── timeout │ │ │ │ │ │ ├── Alarm.class │ │ │ │ │ │ └── Alarm$1.class │ │ │ │ │ │ ├── CountDownScheduler.class │ │ │ │ │ │ ├── CountDownScheduler$1.class │ │ │ │ │ │ └── CountDownSchedulerEx.class │ │ │ │ └── test-classes │ │ │ │ │ └── org │ │ │ │ │ └── csystem │ │ │ │ │ └── scheduler │ │ │ │ │ ├── timeout │ │ │ │ │ ├── AlarmTest.class │ │ │ │ │ └── AlarmDailyTest.class │ │ │ │ │ ├── CountDownSchedulerTest.class │ │ │ │ │ ├── SchedulerTimeoutTest.class │ │ │ │ │ ├── CountDownSchedulerExTest.class │ │ │ │ │ ├── CountDownSchedulerTest$1.class │ │ │ │ │ └── CountDownSchedulerExTest$1.class │ │ │ └── .idea │ │ │ │ ├── .gitignore │ │ │ │ ├── jpa-buddy.xml │ │ │ │ └── vcs.xml │ │ ├── MathLib │ │ │ ├── target │ │ │ │ ├── maven-archiver │ │ │ │ │ └── pom.properties │ │ │ │ ├── maven-status │ │ │ │ │ └── maven-compiler-plugin │ │ │ │ │ │ └── testCompile │ │ │ │ │ │ └── default-testCompile │ │ │ │ │ │ ├── createdFiles.lst │ │ │ │ │ │ └── inputFiles.lst │ │ │ │ ├── org-csystem-math-12.0.0.jar │ │ │ │ ├── classes │ │ │ │ │ └── org │ │ │ │ │ │ └── csystem │ │ │ │ │ │ └── math │ │ │ │ │ │ ├── Complex.class │ │ │ │ │ │ ├── Fraction.class │ │ │ │ │ │ ├── MutableComplex.class │ │ │ │ │ │ └── geometry │ │ │ │ │ │ ├── Line.class │ │ │ │ │ │ ├── Point.class │ │ │ │ │ │ ├── Circle.class │ │ │ │ │ │ ├── Triangle.class │ │ │ │ │ │ ├── MutablePoint.class │ │ │ │ │ │ ├── PointCommon.class │ │ │ │ │ │ └── AnalyticalCircle.class │ │ │ │ └── test-classes │ │ │ │ │ └── org │ │ │ │ │ └── csystem │ │ │ │ │ └── math │ │ │ │ │ └── SampleTest.class │ │ │ ├── .idea │ │ │ │ ├── .gitignore │ │ │ │ ├── jpa-buddy.xml │ │ │ │ └── vcs.xml │ │ │ └── src │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── csystem │ │ │ │ └── math │ │ │ │ └── SampleTest.java │ │ ├── UtilLib │ │ │ ├── target │ │ │ │ ├── maven-archiver │ │ │ │ │ └── pom.properties │ │ │ │ ├── org-csystem-util-13.0.0.jar │ │ │ │ ├── classes │ │ │ │ │ └── org │ │ │ │ │ │ └── csystem │ │ │ │ │ │ └── util │ │ │ │ │ │ ├── array │ │ │ │ │ │ └── ArrayUtil.class │ │ │ │ │ │ ├── console │ │ │ │ │ │ └── Console.class │ │ │ │ │ │ ├── matrix │ │ │ │ │ │ └── MatrixUtil.class │ │ │ │ │ │ ├── string │ │ │ │ │ │ └── StringUtil.class │ │ │ │ │ │ ├── thread │ │ │ │ │ │ └── ThreadUtil.class │ │ │ │ │ │ ├── bitwise │ │ │ │ │ │ └── BitwiseUtil.class │ │ │ │ │ │ ├── numeric │ │ │ │ │ │ └── NumberUtil.class │ │ │ │ │ │ ├── iterable │ │ │ │ │ │ └── IterableUtil.class │ │ │ │ │ │ └── collection │ │ │ │ │ │ └── CollectionUtil.class │ │ │ │ └── test-classes │ │ │ │ │ ├── stringUtil │ │ │ │ │ ├── StringUtilJoinTest.class │ │ │ │ │ └── StringUtilJoinTest$Data.class │ │ │ │ │ └── org │ │ │ │ │ └── csystem │ │ │ │ │ └── util │ │ │ │ │ ├── numeric │ │ │ │ │ ├── NumberUtilMidTest.class │ │ │ │ │ ├── NumberUtilToIntTest.class │ │ │ │ │ ├── data │ │ │ │ │ │ ├── IntIntDataInfo.class │ │ │ │ │ │ ├── IntLongDataInfo.class │ │ │ │ │ │ ├── LongIntDataInfo.class │ │ │ │ │ │ ├── NumberUtilNumberToTextTRTest.class │ │ │ │ │ │ └── NumberUtilNumberToTextTRTest$DataInfo.class │ │ │ │ │ ├── NumberUtilReverseTest.class │ │ │ │ │ ├── NumberUtilAreFriendsTest.class │ │ │ │ │ ├── NumberUtilFactorialTest.class │ │ │ │ │ ├── NumberUtilFibonacciTest.class │ │ │ │ │ ├── NumberUtilGetPrimeTest.class │ │ │ │ │ ├── NumberUtilSumFactorsTest.class │ │ │ │ │ ├── NumberUtilIsArmstrongTest.class │ │ │ │ │ ├── NumberUtilIsPowerOfTwoTest.class │ │ │ │ │ ├── NumberUtilIsPrimeFalseTest.class │ │ │ │ │ ├── NumberUtilIsPrimeTrueTest.class │ │ │ │ │ ├── NumberUtilMidTest$DataInfo.class │ │ │ │ │ ├── NumberUtilToIntTest$DataInfo.class │ │ │ │ │ ├── NumberUtilAreFriendsTest$DataInfo.class │ │ │ │ │ ├── NumberUtilCalculateDigitalRootTest.class │ │ │ │ │ ├── NumberUtilDigitsFactorialSumTest.class │ │ │ │ │ ├── NumberUtilFactorialBigIntegerTest.class │ │ │ │ │ ├── NumberUtilIsArmstrongTest$DataInfo.class │ │ │ │ │ ├── NumberUtilNextClosestFibonacciTest.class │ │ │ │ │ ├── NumberUtilIsPowerOfTwoTest$DataInfo.class │ │ │ │ │ ├── NumberUtilIsPrimeBigIntegerFalseTest.class │ │ │ │ │ ├── NumberUtilIsPrimeBigIntegerTrueTest.class │ │ │ │ │ ├── NumberUtilDigitsFactorialSumTest$DataInfo.class │ │ │ │ │ └── NumberUtilFactorialBigIntegerTest$DataInfo.class │ │ │ │ │ ├── string │ │ │ │ │ ├── StringUtilSplitTest.class │ │ │ │ │ ├── StringUtilReverseTest.class │ │ │ │ │ ├── StringUtilAreAnagramTest.class │ │ │ │ │ ├── StringUtilPadLeading2Test.class │ │ │ │ │ ├── StringUtilPadLeadingTest.class │ │ │ │ │ ├── StringUtilAreAllUniqueTest.class │ │ │ │ │ ├── StringUtilIsPalindromeTest.class │ │ │ │ │ ├── StringUtilLastPangramENTest.class │ │ │ │ │ ├── StringUtilLastPangramTRTest.class │ │ │ │ │ ├── StringUtilFirstPangramENTest.class │ │ │ │ │ ├── StringUtilFirstPangramTRTest.class │ │ │ │ │ ├── StringUtilReverseTest$DataInfo.class │ │ │ │ │ ├── StringUtilSplitTest$DataInfo.class │ │ │ │ │ ├── StringUtilAreAllUniqueTest$DataInfo.class │ │ │ │ │ ├── StringUtilAreAnagramTest$DataInfo.class │ │ │ │ │ ├── StringUtilIsPalindromeTest$DataInfo.class │ │ │ │ │ ├── StringUtilLastLongestPalindromeTest.class │ │ │ │ │ ├── StringUtilPadLeading2Test$DataInfo.class │ │ │ │ │ ├── StringUtilPadLeadingTest$DataInfo.class │ │ │ │ │ ├── StringUtilFirstLongestPalindromeTest.class │ │ │ │ │ ├── StringUtilFirstPangramENTest$DataInfo.class │ │ │ │ │ ├── StringUtilFirstPangramTRTest$DataInfo.class │ │ │ │ │ ├── StringUtilFirstShortestPalindromeTest.class │ │ │ │ │ ├── StringUtilLastPangramENTest$DataInfo.class │ │ │ │ │ ├── StringUtilLastPangramTRTest$DataInfo.class │ │ │ │ │ ├── StringUtilLastShortestPalindromeTest.class │ │ │ │ │ ├── StringUtilAreAnagramNullPointerExceptionTest.class │ │ │ │ │ ├── StringUtilFirstLongestPalindromeTest$DataInfo.class │ │ │ │ │ ├── StringUtilLastLongestPalindromeTest$DataInfo.class │ │ │ │ │ ├── StringUtilLastShortestPalindromeTest$DataInfo.class │ │ │ │ │ ├── StringUtilPadLeadingNullPointerExceptionTest.class │ │ │ │ │ └── StringUtilFirstShortestPalindromeTest$DataInfo.class │ │ │ │ │ ├── bitwise │ │ │ │ │ ├── BitwiseUtilIsSetIntTest.class │ │ │ │ │ ├── BitwiseUtilIsSetLongTest.class │ │ │ │ │ ├── BitwiseUtilSetBitIntTest.class │ │ │ │ │ ├── BitwiseUtilClearBitIntTest.class │ │ │ │ │ ├── BitwiseUtilIsClearIntTest.class │ │ │ │ │ ├── BitwiseUtilIsClearLongTest.class │ │ │ │ │ ├── BitwiseUtilSetBitLongTest.class │ │ │ │ │ ├── BitwiseUtilClearBitLongTest.class │ │ │ │ │ ├── BitwiseUtilToBinaryStrIntTest.class │ │ │ │ │ ├── BitwiseUtilToggleBitIntTest.class │ │ │ │ │ ├── BitwiseUtilToggleBitLongTest.class │ │ │ │ │ ├── BitwiseUtilSetBitsCountIntTest.class │ │ │ │ │ ├── BitwiseUtilSetBitsCountLongTest.class │ │ │ │ │ ├── BitwiseUtilToBinaryStrLongTest.class │ │ │ │ │ ├── BitwiseUtilClearBitsCountIntTest.class │ │ │ │ │ ├── BitwiseUtilIndicesOfSetBitsIntTest.class │ │ │ │ │ ├── BitwiseUtilIsClearIntTest$DataInfo.class │ │ │ │ │ ├── BitwiseUtilIsSetIntTest$DataInfo.class │ │ │ │ │ ├── BitwiseUtilIsSetLongTest$DataInfo.class │ │ │ │ │ ├── BitwiseUtilSetBitIntTest$DataInfo.class │ │ │ │ │ ├── BitwiseUtilSetBitLongTest$DataInfo.class │ │ │ │ │ ├── BitwiseUtilSetBitsCountShortTest.class │ │ │ │ │ ├── BitwiseUtilClearBitIntTest$DataInfo.class │ │ │ │ │ ├── BitwiseUtilClearBitLongTest$DataInfo.class │ │ │ │ │ ├── BitwiseUtilHighestSetBitIndexIntTest.class │ │ │ │ │ ├── BitwiseUtilIndicesOfSetBitsLongTest.class │ │ │ │ │ ├── BitwiseUtilIsClearLongTest$DataInfo.class │ │ │ │ │ ├── BitwiseUtilLowestSetBitIndexIntTest.class │ │ │ │ │ ├── BitwiseUtilToggleBitIntTest$DataInfo.class │ │ │ │ │ ├── BitwiseUtilSetBitsCountIntTest$DataInfo.class │ │ │ │ │ ├── BitwiseUtilToBinaryStrIntTest$DataInfo.class │ │ │ │ │ ├── BitwiseUtilToBinaryStrLongTest$DataInfo.class │ │ │ │ │ ├── BitwiseUtilToggleBitLongTest$DataInfo.class │ │ │ │ │ ├── BitwiseUtilClearBitsCountIntTest$DataInfo.class │ │ │ │ │ ├── BitwiseUtilSetBitsCountLongTest$DataInfo.class │ │ │ │ │ ├── BitwiseUtilSetBitsCountShortTest$DataInfo.class │ │ │ │ │ ├── BitwiseUtilIndicesOfSetBitsIntTest$DataInfo.class │ │ │ │ │ ├── BitwiseUtilIndicesOfSetBitsLongTest$DataInfo.class │ │ │ │ │ ├── BitwiseUtilLowestSetBitIndexIntTest$DataInfo.class │ │ │ │ │ └── BitwiseUtilHighestSetBitIndexIntTest$DataInfo.class │ │ │ │ │ ├── array │ │ │ │ │ ├── ArrayUtilAreAllUniqueIntTest.class │ │ │ │ │ ├── ArrayUtilAreAllUniqueGenericTest.class │ │ │ │ │ ├── ArrayUtilAreAllUniqueIntTest$DataInfo.class │ │ │ │ │ └── ArrayUtilAreAllUniqueGenericTest$DataInfo.class │ │ │ │ │ └── collection │ │ │ │ │ ├── CollectionUtilToModifiableListTests.class │ │ │ │ │ ├── CollectionUtilToModifiableMapTests.class │ │ │ │ │ ├── CollectionUtilToModifiableSetTests.class │ │ │ │ │ ├── CollectionUtilUtilAreAllUniqueTest$1.class │ │ │ │ │ ├── CollectionUtilUtilAreAllUniqueTest$2.class │ │ │ │ │ ├── CollectionUtilUtilAreAllUniqueTest$3.class │ │ │ │ │ ├── CollectionUtilUtilAreAllUniqueTest$4.class │ │ │ │ │ ├── CollectionUtilUtilAreAllUniqueTest$5.class │ │ │ │ │ ├── CollectionUtilUtilAreAllUniqueTest.class │ │ │ │ │ ├── CollectionUtilToModifiableMapTests$UserData.class │ │ │ │ │ └── CollectionUtilUtilAreAllUniqueTest$DataInfo.class │ │ │ └── .idea │ │ │ │ ├── .gitignore │ │ │ │ ├── jpa-buddy.xml │ │ │ │ └── vcs.xml │ │ ├── DataUtilLib │ │ │ ├── target │ │ │ │ ├── maven-archiver │ │ │ │ │ └── pom.properties │ │ │ │ ├── maven-status │ │ │ │ │ └── maven-compiler-plugin │ │ │ │ │ │ ├── testCompile │ │ │ │ │ │ └── default-testCompile │ │ │ │ │ │ │ ├── createdFiles.lst │ │ │ │ │ │ │ └── inputFiles.lst │ │ │ │ │ │ └── compile │ │ │ │ │ │ └── default-compile │ │ │ │ │ │ └── createdFiles.lst │ │ │ │ ├── org-csystem-data-11.0.0.jar │ │ │ │ ├── test-classes │ │ │ │ │ └── org │ │ │ │ │ │ └── csystem │ │ │ │ │ │ └── RepositoryExceptionTest.class │ │ │ │ └── classes │ │ │ │ │ └── org │ │ │ │ │ └── csystem │ │ │ │ │ └── data │ │ │ │ │ └── exception │ │ │ │ │ ├── repository │ │ │ │ │ ├── ICrudRepository.class │ │ │ │ │ └── RepositoryException.class │ │ │ │ │ └── service │ │ │ │ │ └── DataServiceException.class │ │ │ ├── src │ │ │ │ └── test │ │ │ │ │ └── java │ │ │ │ │ └── org │ │ │ │ │ └── csystem │ │ │ │ │ └── RepositoryExceptionTest.java │ │ │ └── .idea │ │ │ │ ├── .gitignore │ │ │ │ ├── jpa-buddy.xml │ │ │ │ └── vcs.xml │ │ └── GeneratorLib │ │ │ └── .idea │ │ │ ├── .gitignore │ │ │ ├── jpa-buddy.xml │ │ │ └── vcs.xml │ └── KaranDevLibraries │ │ ├── DateTimeLib │ │ ├── src │ │ │ ├── test │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── karandev │ │ │ │ │ └── datetime │ │ │ │ │ └── SampleTest.java │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── application.properties │ │ └── .idea │ │ │ ├── .gitignore │ │ │ ├── jpa-buddy.xml │ │ │ └── vcs.xml │ │ ├── .idea │ │ ├── .gitignore │ │ ├── vcs.xml │ │ └── encodings.xml │ │ └── ConsoleLib │ │ └── .idea │ │ ├── .gitignore │ │ ├── jpa-buddy.xml │ │ └── vcs.xml ├── Projects │ ├── 012-SpringBoot │ │ ├── 008-DemoScheduled │ │ │ ├── settings.gradle.kts │ │ │ ├── src │ │ │ │ └── main │ │ │ │ │ └── resources │ │ │ │ │ ├── application.properties │ │ │ │ │ └── banner.txt │ │ │ └── gradle │ │ │ │ └── wrapper │ │ │ │ └── gradle-wrapper.jar │ │ ├── FlightSystem │ │ │ ├── CityService │ │ │ │ ├── settings.gradle.kts │ │ │ │ ├── gradle │ │ │ │ │ └── wrapper │ │ │ │ │ │ └── gradle-wrapper.jar │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── resources │ │ │ │ │ └── banner.txt │ │ │ ├── DataServiceLib │ │ │ │ ├── src │ │ │ │ │ ├── main │ │ │ │ │ │ └── java │ │ │ │ │ │ │ └── org │ │ │ │ │ │ │ └── csystem │ │ │ │ │ │ │ └── app │ │ │ │ │ │ │ └── flight │ │ │ │ │ │ │ └── data │ │ │ │ │ │ │ └── service │ │ │ │ │ │ │ └── dto │ │ │ │ │ │ │ └── CityUpdateDTO.java │ │ │ │ │ └── test │ │ │ │ │ │ └── java │ │ │ │ │ │ └── org │ │ │ │ │ │ └── csystem │ │ │ │ │ │ └── app │ │ │ │ │ │ └── flight │ │ │ │ │ │ └── data │ │ │ │ │ │ └── service │ │ │ │ │ │ └── SampleTest.java │ │ │ │ └── .idea │ │ │ │ │ ├── .gitignore │ │ │ │ │ └── jpa-buddy.xml │ │ │ └── RepositoryLib │ │ │ │ └── .idea │ │ │ │ ├── .gitignore │ │ │ │ └── jpa-buddy.xml │ │ ├── 005-PeriodicRandomTextGenerator │ │ │ ├── settings.gradle.kts │ │ │ ├── src │ │ │ │ └── main │ │ │ │ │ └── resources │ │ │ │ │ ├── application.properties │ │ │ │ │ └── banner.txt │ │ │ └── gradle │ │ │ │ └── wrapper │ │ │ │ └── gradle-wrapper.jar │ │ ├── 002-DemoApplicationRunnerApp │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ ├── application.properties │ │ │ │ └── banner.txt │ │ ├── 009-EarthquakeServiceGeonames │ │ │ ├── EarthquakeService │ │ │ │ ├── settings.gradle.kts │ │ │ │ ├── src │ │ │ │ │ ├── test │ │ │ │ │ │ └── java │ │ │ │ │ │ │ └── org │ │ │ │ │ │ │ └── csystem │ │ │ │ │ │ │ └── app │ │ │ │ │ │ │ └── service │ │ │ │ │ │ │ └── earthquake │ │ │ │ │ │ │ └── AppTests.java │ │ │ │ │ └── main │ │ │ │ │ │ └── resources │ │ │ │ │ │ └── application-dev.properties │ │ │ │ └── gradle │ │ │ │ │ └── wrapper │ │ │ │ │ └── gradle-wrapper.jar │ │ │ ├── EarthquakeUpdateScheduler │ │ │ │ ├── settings.gradle.kts │ │ │ │ ├── gradle │ │ │ │ │ └── wrapper │ │ │ │ │ │ └── gradle-wrapper.jar │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── resources │ │ │ │ │ └── application-dev.properties │ │ │ ├── RespositoryLib │ │ │ │ ├── target │ │ │ │ │ ├── maven-archiver │ │ │ │ │ │ └── pom.properties │ │ │ │ │ └── EarthquakeSystemRepositoryLib-1.0.0.jar │ │ │ │ └── .idea │ │ │ │ │ ├── .gitignore │ │ │ │ │ └── jpa-buddy.xml │ │ │ ├── EarthquakeDataServiceLib │ │ │ │ ├── target │ │ │ │ │ ├── maven-archiver │ │ │ │ │ │ └── pom.properties │ │ │ │ │ ├── maven-status │ │ │ │ │ │ └── maven-compiler-plugin │ │ │ │ │ │ │ └── testCompile │ │ │ │ │ │ │ └── default-testCompile │ │ │ │ │ │ │ └── createdFiles.lst │ │ │ │ │ ├── EarthquakeSystemDataServiceLib-1.0.0.jar │ │ │ │ │ └── test-classes │ │ │ │ │ │ └── org │ │ │ │ │ │ └── csystem │ │ │ │ │ │ └── SampleTest.class │ │ │ │ ├── src │ │ │ │ │ └── test │ │ │ │ │ │ └── java │ │ │ │ │ │ └── org │ │ │ │ │ │ └── csystem │ │ │ │ │ │ └── SampleTest.java │ │ │ │ └── .idea │ │ │ │ │ ├── .gitignore │ │ │ │ │ └── jpa-buddy.xml │ │ │ ├── GeonamesEarthquakeServiceLib │ │ │ │ ├── target │ │ │ │ │ ├── maven-archiver │ │ │ │ │ │ └── pom.properties │ │ │ │ │ ├── maven-status │ │ │ │ │ │ └── maven-compiler-plugin │ │ │ │ │ │ │ └── testCompile │ │ │ │ │ │ │ └── default-testCompile │ │ │ │ │ │ │ └── createdFiles.lst │ │ │ │ │ ├── GeonamesEarthquakeServiceLib-1.0.0.jar │ │ │ │ │ └── test-classes │ │ │ │ │ │ └── org │ │ │ │ │ │ └── csystem │ │ │ │ │ │ └── SampleTest.class │ │ │ │ ├── src │ │ │ │ │ └── test │ │ │ │ │ │ └── java │ │ │ │ │ │ └── org │ │ │ │ │ │ └── csystem │ │ │ │ │ │ └── SampleTest.java │ │ │ │ └── .idea │ │ │ │ │ ├── .gitignore │ │ │ │ │ └── jpa-buddy.xml │ │ │ └── EarthquakeServiceCurlRequestGenerator │ │ │ │ ├── target │ │ │ │ ├── maven-archiver │ │ │ │ │ └── pom.properties │ │ │ │ └── maven-status │ │ │ │ │ └── maven-compiler-plugin │ │ │ │ │ ├── testCompile │ │ │ │ │ └── default-testCompile │ │ │ │ │ │ └── createdFiles.lst │ │ │ │ │ └── compile │ │ │ │ │ └── default-compile │ │ │ │ │ └── createdFiles.lst │ │ │ │ ├── src │ │ │ │ └── main │ │ │ │ │ └── java │ │ │ │ │ └── org │ │ │ │ │ └── csystem │ │ │ │ │ └── app │ │ │ │ │ └── App.java │ │ │ │ └── .idea │ │ │ │ ├── .gitignore │ │ │ │ └── jpa-buddy.xml │ │ ├── 010-PostalCodeServiceGeonames │ │ │ ├── PostalCodeJsonService │ │ │ │ ├── settings.gradle.kts │ │ │ │ └── gradle │ │ │ │ │ └── wrapper │ │ │ │ │ └── gradle-wrapper.jar │ │ │ ├── DataServiceLib │ │ │ │ ├── target │ │ │ │ │ ├── maven-archiver │ │ │ │ │ │ └── pom.properties │ │ │ │ │ ├── maven-status │ │ │ │ │ │ └── maven-compiler-plugin │ │ │ │ │ │ │ └── testCompile │ │ │ │ │ │ │ └── default-testCompile │ │ │ │ │ │ │ └── createdFiles.lst │ │ │ │ │ └── PostalCodeDataServiceLib-1.0.0.jar │ │ │ │ └── .idea │ │ │ │ │ ├── sqldialects.xml │ │ │ │ │ ├── .gitignore │ │ │ │ │ └── jpa-buddy.xml │ │ │ ├── RepositoryLib │ │ │ │ ├── target │ │ │ │ │ ├── maven-archiver │ │ │ │ │ │ └── pom.properties │ │ │ │ │ └── PostalCodeRepositoryLib-1.0.0.jar │ │ │ │ ├── data.mv.db │ │ │ │ └── .idea │ │ │ │ │ ├── .gitignore │ │ │ │ │ └── jpa-buddy.xml │ │ │ ├── GeonamesPostalCodeServiceLib │ │ │ │ ├── target │ │ │ │ │ ├── maven-archiver │ │ │ │ │ │ └── pom.properties │ │ │ │ │ ├── maven-status │ │ │ │ │ │ └── maven-compiler-plugin │ │ │ │ │ │ │ └── testCompile │ │ │ │ │ │ │ └── default-testCompile │ │ │ │ │ │ │ └── createdFiles.lst │ │ │ │ │ └── GeonamesPostalCodeServiceLib-1.0.0.jar │ │ │ │ └── .idea │ │ │ │ │ ├── .gitignore │ │ │ │ │ └── jpa-buddy.xml │ │ │ └── todo.txt │ │ ├── 003-DemoApplicationRunnerAppDONOT │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ ├── application.properties │ │ │ │ └── banner.txt │ │ ├── 007-DemoPasswordGeneratorService │ │ │ ├── PasswordGeneratorService │ │ │ │ ├── settings.gradle │ │ │ │ ├── src │ │ │ │ │ └── main │ │ │ │ │ │ └── resources │ │ │ │ │ │ ├── application-dev.properties │ │ │ │ │ │ └── application.properties │ │ │ │ ├── passwords │ │ │ │ │ ├── bekir │ │ │ │ │ ├── deniz │ │ │ │ │ └── eda │ │ │ │ └── gradle │ │ │ │ │ └── wrapper │ │ │ │ │ └── gradle-wrapper.jar │ │ │ ├── ServiceLib │ │ │ │ ├── target │ │ │ │ │ ├── maven-archiver │ │ │ │ │ │ └── pom.properties │ │ │ │ │ └── PasswordGeneratorServiceLib-1.0.0.jar │ │ │ │ └── .idea │ │ │ │ │ ├── .gitignore │ │ │ │ │ └── jpa-buddy.xml │ │ │ └── RepositoryLib │ │ │ │ ├── target │ │ │ │ ├── maven-archiver │ │ │ │ │ └── pom.properties │ │ │ │ └── PasswordGeneratorRepositoryLib-1.0.0.jar │ │ │ │ ├── passwords │ │ │ │ └── oguz │ │ │ │ └── .idea │ │ │ │ ├── .gitignore │ │ │ │ └── jpa-buddy.xml │ │ ├── 006-DemoNetworkInfoService │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ ├── application-dev.properties │ │ │ │ ├── application.properties │ │ │ │ └── banner.txt │ │ ├── 001-DemoCoreAnnotations │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ ├── application-demo.properties │ │ │ │ ├── application-dev.properties │ │ │ │ └── banner.txt │ │ └── 004-DemoCollectionInjectionApp │ │ │ ├── OperationLib │ │ │ ├── target │ │ │ │ ├── maven-status │ │ │ │ │ └── maven-compiler-plugin │ │ │ │ │ │ └── testCompile │ │ │ │ │ │ └── default-testCompile │ │ │ │ │ │ ├── createdFiles.lst │ │ │ │ │ │ └── inputFiles.lst │ │ │ │ ├── maven-archiver │ │ │ │ │ └── pom.properties │ │ │ │ ├── test-classes │ │ │ │ │ └── org │ │ │ │ │ │ └── csystem │ │ │ │ │ │ └── SampleTest.class │ │ │ │ ├── com-berkayyilmaz-library-operation-11.0.0.jar │ │ │ │ └── classes │ │ │ │ │ └── com │ │ │ │ │ └── berkayyilmaz │ │ │ │ │ └── operation │ │ │ │ │ └── IIntOperator.class │ │ │ ├── src │ │ │ │ ├── test │ │ │ │ │ └── java │ │ │ │ │ │ └── org │ │ │ │ │ │ └── csystem │ │ │ │ │ │ └── SampleTest.java │ │ │ │ └── main │ │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── berkayyilmaz │ │ │ │ │ └── operation │ │ │ │ │ └── IIntOperator.java │ │ │ └── .idea │ │ │ │ ├── .gitignore │ │ │ │ └── jpa-buddy.xml │ │ │ └── OperationApplication │ │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── application.properties │ ├── 006-SimpleCommandPromptApp │ │ ├── target │ │ │ ├── maven-status │ │ │ │ └── maven-compiler-plugin │ │ │ │ │ └── compile │ │ │ │ │ └── default-compile │ │ │ │ │ └── createdFiles.lst │ │ │ ├── maven-archiver │ │ │ │ └── pom.properties │ │ │ ├── CommandPromptApp-11.0.0.jar │ │ │ ├── classes │ │ │ │ └── org │ │ │ │ │ └── csystem │ │ │ │ │ └── app │ │ │ │ │ ├── App.class │ │ │ │ │ ├── Application.class │ │ │ │ │ └── commandprompt │ │ │ │ │ ├── CommandInfo.class │ │ │ │ │ ├── CommandPrompt.class │ │ │ │ │ └── ICommandConsumer.class │ │ │ └── CommandPromptApp-11.0.0.jar.original │ │ ├── src │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── csystem │ │ │ │ └── app │ │ │ │ ├── App.java │ │ │ │ └── commandprompt │ │ │ │ └── ICommandConsumer.java │ │ └── .idea │ │ │ ├── .gitignore │ │ │ ├── jpa-buddy.xml │ │ │ └── vcs.xml │ ├── 011-DemoCarCameraSimulation │ │ ├── CarCameraSimulation │ │ │ ├── .idea │ │ │ │ ├── Application-Maven.iml │ │ │ │ ├── .gitignore │ │ │ │ └── jpa-buddy.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── java │ │ │ │ │ └── org │ │ │ │ │ └── csystem │ │ │ │ │ └── app │ │ │ │ │ └── camera │ │ │ │ │ └── car │ │ │ │ │ ├── MapType.java │ │ │ │ │ └── App.java │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── csystem │ │ │ │ └── app │ │ │ │ └── SampleTest.java │ │ └── CarCameraSource │ │ │ ├── target │ │ │ ├── maven-archiver │ │ │ │ └── pom.properties │ │ │ ├── maven-status │ │ │ │ └── maven-compiler-plugin │ │ │ │ │ ├── testCompile │ │ │ │ │ └── default-testCompile │ │ │ │ │ │ ├── createdFiles.lst │ │ │ │ │ │ └── inputFiles.lst │ │ │ │ │ └── compile │ │ │ │ │ └── default-compile │ │ │ │ │ └── createdFiles.lst │ │ │ ├── CarCameraSourceLib-11.0.0.jar │ │ │ ├── classes │ │ │ │ └── org │ │ │ │ │ └── csystem │ │ │ │ │ └── camera │ │ │ │ │ └── car │ │ │ │ │ └── source │ │ │ │ │ ├── CarSource.class │ │ │ │ │ ├── CarFactory.class │ │ │ │ │ └── CarCameraInfo.class │ │ │ └── test-classes │ │ │ │ └── org │ │ │ │ └── csystem │ │ │ │ └── camera │ │ │ │ └── car │ │ │ │ └── source │ │ │ │ └── SampleTest.class │ │ │ ├── src │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── csystem │ │ │ │ └── camera │ │ │ │ └── car │ │ │ │ └── source │ │ │ │ └── SampleTest.java │ │ │ └── .idea │ │ │ ├── .gitignore │ │ │ ├── jpa-buddy.xml │ │ │ └── vcs.xml │ ├── 001-DemoLibraryUsageMavenLocal │ │ ├── readme.txt │ │ ├── src │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── csystem │ │ │ │ └── app │ │ │ │ └── App.java │ │ └── .idea │ │ │ ├── .gitignore │ │ │ ├── jpa-buddy.xml │ │ │ └── vcs.xml │ ├── 005-BirthDayApp │ │ ├── LibraryWithLocalDate │ │ │ ├── target │ │ │ │ ├── maven-status │ │ │ │ │ └── maven-compiler-plugin │ │ │ │ │ │ ├── testCompile │ │ │ │ │ │ └── default-testCompile │ │ │ │ │ │ │ ├── inputFiles.lst │ │ │ │ │ │ │ └── createdFiles.lst │ │ │ │ │ │ └── compile │ │ │ │ │ │ └── default-compile │ │ │ │ │ │ └── createdFiles.lst │ │ │ │ ├── maven-archiver │ │ │ │ │ └── pom.properties │ │ │ │ ├── BirthDateAppLib-11.0.2.jar │ │ │ │ └── classes │ │ │ │ │ └── org │ │ │ │ │ └── csystem │ │ │ │ │ └── birthdate │ │ │ │ │ └── remainder │ │ │ │ │ ├── BirthDayStatus.class │ │ │ │ │ └── BirthDateOperations.class │ │ │ ├── src │ │ │ │ └── main │ │ │ │ │ └── java │ │ │ │ │ └── org │ │ │ │ │ └── csystem │ │ │ │ │ └── birthdate │ │ │ │ │ └── remainder │ │ │ │ │ └── BirthDayStatus.java │ │ │ └── .idea │ │ │ │ ├── .gitignore │ │ │ │ └── jpa-buddy.xml │ │ ├── BirthDayApp │ │ │ ├── target │ │ │ │ ├── maven-archiver │ │ │ │ │ └── pom.properties │ │ │ │ ├── BirthDayApp-11.0.0.jar │ │ │ │ ├── BirthDayApp-11.0.0.jar.original │ │ │ │ ├── classes │ │ │ │ │ └── org │ │ │ │ │ │ └── csystem │ │ │ │ │ │ └── app │ │ │ │ │ │ ├── App.class │ │ │ │ │ │ ├── Application.class │ │ │ │ │ │ └── Application$1.class │ │ │ │ └── maven-status │ │ │ │ │ └── maven-compiler-plugin │ │ │ │ │ └── compile │ │ │ │ │ └── default-compile │ │ │ │ │ └── createdFiles.lst │ │ │ ├── src │ │ │ │ └── main │ │ │ │ │ └── java │ │ │ │ │ └── org │ │ │ │ │ └── csystem │ │ │ │ │ └── app │ │ │ │ │ └── App.java │ │ │ └── .idea │ │ │ │ ├── .gitignore │ │ │ │ ├── jpa-buddy.xml │ │ │ │ └── vcs.xml │ │ ├── LibraryWithCalendar │ │ │ ├── src │ │ │ │ ├── main │ │ │ │ │ └── java │ │ │ │ │ │ └── org │ │ │ │ │ │ └── csystem │ │ │ │ │ │ └── birthdate │ │ │ │ │ │ └── remainder │ │ │ │ │ │ └── BirthDayStatus.java │ │ │ │ └── .idea │ │ │ │ │ ├── .gitignore │ │ │ │ │ └── vcs.xml │ │ │ └── .idea │ │ │ │ ├── .gitignore │ │ │ │ └── jpa-buddy.xml │ │ ├── LibraryWithDateTime │ │ │ ├── src │ │ │ │ └── main │ │ │ │ │ └── java │ │ │ │ │ └── org │ │ │ │ │ └── csystem │ │ │ │ │ └── birthdate │ │ │ │ │ └── remainder │ │ │ │ │ └── BirthDayStatus.java │ │ │ └── .idea │ │ │ │ ├── .gitignore │ │ │ │ └── jpa-buddy.xml │ │ └── .idea │ │ │ ├── .gitignore │ │ │ └── vcs.xml │ ├── 010-DemoBankCustomerQueue │ │ ├── src │ │ │ ├── main │ │ │ │ └── java │ │ │ │ │ └── org │ │ │ │ │ └── csystem │ │ │ │ │ └── app │ │ │ │ │ ├── bank │ │ │ │ │ └── CustomerPriority.java │ │ │ │ │ └── App.java │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── csystem │ │ │ │ └── app │ │ │ │ └── SampleTest.java │ │ ├── target │ │ │ └── classes │ │ │ │ └── org │ │ │ │ └── csystem │ │ │ │ └── app │ │ │ │ ├── App.class │ │ │ │ ├── Application.class │ │ │ │ ├── Application$1.class │ │ │ │ └── bank │ │ │ │ ├── Customer.class │ │ │ │ ├── CustomerPriority.class │ │ │ │ └── factory │ │ │ │ └── CustomerFactory.class │ │ └── .idea │ │ │ ├── .gitignore │ │ │ ├── jpa-buddy.xml │ │ │ └── vcs.xml │ ├── 008-DemoTypeElementsApp │ │ ├── src │ │ │ ├── test │ │ │ │ └── java │ │ │ │ │ └── org │ │ │ │ │ └── csystem │ │ │ │ │ └── app │ │ │ │ │ └── SampleTest.java │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── csystem │ │ │ │ └── app │ │ │ │ └── App.java │ │ └── .idea │ │ │ ├── .gitignore │ │ │ ├── jpa-buddy.xml │ │ │ └── vcs.xml │ ├── 007-DemoTypeDeclaredElementsApp │ │ ├── src │ │ │ ├── test │ │ │ │ └── java │ │ │ │ │ └── org │ │ │ │ │ └── csystem │ │ │ │ │ └── app │ │ │ │ │ └── SampleTest.java │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── csystem │ │ │ │ └── app │ │ │ │ └── App.java │ │ └── .idea │ │ │ ├── .gitignore │ │ │ └── jpa-buddy.xml │ ├── 009-CommandPromptApp │ │ ├── src │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── csystem │ │ │ │ └── app │ │ │ │ └── App.java │ │ └── .idea │ │ │ ├── .gitignore │ │ │ ├── jpa-buddy.xml │ │ │ └── vcs.xml │ ├── 002-DemoLibraryUsageProjectLocal │ │ ├── libs │ │ │ └── com-karandev-util-console-11.0.0.jar │ │ ├── src │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── csystem │ │ │ │ └── app │ │ │ │ └── App.java │ │ └── .idea │ │ │ ├── .gitignore │ │ │ └── jpa-buddy.xml │ ├── 003-DemoLibraryUsageMavenRemote │ │ ├── src │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── csystem │ │ │ │ └── app │ │ │ │ └── App.java │ │ └── .idea │ │ │ ├── .gitignore │ │ │ └── jpa-buddy.xml │ └── 004-DemoRedirectionApplications │ │ ├── NumberReader │ │ ├── src │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── csystem │ │ │ │ └── app │ │ │ │ └── App.java │ │ └── .idea │ │ │ ├── .gitignore │ │ │ └── jpa-buddy.xml │ │ └── RandomNumberGenerator │ │ ├── src │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── csystem │ │ │ └── app │ │ │ └── App.java │ │ └── .idea │ │ ├── .gitignore │ │ └── jpa-buddy.xml └── GenericProjects │ └── IntelliJ │ ├── SpringBoot │ ├── Application-Gradle-Groovy │ │ ├── settings.gradle │ │ ├── src │ │ │ └── main │ │ │ │ └── resources │ │ │ │ ├── application.properties │ │ │ │ └── banner.txt │ │ └── gradle │ │ │ └── wrapper │ │ │ └── gradle-wrapper.jar │ ├── Application-Gradle-Kotlin │ │ ├── settings.gradle.kts │ │ ├── src │ │ │ └── main │ │ │ │ └── resources │ │ │ │ ├── application.properties │ │ │ │ └── banner.txt │ │ └── gradle │ │ │ └── wrapper │ │ │ └── gradle-wrapper.jar │ ├── Application-Gradle-Groovy-Web │ │ ├── settings.gradle │ │ ├── src │ │ │ └── main │ │ │ │ └── resources │ │ │ │ ├── application.properties │ │ │ │ └── banner.txt │ │ └── gradle │ │ │ └── wrapper │ │ │ └── gradle-wrapper.jar │ ├── Application-Gradle-Kotlin-Web │ │ ├── settings.gradle.kts │ │ ├── src │ │ │ └── main │ │ │ │ └── resources │ │ │ │ ├── application.properties │ │ │ │ └── banner.txt │ │ └── gradle │ │ │ └── wrapper │ │ │ └── gradle-wrapper.jar │ ├── Application-Maven │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ ├── application.properties │ │ │ └── banner.txt │ └── Application-Maven-Web │ │ └── src │ │ └── main │ │ └── resources │ │ ├── application.properties │ │ └── banner.txt │ ├── Library-Maven │ ├── src │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── csystem │ │ │ └── SampleTest.java │ └── .idea │ │ ├── .gitignore │ │ ├── vcs.xml │ │ └── jpa-buddy.xml │ ├── Application │ ├── src │ │ ├── main │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── csystem │ │ │ │ └── app │ │ │ │ ├── Application.java │ │ │ │ └── App.java │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── csystem │ │ │ └── app │ │ │ └── SampleTest.java │ └── .idea │ │ ├── .gitignore │ │ ├── jpa-buddy.xml │ │ └── vcs.xml │ └── ModularApplication │ └── .idea │ ├── .gitignore │ ├── jpa-buddy.xml │ └── vcs.xml └── doc ├── figures ├── JDBC.png ├── CollectionsInCourse.png ├── GeneralMultilayerArchitecture.png └── MultiLayerArchitecture-Mehmet-Gunes.png ├── Examples-Java-Basic.txt ├── notes └── Sayi-Sistemleri.pdf └── ebooks └── IntelliJIDEA_ReferenceCard-25.09.2023.pdf /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /src/SampleCodes/Sample/datafiles/people-empty.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SampleCodes/Sample/datafiles/products-empty.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/DataSourceLib/datafiles/people-empty.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/DataSourceLib/datafiles/products-empty.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SampleCodes/Sample/datafiles/numbers-noprime.csv: -------------------------------------------------------------------------------- 1 | 5 2 | 66 3 | 1 4 | -1 5 | 0 6 | 8 7 | -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/DateTimeLegacyLib/doc/element-list: -------------------------------------------------------------------------------- 1 | org.csystem.util.datetime.legacy 2 | -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/DateTimeLegacyLib/doc/legal/LICENSE: -------------------------------------------------------------------------------- 1 | Please see ..\java.base\LICENSE 2 | -------------------------------------------------------------------------------- /doc/figures/JDBC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/doc/figures/JDBC.png -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/DateTimeLegacyLib/doc/legal/COPYRIGHT: -------------------------------------------------------------------------------- 1 | Please see ..\java.base\COPYRIGHT 2 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/008-DemoScheduled/settings.gradle.kts: -------------------------------------------------------------------------------- 1 | rootProject.name = "DemoScheduledApp" 2 | -------------------------------------------------------------------------------- /src/SampleCodes/SampleJavaBasic/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/FlightSystem/CityService/settings.gradle.kts: -------------------------------------------------------------------------------- 1 | rootProject.name = "CityService" 2 | -------------------------------------------------------------------------------- /doc/Examples-Java-Basic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/doc/Examples-Java-Basic.txt -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/DateTimeLegacyLib/doc/module-search-index.js: -------------------------------------------------------------------------------- 1 | moduleSearchIndex = [];updateSearchResults(); -------------------------------------------------------------------------------- /src/SampleCodes/CodingChallenges/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/notes/Sayi-Sistemleri.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/doc/notes/Sayi-Sistemleri.pdf -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/SchedulerLib/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Projects/006-SimpleCommandPromptApp/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SampleCodes/CodingChallenges/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/figures/CollectionsInCourse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/doc/figures/CollectionsInCourse.png -------------------------------------------------------------------------------- /src/GenericProjects/IntelliJ/SpringBoot/Application-Gradle-Groovy/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'Application-Gradle-Groovy' 2 | -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/DateTimeLegacyLib/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/SchedulerLib/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Projects/011-DemoCarCameraSimulation/CarCameraSimulation/.idea/Application-Maven.iml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/GenericProjects/IntelliJ/SpringBoot/Application-Gradle-Kotlin/settings.gradle.kts: -------------------------------------------------------------------------------- 1 | rootProject.name = "Application-Gradle-Kotlin" 2 | -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/DateTimeLegacyLib/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Projects/001-DemoLibraryUsageMavenLocal/readme.txt: -------------------------------------------------------------------------------- 1 | Alert: com-karandev-util-console-11.0.0 library must be in maven local repository -------------------------------------------------------------------------------- /src/Projects/005-BirthDayApp/LibraryWithLocalDate/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/005-PeriodicRandomTextGenerator/settings.gradle.kts: -------------------------------------------------------------------------------- 1 | rootProject.name = "PeriodicRandomNumberGenerator" 2 | -------------------------------------------------------------------------------- /src/GenericProjects/IntelliJ/SpringBoot/Application-Gradle-Groovy-Web/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'Application-Gradle-Groovy-Web' 2 | -------------------------------------------------------------------------------- /src/Projects/005-BirthDayApp/LibraryWithLocalDate/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/008-DemoScheduled/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | spring.application.name=Application-Gradle-Kotlin 2 | -------------------------------------------------------------------------------- /src/SampleCodes/Sample/datafiles/numbers2.csv: -------------------------------------------------------------------------------- 1 | 11 2 | 66 3 | 83 4 | 68 5 | 83 6 | 17 7 | 76 8 | 15 9 | 16 10 | 78 11 | 76 12 | 82 13 | -------------------------------------------------------------------------------- /src/GenericProjects/IntelliJ/SpringBoot/Application-Gradle-Kotlin-Web/settings.gradle.kts: -------------------------------------------------------------------------------- 1 | rootProject.name = "Application-Gradle-Kotlin-Web" 2 | -------------------------------------------------------------------------------- /src/GenericProjects/IntelliJ/SpringBoot/Application-Maven/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | spring.application.name=Application-Maven 2 | -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/MathLib/target/maven-archiver/pom.properties: -------------------------------------------------------------------------------- 1 | artifactId=org-csystem-math 2 | groupId=org.csystem 3 | version=12.0.0 4 | -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/maven-archiver/pom.properties: -------------------------------------------------------------------------------- 1 | artifactId=org-csystem-util 2 | groupId=org.csystem 3 | version=13.0.0 4 | -------------------------------------------------------------------------------- /src/Projects/005-BirthDayApp/BirthDayApp/target/maven-archiver/pom.properties: -------------------------------------------------------------------------------- 1 | artifactId=BirthDayApp 2 | groupId=org.csystem 3 | version=11.0.0 4 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/002-DemoApplicationRunnerApp/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | spring.application.name=Application-Maven 2 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/009-EarthquakeServiceGeonames/EarthquakeService/settings.gradle.kts: -------------------------------------------------------------------------------- 1 | rootProject.name = "EarthquakeJsonServiceApp" 2 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/010-PostalCodeServiceGeonames/PostalCodeJsonService/settings.gradle.kts: -------------------------------------------------------------------------------- 1 | rootProject.name = "PostalCodeJsonService" 2 | -------------------------------------------------------------------------------- /src/SampleCodes/CodingChallenges/target/maven-archiver/pom.properties: -------------------------------------------------------------------------------- 1 | artifactId=org-csystem-util 2 | groupId=org.csystem 3 | version=12.0.0 4 | -------------------------------------------------------------------------------- /doc/figures/GeneralMultilayerArchitecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/doc/figures/GeneralMultilayerArchitecture.png -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/DataUtilLib/target/maven-archiver/pom.properties: -------------------------------------------------------------------------------- 1 | artifactId=org-csystem-data 2 | groupId=org.csystem 3 | version=11.0.0 4 | -------------------------------------------------------------------------------- /src/Projects/006-SimpleCommandPromptApp/target/maven-archiver/pom.properties: -------------------------------------------------------------------------------- 1 | artifactId=CommandPromptApp 2 | groupId=org.csystem 3 | version=11.0.0 4 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/003-DemoApplicationRunnerAppDONOT/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | spring.application.name=Application-Maven 2 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/007-DemoPasswordGeneratorService/PasswordGeneratorService/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'PasswordGeneratorService' 2 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/007-DemoPasswordGeneratorService/PasswordGeneratorService/src/main/resources/application-dev.properties: -------------------------------------------------------------------------------- 1 | server.port=6767 2 | -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/SchedulerLib/target/maven-archiver/pom.properties: -------------------------------------------------------------------------------- 1 | artifactId=org-csystem-scheduler 2 | groupId=org.csystem 3 | version=14.0.1 4 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/009-EarthquakeServiceGeonames/EarthquakeUpdateScheduler/settings.gradle.kts: -------------------------------------------------------------------------------- 1 | rootProject.name = "EarthquakeUpdateScheduler" 2 | -------------------------------------------------------------------------------- /src/GenericProjects/IntelliJ/SpringBoot/Application-Gradle-Groovy/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | spring.application.name=Application-Gradle-Groovy 2 | -------------------------------------------------------------------------------- /src/GenericProjects/IntelliJ/SpringBoot/Application-Gradle-Kotlin/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | spring.application.name=Application-Gradle-Kotlin 2 | -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/MathLib/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst: -------------------------------------------------------------------------------- 1 | org\csystem\math\SampleTest.class 2 | -------------------------------------------------------------------------------- /src/Projects/005-BirthDayApp/LibraryWithLocalDate/target/maven-archiver/pom.properties: -------------------------------------------------------------------------------- 1 | artifactId=BirthDateAppLib 2 | groupId=org.csystem 3 | version=11.0.2 4 | -------------------------------------------------------------------------------- /src/SampleCodes/SampleJavaBasic/src/org/csystem/parser/IParser.java: -------------------------------------------------------------------------------- 1 | package org.csystem.parser; 2 | 3 | public interface IParser { 4 | void parse(); 5 | } 6 | -------------------------------------------------------------------------------- /doc/ebooks/IntelliJIDEA_ReferenceCard-25.09.2023.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/doc/ebooks/IntelliJIDEA_ReferenceCard-25.09.2023.pdf -------------------------------------------------------------------------------- /doc/figures/MultiLayerArchitecture-Mehmet-Gunes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/doc/figures/MultiLayerArchitecture-Mehmet-Gunes.png -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/DateTimeLegacyLib/doc/tag-search-index.js: -------------------------------------------------------------------------------- 1 | tagSearchIndex = [{"l":"Serialized Form","h":"","u":"serialized-form.html"}];updateSearchResults(); -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/DateTimeLegacyLib/target/maven-archiver/pom.properties: -------------------------------------------------------------------------------- 1 | artifactId=org-csystem-util-datetime-legacy 2 | groupId=org.csystem 3 | version=11.1.0 4 | -------------------------------------------------------------------------------- /src/Libraries/KaranDevLibraries/DateTimeLib/src/test/java/com/karandev/datetime/SampleTest.java: -------------------------------------------------------------------------------- 1 | package com.karandev.datetime; 2 | 3 | public class SampleTest { 4 | } 5 | -------------------------------------------------------------------------------- /src/Projects/011-DemoCarCameraSimulation/CarCameraSource/target/maven-archiver/pom.properties: -------------------------------------------------------------------------------- 1 | artifactId=CarCameraSourceLib 2 | groupId=org.csystem 3 | version=11.0.0 4 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/006-DemoNetworkInfoService/src/main/resources/application-dev.properties: -------------------------------------------------------------------------------- 1 | spring.application.name=NetworkInfoService 2 | 3 | server.port=6767 4 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/006-DemoNetworkInfoService/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | spring.application.name=NetworkInfoService 2 | 3 | server.port=50541 4 | -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/DataUtilLib/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst: -------------------------------------------------------------------------------- 1 | org/csystem/RepositoryExceptionTest.class 2 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/001-DemoCoreAnnotations/src/main/resources/application-demo.properties: -------------------------------------------------------------------------------- 1 | com.karandev.datetime.format.datetime.custom=dd/MM/yyyy HH.mm.ss 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/SampleCodes/SampleJavaBasic/src/org/csystem/game/card/CardType.java: -------------------------------------------------------------------------------- 1 | package org.csystem.game.card; 2 | 3 | public enum CardType { 4 | SPADE, CLUB, DIAMOND, HEART 5 | } 6 | -------------------------------------------------------------------------------- /src/GenericProjects/IntelliJ/SpringBoot/Application-Maven-Web/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | spring.application.name=Application-Maven-Web 2 | 3 | server.port=6767 4 | -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/DataSourceLib/src/test/java/org/csystem/util/datasource/SampleTest.java: -------------------------------------------------------------------------------- 1 | package org.csystem.util.datasource; 2 | 3 | public class SampleTest { 4 | } 5 | -------------------------------------------------------------------------------- /src/SampleCodes/SampleJavaBasic/src/org/csystem/parser/source/ISource.java: -------------------------------------------------------------------------------- 1 | package org.csystem.parser.source; 2 | 3 | public interface ISource { 4 | int nextChar(); 5 | } 6 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/007-DemoPasswordGeneratorService/PasswordGeneratorService/passwords/bekir: -------------------------------------------------------------------------------- 1 | 2024-06-29T14:02:47.9778979 2 | BxVX 3 | NWTW 4 | ZIKz 5 | gZzp 6 | VfOb 7 | cCHI 8 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/007-DemoPasswordGeneratorService/PasswordGeneratorService/passwords/deniz: -------------------------------------------------------------------------------- 1 | 2024-06-29T13:59:26.1463149 2 | bVLh 3 | mvZF 4 | IQCe 5 | Xvyb 6 | WZmB 7 | YvAW 8 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/007-DemoPasswordGeneratorService/PasswordGeneratorService/passwords/eda: -------------------------------------------------------------------------------- 1 | 2024-06-29T14:02:15.4142359 2 | zLQZ 3 | vDjV 4 | ylvF 5 | eFBp 6 | MpCs 7 | FDiZ 8 | -------------------------------------------------------------------------------- /src/GenericProjects/IntelliJ/SpringBoot/Application-Gradle-Groovy-Web/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | spring.application.name=Application-Gradle-Groovy 2 | 3 | server.port=6767 4 | -------------------------------------------------------------------------------- /src/GenericProjects/IntelliJ/SpringBoot/Application-Gradle-Kotlin-Web/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | spring.application.name=Application-Gradle-Kotlin-Web 2 | 3 | server.port=6767 -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/DateTimeLegacyLib/doc/resources/x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/DateTimeLegacyLib/doc/resources/x.png -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/007-DemoPasswordGeneratorService/ServiceLib/target/maven-archiver/pom.properties: -------------------------------------------------------------------------------- 1 | artifactId=PasswordGeneratorServiceLib 2 | groupId=org.csystem 3 | version=1.0.0 4 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/010-PostalCodeServiceGeonames/DataServiceLib/target/maven-archiver/pom.properties: -------------------------------------------------------------------------------- 1 | artifactId=PostalCodeDataServiceLib 2 | groupId=org.csystem 3 | version=1.0.0 4 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/010-PostalCodeServiceGeonames/RepositoryLib/target/maven-archiver/pom.properties: -------------------------------------------------------------------------------- 1 | artifactId=PostalCodeRepositoryLib 2 | groupId=org.csystem 3 | version=1.0.0 4 | -------------------------------------------------------------------------------- /src/SampleCodes/Sample/target/classes/org/csystem/app/App.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/SampleCodes/Sample/target/classes/org/csystem/app/App.class -------------------------------------------------------------------------------- /src/Projects/011-DemoCarCameraSimulation/CarCameraSource/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst: -------------------------------------------------------------------------------- 1 | org\csystem\camera\car\source\SampleTest.class 2 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/004-DemoCollectionInjectionApp/OperationLib/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst: -------------------------------------------------------------------------------- 1 | org\csystem\SampleTest.class 2 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/009-EarthquakeServiceGeonames/RespositoryLib/target/maven-archiver/pom.properties: -------------------------------------------------------------------------------- 1 | artifactId=EarthquakeSystemRepositoryLib 2 | groupId=org.csystem 3 | version=1.0.0 4 | -------------------------------------------------------------------------------- /src/SampleCodes/CodingChallenges/target/org-csystem-util-12.0.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/SampleCodes/CodingChallenges/target/org-csystem-util-12.0.0.jar -------------------------------------------------------------------------------- /src/SampleCodes/Sample/target/classes/org/csystem/app/Device.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/SampleCodes/Sample/target/classes/org/csystem/app/Device.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/DateTimeLegacyLib/doc/resources/glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/DateTimeLegacyLib/doc/resources/glass.png -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/MathLib/target/org-csystem-math-12.0.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/MathLib/target/org-csystem-math-12.0.0.jar -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/org-csystem-util-13.0.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/org-csystem-util-13.0.0.jar -------------------------------------------------------------------------------- /src/Projects/005-BirthDayApp/BirthDayApp/target/BirthDayApp-11.0.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Projects/005-BirthDayApp/BirthDayApp/target/BirthDayApp-11.0.0.jar -------------------------------------------------------------------------------- /src/Projects/010-DemoBankCustomerQueue/src/main/java/org/csystem/app/bank/CustomerPriority.java: -------------------------------------------------------------------------------- 1 | package org.csystem.app.bank; 2 | 3 | public enum CustomerPriority { 4 | HIGH, MID, NORMAL 5 | } 6 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/007-DemoPasswordGeneratorService/RepositoryLib/target/maven-archiver/pom.properties: -------------------------------------------------------------------------------- 1 | artifactId=PasswordGeneratorRepositoryLib 2 | groupId=org.csystem 3 | version=1.0.0 4 | -------------------------------------------------------------------------------- /src/GenericProjects/IntelliJ/Library-Maven/src/test/java/org/csystem/SampleTest.java: -------------------------------------------------------------------------------- 1 | package org.csystem; 2 | 3 | public class SampleTest { 4 | public void test() 5 | { 6 | 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/DataSourceLib/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/DataSourceLib/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/DateTimeLegacyLib/doc/package-search-index.js: -------------------------------------------------------------------------------- 1 | packageSearchIndex = [{"l":"All Packages","u":"allpackages-index.html"},{"l":"org.csystem.util.datetime.legacy"}];updateSearchResults(); -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/004-DemoCollectionInjectionApp/OperationApplication/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | spring.application.name=OperationApplication 2 | 3 | com.berkayyilmaz.value=67 4 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/004-DemoCollectionInjectionApp/OperationLib/target/maven-archiver/pom.properties: -------------------------------------------------------------------------------- 1 | artifactId=com-berkayyilmaz-library-operation 2 | groupId=com.berkayyilmaz 3 | version=11.0.0 4 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/005-PeriodicRandomTextGenerator/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | spring.application.name=Application-Gradle-Kotlin 2 | 3 | gen.period=1 4 | gen.min=5 5 | gen.bound=11 6 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/007-DemoPasswordGeneratorService/PasswordGeneratorService/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | spring.application.name=PasswordGeneratorService 2 | 3 | server.port=50500 4 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/009-EarthquakeServiceGeonames/EarthquakeDataServiceLib/target/maven-archiver/pom.properties: -------------------------------------------------------------------------------- 1 | artifactId=EarthquakeSystemDataServiceLib 2 | groupId=org.csystem 3 | version=1.0.0 4 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/009-EarthquakeServiceGeonames/EarthquakeDataServiceLib/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst: -------------------------------------------------------------------------------- 1 | org\csystem\SampleTest.class 2 | -------------------------------------------------------------------------------- /src/SampleCodes/Sample/target/classes/org/csystem/app/Application.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/SampleCodes/Sample/target/classes/org/csystem/app/Application.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/DataUtilLib/target/org-csystem-data-11.0.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/DataUtilLib/target/org-csystem-data-11.0.0.jar -------------------------------------------------------------------------------- /src/Projects/006-SimpleCommandPromptApp/target/CommandPromptApp-11.0.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Projects/006-SimpleCommandPromptApp/target/CommandPromptApp-11.0.0.jar -------------------------------------------------------------------------------- /src/Projects/008-DemoTypeElementsApp/src/test/java/org/csystem/app/SampleTest.java: -------------------------------------------------------------------------------- 1 | package org.csystem.app; 2 | 3 | public class SampleTest { 4 | public void test() 5 | { 6 | 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/009-EarthquakeServiceGeonames/GeonamesEarthquakeServiceLib/target/maven-archiver/pom.properties: -------------------------------------------------------------------------------- 1 | artifactId=GeonamesEarthquakeServiceLib 2 | groupId=org.csystem 3 | version=1.0.0 4 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/009-EarthquakeServiceGeonames/GeonamesEarthquakeServiceLib/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst: -------------------------------------------------------------------------------- 1 | org\csystem\SampleTest.class 2 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/010-PostalCodeServiceGeonames/GeonamesPostalCodeServiceLib/target/maven-archiver/pom.properties: -------------------------------------------------------------------------------- 1 | artifactId=GeonamesPostalCodeServiceLib 2 | groupId=org.csystem 3 | version=1.0.0 4 | -------------------------------------------------------------------------------- /src/Projects/007-DemoTypeDeclaredElementsApp/src/test/java/org/csystem/app/SampleTest.java: -------------------------------------------------------------------------------- 1 | package org.csystem.app; 2 | 3 | public class SampleTest { 4 | public void test() 5 | { 6 | 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /src/Projects/011-DemoCarCameraSimulation/CarCameraSimulation/src/main/java/org/csystem/app/camera/car/MapType.java: -------------------------------------------------------------------------------- 1 | package org.csystem.app.camera.car; 2 | 3 | public enum MapType { 4 | HASH_MAP, TREE_MAP 5 | } 6 | -------------------------------------------------------------------------------- /src/SampleCodes/SampleJavaBasic/src/com/baharkaradavut/company/staff/IEmployee.java: -------------------------------------------------------------------------------- 1 | package com.baharkaradavut.company.staff; 2 | 3 | public interface IEmployee { 4 | double calculateInsurancePayment(); 5 | } 6 | -------------------------------------------------------------------------------- /src/GenericProjects/IntelliJ/Application/src/main/java/org/csystem/app/Application.java: -------------------------------------------------------------------------------- 1 | package org.csystem.app; 2 | 3 | class Application { 4 | public static void run(String[] args) 5 | { 6 | 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/MathLib/target/classes/org/csystem/math/Complex.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/MathLib/target/classes/org/csystem/math/Complex.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/SchedulerLib/target/org-csystem-scheduler-13.0.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/SchedulerLib/target/org-csystem-scheduler-13.0.0.jar -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/SchedulerLib/target/org-csystem-scheduler-13.1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/SchedulerLib/target/org-csystem-scheduler-13.1.0.jar -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/SchedulerLib/target/org-csystem-scheduler-14.0.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/SchedulerLib/target/org-csystem-scheduler-14.0.0.jar -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/SchedulerLib/target/org-csystem-scheduler-14.0.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/SchedulerLib/target/org-csystem-scheduler-14.0.1.jar -------------------------------------------------------------------------------- /src/Projects/005-BirthDayApp/BirthDayApp/target/BirthDayApp-11.0.0.jar.original: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Projects/005-BirthDayApp/BirthDayApp/target/BirthDayApp-11.0.0.jar.original -------------------------------------------------------------------------------- /src/Projects/006-SimpleCommandPromptApp/target/classes/org/csystem/app/App.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Projects/006-SimpleCommandPromptApp/target/classes/org/csystem/app/App.class -------------------------------------------------------------------------------- /src/Projects/010-DemoBankCustomerQueue/src/test/java/org/csystem/app/SampleTest.java: -------------------------------------------------------------------------------- 1 | package org.csystem; 2 | 3 | public class SampleTest { 4 | public void test() 5 | { 6 | 7 | } 8 | 9 | } 10 | -------------------------------------------------------------------------------- /src/Projects/010-DemoBankCustomerQueue/target/classes/org/csystem/app/App.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Projects/010-DemoBankCustomerQueue/target/classes/org/csystem/app/App.class -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/007-DemoPasswordGeneratorService/RepositoryLib/passwords/oguz: -------------------------------------------------------------------------------- 1 | 2024-06-23T16:03:06.3115065 2 | ucsn 3 | wGyS 4 | ESsC 5 | wmzZ 6 | eBHO 7 | AnKQ 8 | pzHK 9 | lMXk 10 | vgLh 11 | REXy 12 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/008-DemoScheduled/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Projects/012-SpringBoot/008-DemoScheduled/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /src/SampleCodes/Sample/src/main/java/org/csystem/app/App.java: -------------------------------------------------------------------------------- 1 | package org.csystem.app; 2 | 3 | class App { 4 | public static void main(String[] args) 5 | { 6 | Application.run(args); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /src/SampleCodes/Sample/target/classes/org/csystem/app/sensor/entity/Sensor.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/SampleCodes/Sample/target/classes/org/csystem/app/sensor/entity/Sensor.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/MathLib/target/classes/org/csystem/math/Fraction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/MathLib/target/classes/org/csystem/math/Fraction.class -------------------------------------------------------------------------------- /src/Projects/005-BirthDayApp/BirthDayApp/target/classes/org/csystem/app/App.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Projects/005-BirthDayApp/BirthDayApp/target/classes/org/csystem/app/App.class -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/009-EarthquakeServiceGeonames/EarthquakeServiceCurlRequestGenerator/target/maven-archiver/pom.properties: -------------------------------------------------------------------------------- 1 | artifactId=EarthquakeServiceCurlRequestGenerator 2 | groupId=org.csystem 3 | version=1.0.0 4 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/010-PostalCodeServiceGeonames/DataServiceLib/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst: -------------------------------------------------------------------------------- 1 | org\csystem\app\postalcode\data\service\SampleTest.class 2 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/010-PostalCodeServiceGeonames/RepositoryLib/data.mv.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Projects/012-SpringBoot/010-PostalCodeServiceGeonames/RepositoryLib/data.mv.db -------------------------------------------------------------------------------- /src/Projects/005-BirthDayApp/BirthDayApp/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst: -------------------------------------------------------------------------------- 1 | org\csystem\app\App.class 2 | org\csystem\app\Application$1.class 3 | org\csystem\app\Application.class 4 | -------------------------------------------------------------------------------- /src/Projects/005-BirthDayApp/LibraryWithCalendar/src/main/java/org/csystem/birthdate/remainder/BirthDayStatus.java: -------------------------------------------------------------------------------- 1 | package org.csystem.birthdate.remainder; 2 | 3 | public enum BirthDayStatus { 4 | BEFORE, AFTER, TODAY 5 | } 6 | -------------------------------------------------------------------------------- /src/Projects/005-BirthDayApp/LibraryWithDateTime/src/main/java/org/csystem/birthdate/remainder/BirthDayStatus.java: -------------------------------------------------------------------------------- 1 | package org.csystem.birthdate.remainder; 2 | 3 | public enum BirthDayStatus { 4 | BEFORE, AFTER, TODAY 5 | } 6 | -------------------------------------------------------------------------------- /src/Projects/005-BirthDayApp/LibraryWithLocalDate/src/main/java/org/csystem/birthdate/remainder/BirthDayStatus.java: -------------------------------------------------------------------------------- 1 | package org.csystem.birthdate.remainder; 2 | 3 | public enum BirthDayStatus { 4 | BEFORE, AFTER, TODAY 5 | } 6 | -------------------------------------------------------------------------------- /src/Projects/005-BirthDayApp/LibraryWithLocalDate/target/BirthDateAppLib-11.0.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Projects/005-BirthDayApp/LibraryWithLocalDate/target/BirthDateAppLib-11.0.2.jar -------------------------------------------------------------------------------- /src/Projects/006-SimpleCommandPromptApp/target/CommandPromptApp-11.0.0.jar.original: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Projects/006-SimpleCommandPromptApp/target/CommandPromptApp-11.0.0.jar.original -------------------------------------------------------------------------------- /src/Projects/008-DemoTypeElementsApp/src/main/java/org/csystem/app/App.java: -------------------------------------------------------------------------------- 1 | package org.csystem.app; 2 | 3 | class App { 4 | public static void main(String[] args) 5 | { 6 | Application.run(args); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /src/Projects/009-CommandPromptApp/src/main/java/org/csystem/app/App.java: -------------------------------------------------------------------------------- 1 | package org.csystem.app; 2 | 3 | class App { 4 | public static void main(String[] args) 5 | { 6 | Application.run(args); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/FlightSystem/DataServiceLib/src/main/java/org/csystem/app/flight/data/service/dto/CityUpdateDTO.java: -------------------------------------------------------------------------------- 1 | package org.csystem.app.flight.data.service.dto; 2 | 3 | public class CityUpdateDTO { 4 | 5 | } 6 | -------------------------------------------------------------------------------- /src/SampleCodes/CodingChallenges/target/classes/org/csystem/collection/CSDQueue.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/SampleCodes/CodingChallenges/target/classes/org/csystem/collection/CSDQueue.class -------------------------------------------------------------------------------- /src/SampleCodes/CodingChallenges/target/classes/org/csystem/collection/CSDStack.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/SampleCodes/CodingChallenges/target/classes/org/csystem/collection/CSDStack.class -------------------------------------------------------------------------------- /src/SampleCodes/CodingChallenges/target/classes/org/csystem/recursion/util/Util.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/SampleCodes/CodingChallenges/target/classes/org/csystem/recursion/util/Util.class -------------------------------------------------------------------------------- /src/SampleCodes/Sample/target/classes/org/csystem/app/fraction/ComplexFactory.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/SampleCodes/Sample/target/classes/org/csystem/app/fraction/ComplexFactory.class -------------------------------------------------------------------------------- /src/SampleCodes/Sample/target/classes/org/csystem/app/fraction/FractionFactory.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/SampleCodes/Sample/target/classes/org/csystem/app/fraction/FractionFactory.class -------------------------------------------------------------------------------- /src/SampleCodes/Sample/target/classes/org/csystem/random/lottery/NumericLottery.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/SampleCodes/Sample/target/classes/org/csystem/random/lottery/NumericLottery.class -------------------------------------------------------------------------------- /src/SampleCodes/SampleJavaBasic/.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /src/SampleCodes/SampleJavaBasic/src/org/csystem/game/card/CardValue.java: -------------------------------------------------------------------------------- 1 | package org.csystem.game.card; 2 | 3 | public enum CardValue { 4 | TWO, THREE, FOUR, FIVE, SIX, SEVEN, EIGHT, NINE, TEN, KNAVE, QUEEN, KING, ACE 5 | } 6 | -------------------------------------------------------------------------------- /src/GenericProjects/IntelliJ/Application/src/main/java/org/csystem/app/App.java: -------------------------------------------------------------------------------- 1 | package org.csystem.app; 2 | 3 | class App { 4 | public static void main(String[] args) 5 | { 6 | Application.run(args); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/MathLib/target/classes/org/csystem/math/MutableComplex.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/MathLib/target/classes/org/csystem/math/MutableComplex.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/MathLib/target/classes/org/csystem/math/geometry/Line.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/MathLib/target/classes/org/csystem/math/geometry/Line.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/MathLib/target/classes/org/csystem/math/geometry/Point.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/MathLib/target/classes/org/csystem/math/geometry/Point.class -------------------------------------------------------------------------------- /src/Projects/002-DemoLibraryUsageProjectLocal/libs/com-karandev-util-console-11.0.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Projects/002-DemoLibraryUsageProjectLocal/libs/com-karandev-util-console-11.0.0.jar -------------------------------------------------------------------------------- /src/Projects/005-BirthDayApp/BirthDayApp/src/main/java/org/csystem/app/App.java: -------------------------------------------------------------------------------- 1 | package org.csystem.app; 2 | 3 | class App { 4 | public static void main(String[] args) 5 | { 6 | Application.run(args); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /src/Projects/006-SimpleCommandPromptApp/src/main/java/org/csystem/app/App.java: -------------------------------------------------------------------------------- 1 | package org.csystem.app; 2 | 3 | class App { 4 | public static void main(String[] args) 5 | { 6 | Application.run(args); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /src/Projects/010-DemoBankCustomerQueue/src/main/java/org/csystem/app/App.java: -------------------------------------------------------------------------------- 1 | package org.csystem.app; 2 | 3 | class App { 4 | public static void main(String[] args) 5 | { 6 | Application.run(args); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /src/Projects/010-DemoBankCustomerQueue/target/classes/org/csystem/app/Application.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Projects/010-DemoBankCustomerQueue/target/classes/org/csystem/app/Application.class -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/009-EarthquakeServiceGeonames/EarthquakeServiceCurlRequestGenerator/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst: -------------------------------------------------------------------------------- 1 | org\csystem\util\challenge\SampleTest.class 2 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/FlightSystem/CityService/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Projects/012-SpringBoot/FlightSystem/CityService/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/DataSourceLib/src/main/java/org/csystem/util/datasource/people/MaritalStatus.java: -------------------------------------------------------------------------------- 1 | package org.csystem.util.datasource.people; 2 | 3 | public enum MaritalStatus { 4 | SINGLE, MARRIED, DIVORCED, WIDOW 5 | } 6 | -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/MathLib/target/classes/org/csystem/math/geometry/Circle.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/MathLib/target/classes/org/csystem/math/geometry/Circle.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/MathLib/target/classes/org/csystem/math/geometry/Triangle.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/MathLib/target/classes/org/csystem/math/geometry/Triangle.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/MathLib/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst: -------------------------------------------------------------------------------- 1 | D:\Repositories\JavaApp1-Nov-2023\src\Libraries\CSDLibraries\MathLib\src\test\java\org\csystem\math\SampleTest.java 2 | -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/MathLib/target/test-classes/org/csystem/math/SampleTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/MathLib/target/test-classes/org/csystem/math/SampleTest.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/classes/org/csystem/util/array/ArrayUtil.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/classes/org/csystem/util/array/ArrayUtil.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/classes/org/csystem/util/console/Console.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/classes/org/csystem/util/console/Console.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/classes/org/csystem/util/matrix/MatrixUtil.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/classes/org/csystem/util/matrix/MatrixUtil.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/classes/org/csystem/util/string/StringUtil.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/classes/org/csystem/util/string/StringUtil.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/classes/org/csystem/util/thread/ThreadUtil.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/classes/org/csystem/util/thread/ThreadUtil.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/stringUtil/StringUtilJoinTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/stringUtil/StringUtilJoinTest.class -------------------------------------------------------------------------------- /src/Projects/001-DemoLibraryUsageMavenLocal/src/main/java/org/csystem/app/App.java: -------------------------------------------------------------------------------- 1 | package org.csystem.app; 2 | 3 | class App { 4 | public static void main(String[] args) 5 | { 6 | Application.run(args); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /src/Projects/002-DemoLibraryUsageProjectLocal/src/main/java/org/csystem/app/App.java: -------------------------------------------------------------------------------- 1 | package org.csystem.app; 2 | 3 | class App { 4 | public static void main(String[] args) 5 | { 6 | Application.run(args); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /src/Projects/003-DemoLibraryUsageMavenRemote/src/main/java/org/csystem/app/App.java: -------------------------------------------------------------------------------- 1 | package org.csystem.app; 2 | 3 | class App { 4 | public static void main(String[] args) 5 | { 6 | Application.run(args); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /src/Projects/005-BirthDayApp/BirthDayApp/target/classes/org/csystem/app/Application.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Projects/005-BirthDayApp/BirthDayApp/target/classes/org/csystem/app/Application.class -------------------------------------------------------------------------------- /src/Projects/006-SimpleCommandPromptApp/target/classes/org/csystem/app/Application.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Projects/006-SimpleCommandPromptApp/target/classes/org/csystem/app/Application.class -------------------------------------------------------------------------------- /src/Projects/007-DemoTypeDeclaredElementsApp/src/main/java/org/csystem/app/App.java: -------------------------------------------------------------------------------- 1 | package org.csystem.app; 2 | 3 | class App { 4 | public static void main(String[] args) 5 | { 6 | Application.run(args); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /src/Projects/010-DemoBankCustomerQueue/target/classes/org/csystem/app/Application$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Projects/010-DemoBankCustomerQueue/target/classes/org/csystem/app/Application$1.class -------------------------------------------------------------------------------- /src/Projects/010-DemoBankCustomerQueue/target/classes/org/csystem/app/bank/Customer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Projects/010-DemoBankCustomerQueue/target/classes/org/csystem/app/bank/Customer.class -------------------------------------------------------------------------------- /src/SampleCodes/CodingChallenges/target/classes/org/csystem/collection/CSDArrayList.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/SampleCodes/CodingChallenges/target/classes/org/csystem/collection/CSDArrayList.class -------------------------------------------------------------------------------- /src/SampleCodes/CodingChallenges/target/classes/org/csystem/collection/CSDLinkedList.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/SampleCodes/CodingChallenges/target/classes/org/csystem/collection/CSDLinkedList.class -------------------------------------------------------------------------------- /src/SampleCodes/CodingChallenges/target/classes/org/csystem/collection/CSDMinStack.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/SampleCodes/CodingChallenges/target/classes/org/csystem/collection/CSDMinStack.class -------------------------------------------------------------------------------- /src/SampleCodes/Sample/target/classes/org/csystem/app/sensor/factory/SensorFactory.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/SampleCodes/Sample/target/classes/org/csystem/app/sensor/factory/SensorFactory.class -------------------------------------------------------------------------------- /src/SampleCodes/SampleJavaBasic/src/org/csystem/parser/ISourceParser.java: -------------------------------------------------------------------------------- 1 | package org.csystem.parser; 2 | 3 | import org.csystem.parser.source.ISource; 4 | 5 | public interface ISourceParser { 6 | void parse(ISource source); 7 | } 8 | -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/DataUtilLib/src/test/java/org/csystem/RepositoryExceptionTest.java: -------------------------------------------------------------------------------- 1 | package org.csystem; 2 | 3 | public class RepositoryExceptionTest { 4 | public void test() 5 | { 6 | 7 | } 8 | 9 | } 10 | -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/SchedulerLib/target/classes/org/csystem/scheduler/Scheduler.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/SchedulerLib/target/classes/org/csystem/scheduler/Scheduler.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/classes/org/csystem/util/bitwise/BitwiseUtil.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/classes/org/csystem/util/bitwise/BitwiseUtil.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/classes/org/csystem/util/numeric/NumberUtil.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/classes/org/csystem/util/numeric/NumberUtil.class -------------------------------------------------------------------------------- /src/Projects/005-BirthDayApp/BirthDayApp/target/classes/org/csystem/app/Application$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Projects/005-BirthDayApp/BirthDayApp/target/classes/org/csystem/app/Application$1.class -------------------------------------------------------------------------------- /src/Projects/011-DemoCarCameraSimulation/CarCameraSimulation/src/test/java/org/csystem/app/SampleTest.java: -------------------------------------------------------------------------------- 1 | package org.csystem; 2 | 3 | public class SampleTest { 4 | public void test() 5 | { 6 | 7 | } 8 | 9 | } 10 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/009-EarthquakeServiceGeonames/EarthquakeServiceCurlRequestGenerator/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst: -------------------------------------------------------------------------------- 1 | org\csystem\app\App.class 2 | org\csystem\app\Application.class 3 | -------------------------------------------------------------------------------- /src/SampleCodes/CodingChallenges/target/classes/org/csystem/collection/CSDBoundedQueue.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/SampleCodes/CodingChallenges/target/classes/org/csystem/collection/CSDBoundedQueue.class -------------------------------------------------------------------------------- /src/SampleCodes/CodingChallenges/target/classes/org/csystem/collection/CSDBoundedStack.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/SampleCodes/CodingChallenges/target/classes/org/csystem/collection/CSDBoundedStack.class -------------------------------------------------------------------------------- /src/SampleCodes/CodingChallenges/target/classes/org/csystem/collection/CSDSLinkedList.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/SampleCodes/CodingChallenges/target/classes/org/csystem/collection/CSDSLinkedList.class -------------------------------------------------------------------------------- /src/SampleCodes/Sample/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | # Datasource local storage ignored files 7 | /dataSources/ 8 | /dataSources.local.xml 9 | -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/DateTimeLegacyLib/target/org-csystem-util-datetime-legacy-11.1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/DateTimeLegacyLib/target/org-csystem-util-datetime-legacy-11.1.0.jar -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/MathLib/target/classes/org/csystem/math/geometry/MutablePoint.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/MathLib/target/classes/org/csystem/math/geometry/MutablePoint.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/MathLib/target/classes/org/csystem/math/geometry/PointCommon.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/MathLib/target/classes/org/csystem/math/geometry/PointCommon.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/SchedulerLib/target/classes/org/csystem/scheduler/Scheduler$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/SchedulerLib/target/classes/org/csystem/scheduler/Scheduler$1.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/classes/org/csystem/util/iterable/IterableUtil.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/classes/org/csystem/util/iterable/IterableUtil.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/stringUtil/StringUtilJoinTest$Data.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/stringUtil/StringUtilJoinTest$Data.class -------------------------------------------------------------------------------- /src/Projects/005-BirthDayApp/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | # Datasource local storage ignored files 7 | /dataSources/ 8 | /dataSources.local.xml 9 | -------------------------------------------------------------------------------- /src/Projects/005-BirthDayApp/LibraryWithLocalDate/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst: -------------------------------------------------------------------------------- 1 | org\csystem\birthdate\remainder\BirthDayStatus.class 2 | org\csystem\birthdate\remainder\BirthDateOperations.class 3 | -------------------------------------------------------------------------------- /src/Projects/011-DemoCarCameraSimulation/CarCameraSource/target/CarCameraSourceLib-11.0.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Projects/011-DemoCarCameraSimulation/CarCameraSource/target/CarCameraSourceLib-11.0.0.jar -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/004-DemoCollectionInjectionApp/OperationLib/src/test/java/org/csystem/SampleTest.java: -------------------------------------------------------------------------------- 1 | package org.csystem; 2 | 3 | public class SampleTest { 4 | public void test() 5 | { 6 | 7 | } 8 | 9 | } 10 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/005-PeriodicRandomTextGenerator/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Projects/012-SpringBoot/005-PeriodicRandomTextGenerator/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /src/SampleCodes/CodingChallenges/target/classes/org/csystem/collection/CSDArrayListStack.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/SampleCodes/CodingChallenges/target/classes/org/csystem/collection/CSDArrayListStack.class -------------------------------------------------------------------------------- /src/SampleCodes/CodingChallenges/target/classes/org/csystem/collection/CSDLinkedList$Node.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/SampleCodes/CodingChallenges/target/classes/org/csystem/collection/CSDLinkedList$Node.class -------------------------------------------------------------------------------- /src/SampleCodes/CodingChallenges/target/classes/org/csystem/recursion/util/RecursionUtil.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/SampleCodes/CodingChallenges/target/classes/org/csystem/recursion/util/RecursionUtil.class -------------------------------------------------------------------------------- /src/SampleCodes/Sample/.idea/jpa-buddy.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/SchedulerLib/target/classes/org/csystem/scheduler/timeout/Alarm.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/SchedulerLib/target/classes/org/csystem/scheduler/timeout/Alarm.class -------------------------------------------------------------------------------- /src/Libraries/KaranDevLibraries/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | # Datasource local storage ignored files 7 | /dataSources/ 8 | /dataSources.local.xml 9 | -------------------------------------------------------------------------------- /src/Projects/004-DemoRedirectionApplications/NumberReader/src/main/java/org/csystem/app/App.java: -------------------------------------------------------------------------------- 1 | package org.csystem.app; 2 | 3 | class App { 4 | public static void main(String[] args) 5 | { 6 | Application.run(args); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /src/Projects/009-CommandPromptApp/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | # Datasource local storage ignored files 7 | /dataSources/ 8 | /dataSources.local.xml 9 | -------------------------------------------------------------------------------- /src/Projects/010-DemoBankCustomerQueue/target/classes/org/csystem/app/bank/CustomerPriority.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Projects/010-DemoBankCustomerQueue/target/classes/org/csystem/app/bank/CustomerPriority.class -------------------------------------------------------------------------------- /src/SampleCodes/CodingChallenges/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | # Datasource local storage ignored files 7 | /dataSources/ 8 | /dataSources.local.xml 9 | -------------------------------------------------------------------------------- /src/SampleCodes/CodingChallenges/target/classes/org/csystem/collection/CSDSLinkedList$Node.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/SampleCodes/CodingChallenges/target/classes/org/csystem/collection/CSDSLinkedList$Node.class -------------------------------------------------------------------------------- /src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/recursion/util/UtilGcdTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/recursion/util/UtilGcdTest.class -------------------------------------------------------------------------------- /src/GenericProjects/IntelliJ/SpringBoot/Application-Gradle-Groovy/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/GenericProjects/IntelliJ/SpringBoot/Application-Gradle-Groovy/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /src/GenericProjects/IntelliJ/SpringBoot/Application-Gradle-Kotlin/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/GenericProjects/IntelliJ/SpringBoot/Application-Gradle-Kotlin/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/DataUtilLib/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | # Datasource local storage ignored files 7 | /dataSources/ 8 | /dataSources.local.xml 9 | -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/DataUtilLib/target/test-classes/org/csystem/RepositoryExceptionTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/DataUtilLib/target/test-classes/org/csystem/RepositoryExceptionTest.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/MathLib/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | # Datasource local storage ignored files 7 | /dataSources/ 8 | /dataSources.local.xml 9 | -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/MathLib/.idea/jpa-buddy.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/MathLib/target/classes/org/csystem/math/geometry/AnalyticalCircle.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/MathLib/target/classes/org/csystem/math/geometry/AnalyticalCircle.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/SchedulerLib/target/classes/org/csystem/scheduler/timeout/Alarm$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/SchedulerLib/target/classes/org/csystem/scheduler/timeout/Alarm$1.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | # Datasource local storage ignored files 7 | /dataSources/ 8 | /dataSources.local.xml 9 | -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/.idea/jpa-buddy.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/classes/org/csystem/util/collection/CollectionUtil.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/classes/org/csystem/util/collection/CollectionUtil.class -------------------------------------------------------------------------------- /src/Libraries/KaranDevLibraries/DateTimeLib/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | com.karandev.datetime.format.datetime.custom=dd/MM/yyyy HH:mm:ss 2 | com.karandev.datetime.format.date.custom=dd/MM/yyyy 3 | com.karandev.datetime.format.time.custom=HH:mm:ss -------------------------------------------------------------------------------- /src/Projects/004-DemoRedirectionApplications/RandomNumberGenerator/src/main/java/org/csystem/app/App.java: -------------------------------------------------------------------------------- 1 | package org.csystem.app; 2 | 3 | class App { 4 | public static void main(String[] args) 5 | { 6 | Application.run(args); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /src/Projects/008-DemoTypeElementsApp/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | # Datasource local storage ignored files 7 | /dataSources/ 8 | /dataSources.local.xml 9 | -------------------------------------------------------------------------------- /src/Projects/008-DemoTypeElementsApp/.idea/jpa-buddy.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /src/Projects/009-CommandPromptApp/.idea/jpa-buddy.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /src/Projects/010-DemoBankCustomerQueue/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | # Datasource local storage ignored files 7 | /dataSources/ 8 | /dataSources.local.xml 9 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/009-EarthquakeServiceGeonames/EarthquakeDataServiceLib/src/test/java/org/csystem/SampleTest.java: -------------------------------------------------------------------------------- 1 | package org.csystem; 2 | 3 | public class SampleTest { 4 | public void test() 5 | { 6 | 7 | } 8 | 9 | } 10 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/009-EarthquakeServiceGeonames/EarthquakeService/src/test/java/org/csystem/app/service/earthquake/AppTests.java: -------------------------------------------------------------------------------- 1 | package org.csystem.app.service.earthquake; 2 | 3 | class AppTests { 4 | 5 | void contextLoads() { 6 | } 7 | 8 | } 9 | -------------------------------------------------------------------------------- /src/SampleCodes/CodingChallenges/.idea/jpa-buddy.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /src/SampleCodes/CodingChallenges/target/classes/org/csystem/collection/CSDArrayListNotNullable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/SampleCodes/CodingChallenges/target/classes/org/csystem/collection/CSDArrayListNotNullable.class -------------------------------------------------------------------------------- /src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/collection/CSDStackSearchTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/collection/CSDStackSearchTest.class -------------------------------------------------------------------------------- /src/GenericProjects/IntelliJ/Application/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | # Datasource local storage ignored files 7 | /dataSources/ 8 | /dataSources.local.xml 9 | -------------------------------------------------------------------------------- /src/GenericProjects/IntelliJ/Application/.idea/jpa-buddy.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /src/GenericProjects/IntelliJ/Library-Maven/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | # Datasource local storage ignored files 7 | /dataSources/ 8 | /dataSources.local.xml 9 | -------------------------------------------------------------------------------- /src/GenericProjects/IntelliJ/Library-Maven/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/DataUtilLib/.idea/jpa-buddy.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/DataUtilLib/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/GeneratorLib/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | # Datasource local storage ignored files 7 | /dataSources/ 8 | /dataSources.local.xml 9 | -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/GeneratorLib/.idea/jpa-buddy.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/SchedulerLib/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | # Datasource local storage ignored files 7 | /dataSources/ 8 | /dataSources.local.xml 9 | -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/SchedulerLib/.idea/jpa-buddy.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/SchedulerLib/target/classes/org/csystem/scheduler/CountDownScheduler.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/SchedulerLib/target/classes/org/csystem/scheduler/CountDownScheduler.class -------------------------------------------------------------------------------- /src/Libraries/KaranDevLibraries/ConsoleLib/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | # Datasource local storage ignored files 7 | /dataSources/ 8 | /dataSources.local.xml 9 | -------------------------------------------------------------------------------- /src/Libraries/KaranDevLibraries/DateTimeLib/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | # Datasource local storage ignored files 7 | /dataSources/ 8 | /dataSources.local.xml 9 | -------------------------------------------------------------------------------- /src/Projects/001-DemoLibraryUsageMavenLocal/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | # Datasource local storage ignored files 7 | /dataSources/ 8 | /dataSources.local.xml 9 | -------------------------------------------------------------------------------- /src/Projects/005-BirthDayApp/BirthDayApp/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | # Datasource local storage ignored files 7 | /dataSources/ 8 | /dataSources.local.xml 9 | -------------------------------------------------------------------------------- /src/Projects/005-BirthDayApp/BirthDayApp/.idea/jpa-buddy.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /src/Projects/006-SimpleCommandPromptApp/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | # Datasource local storage ignored files 7 | /dataSources/ 8 | /dataSources.local.xml 9 | -------------------------------------------------------------------------------- /src/Projects/006-SimpleCommandPromptApp/.idea/jpa-buddy.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /src/Projects/006-SimpleCommandPromptApp/target/classes/org/csystem/app/commandprompt/CommandInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Projects/006-SimpleCommandPromptApp/target/classes/org/csystem/app/commandprompt/CommandInfo.class -------------------------------------------------------------------------------- /src/Projects/010-DemoBankCustomerQueue/.idea/jpa-buddy.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/009-EarthquakeServiceGeonames/GeonamesEarthquakeServiceLib/src/test/java/org/csystem/SampleTest.java: -------------------------------------------------------------------------------- 1 | package org.csystem; 2 | 3 | public class SampleTest { 4 | public void test() 5 | { 6 | 7 | } 8 | 9 | } 10 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/010-PostalCodeServiceGeonames/GeonamesPostalCodeServiceLib/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst: -------------------------------------------------------------------------------- 1 | org\csystem\app\postalcode\geonames\GeonamesPostalCodeServiceFindPostalCodesTest.class 2 | -------------------------------------------------------------------------------- /src/SampleCodes/CodingChallenges/target/classes/org/csystem/recursion/util/StandardDeviationInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/SampleCodes/CodingChallenges/target/classes/org/csystem/recursion/util/StandardDeviationInfo.class -------------------------------------------------------------------------------- /src/GenericProjects/IntelliJ/Library-Maven/.idea/jpa-buddy.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /src/GenericProjects/IntelliJ/ModularApplication/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | # Datasource local storage ignored files 7 | /dataSources/ 8 | /dataSources.local.xml 9 | -------------------------------------------------------------------------------- /src/GenericProjects/IntelliJ/SpringBoot/Application-Gradle-Groovy-Web/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/GenericProjects/IntelliJ/SpringBoot/Application-Gradle-Groovy-Web/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /src/GenericProjects/IntelliJ/SpringBoot/Application-Gradle-Kotlin-Web/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/GenericProjects/IntelliJ/SpringBoot/Application-Gradle-Kotlin-Web/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/DateTimeLegacyLib/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | # Datasource local storage ignored files 7 | /dataSources/ 8 | /dataSources.local.xml 9 | -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/DateTimeLegacyLib/.idea/jpa-buddy.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/DateTimeLegacyLib/target/classes/org/csystem/util/datetime/legacy/Month.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/DateTimeLegacyLib/target/classes/org/csystem/util/datetime/legacy/Month.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/SchedulerLib/target/classes/org/csystem/scheduler/CountDownScheduler$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/SchedulerLib/target/classes/org/csystem/scheduler/CountDownScheduler$1.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/SchedulerLib/target/classes/org/csystem/scheduler/CountDownSchedulerEx.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/SchedulerLib/target/classes/org/csystem/scheduler/CountDownSchedulerEx.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/SchedulerLib/target/test-classes/org/csystem/scheduler/timeout/AlarmTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/SchedulerLib/target/test-classes/org/csystem/scheduler/timeout/AlarmTest.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/numeric/NumberUtilMidTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/numeric/NumberUtilMidTest.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/numeric/NumberUtilToIntTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/numeric/NumberUtilToIntTest.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/numeric/data/IntIntDataInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/numeric/data/IntIntDataInfo.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/string/StringUtilSplitTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/string/StringUtilSplitTest.class -------------------------------------------------------------------------------- /src/Libraries/KaranDevLibraries/ConsoleLib/.idea/jpa-buddy.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /src/Libraries/KaranDevLibraries/DateTimeLib/.idea/jpa-buddy.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /src/Libraries/KaranDevLibraries/DateTimeLib/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/Projects/001-DemoLibraryUsageMavenLocal/.idea/jpa-buddy.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /src/Projects/002-DemoLibraryUsageProjectLocal/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | # Datasource local storage ignored files 7 | /dataSources/ 8 | /dataSources.local.xml 9 | -------------------------------------------------------------------------------- /src/Projects/002-DemoLibraryUsageProjectLocal/.idea/jpa-buddy.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /src/Projects/003-DemoLibraryUsageMavenRemote/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | # Datasource local storage ignored files 7 | /dataSources/ 8 | /dataSources.local.xml 9 | -------------------------------------------------------------------------------- /src/Projects/003-DemoLibraryUsageMavenRemote/.idea/jpa-buddy.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /src/Projects/005-BirthDayApp/LibraryWithCalendar/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | # Datasource local storage ignored files 7 | /dataSources/ 8 | /dataSources.local.xml 9 | -------------------------------------------------------------------------------- /src/Projects/005-BirthDayApp/LibraryWithDateTime/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | # Datasource local storage ignored files 7 | /dataSources/ 8 | /dataSources.local.xml 9 | -------------------------------------------------------------------------------- /src/Projects/006-SimpleCommandPromptApp/src/main/java/org/csystem/app/commandprompt/ICommandConsumer.java: -------------------------------------------------------------------------------- 1 | package org.csystem.app.commandprompt; 2 | 3 | @FunctionalInterface 4 | public interface ICommandConsumer { 5 | void accept(String [] cmdInfo); 6 | } 7 | 8 | -------------------------------------------------------------------------------- /src/Projects/006-SimpleCommandPromptApp/target/classes/org/csystem/app/commandprompt/CommandPrompt.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Projects/006-SimpleCommandPromptApp/target/classes/org/csystem/app/commandprompt/CommandPrompt.class -------------------------------------------------------------------------------- /src/Projects/007-DemoTypeDeclaredElementsApp/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | # Datasource local storage ignored files 7 | /dataSources/ 8 | /dataSources.local.xml 9 | -------------------------------------------------------------------------------- /src/Projects/007-DemoTypeDeclaredElementsApp/.idea/jpa-buddy.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /src/Projects/010-DemoBankCustomerQueue/target/classes/org/csystem/app/bank/factory/CustomerFactory.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Projects/010-DemoBankCustomerQueue/target/classes/org/csystem/app/bank/factory/CustomerFactory.class -------------------------------------------------------------------------------- /src/Projects/011-DemoCarCameraSimulation/CarCameraSource/src/test/java/org/csystem/camera/car/source/SampleTest.java: -------------------------------------------------------------------------------- 1 | package org.csystem.camera.car.source; 2 | 3 | public class SampleTest { 4 | public void test() 5 | { 6 | 7 | } 8 | 9 | } 10 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/010-PostalCodeServiceGeonames/todo.txt: -------------------------------------------------------------------------------- 1 | - Bir scheduler ile belirli zaman ya da zamanlarda (bunu sizler belirleyebilirsiniz) veritabanı içerisindeki posta kodları 2 | yine geonames'den sorgulanarak güncellenmesi gereken bilgiler güncellenecektir. -------------------------------------------------------------------------------- /src/SampleCodes/CodingChallenges/target/classes/org/csystem/collection/exception/FullQueueException.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/SampleCodes/CodingChallenges/target/classes/org/csystem/collection/exception/FullQueueException.class -------------------------------------------------------------------------------- /src/SampleCodes/CodingChallenges/target/classes/org/csystem/collection/exception/FullStackException.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/SampleCodes/CodingChallenges/target/classes/org/csystem/collection/exception/FullStackException.class -------------------------------------------------------------------------------- /src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/recursion/util/UtilFactorialTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/recursion/util/UtilFactorialTest.class -------------------------------------------------------------------------------- /src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/recursion/util/UtilWriteNumberTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/recursion/util/UtilWriteNumberTest.class -------------------------------------------------------------------------------- /src/GenericProjects/IntelliJ/Application/src/test/java/org/csystem/app/SampleTest.java: -------------------------------------------------------------------------------- 1 | package org.csystem.app; 2 | 3 | import org.junit.jupiter.api.Test; 4 | 5 | public class SampleTest { 6 | @Test 7 | public void test() 8 | { 9 | 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/GenericProjects/IntelliJ/ModularApplication/.idea/jpa-buddy.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/DateTimeLegacyLib/target/classes/org/csystem/util/datetime/legacy/DateTime.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/DateTimeLegacyLib/target/classes/org/csystem/util/datetime/legacy/DateTime.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/numeric/NumberUtilReverseTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/numeric/NumberUtilReverseTest.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/numeric/data/IntLongDataInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/numeric/data/IntLongDataInfo.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/numeric/data/LongIntDataInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/numeric/data/LongIntDataInfo.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/string/StringUtilReverseTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/string/StringUtilReverseTest.class -------------------------------------------------------------------------------- /src/Projects/005-BirthDayApp/LibraryWithCalendar/.idea/jpa-buddy.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /src/Projects/005-BirthDayApp/LibraryWithCalendar/src/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | # Datasource local storage ignored files 7 | /dataSources/ 8 | /dataSources.local.xml 9 | -------------------------------------------------------------------------------- /src/Projects/005-BirthDayApp/LibraryWithDateTime/.idea/jpa-buddy.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /src/Projects/005-BirthDayApp/LibraryWithLocalDate/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | # Datasource local storage ignored files 7 | /dataSources/ 8 | /dataSources.local.xml 9 | -------------------------------------------------------------------------------- /src/Projects/005-BirthDayApp/LibraryWithLocalDate/.idea/jpa-buddy.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /src/Projects/006-SimpleCommandPromptApp/target/classes/org/csystem/app/commandprompt/ICommandConsumer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Projects/006-SimpleCommandPromptApp/target/classes/org/csystem/app/commandprompt/ICommandConsumer.class -------------------------------------------------------------------------------- /src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/collection/CSDBoundedStackSearchTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/collection/CSDBoundedStackSearchTest.class -------------------------------------------------------------------------------- /src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/recursion/util/RecursionUtilGcdTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/recursion/util/RecursionUtilGcdTest.class -------------------------------------------------------------------------------- /src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/recursion/util/UtilGcdTest$DataInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/recursion/util/UtilGcdTest$DataInfo.class -------------------------------------------------------------------------------- /src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/recursion/util/UtilReverseStringTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/recursion/util/UtilReverseStringTest.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/DataUtilLib/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst: -------------------------------------------------------------------------------- 1 | /Users/oguzkaran/Dropbox/CSD/Kurslar/JavaApp1-Nov-2023/src/Libraries/CSDLibraries/DataUtilLib/src/test/java/org/csystem/RepositoryExceptionTest.java 2 | -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/DateTimeLegacyLib/target/classes/org/csystem/util/datetime/legacy/DayOfWeek.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/DateTimeLegacyLib/target/classes/org/csystem/util/datetime/legacy/DayOfWeek.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/SchedulerLib/target/test-classes/org/csystem/scheduler/CountDownSchedulerTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/SchedulerLib/target/test-classes/org/csystem/scheduler/CountDownSchedulerTest.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/SchedulerLib/target/test-classes/org/csystem/scheduler/SchedulerTimeoutTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/SchedulerLib/target/test-classes/org/csystem/scheduler/SchedulerTimeoutTest.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/SchedulerLib/target/test-classes/org/csystem/scheduler/timeout/AlarmDailyTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/SchedulerLib/target/test-classes/org/csystem/scheduler/timeout/AlarmDailyTest.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilIsSetIntTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilIsSetIntTest.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilIsSetLongTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilIsSetLongTest.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilSetBitIntTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilSetBitIntTest.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/numeric/NumberUtilAreFriendsTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/numeric/NumberUtilAreFriendsTest.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/numeric/NumberUtilFactorialTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/numeric/NumberUtilFactorialTest.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/numeric/NumberUtilFibonacciTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/numeric/NumberUtilFibonacciTest.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/numeric/NumberUtilGetPrimeTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/numeric/NumberUtilGetPrimeTest.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/numeric/NumberUtilSumFactorsTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/numeric/NumberUtilSumFactorsTest.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/string/StringUtilAreAnagramTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/string/StringUtilAreAnagramTest.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/string/StringUtilPadLeading2Test.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/string/StringUtilPadLeading2Test.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/string/StringUtilPadLeadingTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/string/StringUtilPadLeadingTest.class -------------------------------------------------------------------------------- /src/Projects/004-DemoRedirectionApplications/NumberReader/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | # Datasource local storage ignored files 7 | /dataSources/ 8 | /dataSources.local.xml 9 | -------------------------------------------------------------------------------- /src/Projects/005-BirthDayApp/LibraryWithCalendar/src/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/Projects/011-DemoCarCameraSimulation/CarCameraSimulation/src/main/java/org/csystem/app/camera/car/App.java: -------------------------------------------------------------------------------- 1 | package org.csystem.app.camera.car; 2 | 3 | class App { 4 | public static void main(String[] args) 5 | { 6 | Application.run(args); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /src/Projects/011-DemoCarCameraSimulation/CarCameraSource/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | # Datasource local storage ignored files 7 | /dataSources/ 8 | /dataSources.local.xml 9 | -------------------------------------------------------------------------------- /src/Projects/011-DemoCarCameraSimulation/CarCameraSource/.idea/jpa-buddy.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /src/Projects/011-DemoCarCameraSimulation/CarCameraSource/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/009-EarthquakeServiceGeonames/EarthquakeService/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Projects/012-SpringBoot/009-EarthquakeServiceGeonames/EarthquakeService/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/FlightSystem/DataServiceLib/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | # Datasource local storage ignored files 7 | /dataSources/ 8 | /dataSources.local.xml 9 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/FlightSystem/DataServiceLib/.idea/jpa-buddy.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/FlightSystem/DataServiceLib/src/test/java/org/csystem/app/flight/data/service/SampleTest.java: -------------------------------------------------------------------------------- 1 | package org.csystem.app.flight.data.service; 2 | 3 | public class SampleTest { 4 | public void test() 5 | { 6 | 7 | } 8 | 9 | } 10 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/FlightSystem/RepositoryLib/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | # Datasource local storage ignored files 7 | /dataSources/ 8 | /dataSources.local.xml 9 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/FlightSystem/RepositoryLib/.idea/jpa-buddy.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/collection/CSDArrayListStackSearchTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/collection/CSDArrayListStackSearchTest.class -------------------------------------------------------------------------------- /src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/collection/CSDBoundedStackPopMethodTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/collection/CSDBoundedStackPopMethodTest.class -------------------------------------------------------------------------------- /src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/collection/CSDStackSearchTest$DataInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/collection/CSDStackSearchTest$DataInfo.class -------------------------------------------------------------------------------- /src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/recursion/util/UtilFibonacciNumberTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/recursion/util/UtilFibonacciNumberTest.class -------------------------------------------------------------------------------- /src/SampleCodes/SampleJavaBasic/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/SchedulerLib/target/test-classes/org/csystem/scheduler/CountDownSchedulerExTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/SchedulerLib/target/test-classes/org/csystem/scheduler/CountDownSchedulerExTest.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/SchedulerLib/target/test-classes/org/csystem/scheduler/CountDownSchedulerTest$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/SchedulerLib/target/test-classes/org/csystem/scheduler/CountDownSchedulerTest$1.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/array/ArrayUtilAreAllUniqueIntTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/array/ArrayUtilAreAllUniqueIntTest.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilClearBitIntTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilClearBitIntTest.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilIsClearIntTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilIsClearIntTest.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilIsClearLongTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilIsClearLongTest.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilSetBitLongTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilSetBitLongTest.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/numeric/NumberUtilIsArmstrongTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/numeric/NumberUtilIsArmstrongTest.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/numeric/NumberUtilIsPowerOfTwoTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/numeric/NumberUtilIsPowerOfTwoTest.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/numeric/NumberUtilIsPrimeFalseTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/numeric/NumberUtilIsPrimeFalseTest.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/numeric/NumberUtilIsPrimeTrueTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/numeric/NumberUtilIsPrimeTrueTest.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/numeric/NumberUtilMidTest$DataInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/numeric/NumberUtilMidTest$DataInfo.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/string/StringUtilAreAllUniqueTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/string/StringUtilAreAllUniqueTest.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/string/StringUtilIsPalindromeTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/string/StringUtilIsPalindromeTest.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/string/StringUtilLastPangramENTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/string/StringUtilLastPangramENTest.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/string/StringUtilLastPangramTRTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/string/StringUtilLastPangramTRTest.class -------------------------------------------------------------------------------- /src/Projects/004-DemoRedirectionApplications/NumberReader/.idea/jpa-buddy.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /src/Projects/011-DemoCarCameraSimulation/CarCameraSimulation/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | # Datasource local storage ignored files 7 | /dataSources/ 8 | /dataSources.local.xml 9 | -------------------------------------------------------------------------------- /src/Projects/011-DemoCarCameraSimulation/CarCameraSimulation/.idea/jpa-buddy.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/001-DemoCoreAnnotations/src/main/resources/application-dev.properties: -------------------------------------------------------------------------------- 1 | spring.application.name=CoreAnnotationsDevApp 2 | 3 | com.karandev.datetime.format.datetime.custom=dd/MM/yyyy HH:mm:ss 4 | 5 | app.datetime.message.current.date=Dev Current date 6 | 7 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/010-PostalCodeServiceGeonames/DataServiceLib/.idea/sqldialects.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/010-PostalCodeServiceGeonames/RepositoryLib/target/PostalCodeRepositoryLib-1.0.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Projects/012-SpringBoot/010-PostalCodeServiceGeonames/RepositoryLib/target/PostalCodeRepositoryLib-1.0.0.jar -------------------------------------------------------------------------------- /src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/collection/CSDArrayListStackPopMethodTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/collection/CSDArrayListStackPopMethodTest.class -------------------------------------------------------------------------------- /src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/collection/CSDBoundedStackPeekMethodTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/collection/CSDBoundedStackPeekMethodTest.class -------------------------------------------------------------------------------- /src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/collection/CSDStackPopThrowsExceptionTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/collection/CSDStackPopThrowsExceptionTest.class -------------------------------------------------------------------------------- /src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/recursion/util/RecursionUtilFactorialTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/recursion/util/RecursionUtilFactorialTest.class -------------------------------------------------------------------------------- /src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/recursion/util/UtilFactorialTest$DataInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/recursion/util/UtilFactorialTest$DataInfo.class -------------------------------------------------------------------------------- /src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/recursion/util/UtilWriteReverseStringTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/recursion/util/UtilWriteReverseStringTest.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/DataUtilLib/target/classes/org/csystem/data/exception/repository/ICrudRepository.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/DataUtilLib/target/classes/org/csystem/data/exception/repository/ICrudRepository.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/DataUtilLib/target/classes/org/csystem/data/exception/service/DataServiceException.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/DataUtilLib/target/classes/org/csystem/data/exception/service/DataServiceException.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/DateTimeLegacyLib/src/main/java/org/csystem/util/datetime/legacy/DayOfWeek.java: -------------------------------------------------------------------------------- 1 | package org.csystem.util.datetime.legacy; 2 | 3 | 4 | @Deprecated(since = "11.1.0", forRemoval = true) 5 | public enum DayOfWeek { 6 | SUN, MON, TUE, WED, THU, FRI, SAT 7 | } 8 | -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/MathLib/src/test/java/org/csystem/math/SampleTest.java: -------------------------------------------------------------------------------- 1 | package org.csystem.math; 2 | 3 | import org.junit.Ignore; 4 | import org.junit.Test; 5 | 6 | public class SampleTest { 7 | @Test 8 | public void test() 9 | { 10 | 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/SchedulerLib/target/test-classes/org/csystem/scheduler/CountDownSchedulerExTest$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/SchedulerLib/target/test-classes/org/csystem/scheduler/CountDownSchedulerExTest$1.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilClearBitLongTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilClearBitLongTest.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilToBinaryStrIntTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilToBinaryStrIntTest.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilToggleBitIntTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilToggleBitIntTest.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilToggleBitLongTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilToggleBitLongTest.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/numeric/NumberUtilToIntTest$DataInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/numeric/NumberUtilToIntTest$DataInfo.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/string/StringUtilFirstPangramENTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/string/StringUtilFirstPangramENTest.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/string/StringUtilFirstPangramTRTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/string/StringUtilFirstPangramTRTest.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/string/StringUtilReverseTest$DataInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/string/StringUtilReverseTest$DataInfo.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/string/StringUtilSplitTest$DataInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/string/StringUtilSplitTest$DataInfo.class -------------------------------------------------------------------------------- /src/Projects/004-DemoRedirectionApplications/RandomNumberGenerator/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | # Datasource local storage ignored files 7 | /dataSources/ 8 | /dataSources.local.xml 9 | -------------------------------------------------------------------------------- /src/Projects/004-DemoRedirectionApplications/RandomNumberGenerator/.idea/jpa-buddy.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/009-EarthquakeServiceGeonames/EarthquakeServiceCurlRequestGenerator/src/main/java/org/csystem/app/App.java: -------------------------------------------------------------------------------- 1 | package org.csystem.app; 2 | 3 | class App { 4 | public static void main(String[] args) 5 | { 6 | Application.run(args); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/010-PostalCodeServiceGeonames/DataServiceLib/target/PostalCodeDataServiceLib-1.0.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Projects/012-SpringBoot/010-PostalCodeServiceGeonames/DataServiceLib/target/PostalCodeDataServiceLib-1.0.0.jar -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/010-PostalCodeServiceGeonames/PostalCodeJsonService/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Projects/012-SpringBoot/010-PostalCodeServiceGeonames/PostalCodeJsonService/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/collection/CSDArrayListStackPeekMethodTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/collection/CSDArrayListStackPeekMethodTest.class -------------------------------------------------------------------------------- /src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/recursion/util/RecursionUtilGcdTest$DataInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/recursion/util/RecursionUtilGcdTest$DataInfo.class -------------------------------------------------------------------------------- /src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/recursion/util/RecursionUtilWriteNumberTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/recursion/util/RecursionUtilWriteNumberTest.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/DataUtilLib/target/classes/org/csystem/data/exception/repository/RepositoryException.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/DataUtilLib/target/classes/org/csystem/data/exception/repository/RepositoryException.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/DateTimeLegacyLib/target/classes/org/csystem/util/datetime/legacy/DateTimeException.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/DateTimeLegacyLib/target/classes/org/csystem/util/datetime/legacy/DateTimeException.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/array/ArrayUtilAreAllUniqueGenericTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/array/ArrayUtilAreAllUniqueGenericTest.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilSetBitsCountIntTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilSetBitsCountIntTest.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilSetBitsCountLongTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilSetBitsCountLongTest.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilToBinaryStrLongTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilToBinaryStrLongTest.class -------------------------------------------------------------------------------- /src/Projects/005-BirthDayApp/LibraryWithLocalDate/target/classes/org/csystem/birthdate/remainder/BirthDayStatus.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Projects/005-BirthDayApp/LibraryWithLocalDate/target/classes/org/csystem/birthdate/remainder/BirthDayStatus.class -------------------------------------------------------------------------------- /src/Projects/011-DemoCarCameraSimulation/CarCameraSource/target/classes/org/csystem/camera/car/source/CarSource.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Projects/011-DemoCarCameraSimulation/CarCameraSource/target/classes/org/csystem/camera/car/source/CarSource.class -------------------------------------------------------------------------------- /src/Projects/011-DemoCarCameraSimulation/CarCameraSource/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst: -------------------------------------------------------------------------------- 1 | org\csystem\camera\car\source\CarSource.class 2 | org\csystem\camera\car\source\CarCameraInfo.class 3 | org\csystem\camera\car\source\CarFactory.class 4 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/004-DemoCollectionInjectionApp/OperationLib/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | # Datasource local storage ignored files 7 | /dataSources/ 8 | /dataSources.local.xml 9 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/004-DemoCollectionInjectionApp/OperationLib/.idea/jpa-buddy.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/007-DemoPasswordGeneratorService/ServiceLib/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | # Datasource local storage ignored files 7 | /dataSources/ 8 | /dataSources.local.xml 9 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/007-DemoPasswordGeneratorService/ServiceLib/.idea/jpa-buddy.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/007-DemoPasswordGeneratorService/ServiceLib/target/PasswordGeneratorServiceLib-1.0.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Projects/012-SpringBoot/007-DemoPasswordGeneratorService/ServiceLib/target/PasswordGeneratorServiceLib-1.0.0.jar -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/009-EarthquakeServiceGeonames/EarthquakeUpdateScheduler/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Projects/012-SpringBoot/009-EarthquakeServiceGeonames/EarthquakeUpdateScheduler/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/009-EarthquakeServiceGeonames/RespositoryLib/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | # Datasource local storage ignored files 7 | /dataSources/ 8 | /dataSources.local.xml 9 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/010-PostalCodeServiceGeonames/DataServiceLib/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | # Datasource local storage ignored files 7 | /dataSources/ 8 | /dataSources.local.xml 9 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/010-PostalCodeServiceGeonames/RepositoryLib/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | # Datasource local storage ignored files 7 | /dataSources/ 8 | /dataSources.local.xml 9 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/010-PostalCodeServiceGeonames/RepositoryLib/.idea/jpa-buddy.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /src/SampleCodes/CodingChallenges/src/main/java/org/csystem/recursion/util/StandardDeviationInfo.java: -------------------------------------------------------------------------------- 1 | package org.csystem.recursion.util; 2 | 3 | public class StandardDeviationInfo { 4 | public double result; 5 | public double mean; 6 | 7 | public int [] data; 8 | 9 | } 10 | -------------------------------------------------------------------------------- /src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/collection/CSDArrayListStackPopMethodEmptyTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/collection/CSDArrayListStackPopMethodEmptyTest.class -------------------------------------------------------------------------------- /src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/collection/CSDBoundedStackSearchTest$DataInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/collection/CSDBoundedStackSearchTest$DataInfo.class -------------------------------------------------------------------------------- /src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/recursion/util/RecursionUtilReverseStringTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/recursion/util/RecursionUtilReverseStringTest.class -------------------------------------------------------------------------------- /src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/recursion/util/UtilReverseStringTest$DataInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/recursion/util/UtilReverseStringTest$DataInfo.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/DateTimeLegacyLib/src/main/java/org/csystem/util/datetime/legacy/Month.java: -------------------------------------------------------------------------------- 1 | package org.csystem.util.datetime.legacy; 2 | 3 | @Deprecated(since = "11.1.0", forRemoval = true) 4 | public enum Month { 5 | JAN, FEB, MAR, APR, MAY, JUN, JUL, AUG, SEP, OCT, NOV, DEC 6 | } 7 | -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilClearBitsCountIntTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilClearBitsCountIntTest.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilIndicesOfSetBitsIntTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilIndicesOfSetBitsIntTest.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilIsClearIntTest$DataInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilIsClearIntTest$DataInfo.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilIsSetIntTest$DataInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilIsSetIntTest$DataInfo.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilIsSetLongTest$DataInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilIsSetLongTest$DataInfo.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilSetBitIntTest$DataInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilSetBitIntTest$DataInfo.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilSetBitLongTest$DataInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilSetBitLongTest$DataInfo.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilSetBitsCountShortTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilSetBitsCountShortTest.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/numeric/NumberUtilAreFriendsTest$DataInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/numeric/NumberUtilAreFriendsTest$DataInfo.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/numeric/NumberUtilCalculateDigitalRootTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/numeric/NumberUtilCalculateDigitalRootTest.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/numeric/NumberUtilDigitsFactorialSumTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/numeric/NumberUtilDigitsFactorialSumTest.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/numeric/NumberUtilFactorialBigIntegerTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/numeric/NumberUtilFactorialBigIntegerTest.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/numeric/NumberUtilIsArmstrongTest$DataInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/numeric/NumberUtilIsArmstrongTest$DataInfo.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/numeric/NumberUtilNextClosestFibonacciTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/numeric/NumberUtilNextClosestFibonacciTest.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/numeric/data/NumberUtilNumberToTextTRTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/numeric/data/NumberUtilNumberToTextTRTest.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/string/StringUtilAreAllUniqueTest$DataInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/string/StringUtilAreAllUniqueTest$DataInfo.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/string/StringUtilAreAnagramTest$DataInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/string/StringUtilAreAnagramTest$DataInfo.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/string/StringUtilIsPalindromeTest$DataInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/string/StringUtilIsPalindromeTest$DataInfo.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/string/StringUtilLastLongestPalindromeTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/string/StringUtilLastLongestPalindromeTest.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/string/StringUtilPadLeading2Test$DataInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/string/StringUtilPadLeading2Test$DataInfo.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/string/StringUtilPadLeadingTest$DataInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/string/StringUtilPadLeadingTest$DataInfo.class -------------------------------------------------------------------------------- /src/Projects/011-DemoCarCameraSimulation/CarCameraSource/target/classes/org/csystem/camera/car/source/CarFactory.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Projects/011-DemoCarCameraSimulation/CarCameraSource/target/classes/org/csystem/camera/car/source/CarFactory.class -------------------------------------------------------------------------------- /src/Projects/011-DemoCarCameraSimulation/CarCameraSource/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst: -------------------------------------------------------------------------------- 1 | D:\Repositories\JavaApp1-Nov-2023\src\Projects\011-DemoCarCameraSimulation\CarCameraSource\src\test\java\org\csystem\camera\car\source\SampleTest.java 2 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/004-DemoCollectionInjectionApp/OperationLib/target/test-classes/org/csystem/SampleTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Projects/012-SpringBoot/004-DemoCollectionInjectionApp/OperationLib/target/test-classes/org/csystem/SampleTest.class -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/007-DemoPasswordGeneratorService/PasswordGeneratorService/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Projects/012-SpringBoot/007-DemoPasswordGeneratorService/PasswordGeneratorService/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/007-DemoPasswordGeneratorService/RepositoryLib/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | # Datasource local storage ignored files 7 | /dataSources/ 8 | /dataSources.local.xml 9 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/007-DemoPasswordGeneratorService/RepositoryLib/.idea/jpa-buddy.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/009-EarthquakeServiceGeonames/RespositoryLib/.idea/jpa-buddy.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/009-EarthquakeServiceGeonames/RespositoryLib/target/EarthquakeSystemRepositoryLib-1.0.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Projects/012-SpringBoot/009-EarthquakeServiceGeonames/RespositoryLib/target/EarthquakeSystemRepositoryLib-1.0.0.jar -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/010-PostalCodeServiceGeonames/DataServiceLib/.idea/jpa-buddy.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/collection/CSDArrayListStackSearchTest$DataInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/collection/CSDArrayListStackSearchTest$DataInfo.class -------------------------------------------------------------------------------- /src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/collection/CSDBoundedQueueAddThrowsExceptionTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/collection/CSDBoundedQueueAddThrowsExceptionTest.class -------------------------------------------------------------------------------- /src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/collection/CSDBoundedQueueOfferReturnsFalseTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/collection/CSDBoundedQueueOfferReturnsFalseTest.class -------------------------------------------------------------------------------- /src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/collection/CSDBoundedStackPeekMethodTest$DataInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/collection/CSDBoundedStackPeekMethodTest$DataInfo.class -------------------------------------------------------------------------------- /src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/collection/CSDBoundedStackPopMethodTest$DataInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/collection/CSDBoundedStackPopMethodTest$DataInfo.class -------------------------------------------------------------------------------- /src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/collection/CSDBoundedStackPopThrowsExceptionTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/collection/CSDBoundedStackPopThrowsExceptionTest.class -------------------------------------------------------------------------------- /src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/collection/CSDBoundedStackPushThrowsExceptionTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/collection/CSDBoundedStackPushThrowsExceptionTest.class -------------------------------------------------------------------------------- /src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/recursion/util/RecursionUtilFibonacciNumberTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/recursion/util/RecursionUtilFibonacciNumberTest.class -------------------------------------------------------------------------------- /src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/recursion/util/UtilFibonacciNumberTest$DataInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/recursion/util/UtilFibonacciNumberTest$DataInfo.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/DataSourceLib/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.3/apache-maven-3.6.3-bin.zip 2 | wrapperUrl=https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar 3 | -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/array/ArrayUtilAreAllUniqueIntTest$DataInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/array/ArrayUtilAreAllUniqueIntTest$DataInfo.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilClearBitIntTest$DataInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilClearBitIntTest$DataInfo.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilClearBitLongTest$DataInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilClearBitLongTest$DataInfo.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilHighestSetBitIndexIntTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilHighestSetBitIndexIntTest.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilIndicesOfSetBitsLongTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilIndicesOfSetBitsLongTest.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilIsClearLongTest$DataInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilIsClearLongTest$DataInfo.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilLowestSetBitIndexIntTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilLowestSetBitIndexIntTest.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilToggleBitIntTest$DataInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilToggleBitIntTest$DataInfo.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/numeric/NumberUtilIsPowerOfTwoTest$DataInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/numeric/NumberUtilIsPowerOfTwoTest$DataInfo.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/numeric/NumberUtilIsPrimeBigIntegerFalseTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/numeric/NumberUtilIsPrimeBigIntegerFalseTest.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/numeric/NumberUtilIsPrimeBigIntegerTrueTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/numeric/NumberUtilIsPrimeBigIntegerTrueTest.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/string/StringUtilFirstLongestPalindromeTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/string/StringUtilFirstLongestPalindromeTest.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/string/StringUtilFirstPangramENTest$DataInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/string/StringUtilFirstPangramENTest$DataInfo.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/string/StringUtilFirstPangramTRTest$DataInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/string/StringUtilFirstPangramTRTest$DataInfo.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/string/StringUtilFirstShortestPalindromeTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/string/StringUtilFirstShortestPalindromeTest.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/string/StringUtilLastPangramENTest$DataInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/string/StringUtilLastPangramENTest$DataInfo.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/string/StringUtilLastPangramTRTest$DataInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/string/StringUtilLastPangramTRTest$DataInfo.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/string/StringUtilLastShortestPalindromeTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/string/StringUtilLastShortestPalindromeTest.class -------------------------------------------------------------------------------- /src/Projects/005-BirthDayApp/LibraryWithLocalDate/target/classes/org/csystem/birthdate/remainder/BirthDateOperations.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Projects/005-BirthDayApp/LibraryWithLocalDate/target/classes/org/csystem/birthdate/remainder/BirthDateOperations.class -------------------------------------------------------------------------------- /src/Projects/011-DemoCarCameraSimulation/CarCameraSource/target/classes/org/csystem/camera/car/source/CarCameraInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Projects/011-DemoCarCameraSimulation/CarCameraSource/target/classes/org/csystem/camera/car/source/CarCameraInfo.class -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/007-DemoPasswordGeneratorService/RepositoryLib/target/PasswordGeneratorRepositoryLib-1.0.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Projects/012-SpringBoot/007-DemoPasswordGeneratorService/RepositoryLib/target/PasswordGeneratorRepositoryLib-1.0.0.jar -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/009-EarthquakeServiceGeonames/EarthquakeDataServiceLib/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | # Datasource local storage ignored files 7 | /dataSources/ 8 | /dataSources.local.xml 9 | -------------------------------------------------------------------------------- /src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/collection/CSDArrayListStackPeekMethodTest$DataInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/collection/CSDArrayListStackPeekMethodTest$DataInfo.class -------------------------------------------------------------------------------- /src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/collection/CSDArrayListStackPeekThrowsExceptionTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/collection/CSDArrayListStackPeekThrowsExceptionTest.class -------------------------------------------------------------------------------- /src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/collection/CSDArrayListStackPopMethodTest$DataInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/collection/CSDArrayListStackPopMethodTest$DataInfo.class -------------------------------------------------------------------------------- /src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/collection/CSDArrayListStackPopThrowsExceptionTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/collection/CSDArrayListStackPopThrowsExceptionTest.class -------------------------------------------------------------------------------- /src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/recursion/util/RecursionUtilFactorialTest$DataInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/recursion/util/RecursionUtilFactorialTest$DataInfo.class -------------------------------------------------------------------------------- /src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/recursion/util/RecursionUtilWriteReverseStringTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/recursion/util/RecursionUtilWriteReverseStringTest.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/array/ArrayUtilAreAllUniqueGenericTest$DataInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/array/ArrayUtilAreAllUniqueGenericTest$DataInfo.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilSetBitsCountIntTest$DataInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilSetBitsCountIntTest$DataInfo.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilToBinaryStrIntTest$DataInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilToBinaryStrIntTest$DataInfo.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilToBinaryStrLongTest$DataInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilToBinaryStrLongTest$DataInfo.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilToggleBitLongTest$DataInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilToggleBitLongTest$DataInfo.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/collection/CollectionUtilToModifiableListTests.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/collection/CollectionUtilToModifiableListTests.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/collection/CollectionUtilToModifiableMapTests.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/collection/CollectionUtilToModifiableMapTests.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/collection/CollectionUtilToModifiableSetTests.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/collection/CollectionUtilToModifiableSetTests.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/collection/CollectionUtilUtilAreAllUniqueTest$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/collection/CollectionUtilUtilAreAllUniqueTest$1.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/collection/CollectionUtilUtilAreAllUniqueTest$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/collection/CollectionUtilUtilAreAllUniqueTest$2.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/collection/CollectionUtilUtilAreAllUniqueTest$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/collection/CollectionUtilUtilAreAllUniqueTest$3.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/collection/CollectionUtilUtilAreAllUniqueTest$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/collection/CollectionUtilUtilAreAllUniqueTest$4.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/collection/CollectionUtilUtilAreAllUniqueTest$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/collection/CollectionUtilUtilAreAllUniqueTest$5.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/collection/CollectionUtilUtilAreAllUniqueTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/collection/CollectionUtilUtilAreAllUniqueTest.class -------------------------------------------------------------------------------- /src/Projects/011-DemoCarCameraSimulation/CarCameraSource/target/test-classes/org/csystem/camera/car/source/SampleTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Projects/011-DemoCarCameraSimulation/CarCameraSource/target/test-classes/org/csystem/camera/car/source/SampleTest.class -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/004-DemoCollectionInjectionApp/OperationLib/target/com-berkayyilmaz-library-operation-11.0.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Projects/012-SpringBoot/004-DemoCollectionInjectionApp/OperationLib/target/com-berkayyilmaz-library-operation-11.0.0.jar -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/004-DemoCollectionInjectionApp/OperationLib/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst: -------------------------------------------------------------------------------- 1 | D:\Repositories\JavaApp1-Nov-2023\src\Projects\012-SpringBoot\004-DemoCollectionInjectionApp\OperationLib\src\test\java\org\csystem\SampleTest.java 2 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/009-EarthquakeServiceGeonames/EarthquakeDataServiceLib/.idea/jpa-buddy.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/009-EarthquakeServiceGeonames/EarthquakeService/src/main/resources/application-dev.properties: -------------------------------------------------------------------------------- 1 | #JDBC properties 2 | spring.datasource.url=jdbc:postgresql://localhost:5432/japp1n23_earthquakeappdb_dev 3 | spring.datasource.username=postgres 4 | spring.datasource.password=csd1993 5 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/009-EarthquakeServiceGeonames/GeonamesEarthquakeServiceLib/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | # Datasource local storage ignored files 7 | /dataSources/ 8 | /dataSources.local.xml 9 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/009-EarthquakeServiceGeonames/GeonamesEarthquakeServiceLib/.idea/jpa-buddy.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/010-PostalCodeServiceGeonames/GeonamesPostalCodeServiceLib/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | # Datasource local storage ignored files 7 | /dataSources/ 8 | /dataSources.local.xml 9 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/010-PostalCodeServiceGeonames/GeonamesPostalCodeServiceLib/.idea/jpa-buddy.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/recursion/util/RecursionUtilReverseStringTest$DataInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/recursion/util/RecursionUtilReverseStringTest$DataInfo.class -------------------------------------------------------------------------------- /src/SampleCodes/Sample/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilClearBitsCountIntTest$DataInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilClearBitsCountIntTest$DataInfo.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilSetBitsCountLongTest$DataInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilSetBitsCountLongTest$DataInfo.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilSetBitsCountShortTest$DataInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilSetBitsCountShortTest$DataInfo.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/numeric/NumberUtilDigitsFactorialSumTest$DataInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/numeric/NumberUtilDigitsFactorialSumTest$DataInfo.class -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/008-DemoScheduled/src/main/resources/banner.txt: -------------------------------------------------------------------------------- 1 | 2 | _____ _____ _____ 3 | / ____|/ ____| __ \ 4 | | | | (___ | | | | 5 | | | \___ \| | | | 6 | | |____ ____) | |__| | 7 | \_____|_____/|_____/ 8 | 9 | 10 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/009-EarthquakeServiceGeonames/EarthquakeUpdateScheduler/src/main/resources/application-dev.properties: -------------------------------------------------------------------------------- 1 | #JDBC properties 2 | spring.datasource.url=jdbc:postgresql://localhost:5432/japp1n23_earthquakeappdb_dev 3 | spring.datasource.username=postgres 4 | spring.datasource.password=csd1993 5 | -------------------------------------------------------------------------------- /src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/collection/CSDArrayListStackPopMethodEmptyTest$DataInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/collection/CSDArrayListStackPopMethodEmptyTest$DataInfo.class -------------------------------------------------------------------------------- /src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/recursion/util/RecursionUtilFibonacciNumberTest$DataInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/SampleCodes/CodingChallenges/target/test-classes/org/csystem/recursion/util/RecursionUtilFibonacciNumberTest$DataInfo.class -------------------------------------------------------------------------------- /src/SampleCodes/SampleJavaBasic/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/DataUtilLib/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst: -------------------------------------------------------------------------------- 1 | org/csystem/data/exception/service/DataServiceException.class 2 | org/csystem/data/exception/repository/RepositoryException.class 3 | org/csystem/data/exception/repository/ICrudRepository.class 4 | -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilIndicesOfSetBitsIntTest$DataInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilIndicesOfSetBitsIntTest$DataInfo.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilIndicesOfSetBitsLongTest$DataInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilIndicesOfSetBitsLongTest$DataInfo.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilLowestSetBitIndexIntTest$DataInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilLowestSetBitIndexIntTest$DataInfo.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/numeric/NumberUtilFactorialBigIntegerTest$DataInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/numeric/NumberUtilFactorialBigIntegerTest$DataInfo.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/numeric/data/NumberUtilNumberToTextTRTest$DataInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/numeric/data/NumberUtilNumberToTextTRTest$DataInfo.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/string/StringUtilAreAnagramNullPointerExceptionTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/string/StringUtilAreAnagramNullPointerExceptionTest.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/string/StringUtilFirstLongestPalindromeTest$DataInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/string/StringUtilFirstLongestPalindromeTest$DataInfo.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/string/StringUtilLastLongestPalindromeTest$DataInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/string/StringUtilLastLongestPalindromeTest$DataInfo.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/string/StringUtilLastShortestPalindromeTest$DataInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/string/StringUtilLastShortestPalindromeTest$DataInfo.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/string/StringUtilPadLeadingNullPointerExceptionTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/string/StringUtilPadLeadingNullPointerExceptionTest.class -------------------------------------------------------------------------------- /src/Projects/005-BirthDayApp/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/001-DemoCoreAnnotations/src/main/resources/banner.txt: -------------------------------------------------------------------------------- 1 | 2 | _____ _____ _____ 3 | / ____|/ ____| __ \ 4 | | | | (___ | | | | 5 | | | \___ \| | | | 6 | | |____ ____) | |__| | 7 | \_____|_____/|_____/ 8 | 9 | 10 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/006-DemoNetworkInfoService/src/main/resources/banner.txt: -------------------------------------------------------------------------------- 1 | 2 | _____ _____ _____ 3 | / ____|/ ____| __ \ 4 | | | | (___ | | | | 5 | | | \___ \| | | | 6 | | |____ ____) | |__| | 7 | \_____|_____/|_____/ 8 | 9 | 10 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/009-EarthquakeServiceGeonames/EarthquakeDataServiceLib/target/EarthquakeSystemDataServiceLib-1.0.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Projects/012-SpringBoot/009-EarthquakeServiceGeonames/EarthquakeDataServiceLib/target/EarthquakeSystemDataServiceLib-1.0.0.jar -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/009-EarthquakeServiceGeonames/EarthquakeServiceCurlRequestGenerator/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | # Datasource local storage ignored files 7 | /dataSources/ 8 | /dataSources.local.xml 9 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/009-EarthquakeServiceGeonames/EarthquakeServiceCurlRequestGenerator/.idea/jpa-buddy.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/FlightSystem/CityService/src/main/resources/banner.txt: -------------------------------------------------------------------------------- 1 | 2 | _____ _____ _____ 3 | / ____|/ ____| __ \ 4 | | | | (___ | | | | 5 | | | \___ \| | | | 6 | | |____ ____) | |__| | 7 | \_____|_____/|_____/ 8 | 9 | 10 | -------------------------------------------------------------------------------- /src/SampleCodes/CodingChallenges/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/GenericProjects/IntelliJ/SpringBoot/Application-Maven/src/main/resources/banner.txt: -------------------------------------------------------------------------------- 1 | 2 | _____ _____ _____ 3 | / ____|/ ____| __ \ 4 | | | | (___ | | | | 5 | | | \___ \| | | | 6 | | |____ ____) | |__| | 7 | \_____|_____/|_____/ 8 | 9 | 10 | -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/MathLib/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilHighestSetBitIndexIntTest$DataInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/bitwise/BitwiseUtilHighestSetBitIndexIntTest$DataInfo.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/collection/CollectionUtilToModifiableMapTests$UserData.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/collection/CollectionUtilToModifiableMapTests$UserData.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/collection/CollectionUtilUtilAreAllUniqueTest$DataInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/collection/CollectionUtilUtilAreAllUniqueTest$DataInfo.class -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/string/StringUtilFirstShortestPalindromeTest$DataInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Libraries/CSDLibraries/UtilLib/target/test-classes/org/csystem/util/string/StringUtilFirstShortestPalindromeTest$DataInfo.class -------------------------------------------------------------------------------- /src/Libraries/KaranDevLibraries/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/Projects/008-DemoTypeElementsApp/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/Projects/009-CommandPromptApp/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/002-DemoApplicationRunnerApp/src/main/resources/banner.txt: -------------------------------------------------------------------------------- 1 | 2 | _____ _____ _____ 3 | / ____|/ ____| __ \ 4 | | | | (___ | | | | 5 | | | \___ \| | | | 6 | | |____ ____) | |__| | 7 | \_____|_____/|_____/ 8 | 9 | 10 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/004-DemoCollectionInjectionApp/OperationLib/target/classes/com/berkayyilmaz/operation/IIntOperator.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Projects/012-SpringBoot/004-DemoCollectionInjectionApp/OperationLib/target/classes/com/berkayyilmaz/operation/IIntOperator.class -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/005-PeriodicRandomTextGenerator/src/main/resources/banner.txt: -------------------------------------------------------------------------------- 1 | 2 | _____ _____ _____ 3 | / ____|/ ____| __ \ 4 | | | | (___ | | | | 5 | | | \___ \| | | | 6 | | |____ ____) | |__| | 7 | \_____|_____/|_____/ 8 | 9 | 10 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/009-EarthquakeServiceGeonames/EarthquakeDataServiceLib/target/test-classes/org/csystem/SampleTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Projects/012-SpringBoot/009-EarthquakeServiceGeonames/EarthquakeDataServiceLib/target/test-classes/org/csystem/SampleTest.class -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/009-EarthquakeServiceGeonames/GeonamesEarthquakeServiceLib/target/GeonamesEarthquakeServiceLib-1.0.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Projects/012-SpringBoot/009-EarthquakeServiceGeonames/GeonamesEarthquakeServiceLib/target/GeonamesEarthquakeServiceLib-1.0.0.jar -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/010-PostalCodeServiceGeonames/GeonamesPostalCodeServiceLib/target/GeonamesPostalCodeServiceLib-1.0.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Projects/012-SpringBoot/010-PostalCodeServiceGeonames/GeonamesPostalCodeServiceLib/target/GeonamesPostalCodeServiceLib-1.0.0.jar -------------------------------------------------------------------------------- /src/SampleCodes/Sample/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/GenericProjects/IntelliJ/Application/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/GenericProjects/IntelliJ/SpringBoot/Application-Maven-Web/src/main/resources/banner.txt: -------------------------------------------------------------------------------- 1 | 2 | _____ _____ _____ 3 | / ____|/ ____| __ \ 4 | | | | (___ | | | | 5 | | | \___ \| | | | 6 | | |____ ____) | |__| | 7 | \_____|_____/|_____/ 8 | 9 | 10 | -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/GeneratorLib/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/SchedulerLib/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/Libraries/KaranDevLibraries/ConsoleLib/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/Projects/005-BirthDayApp/BirthDayApp/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/Projects/006-SimpleCommandPromptApp/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/Projects/010-DemoBankCustomerQueue/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/003-DemoApplicationRunnerAppDONOT/src/main/resources/banner.txt: -------------------------------------------------------------------------------- 1 | 2 | _____ _____ _____ 3 | / ____|/ ____| __ \ 4 | | | | (___ | | | | 5 | | | \___ \| | | | 6 | | |____ ____) | |__| | 7 | \_____|_____/|_____/ 8 | 9 | 10 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/004-DemoCollectionInjectionApp/OperationLib/src/main/java/com/berkayyilmaz/operation/IIntOperator.java: -------------------------------------------------------------------------------- 1 | package com.berkayyilmaz.operation; 2 | 3 | import java.util.function.IntBinaryOperator; 4 | 5 | public interface IIntOperator extends IntBinaryOperator { 6 | boolean isValid(char op); 7 | } 8 | -------------------------------------------------------------------------------- /src/Projects/012-SpringBoot/009-EarthquakeServiceGeonames/GeonamesEarthquakeServiceLib/target/test-classes/org/csystem/SampleTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/JavaApp1-Nov-2023/HEAD/src/Projects/012-SpringBoot/009-EarthquakeServiceGeonames/GeonamesEarthquakeServiceLib/target/test-classes/org/csystem/SampleTest.class -------------------------------------------------------------------------------- /src/SampleCodes/SampleJavaBasic/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/GenericProjects/IntelliJ/ModularApplication/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/GenericProjects/IntelliJ/SpringBoot/Application-Gradle-Groovy-Web/src/main/resources/banner.txt: -------------------------------------------------------------------------------- 1 | 2 | _____ _____ _____ 3 | / ____|/ ____| __ \ 4 | | | | (___ | | | | 5 | | | \___ \| | | | 6 | | |____ ____) | |__| | 7 | \_____|_____/|_____/ 8 | 9 | 10 | -------------------------------------------------------------------------------- /src/GenericProjects/IntelliJ/SpringBoot/Application-Gradle-Groovy/src/main/resources/banner.txt: -------------------------------------------------------------------------------- 1 | 2 | _____ _____ _____ 3 | / ____|/ ____| __ \ 4 | | | | (___ | | | | 5 | | | \___ \| | | | 6 | | |____ ____) | |__| | 7 | \_____|_____/|_____/ 8 | 9 | 10 | -------------------------------------------------------------------------------- /src/GenericProjects/IntelliJ/SpringBoot/Application-Gradle-Kotlin-Web/src/main/resources/banner.txt: -------------------------------------------------------------------------------- 1 | 2 | _____ _____ _____ 3 | / ____|/ ____| __ \ 4 | | | | (___ | | | | 5 | | | \___ \| | | | 6 | | |____ ____) | |__| | 7 | \_____|_____/|_____/ 8 | 9 | 10 | -------------------------------------------------------------------------------- /src/GenericProjects/IntelliJ/SpringBoot/Application-Gradle-Kotlin/src/main/resources/banner.txt: -------------------------------------------------------------------------------- 1 | 2 | _____ _____ _____ 3 | / ____|/ ____| __ \ 4 | | | | (___ | | | | 5 | | | \___ \| | | | 6 | | |____ ____) | |__| | 7 | \_____|_____/|_____/ 8 | 9 | 10 | -------------------------------------------------------------------------------- /src/Libraries/CSDLibraries/DateTimeLegacyLib/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/Libraries/KaranDevLibraries/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/Projects/001-DemoLibraryUsageMavenLocal/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | --------------------------------------------------------------------------------