├── .gitignore ├── C# Advanced ├── Defining Classes │ ├── Defining Classes.sln │ └── Exercises │ │ ├── CarSalesman │ │ ├── Car.cs │ │ ├── CarSalesman.csproj │ │ ├── Engine.cs │ │ └── Program.cs │ │ ├── DateModifier │ │ ├── DateModifier.cs │ │ ├── DateModifier.csproj │ │ └── Program.cs │ │ ├── DefiningClasses │ │ ├── DefiningClasses.csproj │ │ ├── Person.cs │ │ └── StartUp.cs │ │ ├── OldestFamilyMember │ │ ├── Family.cs │ │ ├── OldestFamilyMember.csproj │ │ ├── Person.cs │ │ └── Program.cs │ │ ├── OpinionPoll │ │ ├── OpinionPoll.csproj │ │ ├── Person.cs │ │ └── Program.cs │ │ ├── PokemonTrainer │ │ ├── Pokemon.cs │ │ ├── PokemonTrainer.csproj │ │ ├── Program.cs │ │ └── Trainer.cs │ │ ├── RawData │ │ ├── Car.cs │ │ ├── Cargo.cs │ │ ├── Engine.cs │ │ ├── Program.cs │ │ ├── RawData.csproj │ │ └── Tire.cs │ │ ├── SoftUniParking │ │ ├── Car.cs │ │ ├── Parking.cs │ │ ├── SoftUniParking.csproj │ │ └── StartUp.cs │ │ └── SpeedRacing │ │ ├── Car.cs │ │ ├── Program.cs │ │ └── SpeedRacing.csproj ├── Exam 2022-12-14 │ ├── ClimbThePeaks │ │ ├── ClimbThePeaks.csproj │ │ └── Program.cs │ ├── Exam 2022-12-14.sln │ ├── NavyBattle │ │ ├── NavyBattle.csproj │ │ └── Program.cs │ └── ShoeStore │ │ ├── Shoe.cs │ │ ├── ShoeStore.cs │ │ ├── ShoeStore.csproj │ │ └── StartUp.cs ├── Exam 2024-02-17 │ ├── ChickenSnack │ │ ├── ChickenSnack.csproj │ │ └── Program.cs │ ├── ClearSkies │ │ ├── ClearSkies.csproj │ │ └── Program.cs │ ├── Exam 2024-02-17.sln │ └── SharkTaxonomy │ │ ├── Classifier.cs │ │ ├── Shark.cs │ │ ├── SharkTaxonomy.csproj │ │ └── StartUp.cs ├── Exam 2024-04-10 │ ├── DataCenter │ │ ├── DataCenter.csproj │ │ ├── Rack.cs │ │ ├── Server.cs │ │ └── StartUp.cs │ ├── EscapeTheMaze │ │ ├── EscapeTheMaze.csproj │ │ └── Program.cs │ ├── Exam 2024-04-10.sln │ └── PiePursuit │ │ ├── PiePursuit.csproj │ │ └── Program.cs ├── Exam 2024-08-12 │ ├── CocktailBar │ │ ├── Cocktail.cs │ │ ├── CocktailBar.csproj │ │ ├── Menu.cs │ │ └── StartUp.cs │ ├── CollectingStars │ │ ├── CollectingStars.csproj │ │ └── Program.cs │ ├── Exam 2024-08-12.sln │ └── WildSurvival │ │ ├── Program.cs │ │ └── WildSurvival.csproj ├── Functional Programming │ ├── Exercises │ │ ├── ActionPrint │ │ │ ├── ActionPrint.csproj │ │ │ └── Program.cs │ │ ├── AppliedArithmetics │ │ │ ├── AppliedArithmetics.csproj │ │ │ └── Program.cs │ │ ├── CustomMinFunction │ │ │ ├── CustomMinFunction.csproj │ │ │ └── Program.cs │ │ ├── FindEvensOrOdd │ │ │ ├── FindEvensOrOdd.csproj │ │ │ └── Program.cs │ │ ├── KnightsOfHonor │ │ │ ├── KnightsOfHonor.csproj │ │ │ └── Program.cs │ │ ├── ListOfPredicates │ │ │ ├── ListOfPredicates.csproj │ │ │ └── Program.cs │ │ ├── PartyReservationFilterModule │ │ │ ├── PartyReservationFilterModule.csproj │ │ │ └── Program.cs │ │ ├── PredicateForNames │ │ │ ├── PredicateForNames.csproj │ │ │ └── Program.cs │ │ ├── PredicateParty │ │ │ ├── PredicateParty.csproj │ │ │ └── Program.cs │ │ ├── ReverseAndExclude │ │ │ ├── Program.cs │ │ │ └── ReverseAndExclude.csproj │ │ └── TriFunction │ │ │ ├── Program.cs │ │ │ └── TriFunction.csproj │ └── Functional Programming.sln ├── Generics │ ├── Exercises │ │ ├── GenericBoxOfInteger │ │ │ ├── Box.cs │ │ │ ├── GenericBoxOfInteger.csproj │ │ │ └── Program.cs │ │ ├── GenericBoxOfString │ │ │ ├── Box.cs │ │ │ ├── GenericBoxOfString.csproj │ │ │ └── Program.cs │ │ ├── GenericCountMethodDouble │ │ │ ├── Box.cs │ │ │ ├── GenericCountMethodDouble.csproj │ │ │ └── Program.cs │ │ ├── GenericCountMethodString │ │ │ ├── Box.cs │ │ │ ├── GenericCountMethodString.csproj │ │ │ └── Program.cs │ │ ├── GenericSwapMethodInteger │ │ │ ├── Box.cs │ │ │ ├── GenericSwapMethodInteger.csproj │ │ │ └── Program.cs │ │ ├── GenericSwapMethodString │ │ │ ├── Box.cs │ │ │ ├── GenericSwapMethodString.csproj │ │ │ └── Program.cs │ │ ├── Threeuple │ │ │ ├── Program.cs │ │ │ ├── Threeuple.cs │ │ │ └── Threeuple.csproj │ │ └── Tuple │ │ │ ├── Program.cs │ │ │ ├── Tuple.cs │ │ │ └── Tuple.csproj │ └── Generics.sln ├── Iterators and Comparators │ ├── Exercises │ │ ├── ComparingObjects │ │ │ ├── ComparingObjects.csproj │ │ │ ├── Person.cs │ │ │ └── Program.cs │ │ ├── CustomComparator │ │ │ ├── CustomComparator.csproj │ │ │ └── Program.cs │ │ ├── EqualityLogic │ │ │ ├── EqualityLogic.csproj │ │ │ ├── Person.cs │ │ │ └── Program.cs │ │ ├── Froggy │ │ │ ├── Froggy.csproj │ │ │ ├── Lake.cs │ │ │ └── Program.cs │ │ └── ListyIterator │ │ │ ├── ListyIterator.cs │ │ │ ├── ListyIterator.csproj │ │ │ └── Program.cs │ ├── Iterators and Comparators.sln │ └── Labs │ │ └── IteratorsAndComparators │ │ ├── Book.cs │ │ ├── BookComparator.cs │ │ ├── IteratorsAndComparators.csproj │ │ ├── Library.cs │ │ └── Program.cs ├── Multidimensional Arrays │ ├── Exercises │ │ ├── Bombs │ │ │ ├── Bombs.csproj │ │ │ └── Program.cs │ │ ├── DiagonalDifference │ │ │ ├── DiagonalDifference.csproj │ │ │ └── Program.cs │ │ ├── JaggedArrayManipulator │ │ │ ├── JaggedArrayManipulator.csproj │ │ │ └── Program.cs │ │ ├── KnightGame │ │ │ ├── KnightGame.csproj │ │ │ └── Program.cs │ │ ├── MatrixShuffling │ │ │ ├── MatrixShuffling.csproj │ │ │ └── Program.cs │ │ ├── MaximalSum │ │ │ ├── MaximalSum.csproj │ │ │ └── Program.cs │ │ ├── Miner │ │ │ ├── Miner.csproj │ │ │ └── Program.cs │ │ ├── RadioactiveMutantVampireBunnies │ │ │ ├── Program.cs │ │ │ └── RadioactiveMutantVampireBunnies.csproj │ │ ├── SnakeMoves │ │ │ ├── Program.cs │ │ │ └── SnakeMoves.csproj │ │ └── SquaresInMatrix │ │ │ ├── Program.cs │ │ │ └── SquaresInMatrix.csproj │ ├── Labs │ │ ├── JaggedArrayModification │ │ │ ├── JaggedArrayModification.csproj │ │ │ └── Program.cs │ │ ├── PascalTriangle │ │ │ ├── PascalTriangle.csproj │ │ │ └── Program.cs │ │ ├── PrimaryDiagonal │ │ │ ├── PrimaryDiagonal.csproj │ │ │ └── Program.cs │ │ ├── SquareWithMaximumSum │ │ │ ├── Program.cs │ │ │ └── SquareWithMaximumSum.csproj │ │ ├── SumMatrixColumns │ │ │ ├── Program.cs │ │ │ └── SumMatrixColumns.csproj │ │ ├── SumMatrixElements │ │ │ ├── Program.cs │ │ │ └── SumMatrixElements.csproj │ │ └── SymbolInMatrix │ │ │ ├── Program.cs │ │ │ └── SymbolInMatrix.csproj │ └── Multidimensional Arrays.sln ├── Sets and Dictionaries │ ├── Exercises │ │ ├── CountSymbols │ │ │ ├── CountSymbols.csproj │ │ │ └── Program.cs │ │ ├── EvenTimes │ │ │ ├── EvenTimes.csproj │ │ │ └── Program.cs │ │ ├── ForceBook │ │ │ ├── ForceBook.csproj │ │ │ └── Program.cs │ │ ├── PeriodicTable │ │ │ ├── PeriodicTable.csproj │ │ │ └── Program.cs │ │ ├── Ranking │ │ │ ├── Program.cs │ │ │ └── Ranking.csproj │ │ ├── SetsOfElements │ │ │ ├── Program.cs │ │ │ └── SetsOfElements.csproj │ │ ├── SoftUniExamResults │ │ │ ├── Program.cs │ │ │ └── SoftUniExamResults.csproj │ │ ├── TheVLogger │ │ │ ├── Program.cs │ │ │ └── TheVLogger.csproj │ │ ├── UniqueUsernames │ │ │ ├── Program.cs │ │ │ └── UniqueUsernames.csproj │ │ └── Wardrobe │ │ │ ├── Program.cs │ │ │ └── Wardrobe.csproj │ ├── Labs │ │ ├── AverageStudentGrades │ │ │ ├── AverageStudentGrades.csproj │ │ │ └── Program.cs │ │ ├── CitiesByContinentAndCountry │ │ │ ├── CitiesByContinentAndCountry.csproj │ │ │ └── Program.cs │ │ ├── CountSameValuesInArray │ │ │ ├── CountSameValuesInArray.csproj │ │ │ └── Program.cs │ │ ├── LargestThreeNumbers │ │ │ ├── LargestThreeNumbers.csproj │ │ │ └── Program.cs │ │ ├── ParkingLot │ │ │ ├── ParkingLot.csproj │ │ │ └── Program.cs │ │ ├── ProductShop │ │ │ ├── ProductShop.csproj │ │ │ └── Program.cs │ │ ├── RecordUniqueNames │ │ │ ├── Program.cs │ │ │ └── RecordUniqueNames.csproj │ │ └── SoftUniParty │ │ │ ├── Program.cs │ │ │ └── SoftUniParty.csproj │ └── Sets and Dictionaries.sln ├── Stacks and Queues │ ├── Exercises │ │ ├── BalancedParenthesis │ │ │ ├── BalancedParenthesis.csproj │ │ │ └── Program.cs │ │ ├── BasicQueueOperations │ │ │ ├── BasicQueueOperations.csproj │ │ │ └── Program.cs │ │ ├── BasicStackOperations │ │ │ ├── BasicStackOperations.csproj │ │ │ └── Program.cs │ │ ├── Crossroads │ │ │ ├── Crossroads.csproj │ │ │ └── Program.cs │ │ ├── CupsAndBottles │ │ │ ├── CupsAndBottles.csproj │ │ │ └── Program.cs │ │ ├── FashionBoutique │ │ │ ├── FashionBoutique.csproj │ │ │ └── Program.cs │ │ ├── FastFood │ │ │ ├── FastFood.csproj │ │ │ └── Program.cs │ │ ├── KeyRevolver │ │ │ ├── KeyRevolver.csproj │ │ │ └── Program.cs │ │ ├── MaximumAndMinimumElement │ │ │ ├── MaximumAndMinimumElement.csproj │ │ │ └── Program.cs │ │ ├── SimpleTextEditor │ │ │ ├── Program.cs │ │ │ └── SimpleTextEditor.csproj │ │ ├── SongsQueue │ │ │ ├── Program.cs │ │ │ └── SongsQueue.csproj │ │ └── TruckTour │ │ │ ├── Program.cs │ │ │ └── TruckTour.csproj │ ├── Labs │ │ ├── HotPotato │ │ │ ├── HotPotato.csproj │ │ │ └── Program.cs │ │ ├── MatchingBrackets │ │ │ ├── MatchingBrackets.csproj │ │ │ └── Program.cs │ │ ├── PrintEvenNumbers │ │ │ ├── PrintEvenNumbers.csproj │ │ │ └── Program.cs │ │ ├── ReverseString │ │ │ ├── Program.cs │ │ │ └── ReverseString.csproj │ │ ├── SimpleCalculator │ │ │ ├── Program.cs │ │ │ └── SimpleCalculator.csproj │ │ ├── StackSum │ │ │ ├── Program.cs │ │ │ └── StackSum.csproj │ │ ├── Supermarket │ │ │ ├── Program.cs │ │ │ └── Supermarket.csproj │ │ └── TrafficJam │ │ │ ├── Program.cs │ │ │ └── TrafficJam.csproj │ └── Stacks and Queues.sln ├── Streams, Files and Directories │ ├── Exercises │ │ ├── CopyBinaryFile │ │ │ ├── CopyBinaryFile.cs │ │ │ ├── CopyBinaryFile.csproj │ │ │ └── Program.cs │ │ ├── CopyDirectory │ │ │ ├── CopyDirectory.cs │ │ │ ├── CopyDirectory.csproj │ │ │ └── Program.cs │ │ ├── DirectoryTraversal │ │ │ ├── DirectoryTraversal.cs │ │ │ ├── DirectoryTraversal.csproj │ │ │ └── Program.cs │ │ ├── EvenLines │ │ │ ├── EvenLines.cs │ │ │ ├── EvenLines.csproj │ │ │ └── Program.cs │ │ ├── LineNumbers │ │ │ ├── LineNumbers.cs │ │ │ ├── LineNumbers.csproj │ │ │ └── Program.cs │ │ └── ZipAndExtract │ │ │ ├── Program.cs │ │ │ ├── ZipAndExtract.cs │ │ │ └── ZipAndExtract.csproj │ ├── Labs │ │ ├── ExtractSpecialBytes │ │ │ ├── ExtractSpecialBytes.cs │ │ │ ├── ExtractSpecialBytes.csproj │ │ │ └── Files │ │ │ │ ├── bytes.txt │ │ │ │ ├── example.png │ │ │ │ └── output.bin │ │ ├── FolderSize │ │ │ ├── Files │ │ │ │ ├── TestFolder │ │ │ │ │ ├── TestFolder2 │ │ │ │ │ │ └── dataFile2.TXT │ │ │ │ │ └── dataFile.TXT │ │ │ │ └── output.txt │ │ │ ├── FolderSize.cs │ │ │ └── FolderSize.csproj │ │ ├── LineNumbers │ │ │ ├── Files │ │ │ │ ├── input.txt │ │ │ │ └── output.txt │ │ │ ├── LineNumbers.cs │ │ │ └── LineNumbers.csproj │ │ ├── MergeFiles │ │ │ ├── Files │ │ │ │ ├── input1.txt │ │ │ │ ├── input2.txt │ │ │ │ └── output.txt │ │ │ ├── MergeFiles.cs │ │ │ └── MergeFiles.csproj │ │ ├── OddLines │ │ │ ├── Files │ │ │ │ ├── input.txt │ │ │ │ └── output.txt │ │ │ ├── OddLines.cs │ │ │ └── OddLines.csproj │ │ ├── SplitMergeBinaryFile │ │ │ ├── Files │ │ │ │ ├── example-joined.png │ │ │ │ ├── example.png │ │ │ │ ├── part-1.bin │ │ │ │ └── part-2.bin │ │ │ ├── SplitMergeBinaryFile.cs │ │ │ └── SplitMergeBinaryFile.csproj │ │ └── WordCount │ │ │ ├── Files │ │ │ ├── output.txt │ │ │ ├── text.txt │ │ │ └── words.txt │ │ │ ├── WordCount.cs │ │ │ └── WordCount.csproj │ └── Streams, Files and Directories.sln └── Workshop - Data Structures │ ├── LinkedList │ ├── CustomDoublyLinkedList.cs │ ├── LinkedList.csproj │ └── Program.cs │ ├── List │ ├── CustomList.cs │ ├── List.csproj │ └── Program.cs │ ├── Queue │ ├── CustomQueue.cs │ ├── Program.cs │ └── Queue.csproj │ ├── Stack │ ├── CustomStack.cs │ ├── Program.cs │ └── Stack.csproj │ └── Workshop - Data Structures.sln ├── C# Fundamentals └── Strings and Text Processing │ ├── CaesarCipher │ ├── CaesarCipher.csproj │ └── Program.cs │ ├── CharacterMultiplier │ ├── CharacterMultiplier.csproj │ └── Program.cs │ ├── ExtractFile │ ├── ExtractFile.csproj │ └── Program.cs │ ├── LettersChangeNumbers │ ├── LettersChangeNumbers.csproj │ └── Program.cs │ ├── MultiplyBigNumber │ ├── MultiplyBigNumber.csproj │ └── Program.cs │ ├── ReplaceRepeatingChars │ ├── Program.cs │ └── ReplaceRepeatingChars.csproj │ ├── StringExplosion │ ├── Program.cs │ └── StringExplosion.csproj │ ├── Strings and Text Processing.sln │ └── ValidUsernames │ ├── Program.cs │ └── ValidUsernames.csproj ├── C# OOP ├── Design Patterns │ ├── Design Patterns.sln │ └── Exercises │ │ ├── Composite │ │ ├── Composite.csproj │ │ ├── CompositeGift.cs │ │ ├── Gift.cs │ │ ├── Interfaces │ │ │ └── IGift.cs │ │ └── Program.cs │ │ ├── Prototype │ │ ├── Interfaces │ │ │ └── ICopyable.cs │ │ ├── Program.cs │ │ ├── Prototype.csproj │ │ └── Sandwich.cs │ │ └── Template │ │ ├── Bread.cs │ │ ├── Interfaces │ │ └── IFood.cs │ │ ├── Program.cs │ │ ├── Sourdough.cs │ │ ├── Template.csproj │ │ ├── TwelveGrain.cs │ │ └── WholeWheat.cs ├── Encapsulation │ ├── Encapsulation.sln │ └── Exercises │ │ ├── AnimalFarm │ │ ├── AnimalFarm.csproj │ │ ├── Models │ │ │ └── Chicken.cs │ │ └── Program.cs │ │ ├── Box │ │ ├── Box.cs │ │ ├── Box.csproj │ │ └── Program.cs │ │ ├── FootballTeamGenerator │ │ ├── FootballTeamGenerator.csproj │ │ ├── Player.cs │ │ ├── Program.cs │ │ └── Team.cs │ │ ├── PizzaCalories │ │ ├── Dough.cs │ │ ├── Enums │ │ │ ├── BakingTechnique.cs │ │ │ ├── FlourType.cs │ │ │ └── ToppingType.cs │ │ ├── Interfaces │ │ │ └── IIngredient.cs │ │ ├── Pizza.cs │ │ ├── PizzaCalories.csproj │ │ ├── Program.cs │ │ └── Topping.cs │ │ └── ShoppingSpree │ │ ├── Person.cs │ │ ├── Product.cs │ │ ├── Program.cs │ │ └── ShoppingSpree.csproj ├── Exam 2024-04-16 │ ├── Exam 2024-04-16.sln │ ├── RecourceCloud.Tests │ │ ├── DepartmentCloudTests.cs │ │ └── RecourceCloud.Tests.csproj │ ├── RecourceCloud │ │ ├── DepartmentCloud.cs │ │ ├── RecourceCloud.csproj │ │ ├── Resource.cs │ │ ├── StartUp.cs │ │ └── Task.cs │ └── TheContentDepartment │ │ ├── Core │ │ ├── Contracts │ │ │ ├── IController.cs │ │ │ └── IEngine.cs │ │ ├── Controller.cs │ │ └── Engine.cs │ │ ├── IO │ │ ├── Contracts │ │ │ ├── IReader.cs │ │ │ └── IWriter.cs │ │ ├── Reader.cs │ │ └── Writer.cs │ │ ├── Models │ │ ├── ContentMember.cs │ │ ├── Contracts │ │ │ ├── IResource.cs │ │ │ └── ITeamMember.cs │ │ ├── Exam.cs │ │ ├── Presentation.cs │ │ ├── Resource.cs │ │ ├── TeamLead.cs │ │ ├── TeamMember.cs │ │ └── Workshop.cs │ │ ├── Repositories │ │ ├── Contracts │ │ │ └── IRepository.cs │ │ ├── MemberRepository.cs │ │ └── ResourceRepository.cs │ │ ├── StartUp.cs │ │ ├── TheContentDepartment.csproj │ │ └── Utilities │ │ ├── Messages │ │ ├── ExceptionMessages.cs │ │ └── OutputMessages.cs │ │ └── Results │ │ ├── Actual.txt │ │ └── Ecpected.txt ├── Exam 2024-08-14 │ ├── AutoTrade.Tests │ │ ├── AutoTrade.Tests.csproj │ │ └── DealerShopTests.cs │ ├── AutoTrade │ │ ├── AutoTrade.csproj │ │ ├── DealerShop.cs │ │ ├── StartUp.cs │ │ └── Vehicle.cs │ ├── CarDealership │ │ ├── CarDealership.csproj │ │ ├── Core │ │ │ ├── Contracts │ │ │ │ ├── IController.cs │ │ │ │ └── IEngine.cs │ │ │ ├── Controller.cs │ │ │ └── Engine.cs │ │ ├── IO │ │ │ ├── Contracts │ │ │ │ ├── IReader.cs │ │ │ │ └── IWriter.cs │ │ │ ├── Reader.cs │ │ │ └── Writer.cs │ │ ├── Models │ │ │ ├── Contracts │ │ │ │ ├── ICustomer.cs │ │ │ │ ├── IDealership.cs │ │ │ │ └── IVehicle.cs │ │ │ ├── Customer.cs │ │ │ ├── Dealership.cs │ │ │ ├── IndividualClient.cs │ │ │ ├── LegalEntityCustomer.cs │ │ │ ├── SUV.cs │ │ │ ├── SaloonCar.cs │ │ │ ├── Truck.cs │ │ │ └── Vehicle.cs │ │ ├── Repositories │ │ │ ├── BaseRepository.cs │ │ │ ├── Contracts │ │ │ │ └── IRepository.cs │ │ │ ├── CustomerRepository.cs │ │ │ └── VehicleRepository.cs │ │ ├── StartUp.cs │ │ └── Utilities │ │ │ ├── Messages │ │ │ ├── ExceptionMessages.cs │ │ │ └── OutputMessages.cs │ │ │ └── Results │ │ │ ├── Actual.txt │ │ │ └── Expected.txt │ └── Exam 2024-08-14.sln ├── Exam 2024-12-18 │ ├── CyberSecurityDS │ │ ├── Core │ │ │ ├── Contracts │ │ │ │ ├── IController.cs │ │ │ │ └── IEngine.cs │ │ │ ├── Controller.cs │ │ │ └── Engine.cs │ │ ├── CyberSecurityDS.csproj │ │ ├── IO │ │ │ ├── Contracts │ │ │ │ ├── IReader.cs │ │ │ │ └── IWriter.cs │ │ │ ├── Reader.cs │ │ │ └── Writer.cs │ │ ├── Models │ │ │ ├── Antivirus.cs │ │ │ ├── Contracts │ │ │ │ ├── ICyberAttack.cs │ │ │ │ ├── IDefensiveSoftware.cs │ │ │ │ └── ISystemManager.cs │ │ │ ├── CyberAttack.cs │ │ │ ├── DefensiveSoftware.cs │ │ │ ├── Firewall.cs │ │ │ ├── MalwareAttack.cs │ │ │ ├── PhishingAttack.cs │ │ │ └── SystemManager.cs │ │ ├── Repositories │ │ │ ├── BaseRepository.cs │ │ │ ├── Contracts │ │ │ │ └── IRepository.cs │ │ │ ├── CyberAttackRepository.cs │ │ │ └── DefensiveSoftwareRepository.cs │ │ ├── StartUp.cs │ │ └── Utilities │ │ │ ├── Messages │ │ │ ├── ExceptionMessages.cs │ │ │ └── OutputMessages.cs │ │ │ └── Results │ │ │ ├── Actual.txt │ │ │ └── Expected.txt │ ├── Exam 2024-12-18.sln │ ├── SecureOpsSystem.Tests │ │ ├── SecureHubTests.cs │ │ └── SecureOpsSystem.Tests.csproj │ └── SecureOpsSystem │ │ ├── SecureHub.cs │ │ ├── SecureOpsSystem.csproj │ │ ├── SecurityTool.cs │ │ └── StartUp.cs ├── Inheritance │ ├── Exercises │ │ ├── Animals │ │ │ ├── Animal.cs │ │ │ ├── Animals.csproj │ │ │ ├── Cat.cs │ │ │ ├── Dog.cs │ │ │ ├── Frog.cs │ │ │ ├── Kitten.cs │ │ │ ├── StartUp.cs │ │ │ └── Tomcat.cs │ │ ├── NeedForSpeed │ │ │ ├── Car.cs │ │ │ ├── CrossMotorcycle.cs │ │ │ ├── FamilyCar.cs │ │ │ ├── Motorcycle.cs │ │ │ ├── NeedForSpeed.csproj │ │ │ ├── RaceMotorcycle.cs │ │ │ ├── SportCar.cs │ │ │ ├── StartUp.cs │ │ │ └── Vehicle.cs │ │ ├── Person │ │ │ ├── Child.cs │ │ │ ├── Person.cs │ │ │ ├── Person.csproj │ │ │ └── Program.cs │ │ ├── PlayersAndMonsters │ │ │ ├── BladeKnight.cs │ │ │ ├── DarkKnight.cs │ │ │ ├── DarkWizard.cs │ │ │ ├── Elf.cs │ │ │ ├── Hero.cs │ │ │ ├── Knight.cs │ │ │ ├── MuseElf.cs │ │ │ ├── PlayersAndMonsters.csproj │ │ │ ├── SoulMaster.cs │ │ │ ├── StartUp.cs │ │ │ └── Wizard.cs │ │ ├── Restaurant │ │ │ ├── Beverage.cs │ │ │ ├── Cake.cs │ │ │ ├── Coffee.cs │ │ │ ├── ColdBeverage.cs │ │ │ ├── Dessert.cs │ │ │ ├── Fish.cs │ │ │ ├── Food.cs │ │ │ ├── HotBeverage.cs │ │ │ ├── MainDish.cs │ │ │ ├── Product.cs │ │ │ ├── Restaurant.csproj │ │ │ ├── Soup.cs │ │ │ ├── StartUp.cs │ │ │ ├── Starter.cs │ │ │ └── Tea.cs │ │ └── Zoo │ │ │ ├── Animal.cs │ │ │ ├── Bear.cs │ │ │ ├── Gorilla.cs │ │ │ ├── Lizard.cs │ │ │ ├── Mammal.cs │ │ │ ├── Reptile.cs │ │ │ ├── Snake.cs │ │ │ ├── StartUp.cs │ │ │ └── Zoo.csproj │ ├── Inheritance.sln │ └── Labs │ │ ├── CustomRandomList │ │ ├── CustomRandomList.csproj │ │ ├── RandomList.cs │ │ └── StartUp.cs │ │ ├── CustomStack │ │ ├── CustomStack.csproj │ │ ├── StackOfStrings.cs │ │ └── StartUp.cs │ │ └── Farm │ │ ├── Animal.cs │ │ ├── Cat.cs │ │ ├── Dog.cs │ │ ├── Farm.csproj │ │ ├── Puppy.cs │ │ └── StartUp.cs ├── Interfaces and Abstraction │ ├── Exercises │ │ ├── BirthdayCelebrations │ │ │ ├── BirthdayCelebrations.csproj │ │ │ ├── Citizen.cs │ │ │ ├── IIdentifiable.cs │ │ │ ├── IWithBirthdate.cs │ │ │ ├── IWithName.cs │ │ │ ├── Pet.cs │ │ │ ├── Program.cs │ │ │ └── Robot.cs │ │ ├── BorderControl │ │ │ ├── BorderControl.csproj │ │ │ ├── Citizen.cs │ │ │ ├── IIdentifiable.cs │ │ │ ├── Program.cs │ │ │ └── Robot.cs │ │ ├── CollectionHierarchy │ │ │ ├── AddCollection.cs │ │ │ ├── AddRemoveCollection.cs │ │ │ ├── CollectionHierarchy.csproj │ │ │ ├── Interfaces │ │ │ │ ├── ICountable.cs │ │ │ │ ├── ISupportsAdd.cs │ │ │ │ └── ISupportsRemove.cs │ │ │ ├── MyList.cs │ │ │ └── Program.cs │ │ ├── ExplicitInterfaces │ │ │ ├── Citizen.cs │ │ │ ├── ExplicitInterfaces.csproj │ │ │ ├── IPerson.cs │ │ │ ├── IResident.cs │ │ │ └── Program.cs │ │ ├── FoodShortage │ │ │ ├── Citizen.cs │ │ │ ├── FoodShortage.csproj │ │ │ ├── IBuyer.cs │ │ │ ├── Program.cs │ │ │ └── Rebel.cs │ │ ├── MilitaryElite │ │ │ ├── Enums │ │ │ │ ├── MissionState.cs │ │ │ │ └── SoldierCorps.cs │ │ │ ├── Interfaces │ │ │ │ ├── ICommando.cs │ │ │ │ ├── IEngineer.cs │ │ │ │ ├── ILieutenantGeneral.cs │ │ │ │ ├── IMission.cs │ │ │ │ ├── IPrivateSoldier.cs │ │ │ │ ├── IRepair.cs │ │ │ │ ├── ISoldier.cs │ │ │ │ ├── ISpecializedSoldier.cs │ │ │ │ └── ISpy.cs │ │ │ ├── MilitaryElite.csproj │ │ │ ├── Models │ │ │ │ ├── Commando.cs │ │ │ │ ├── Engineer.cs │ │ │ │ ├── LieutenantGeneral.cs │ │ │ │ ├── Mission.cs │ │ │ │ ├── PrivateSoldier.cs │ │ │ │ ├── Repair.cs │ │ │ │ ├── Soldier.cs │ │ │ │ ├── SpecializedSoldier.cs │ │ │ │ └── Spy.cs │ │ │ ├── Program.cs │ │ │ └── Soldier.cs │ │ ├── PersonInfo │ │ │ ├── Citizen.cs │ │ │ ├── IBirthable.cs │ │ │ ├── IIdentifiable.cs │ │ │ ├── IPerson.cs │ │ │ ├── PersonInfo.csproj │ │ │ └── StartUp.cs │ │ └── Telephony │ │ │ ├── IBrowser.cs │ │ │ ├── ICaller.cs │ │ │ ├── Program.cs │ │ │ ├── SmartPhone.cs │ │ │ ├── StationaryPhone.cs │ │ │ └── Telephony.csproj │ └── Interfaces and Abstraction.sln ├── Polymorphism │ ├── Exercises │ │ ├── Raiding │ │ │ ├── Factories │ │ │ │ ├── DruidFactory.cs │ │ │ │ ├── PaladinFactory.cs │ │ │ │ ├── RogueFactory.cs │ │ │ │ └── WarriorFactory.cs │ │ │ ├── Interfaces │ │ │ │ ├── Factories │ │ │ │ │ └── IHeroFactory.cs │ │ │ │ └── Models │ │ │ │ │ └── IHero.cs │ │ │ ├── Models │ │ │ │ ├── BaseHealingHero.cs │ │ │ │ ├── BaseHero.cs │ │ │ │ ├── BaseHittingHero.cs │ │ │ │ ├── Druid.cs │ │ │ │ ├── Paladin.cs │ │ │ │ ├── Rogue.cs │ │ │ │ └── Warrior.cs │ │ │ ├── Program.cs │ │ │ └── Raiding.csproj │ │ ├── Vehicles.II │ │ │ ├── Interfaces │ │ │ │ └── IVehicle.cs │ │ │ ├── Models │ │ │ │ ├── BaseVehicle.cs │ │ │ │ ├── Bus.cs │ │ │ │ ├── Car.cs │ │ │ │ └── Truck.cs │ │ │ ├── Program.cs │ │ │ └── Vehicles.II.csproj │ │ ├── Vehicles │ │ │ ├── Interfaces │ │ │ │ └── IVehicle.cs │ │ │ ├── Models │ │ │ │ ├── BaseVehicle.cs │ │ │ │ ├── Car.cs │ │ │ │ └── Truck.cs │ │ │ ├── Program.cs │ │ │ └── Vehicles.csproj │ │ └── WildFarm │ │ │ ├── Animals │ │ │ ├── BaseAnimal.cs │ │ │ ├── Birds │ │ │ │ ├── BaseBird.cs │ │ │ │ ├── Hen.cs │ │ │ │ └── Owl.cs │ │ │ └── Mammals │ │ │ │ ├── BaseMammal.cs │ │ │ │ ├── Dog.cs │ │ │ │ ├── Feline │ │ │ │ ├── BaseFeline.cs │ │ │ │ ├── Cat.cs │ │ │ │ └── Tiger.cs │ │ │ │ └── Mouse.cs │ │ │ ├── Foods │ │ │ ├── BaseFood.cs │ │ │ ├── Fruit.cs │ │ │ ├── Meat.cs │ │ │ ├── Seeds.cs │ │ │ └── Vegetable.cs │ │ │ ├── Interfaces │ │ │ ├── IAnimal.cs │ │ │ └── IFood.cs │ │ │ ├── Program.cs │ │ │ └── WildFarm.csproj │ └── Polymorphism.sln ├── Reflection and Attributes │ ├── Exercises │ │ ├── CommandPattern │ │ │ ├── CommandPattern.csproj │ │ │ ├── Core │ │ │ │ ├── CommandInterpreter.cs │ │ │ │ ├── Commands │ │ │ │ │ ├── ExitCommand.cs │ │ │ │ │ └── HelloCommand.cs │ │ │ │ ├── Contracts │ │ │ │ │ ├── ICommand.cs │ │ │ │ │ ├── ICommandInterpreter.cs │ │ │ │ │ └── IEngine.cs │ │ │ │ └── Engine.cs │ │ │ └── StartUp.cs │ │ └── ValidationAttributes │ │ │ ├── Attributes │ │ │ ├── MyRangeAttribute.cs │ │ │ ├── MyRequiredAttribute.cs │ │ │ └── MyValidationAttribute.cs │ │ │ ├── Models │ │ │ └── Person.cs │ │ │ ├── StartUp.cs │ │ │ ├── ValidationAttributes.csproj │ │ │ └── Validator.cs │ ├── Labs │ │ ├── AuthorProblem │ │ │ ├── AuthorAttribute.cs │ │ │ ├── AuthorProblem.csproj │ │ │ ├── StartUp.cs │ │ │ └── Tracker.cs │ │ └── Stealer │ │ │ ├── Hacker.cs │ │ │ ├── Spy.cs │ │ │ ├── StartUp.cs │ │ │ └── Stealer.csproj │ └── Reflection and Attributes.sln ├── SOLID │ ├── Logging │ │ ├── Appenders │ │ │ ├── BaseAppender.cs │ │ │ ├── ConsoleAppender.cs │ │ │ └── FileAppender.cs │ │ ├── Enums │ │ │ └── ReportLevel.cs │ │ ├── Factories │ │ │ ├── Appenders │ │ │ │ ├── ConsoleAppenderFactory.cs │ │ │ │ └── FileAppenderFactory.cs │ │ │ └── Layouts │ │ │ │ ├── SimpleLayoutFactory.cs │ │ │ │ └── XmlLayoutFactory.cs │ │ ├── Interfaces │ │ │ ├── Factories │ │ │ │ ├── IAppenderFactory.cs │ │ │ │ └── ILayoutFactory.cs │ │ │ ├── IAppender.cs │ │ │ ├── ILayout.cs │ │ │ ├── ILogMessage.cs │ │ │ └── ILogger.cs │ │ ├── Layouts │ │ │ ├── SimpleLayout.cs │ │ │ └── XmlLayout.cs │ │ ├── Loggers │ │ │ └── Logger.cs │ │ ├── Logging.csproj │ │ ├── Models │ │ │ └── LogMessage.cs │ │ └── Program.cs │ └── SOLID.sln ├── Unit Testing │ ├── Exercises │ │ ├── CarManager.Tests │ │ │ ├── CarManager.Tests.csproj │ │ │ └── CarManagerTests.cs │ │ ├── CarManager │ │ │ ├── Car.cs │ │ │ └── CarManager.csproj │ │ ├── Database.Tests │ │ │ ├── Database.Tests.csproj │ │ │ └── DatabaseTests.cs │ │ ├── Database │ │ │ ├── Database.cs │ │ │ └── Database.csproj │ │ ├── DatabaseExtended.Tests │ │ │ ├── DatabaseExtended.Tests.csproj │ │ │ └── ExtendedDatabaseTests.cs │ │ └── DatabaseExtended │ │ │ ├── Database.cs │ │ │ ├── DatabaseExtended.csproj │ │ │ └── Person.cs │ └── Unit Testing.sln ├── Workshop - DI │ ├── DI.Core │ │ ├── AbstractModule.cs │ │ ├── Attributes │ │ │ └── InjectAttribute.cs │ │ ├── DI.Core.csproj │ │ └── Interfaces │ │ │ └── IModule.cs │ ├── DI │ │ ├── ConsoleWriter.cs │ │ ├── DI.Demo.csproj │ │ ├── DefaultService.cs │ │ ├── DemoModule.cs │ │ ├── GroupService.cs │ │ ├── Interfaces │ │ │ ├── IService.cs │ │ │ └── IWriter.cs │ │ ├── Models │ │ │ ├── Group.cs │ │ │ ├── Organization.cs │ │ │ └── User.cs │ │ ├── Program.cs │ │ └── UserService.cs │ └── Workshop - DI.sln └── Workshop - Snake │ ├── SimpleSnake │ ├── Core │ │ ├── ConsoleOperator.cs │ │ └── Engine.cs │ ├── Enums │ │ └── Direction.cs │ ├── GameObjects │ │ ├── Food.cs │ │ ├── Playground.cs │ │ ├── Point.cs │ │ └── Snake.cs │ ├── Interfaces │ │ ├── IEngine.cs │ │ ├── IReader.cs │ │ └── IWriter.cs │ ├── SimpleSnake.csproj │ ├── StartUp.cs │ └── Utilities │ │ └── ConsoleWindow.cs │ └── Workshop - Snake.sln ├── C++ Advanced ├── Exam Preparation │ ├── Exam Preparation.sln │ ├── Letters │ │ ├── Letters.cpp │ │ ├── Letters.vcxproj │ │ └── Letters.vcxproj.filters │ ├── MatchingLocations │ │ ├── MatchingLocations.cpp │ │ ├── MatchingLocations.vcxproj │ │ └── MatchingLocations.vcxproj.filters │ └── Rust │ │ ├── Rust.cpp │ │ ├── Rust.vcxproj │ │ └── Rust.vcxproj.filters └── Memory Management │ ├── Demos │ ├── MemoryTypesDemo │ │ ├── MemoryTypesDemo.cpp │ │ ├── MemoryTypesDemo.vcxproj │ │ └── MemoryTypesDemo.vcxproj.filters │ ├── PointersCastingDemo │ │ ├── PointersCastingDemo.cpp │ │ ├── PointersCastingDemo.vcxproj │ │ └── PointersCastingDemo.vcxproj.filters │ └── SmartPointersDemo │ │ ├── SmartPointersDemo.cpp │ │ ├── SmartPointersDemo.vcxproj │ │ └── SmartPointersDemo.vcxproj.filters │ ├── Exercises │ ├── CompareMatrices │ │ ├── CompareMatrices.cpp │ │ ├── CompareMatrices.vcxproj │ │ └── CompareMatrices.vcxproj.filters │ ├── GaussTrick │ │ ├── GaussTrick.cpp │ │ ├── GaussTrick.vcxproj │ │ └── GaussTrick.vcxproj.filters │ ├── Minesweeper │ │ ├── Minesweeper.cpp │ │ ├── Minesweeper.vcxproj │ │ └── Minesweeper.vcxproj.filters │ ├── PrintInParts │ │ ├── PrintInParts.cpp │ │ ├── PrintInParts.vcxproj │ │ └── PrintInParts.vcxproj.filters │ ├── RemoveNegativesAndReverse │ │ ├── RemoveNegativesAndReverse.cpp │ │ ├── RemoveNegativesAndReverse.vcxproj │ │ └── RemoveNegativesAndReverse.vcxproj.filters │ └── SomeOrdering │ │ ├── SomeOrdering.cpp │ │ ├── SomeOrdering.vcxproj │ │ └── SomeOrdering.vcxproj.filters │ ├── Labs │ ├── MinBy │ │ ├── MinBy.cpp │ │ ├── MinBy.vcxproj │ │ └── MinBy.vcxproj.filters │ └── RemoveInvalid │ │ ├── RemoveInvalid.cpp │ │ ├── RemoveInvalid.vcxproj │ │ └── RemoveInvalid.vcxproj.filters │ └── Memory Management.sln ├── C++ Fundamentals ├── Arrays │ ├── Above Average │ │ ├── Above Average.cpp │ │ ├── Above Average.vcxproj │ │ └── Above Average.vcxproj.filters │ ├── Array Rotation │ │ ├── Array Rotation.cpp │ │ ├── Array Rotation.vcxproj │ │ └── Array Rotation.vcxproj.filters │ ├── Arrays.sln │ ├── Cartesian Product │ │ ├── Cartesian Product.cpp │ │ ├── Cartesian Product.vcxproj │ │ └── Cartesian Product.vcxproj.filters │ ├── Closest Numbers │ │ ├── Closest Numbers.cpp │ │ ├── Closest Numbers.vcxproj │ │ └── Closest Numbers.vcxproj.filters │ ├── LongestSequence │ │ ├── LongestSequence.cpp │ │ ├── LongestSequence.vcxproj │ │ └── LongestSequence.vcxproj.filters │ ├── Magic Sum │ │ ├── Magic Sum.cpp │ │ ├── Magic Sum.vcxproj │ │ └── Magic Sum.vcxproj.filters │ ├── Most Frequent Number │ │ ├── Most Frequent Number.cpp │ │ ├── Most Frequent Number.vcxproj │ │ └── Most Frequent Number.vcxproj.filters │ ├── Top Integers │ │ ├── Top Integers.cpp │ │ ├── Top Integers.vcxproj │ │ └── Top Integers.vcxproj.filters │ └── Zig-Zag Arrays │ │ ├── Zig-Zag Arrays.cpp │ │ ├── Zig-Zag Arrays.vcxproj │ │ └── Zig-Zag Arrays.vcxproj.filters ├── Basic Syntax │ ├── Basic Syntax.sln │ ├── Greatest Common Divisor │ │ ├── Greatest Common Divisor.cpp │ │ ├── Greatest Common Divisor.vcxproj │ │ └── Greatest Common Divisor.vcxproj.filters │ ├── Min and Max │ │ ├── Min and Max.cpp │ │ ├── Min and Max.vcxproj │ │ └── Min and Max.vcxproj.filters │ ├── Numbers 1 to N │ │ ├── Numbers 1 to N.cpp │ │ ├── Numbers 1 to N.vcxproj │ │ └── Numbers 1 to N.vcxproj.filters │ ├── Order Two Numbers │ │ ├── Order Two Numbers.cpp │ │ ├── Order Two Numbers.vcxproj │ │ └── Order Two Numbers.vcxproj.filters │ ├── Print and Sum │ │ ├── Print and Sum.cpp │ │ ├── Print and Sum.vcxproj │ │ └── Print and Sum.vcxproj.filters │ ├── Product Sign │ │ ├── Product Sign.cpp │ │ ├── Product Sign.vcxproj │ │ └── Product Sign.vcxproj.filters │ ├── Quadratic Equation │ │ ├── Quadratic Equation.cpp │ │ ├── Quadratic Equation.vcxproj │ │ └── Quadratic Equation.vcxproj.filters │ └── Strong Number │ │ ├── Strong Number.cpp │ │ ├── Strong Number.vcxproj │ │ └── Strong Number.vcxproj.filters ├── Demo - File Streams │ ├── CMakeLists.txt │ ├── calculate_hash.cpp │ ├── files │ │ ├── sample-text.txt │ │ └── software-university-logo.svg │ ├── read_binary_content.cpp │ ├── read_content.cpp │ ├── split_file.cpp │ └── write_content.cpp ├── Functions │ ├── Center Point │ │ ├── Center Point.cpp │ │ ├── Center Point.vcxproj │ │ └── Center Point.vcxproj.filters │ ├── Factorial Division │ │ ├── Factorial Division.cpp │ │ ├── Factorial Division.vcxproj │ │ └── Factorial Division.vcxproj.filters │ ├── Functions.sln │ ├── Greater of Two Values │ │ ├── Greater of Two Values.cpp │ │ ├── Greater of Two Values.vcxproj │ │ └── Greater of Two Values.vcxproj.filters │ ├── Multiply Evens Sum by Odds │ │ ├── Multiply Evens Sum by Odds.cpp │ │ ├── Multiply Evens Sum by Odds.vcxproj │ │ └── Multiply Evens Sum by Odds.vcxproj.filters │ ├── Operations │ │ ├── Operations.cpp │ │ ├── Operations.vcxproj │ │ └── Operations.vcxproj.filters │ ├── Orders │ │ ├── Orders.cpp │ │ ├── Orders.vcxproj │ │ └── Orders.vcxproj.filters │ ├── Password Validator │ │ ├── Password Validator.cpp │ │ ├── Password Validator.vcxproj │ │ └── Password Validator.vcxproj.filters │ ├── Print Name of Numbers │ │ ├── Print Name of Numbers.cpp │ │ ├── Print Name of Numbers.vcxproj │ │ └── Print Name of Numbers.vcxproj.filters │ └── Vowels Count │ │ ├── Vowels Count.cpp │ │ ├── Vowels Count.vcxproj │ │ └── Vowels Count.vcxproj.filters ├── Strings and Streams │ ├── Caesar Cipher │ │ ├── Caesar Cipher.cpp │ │ ├── Caesar Cipher.vcxproj │ │ └── Caesar Cipher.vcxproj.filters │ ├── Character Multiplier │ │ ├── Character Multiplier.cpp │ │ ├── Character Multiplier.vcxproj │ │ └── Character Multiplier.vcxproj.filters │ ├── Invalid Input │ │ ├── Invalid Input.cpp │ │ ├── Invalid Input.vcxproj │ │ └── Invalid Input.vcxproj.filters │ ├── Mathematical Expression │ │ ├── Mathematical Expression.cpp │ │ ├── Mathematical Expression.vcxproj │ │ └── Mathematical Expression.vcxproj.filters │ ├── Replace All │ │ ├── Replace All.cpp │ │ ├── Replace All.vcxproj │ │ └── Replace All.vcxproj.filters │ ├── Replace Repeating Chars │ │ ├── Replace Repeating Chars.cpp │ │ ├── Replace Repeating Chars.vcxproj │ │ └── Replace Repeating Chars.vcxproj.filters │ ├── Strings and Streams.sln │ ├── Title Case │ │ ├── Title Case.cpp │ │ ├── Title Case.vcxproj │ │ └── Title Case.vcxproj.filters │ └── Valid Usernames │ │ ├── Valid Usernames.cpp │ │ ├── Valid Usernames.vcxproj │ │ └── Valid Usernames.vcxproj.filters └── Vectors, Lists and Iterators │ ├── Brackets │ ├── Brackets.cpp │ ├── Brackets.vcxproj │ └── Brackets.vcxproj.filters │ ├── Bus │ ├── Bus.cpp │ ├── Bus.vcxproj │ └── Bus.vcxproj.filters │ ├── Merge Trains │ ├── Merge Trains.cpp │ ├── Merge Trains.vcxproj │ └── Merge Trains.vcxproj.filters │ ├── Pipes │ ├── Pipes.cpp │ ├── Pipes.vcxproj │ └── Pipes.vcxproj.filters │ └── Vectors, Lists and Iterators.sln ├── Entity Framework Core └── ORM Fundamentals │ ├── MiniORM.App │ ├── Entities │ │ ├── Department.cs │ │ ├── Employee.cs │ │ ├── EmployeeProject.cs │ │ └── Project.cs │ ├── MiniORM.App.csproj │ ├── Program.cs │ └── SoftUniDbContext.cs │ ├── MiniORM │ ├── ChangeTracker.cs │ ├── ConnectionManager.cs │ ├── DatabaseConnection.cs │ ├── DbContext.cs │ ├── DbSet.cs │ ├── MiniORM.csproj │ └── ReflectionHelper.cs │ └── ORM Fundamentals.sln ├── JS Front-End ├── DOM Introduction │ └── Exercises │ │ ├── 01. Subtraction │ │ ├── subtraction.css │ │ ├── subtraction.html │ │ └── subtraction.js │ │ ├── 02. Pascal or Camel Case │ │ ├── pascal-or-camel-case.css │ │ ├── pascal-or-camel-case.html │ │ └── pascal-or-camel-case.js │ │ ├── 03. Accordion │ │ ├── accordion.css │ │ ├── accordion.html │ │ └── accordion.js │ │ ├── 04. Search in List │ │ ├── search-in-list.css │ │ ├── search-in-list.html │ │ └── search-in-list.js │ │ ├── 05. Table - Search Engine │ │ ├── table-search-engine.css │ │ ├── table-search-engine.html │ │ └── table-search-engine.js │ │ ├── 06. Format the Text │ │ ├── format-the-text.css │ │ ├── format-the-text.html │ │ └── format-the-text.js │ │ ├── 07. Hell's Kitchen │ │ ├── hells-kitchen.css │ │ ├── hells-kitchen.html │ │ └── hells-kitchen.js │ │ ├── 08. Generate Report │ │ ├── generate-report.css │ │ ├── generate-report.html │ │ └── generate-report.js │ │ └── 09. Number Convertor │ │ ├── number-convertor.css │ │ ├── number-convertor.html │ │ └── number-convertor.js ├── DOM Manipulation and Events │ └── Exercises │ │ ├── 01. Sections │ │ ├── sections.css │ │ ├── sections.html │ │ └── sections.js │ │ ├── 02. Time Converter │ │ ├── time-converter.css │ │ ├── time-converter.html │ │ └── time-converter.js │ │ ├── 03. Locked Profile │ │ ├── icon-profile.png │ │ ├── locked-profile.css │ │ ├── locked-profile.html │ │ └── locked-profile.js │ │ ├── 04. Fill Dropdown │ │ ├── fill-dropdown.css │ │ ├── fill-dropdown.html │ │ └── fill-dropdown.js │ │ ├── 05. Encode and Decode Messages │ │ ├── encode-and-decode-messages.css │ │ ├── encode-and-decode-messages.html │ │ └── encode-and-decode-messages.js │ │ ├── 06. Furniture │ │ ├── furniture.css │ │ ├── furniture.html │ │ └── furniture.js │ │ ├── 07. Distance Converter │ │ ├── distance-converter.css │ │ ├── distance-converter.html │ │ └── distance-converter.js │ │ ├── 08. Sudomu │ │ ├── sudomu.css │ │ ├── sudomu.html │ │ └── sudomu.js │ │ └── 09. JavaScript Quiz │ │ ├── quiz.css │ │ ├── quiz.html │ │ └── quiz.js ├── Functions and Statements │ ├── Exercises │ │ ├── add-and-subtract.js │ │ ├── characters-in-range.js │ │ ├── factorial-division.js │ │ ├── loading-bar.js │ │ ├── nxn-matrix.js │ │ ├── odd-and-even-sum.js │ │ ├── palindrome-integers.js │ │ ├── password-validator.js │ │ ├── perfect-number.js │ │ └── smallest-of-three-numbers.js │ └── More Exercises │ │ ├── car-wash.js │ │ ├── number-modification.js │ │ ├── points-validation.js │ │ ├── print-dna.js │ │ └── radio-crystals.js ├── HTTP and AJAX │ └── Exercises │ │ ├── 01. Blog │ │ ├── app.js │ │ ├── index.html │ │ └── styles.css │ │ ├── 02. Messenger │ │ ├── app.js │ │ ├── index.html │ │ └── styles.css │ │ ├── 03. Phonebook │ │ ├── app.js │ │ ├── index.html │ │ └── styles.css │ │ ├── 04. Students │ │ ├── app.js │ │ ├── index.html │ │ └── styles.css │ │ ├── 05. Locked Profile │ │ ├── app.js │ │ ├── icon-profile.png │ │ ├── index.html │ │ └── template.css │ │ └── 06. Accordion │ │ ├── accordion.css │ │ ├── accordion.js │ │ └── index.html ├── JS Arrays and Strings │ ├── Exercises │ │ ├── array-rotation.js │ │ ├── list-of-names.js │ │ ├── modern-times-of-#.js │ │ ├── pascal-case-splitter.js │ │ ├── print-every-nth-element.js │ │ ├── reveal-words.js │ │ ├── sorting-numbers.js │ │ └── string-substring.js │ └── More Exercises │ │ ├── bitcoin-mining.js │ │ ├── login.js │ │ └── the-pyramid-of-king-djoser.js ├── JS Syntax Fundamentals │ ├── Exercises │ │ ├── ages.js │ │ ├── chars-to-string.js │ │ ├── cooking-by-numbers.js │ │ ├── fruit.js │ │ ├── leap-year.js │ │ ├── multiplication-table.js │ │ ├── print-and-sum.js │ │ ├── reversed-chars.js │ │ ├── road-radar.js │ │ ├── same-numbers.js │ │ ├── sum-digits.js │ │ └── vacation.js │ └── More Exercises │ │ ├── calculator.js │ │ ├── gladiator-expenses.js │ │ ├── spice-must-flow.js │ │ ├── validity-checker.js │ │ └── words-uppercase.js └── Objects and Classes │ ├── Exercises │ ├── employees.js │ ├── inventory.js │ ├── make-a-dictionary.js │ ├── movies.js │ ├── odd-occurrences.js │ ├── piccolo.js │ ├── store-provision.js │ ├── towns.js │ ├── vehicle.js │ └── words-tracker.js │ └── More Exercises │ ├── armies.js │ ├── book-shelf.js │ ├── browser-history.js │ ├── catalogue.js │ ├── comments.js │ ├── flight-schedule.js │ ├── garage.js │ ├── laptop.js │ ├── school-register.js │ ├── sequences.js │ ├── softuni-students.js │ └── storage.js ├── LICENSE ├── Programming Basics ├── C# │ ├── Conditional Statements Advanced │ │ ├── Conditional Statements Advanced.sln │ │ ├── Exercises │ │ │ ├── Cinema │ │ │ │ ├── Cinema.csproj │ │ │ │ └── Program.cs │ │ │ ├── FishingBoat │ │ │ │ ├── FishingBoat.csproj │ │ │ │ └── Program.cs │ │ │ ├── HotelRoom │ │ │ │ ├── HotelRoom.csproj │ │ │ │ └── Program.cs │ │ │ ├── Journey │ │ │ │ ├── Journey.csproj │ │ │ │ └── Program.cs │ │ │ ├── NewHouse │ │ │ │ ├── NewHouse.csproj │ │ │ │ └── Program.cs │ │ │ ├── OnTimeForTheExam │ │ │ │ ├── OnTimeForTheExam.csproj │ │ │ │ └── Program.cs │ │ │ ├── OperationsBetweenNumbers │ │ │ │ ├── OperationsBetweenNumbers.csproj │ │ │ │ └── Program.cs │ │ │ ├── SkiTrip │ │ │ │ ├── Program.cs │ │ │ │ └── SkiTrip.csproj │ │ │ └── SummerOutfit │ │ │ │ ├── Program.cs │ │ │ │ └── SummerOutfit.csproj │ │ └── Labs │ │ │ ├── AnimalType │ │ │ ├── AnimalType.csproj │ │ │ └── Program.cs │ │ │ ├── CinemaTicket │ │ │ ├── CinemaTicket.csproj │ │ │ └── Program.cs │ │ │ ├── DayOfWeek │ │ │ ├── DayOfWeek.csproj │ │ │ └── Program.cs │ │ │ ├── FruitOrVegetable │ │ │ ├── FruitOrVegetable.csproj │ │ │ └── Program.cs │ │ │ ├── FruitShop │ │ │ ├── FruitShop.csproj │ │ │ └── Program.cs │ │ │ ├── InvalidNumber │ │ │ ├── InvalidNumber.csproj │ │ │ └── Program.cs │ │ │ ├── NumberInRange │ │ │ ├── NumberInRange.csproj │ │ │ └── Program.cs │ │ │ ├── PersonalTitles │ │ │ ├── PersonalTitles.csproj │ │ │ └── Program.cs │ │ │ ├── SmallShop │ │ │ ├── Program.cs │ │ │ └── SmallShop.csproj │ │ │ ├── TradeCommissions │ │ │ ├── Program.cs │ │ │ └── TradeCommissions.csproj │ │ │ ├── WeekendOrWorkingDay │ │ │ ├── Program.cs │ │ │ └── WeekendOrWorkingDay.csproj │ │ │ └── WorkingHours │ │ │ ├── Program.cs │ │ │ └── WorkingHours.csproj │ ├── Conditional Statements │ │ ├── Conditional Statements.sln │ │ ├── Exercises │ │ │ ├── Add15Minutes │ │ │ │ ├── Add15Minutes.csproj │ │ │ │ └── Program.cs │ │ │ ├── BonusScore │ │ │ │ ├── BonusScore.csproj │ │ │ │ └── Program.cs │ │ │ ├── GodzillaVsKong │ │ │ │ ├── GodzillaVsKong.csproj │ │ │ │ └── Program.cs │ │ │ ├── LunchBreak │ │ │ │ ├── LunchBreak.csproj │ │ │ │ └── Program.cs │ │ │ ├── Shopping │ │ │ │ ├── Program.cs │ │ │ │ └── Shopping.csproj │ │ │ ├── SumSeconds │ │ │ │ ├── Program.cs │ │ │ │ └── SumSeconds.csproj │ │ │ ├── ToyShop │ │ │ │ ├── Program.cs │ │ │ │ └── ToyShop.csproj │ │ │ └── WorldSwimmingRecord │ │ │ │ ├── Program.cs │ │ │ │ └── WorldSwimmingRecord.csproj │ │ ├── Labs │ │ │ ├── AreaOfFigures │ │ │ │ ├── AreaOfFigures.csproj │ │ │ │ └── Program.cs │ │ │ ├── EvenOrOdd │ │ │ │ ├── EvenOrOdd.csproj │ │ │ │ └── Program.cs │ │ │ ├── ExcellentResult │ │ │ │ ├── ExcellentResult.csproj │ │ │ │ └── Program.cs │ │ │ ├── GreaterNumber │ │ │ │ ├── GreaterNumber.csproj │ │ │ │ └── Program.cs │ │ │ ├── NumberFrom100To200 │ │ │ │ ├── NumberFrom100To200.csproj │ │ │ │ └── Program.cs │ │ │ ├── PasswordGuess │ │ │ │ ├── PasswordGuess.csproj │ │ │ │ └── Program.cs │ │ │ └── SpeedInfo │ │ │ │ ├── Program.cs │ │ │ │ └── SpeedInfo.csproj │ │ └── More Exercises │ │ │ └── Pets │ │ │ ├── Pets.csproj │ │ │ └── Program.cs │ ├── Exam Preparation │ │ ├── AgencyProfit │ │ │ ├── AgencyProfit.csproj │ │ │ └── Program.cs │ │ ├── BasketballTournament │ │ │ ├── BasketballTournament.csproj │ │ │ └── Program.cs │ │ ├── CatWalking │ │ │ ├── CatWalking.csproj │ │ │ └── Program.cs │ │ ├── CoffeeMachine │ │ │ ├── CoffeeMachine.csproj │ │ │ └── Program.cs │ │ ├── Exam Preparation.sln │ │ ├── MovieStars │ │ │ ├── MovieStars.csproj │ │ │ └── Program.cs │ │ └── TrekkingMania │ │ │ ├── Program.cs │ │ │ └── TrekkingMania.csproj │ ├── For loops │ │ ├── Exercises │ │ │ ├── CleverLily │ │ │ │ ├── CleverLily.csproj │ │ │ │ └── Program.cs │ │ │ ├── HalfSumElement │ │ │ │ ├── HalfSumElement.csproj │ │ │ │ └── Program.cs │ │ │ ├── Histogram │ │ │ │ ├── Histogram.csproj │ │ │ │ └── Program.cs │ │ │ ├── NumbersEndingInSeven │ │ │ │ ├── NumbersEndingInSeven.csproj │ │ │ │ └── Program.cs │ │ │ ├── Oscars │ │ │ │ ├── Oscars.csproj │ │ │ │ └── Program.cs │ │ │ ├── Salary │ │ │ │ ├── Program.cs │ │ │ │ └── Salary.csproj │ │ │ ├── TennisRanklist │ │ │ │ ├── Program.cs │ │ │ │ └── TennisRanklist.csproj │ │ │ └── TrekkingMania │ │ │ │ ├── Program.cs │ │ │ │ └── TrekkingMania.csproj │ │ ├── For loops.sln │ │ └── Labs │ │ │ ├── CharacterSequence │ │ │ ├── CharacterSequence.csproj │ │ │ └── Program.cs │ │ │ ├── EvenPowersOf2 │ │ │ ├── EvenPowersOf2.csproj │ │ │ └── Program.cs │ │ │ ├── LeftRightSum │ │ │ ├── LeftRightSum.csproj │ │ │ └── Program.cs │ │ │ ├── NumberSequence │ │ │ ├── NumberSequence.csproj │ │ │ └── Program.cs │ │ │ ├── NumbersFrom1To100 │ │ │ ├── NumbersFrom1To100.csproj │ │ │ └── Program.cs │ │ │ ├── NumbersFrom1ToNWithStep3 │ │ │ ├── NumbersFrom1ToNWithStep3.csproj │ │ │ └── Program.cs │ │ │ ├── NumbersFromNTo1 │ │ │ ├── NumbersFromNTo1.csproj │ │ │ └── Program.cs │ │ │ ├── OddEvenSum │ │ │ ├── OddEvenSum.csproj │ │ │ └── Program.cs │ │ │ ├── SumNumbers │ │ │ ├── Program.cs │ │ │ └── SumNumbers.csproj │ │ │ └── VowelsSum │ │ │ ├── Program.cs │ │ │ └── VowelsSum.csproj │ ├── Introduction │ │ ├── Exercises │ │ │ ├── BasketballEquipment │ │ │ │ ├── BasketballEquipment.csproj │ │ │ │ └── Program.cs │ │ │ ├── DepositsCalculator │ │ │ │ ├── DepositsCalculator.csproj │ │ │ │ └── Program.cs │ │ │ ├── FishTank │ │ │ │ ├── FishTank.csproj │ │ │ │ └── Program.cs │ │ │ ├── FoodDelivery │ │ │ │ ├── FoodDelivery.csproj │ │ │ │ └── Program.cs │ │ │ ├── Literature │ │ │ │ ├── Literature.csproj │ │ │ │ └── Program.cs │ │ │ ├── RadiansToDegrees │ │ │ │ ├── Program.cs │ │ │ │ └── RadiansToDegrees.csproj │ │ │ ├── Repainting │ │ │ │ ├── Program.cs │ │ │ │ └── Repainting.csproj │ │ │ ├── SuppliesForSchool │ │ │ │ ├── Program.cs │ │ │ │ └── SuppliesForSchool.csproj │ │ │ └── UsdToBgn │ │ │ │ ├── Program.cs │ │ │ │ └── UsdToBgn.csproj │ │ ├── Introduction.sln │ │ └── Labs │ │ │ ├── ConcatenateData │ │ │ ├── ConcatenateData.csproj │ │ │ └── Program.cs │ │ │ ├── GreetingByName │ │ │ ├── GreetingByName.csproj │ │ │ └── Program.cs │ │ │ ├── HelloSoftUni │ │ │ ├── HelloSoftUni.csproj │ │ │ └── Program.cs │ │ │ ├── InchesToCentimeters │ │ │ ├── InchesToCentimeters.csproj │ │ │ └── Program.cs │ │ │ ├── NumsFrom1To10 │ │ │ ├── NumsFrom1To10.csproj │ │ │ └── Program.cs │ │ │ ├── PetShop │ │ │ ├── PetShop.csproj │ │ │ └── Program.cs │ │ │ ├── ProjectsCreation │ │ │ ├── Program.cs │ │ │ └── ProjectsCreation.csproj │ │ │ ├── RectangleArea │ │ │ ├── Program.cs │ │ │ └── RectangleArea.csproj │ │ │ └── YardGreening │ │ │ ├── Program.cs │ │ │ └── YardGreening.csproj │ ├── Nested loops │ │ ├── Exercises │ │ │ ├── CinemaTickets │ │ │ │ ├── CinemaTickets.csproj │ │ │ │ └── Program.cs │ │ │ ├── EqualSumsEvenOddPosition │ │ │ │ ├── EqualSumsEvenOddPosition.csproj │ │ │ │ └── Program.cs │ │ │ ├── NumberPyramid │ │ │ │ ├── NumberPyramid.csproj │ │ │ │ └── Program.cs │ │ │ ├── SpecialNumbers │ │ │ │ ├── Program.cs │ │ │ │ └── SpecialNumbers.csproj │ │ │ ├── SumPrimeNonPrime │ │ │ │ ├── Program.cs │ │ │ │ └── SumPrimeNonPrime.csproj │ │ │ └── TrainTheTrainers │ │ │ │ ├── Program.cs │ │ │ │ └── TrainTheTrainers.csproj │ │ ├── Labs │ │ │ ├── Building │ │ │ │ ├── Building.csproj │ │ │ │ └── Program.cs │ │ │ ├── Clock │ │ │ │ ├── Clock.csproj │ │ │ │ └── Program.cs │ │ │ ├── Combinations │ │ │ │ ├── Combinations.csproj │ │ │ │ └── Program.cs │ │ │ ├── MultiplicationTable │ │ │ │ ├── MultiplicationTable.csproj │ │ │ │ └── Program.cs │ │ │ ├── SumOfTwoNumbers │ │ │ │ ├── Program.cs │ │ │ │ └── SumOfTwoNumbers.csproj │ │ │ └── Travelling │ │ │ │ ├── Program.cs │ │ │ │ └── Travelling.csproj │ │ └── Nested loops.sln │ └── While loops │ │ ├── Exercises │ │ ├── Cake │ │ │ ├── Cake.csproj │ │ │ └── Program.cs │ │ ├── Coins │ │ │ ├── Coins.csproj │ │ │ └── Program.cs │ │ ├── ExamPreparation │ │ │ ├── ExamPreparation.csproj │ │ │ └── Program.cs │ │ ├── Moving │ │ │ ├── Moving.csproj │ │ │ └── Program.cs │ │ ├── OldBooks │ │ │ ├── OldBooks.csproj │ │ │ └── Program.cs │ │ ├── Vacation │ │ │ ├── Program.cs │ │ │ └── Vacation.csproj │ │ └── Walking │ │ │ ├── Program.cs │ │ │ └── Walking.csproj │ │ ├── Labs │ │ ├── AccountBalance │ │ │ ├── AccountBalance.csproj │ │ │ └── Program.cs │ │ ├── Graduation │ │ │ ├── Graduation.csproj │ │ │ └── Program.cs │ │ ├── MaxNumber │ │ │ ├── MaxNumber.csproj │ │ │ └── Program.cs │ │ ├── MinNumber │ │ │ ├── MinNumber.csproj │ │ │ └── Program.cs │ │ ├── Password │ │ │ ├── Password.csproj │ │ │ └── Program.cs │ │ ├── ReadText │ │ │ ├── Program.cs │ │ │ └── ReadText.csproj │ │ ├── Sequence │ │ │ ├── Program.cs │ │ │ └── Sequence.csproj │ │ └── SumNumbers │ │ │ ├── Program.cs │ │ │ └── SumNumbers.csproj │ │ ├── More Exercises │ │ └── StreamOfLetters │ │ │ ├── Program.cs │ │ │ └── StreamOfLetters.csproj │ │ └── While loops.sln ├── C++ │ ├── Conditional Statements Advanced │ │ ├── Conditional Statements Advanced.sln │ │ ├── Exercises │ │ │ ├── Cinema │ │ │ │ ├── Cinema.cpp │ │ │ │ ├── Cinema.vcxproj │ │ │ │ └── Cinema.vcxproj.filters │ │ │ ├── FishingBoat │ │ │ │ ├── FishingBoat.cpp │ │ │ │ ├── FishingBoat.vcxproj │ │ │ │ └── FishingBoat.vcxproj.filters │ │ │ ├── HotelRoom │ │ │ │ ├── HotelRoom.cpp │ │ │ │ ├── HotelRoom.vcxproj │ │ │ │ └── HotelRoom.vcxproj.filters │ │ │ ├── Journey │ │ │ │ ├── Journey.cpp │ │ │ │ ├── Journey.vcxproj │ │ │ │ └── Journey.vcxproj.filters │ │ │ ├── NewHouse │ │ │ │ ├── NewHouse.cpp │ │ │ │ ├── NewHouse.vcxproj │ │ │ │ └── NewHouse.vcxproj.filters │ │ │ ├── OnTimeForTheExam │ │ │ │ ├── OnTimeForTheExam.cpp │ │ │ │ ├── OnTimeForTheExam.vcxproj │ │ │ │ └── OnTimeForTheExam.vcxproj.filters │ │ │ ├── OperationBetweenNumbers │ │ │ │ ├── OperationBetweenNumbers.cpp │ │ │ │ ├── OperationBetweenNumbers.vcxproj │ │ │ │ └── OperationBetweenNumbers.vcxproj.filters │ │ │ ├── SkiTrip │ │ │ │ ├── SkiTrip.cpp │ │ │ │ ├── SkiTrip.vcxproj │ │ │ │ └── SkiTrip.vcxproj.filters │ │ │ └── SummerOutfit │ │ │ │ ├── SummerOutfit.cpp │ │ │ │ ├── SummerOutfit.vcxproj │ │ │ │ └── SummerOutfit.vcxproj.filters │ │ └── Labs │ │ │ ├── AnimalType │ │ │ ├── AnimalType.cpp │ │ │ ├── AnimalType.vcxproj │ │ │ └── AnimalType.vcxproj.filters │ │ │ ├── CinemaTicket │ │ │ ├── CinemaTicket.cpp │ │ │ ├── CinemaTicket.vcxproj │ │ │ └── CinemaTicket.vcxproj.filters │ │ │ ├── DayOfWeek │ │ │ ├── DayOfWeek.cpp │ │ │ ├── DayOfWeek.vcxproj │ │ │ └── DayOfWeek.vcxproj.filters │ │ │ ├── FruitOrVegetable │ │ │ ├── FruitOrVegetable.cpp │ │ │ ├── FruitOrVegetable.vcxproj │ │ │ └── FruitOrVegetable.vcxproj.filters │ │ │ ├── FruitShop │ │ │ ├── FruitShop.cpp │ │ │ ├── FruitShop.vcxproj │ │ │ └── FruitShop.vcxproj.filters │ │ │ ├── InvalidNumber │ │ │ ├── InvalidNumber.cpp │ │ │ ├── InvalidNumber.vcxproj │ │ │ └── InvalidNumber.vcxproj.filters │ │ │ ├── NumberInRange │ │ │ ├── NumberInRange.cpp │ │ │ ├── NumberInRange.vcxproj │ │ │ └── NumberInRange.vcxproj.filters │ │ │ ├── PersonalTitles │ │ │ ├── PersonalTitles.cpp │ │ │ ├── PersonalTitles.vcxproj │ │ │ └── PersonalTitles.vcxproj.filters │ │ │ ├── SmallShop │ │ │ ├── SmallShop.cpp │ │ │ ├── SmallShop.vcxproj │ │ │ └── SmallShop.vcxproj.filters │ │ │ ├── TradeCommissions │ │ │ ├── TradeCommissions.cpp │ │ │ ├── TradeCommissions.vcxproj │ │ │ └── TradeCommissions.vcxproj.filters │ │ │ ├── WeekendOrWorkingDay │ │ │ ├── WeekendOrWorkingDay.cpp │ │ │ ├── WeekendOrWorkingDay.vcxproj │ │ │ └── WeekendOrWorkingDay.vcxproj.filters │ │ │ └── WorkingHours │ │ │ ├── WorkingHours.cpp │ │ │ ├── WorkingHours.vcxproj │ │ │ └── WorkingHours.vcxproj.filters │ ├── Conditional Statements │ │ ├── Conditional Statements.sln │ │ ├── Exercises │ │ │ ├── Add15Minutes │ │ │ │ ├── Add15Minutes.cpp │ │ │ │ ├── Add15Minutes.vcxproj │ │ │ │ └── Add15Minutes.vcxproj.filters │ │ │ ├── BonusScore │ │ │ │ ├── BonusScore.cpp │ │ │ │ ├── BonusScore.vcxproj │ │ │ │ └── BonusScore.vcxproj.filters │ │ │ ├── GodzillaVsKong │ │ │ │ ├── GodzillaVsKong.cpp │ │ │ │ ├── GodzillaVsKong.vcxproj │ │ │ │ └── GodzillaVsKong.vcxproj.filters │ │ │ ├── LunchBreak │ │ │ │ ├── LunchBreak.cpp │ │ │ │ ├── LunchBreak.vcxproj │ │ │ │ └── LunchBreak.vcxproj.filters │ │ │ ├── Shopping │ │ │ │ ├── Shopping.cpp │ │ │ │ ├── Shopping.vcxproj │ │ │ │ └── Shopping.vcxproj.filters │ │ │ ├── SumSeconds │ │ │ │ ├── SumSeconds.cpp │ │ │ │ ├── SumSeconds.vcxproj │ │ │ │ └── SumSeconds.vcxproj.filters │ │ │ ├── ToyShop │ │ │ │ ├── ToyShop.cpp │ │ │ │ ├── ToyShop.vcxproj │ │ │ │ └── ToyShop.vcxproj.filters │ │ │ └── WorldSwimmingRecord │ │ │ │ ├── WorldSwimmingRecord.cpp │ │ │ │ ├── WorldSwimmingRecord.vcxproj │ │ │ │ └── WorldSwimmingRecord.vcxproj.filters │ │ └── Labs │ │ │ ├── AreaOfFigures │ │ │ ├── AreaOfFigures.cpp │ │ │ ├── AreaOfFigures.vcxproj │ │ │ └── AreaOfFigures.vcxproj.filters │ │ │ ├── EvenOrOdd │ │ │ ├── EvenOrOdd.cpp │ │ │ ├── EvenOrOdd.vcxproj │ │ │ └── EvenOrOdd.vcxproj.filters │ │ │ ├── ExcellentResult │ │ │ ├── ExcellentResult.cpp │ │ │ ├── ExcellentResult.vcxproj │ │ │ └── ExcellentResult.vcxproj.filters │ │ │ ├── GreaterNumber │ │ │ ├── GreaterNumber.cpp │ │ │ ├── GreaterNumber.vcxproj │ │ │ └── GreaterNumber.vcxproj.filters │ │ │ ├── NumberFrom100To200 │ │ │ ├── NumberFrom100To200.cpp │ │ │ ├── NumberFrom100To200.vcxproj │ │ │ └── NumberFrom100To200.vcxproj.filters │ │ │ ├── PasswordGuess │ │ │ ├── PasswordGuess.cpp │ │ │ ├── PasswordGuess.vcxproj │ │ │ └── PasswordGuess.vcxproj.filters │ │ │ └── SpeedInfo │ │ │ ├── SpeedInfo.cpp │ │ │ ├── SpeedInfo.vcxproj │ │ │ └── SpeedInfo.vcxproj.filters │ ├── Exam preparation │ │ ├── Club │ │ │ ├── Club.cpp │ │ │ ├── Club.vcxproj │ │ │ └── Club.vcxproj.filters │ │ ├── EasterCompetition │ │ │ ├── EasterCompetition.cpp │ │ │ ├── EasterCompetition.vcxproj │ │ │ └── EasterCompetition.vcxproj.filters │ │ ├── Exam preparation.sln │ │ ├── FitnessCenter │ │ │ ├── FitnessCenter.cpp │ │ │ ├── FitnessCenter.vcxproj │ │ │ └── FitnessCenter.vcxproj.filters │ │ ├── Pool │ │ │ ├── Pool.cpp │ │ │ ├── Pool.vcxproj │ │ │ └── Pool.vcxproj.filters │ │ ├── Safari │ │ │ ├── Safari.cpp │ │ │ ├── Safari.vcxproj │ │ │ └── Safari.vcxproj.filters │ │ └── TravelAgency │ │ │ ├── TravelAgency.cpp │ │ │ ├── TravelAgency.vcxproj │ │ │ └── TravelAgency.vcxproj.filters │ ├── For loops │ │ ├── Exercises │ │ │ ├── CleverLily │ │ │ │ ├── CleverLily.cpp │ │ │ │ ├── CleverLily.vcxproj │ │ │ │ └── CleverLily.vcxproj.filters │ │ │ ├── HalfSumElement │ │ │ │ ├── HalfSumElement.cpp │ │ │ │ ├── HalfSumElement.vcxproj │ │ │ │ └── HalfSumElement.vcxproj.filters │ │ │ ├── Histogram │ │ │ │ ├── Histogram.cpp │ │ │ │ ├── Histogram.vcxproj │ │ │ │ └── Histogram.vcxproj.filters │ │ │ ├── NumbersEndingInSeven │ │ │ │ ├── NumbersEndingInSeven.cpp │ │ │ │ ├── NumbersEndingInSeven.vcxproj │ │ │ │ └── NumbersEndingInSeven.vcxproj.filters │ │ │ ├── Oscars │ │ │ │ ├── Oscars.cpp │ │ │ │ ├── Oscars.vcxproj │ │ │ │ └── Oscars.vcxproj.filters │ │ │ ├── Salary │ │ │ │ ├── Salary.cpp │ │ │ │ ├── Salary.vcxproj │ │ │ │ └── Salary.vcxproj.filters │ │ │ ├── TennisRanklist │ │ │ │ ├── TennisRanklist.cpp │ │ │ │ ├── TennisRanklist.vcxproj │ │ │ │ └── TennisRanklist.vcxproj.filters │ │ │ └── TrekkingMania │ │ │ │ ├── TrekkingMania.cpp │ │ │ │ ├── TrekkingMania.vcxproj │ │ │ │ └── TrekkingMania.vcxproj.filters │ │ ├── For loops.sln │ │ ├── Labs │ │ │ ├── CharacterSequence │ │ │ │ ├── CharacterSequence.cpp │ │ │ │ ├── CharacterSequence.vcxproj │ │ │ │ └── CharacterSequence.vcxproj.filters │ │ │ ├── EvenPowersOf2 │ │ │ │ ├── EvenPowersOf2.cpp │ │ │ │ ├── EvenPowersOf2.vcxproj │ │ │ │ └── EvenPowersOf2.vcxproj.filters │ │ │ ├── LeftRightSum │ │ │ │ ├── LeftRightSum.cpp │ │ │ │ ├── LeftRightSum.vcxproj │ │ │ │ └── LeftRightSum.vcxproj.filters │ │ │ ├── NumberSequence │ │ │ │ ├── NumberSequence.cpp │ │ │ │ ├── NumberSequence.vcxproj │ │ │ │ └── NumberSequence.vcxproj.filters │ │ │ ├── NumbersFrom1To100 │ │ │ │ ├── NumbersFrom1To100.cpp │ │ │ │ ├── NumbersFrom1To100.vcxproj │ │ │ │ └── NumbersFrom1To100.vcxproj.filters │ │ │ ├── NumbersFrom1ToNWithStep3 │ │ │ │ ├── NumbersFrom1ToNWithStep3.cpp │ │ │ │ ├── NumbersFrom1ToNWithStep3.vcxproj │ │ │ │ └── NumbersFrom1ToNWithStep3.vcxproj.filters │ │ │ ├── NumbersFromNTo1 │ │ │ │ ├── NumbersFromNTo1.cpp │ │ │ │ ├── NumbersFromNTo1.vcxproj │ │ │ │ └── NumbersFromNTo1.vcxproj.filters │ │ │ ├── OddEvenSum │ │ │ │ ├── OddEvenSum.cpp │ │ │ │ ├── OddEvenSum.vcxproj │ │ │ │ └── OddEvenSum.vcxproj.filters │ │ │ ├── SumNumbers │ │ │ │ ├── SumNumbers.cpp │ │ │ │ ├── SumNumbers.vcxproj │ │ │ │ └── SumNumbers.vcxproj.filters │ │ │ └── VowelsSum │ │ │ │ ├── VowelsSum.cpp │ │ │ │ ├── VowelsSum.vcxproj │ │ │ │ └── VowelsSum.vcxproj.filters │ │ └── More Exercises │ │ │ └── Hospital │ │ │ ├── Hospital.cpp │ │ │ ├── Hospital.vcxproj │ │ │ └── Hospital.vcxproj.filters │ ├── Introduction │ │ ├── Exercises │ │ │ ├── BasketballEquipment │ │ │ │ ├── BasketballEquipment.cpp │ │ │ │ ├── BasketballEquipment.vcxproj │ │ │ │ └── BasketballEquipment.vcxproj.filters │ │ │ ├── DepositsCalculator │ │ │ │ ├── DepositsCalculator.cpp │ │ │ │ ├── DepositsCalculator.vcxproj │ │ │ │ └── DepositsCalculator.vcxproj.filters │ │ │ ├── FishTank │ │ │ │ ├── FishTank.cpp │ │ │ │ ├── FishTank.vcxproj │ │ │ │ └── FishTank.vcxproj.filters │ │ │ ├── FoodDelivery │ │ │ │ ├── FoodDelivery.cpp │ │ │ │ ├── FoodDelivery.vcxproj │ │ │ │ └── FoodDelivery.vcxproj.filters │ │ │ ├── Literature │ │ │ │ ├── Literature.cpp │ │ │ │ ├── Literature.vcxproj │ │ │ │ └── Literature.vcxproj.filters │ │ │ ├── RadiansToDegrees │ │ │ │ ├── RadiansToDegrees.cpp │ │ │ │ ├── RadiansToDegrees.vcxproj │ │ │ │ └── RadiansToDegrees.vcxproj.filters │ │ │ ├── Repainting │ │ │ │ ├── Repainting.cpp │ │ │ │ ├── Repainting.vcxproj │ │ │ │ └── Repainting.vcxproj.filters │ │ │ ├── SuppliesForSchool │ │ │ │ ├── SuppliesForSchool.cpp │ │ │ │ ├── SuppliesForSchool.vcxproj │ │ │ │ └── SuppliesForSchool.vcxproj.filters │ │ │ └── UsdToBgn │ │ │ │ ├── UsdToBgn.cpp │ │ │ │ ├── UsdToBgn.vcxproj │ │ │ │ └── UsdToBgn.vcxproj.filters │ │ ├── Introduction.sln │ │ └── Labs │ │ │ ├── ConcatenateData │ │ │ ├── ConcatenateData.cpp │ │ │ ├── ConcatenateData.vcxproj │ │ │ └── ConcatenateData.vcxproj.filters │ │ │ ├── GreetingByName │ │ │ ├── GreetingByName.cpp │ │ │ ├── GreetingByName.vcxproj │ │ │ └── GreetingByName.vcxproj.filters │ │ │ ├── HelloSoftUni │ │ │ ├── HelloSoftUni.cpp │ │ │ ├── HelloSoftUni.vcxproj │ │ │ └── HelloSoftUni.vcxproj.filters │ │ │ ├── InchesToCentimeters │ │ │ ├── InchesToCentimeters.cpp │ │ │ ├── InchesToCentimeters.vcxproj │ │ │ └── InchesToCentimeters.vcxproj.filters │ │ │ ├── NumsFrom1To10 │ │ │ ├── NumsFrom1To10.cpp │ │ │ ├── NumsFrom1To10.vcxproj │ │ │ └── NumsFrom1To10.vcxproj.filters │ │ │ ├── PetShop │ │ │ ├── PetShop.cpp │ │ │ ├── PetShop.vcxproj │ │ │ └── PetShop.vcxproj.filters │ │ │ ├── ProjectsCreation │ │ │ ├── ProjectsCreation.cpp │ │ │ ├── ProjectsCreation.vcxproj │ │ │ └── ProjectsCreation.vcxproj.filters │ │ │ ├── RectangleArea │ │ │ ├── RectangleArea.cpp │ │ │ ├── RectangleArea.vcxproj │ │ │ └── RectangleArea.vcxproj.filters │ │ │ └── YardGreening │ │ │ ├── YardGreening.cpp │ │ │ ├── YardGreening.vcxproj │ │ │ └── YardGreening.vcxproj.filters │ ├── Nested loops │ │ ├── Exercises │ │ │ ├── CinemaTickets │ │ │ │ ├── CinemaTickets.cpp │ │ │ │ ├── CinemaTickets.vcxproj │ │ │ │ └── CinemaTickets.vcxproj.filters │ │ │ ├── EqualSumsEvenOddPosition │ │ │ │ ├── EqualSumsEvenOddPosition.cpp │ │ │ │ ├── EqualSumsEvenOddPosition.vcxproj │ │ │ │ └── EqualSumsEvenOddPosition.vcxproj.filters │ │ │ ├── NumberPyramid │ │ │ │ ├── NumberPyramid.cpp │ │ │ │ ├── NumberPyramid.vcxproj │ │ │ │ └── NumberPyramid.vcxproj.filters │ │ │ ├── SpecialNumbers │ │ │ │ ├── SpecialNumbers.cpp │ │ │ │ ├── SpecialNumbers.vcxproj │ │ │ │ └── SpecialNumbers.vcxproj.filters │ │ │ ├── SumPrimeNonPrime │ │ │ │ ├── SumPrimeNonPrime.cpp │ │ │ │ ├── SumPrimeNonPrime.vcxproj │ │ │ │ └── SumPrimeNonPrime.vcxproj.filters │ │ │ └── TrainTheTrainers │ │ │ │ ├── TrainTheTrainers.cpp │ │ │ │ ├── TrainTheTrainers.vcxproj │ │ │ │ └── TrainTheTrainers.vcxproj.filters │ │ ├── Labs │ │ │ ├── Building │ │ │ │ ├── Building.cpp │ │ │ │ ├── Building.vcxproj │ │ │ │ └── Building.vcxproj.filters │ │ │ ├── Clock │ │ │ │ ├── Clock.cpp │ │ │ │ ├── Clock.vcxproj │ │ │ │ └── Clock.vcxproj.filters │ │ │ ├── Combinations │ │ │ │ ├── Combinations.cpp │ │ │ │ ├── Combinations.vcxproj │ │ │ │ └── Combinations.vcxproj.filters │ │ │ ├── MultiplicationTable │ │ │ │ ├── MultiplicationTable.cpp │ │ │ │ ├── MultiplicationTable.vcxproj │ │ │ │ └── MultiplicationTable.vcxproj.filters │ │ │ ├── SumOfTwoNumbers │ │ │ │ ├── SumOfTwoNumbers.cpp │ │ │ │ ├── SumOfTwoNumbers.vcxproj │ │ │ │ └── SumOfTwoNumbers.vcxproj.filters │ │ │ └── Travelling │ │ │ │ ├── Travelling.cpp │ │ │ │ ├── Travelling.vcxproj │ │ │ │ └── Travelling.vcxproj.filters │ │ └── Nested loops.sln │ └── While loops │ │ ├── Exercises │ │ ├── Cake │ │ │ ├── Cake.cpp │ │ │ ├── Cake.vcxproj │ │ │ └── Cake.vcxproj.filters │ │ ├── Coins │ │ │ ├── Coins.cpp │ │ │ ├── Coins.vcxproj │ │ │ └── Coins.vcxproj.filters │ │ ├── ExamPreparation │ │ │ ├── ExamPreparation.cpp │ │ │ ├── ExamPreparation.vcxproj │ │ │ └── ExamPreparation.vcxproj.filters │ │ ├── Moving │ │ │ ├── Moving.cpp │ │ │ ├── Moving.vcxproj │ │ │ └── Moving.vcxproj.filters │ │ ├── OldBooks │ │ │ ├── OldBooks.cpp │ │ │ ├── OldBooks.vcxproj │ │ │ └── OldBooks.vcxproj.filters │ │ ├── Vacation │ │ │ ├── Vacation.cpp │ │ │ ├── Vacation.vcxproj │ │ │ └── Vacation.vcxproj.filters │ │ └── Walking │ │ │ ├── Walking.cpp │ │ │ ├── Walking.vcxproj │ │ │ └── Walking.vcxproj.filters │ │ ├── Labs │ │ ├── AccountBalance │ │ │ ├── AccountBalance.cpp │ │ │ ├── AccountBalance.vcxproj │ │ │ └── AccountBalance.vcxproj.filters │ │ ├── Graduation │ │ │ ├── Graduation.cpp │ │ │ ├── Graduation.vcxproj │ │ │ └── Graduation.vcxproj.filters │ │ ├── MaxNumber │ │ │ ├── MaxNumber.cpp │ │ │ ├── MaxNumber.vcxproj │ │ │ └── MaxNumber.vcxproj.filters │ │ ├── MinNumber │ │ │ ├── MinNumber.cpp │ │ │ ├── MinNumber.vcxproj │ │ │ └── MinNumber.vcxproj.filters │ │ ├── Password │ │ │ ├── Password.cpp │ │ │ ├── Password.vcxproj │ │ │ └── Password.vcxproj.filters │ │ ├── ReadText │ │ │ ├── ReadText.cpp │ │ │ ├── ReadText.vcxproj │ │ │ └── ReadText.vcxproj.filters │ │ ├── Sequence │ │ │ ├── Sequence.cpp │ │ │ ├── Sequence.vcxproj │ │ │ └── Sequence.vcxproj.filters │ │ └── SumNumbers │ │ │ ├── SumNumbers.cpp │ │ │ ├── SumNumbers.vcxproj │ │ │ └── SumNumbers.vcxproj.filters │ │ ├── More Exercises │ │ └── StreamOfLetters │ │ │ ├── StreamOfLetters.cpp │ │ │ ├── StreamOfLetters.vcxproj │ │ │ └── StreamOfLetters.vcxproj.filters │ │ └── While loops.sln └── JavaScript │ ├── Conditional Statements Advanced │ ├── Exercises │ │ ├── cinema.js │ │ ├── fishing-boat.js │ │ ├── hotel-room.js │ │ ├── journey.js │ │ ├── new-house.js │ │ ├── on-time-for-the-exam.js │ │ ├── operations-between-numbers.js │ │ ├── ski-trip.js │ │ └── summer-outfit.js │ └── Labs │ │ ├── animal-type.js │ │ ├── cinema-tickets.js │ │ ├── day-of-week.js │ │ ├── fruit-or-vegetable.js │ │ ├── fruit-shop.js │ │ ├── invalid-number.js │ │ ├── number-in-range.js │ │ ├── personal-titles.js │ │ ├── small-shop.js │ │ ├── trade-commissions.js │ │ ├── weekend-or-working-day.js │ │ └── working-hours.js │ ├── Conditional Statements │ ├── Exercises │ │ ├── add-15-minutes.js │ │ ├── bonus-score.js │ │ ├── godzilla-vs-kong.js │ │ ├── lunch-break.js │ │ ├── shopping.js │ │ ├── sum-seconds.js │ │ ├── toy-shop.js │ │ └── world-swimming-record.js │ └── Labs │ │ ├── area-of-figures.js │ │ ├── even-or-odd.js │ │ ├── excellent-result.js │ │ ├── greater-number.js │ │ ├── number-from-100-to-200.js │ │ ├── password-guess.js │ │ └── speed-info.js │ ├── For loops │ ├── Exercises │ │ ├── clever-lily.js │ │ ├── histogram.js │ │ ├── multiplication-table.js │ │ ├── numbers-ending-in-7.js │ │ ├── oscars.js │ │ ├── salary.js │ │ ├── tennis-ranklist.js │ │ └── trekking-mania.js │ └── Labs │ │ ├── character-sequence.js │ │ ├── even-powers-of-2.js │ │ ├── numbers-divisible-by-9.js │ │ ├── numbers-from-1-to-100.js │ │ ├── numbers-from-1-to-n-with-step-3.js │ │ ├── numbers-from-n-to-1.js │ │ ├── sum-of-numbers.js │ │ └── vowels-sum.js │ ├── Introduction │ ├── Exercises │ │ ├── basketball-equipment.js │ │ ├── deposit-calculator.js │ │ ├── fish-tank.js │ │ ├── food-delivery.js │ │ ├── radians-to-degrees.js │ │ ├── repainting.js │ │ ├── supplies-for-school.js │ │ ├── usd-to-bgn.js │ │ └── vacation-books-list.js │ └── Labs │ │ ├── concatenate-data.js │ │ ├── greeting-by-name.js │ │ ├── hello-softuni.js │ │ ├── inches-to-centimeters.js │ │ ├── nums-from-1-to-10.js │ │ ├── pet-shop.js │ │ ├── projects-creation.js │ │ ├── square-area.js │ │ └── yard-greening.js │ ├── Nested loops │ ├── Exercises │ │ ├── cinema-tickets.js │ │ ├── equal-sums-even-ddd-position.js │ │ ├── number-pyramid.js │ │ ├── special-numbers.js │ │ ├── sum-prime-non-prime.js │ │ └── train-the-trainers.js │ └── Lab │ │ ├── building.js │ │ ├── clock.js │ │ ├── combinations.js │ │ ├── multiplication-table.js │ │ ├── sum-of-two-numbers.js │ │ └── travelling.js │ └── While loops │ ├── Exercises │ ├── cake.js │ ├── coins.js │ ├── exam-preparation.js │ ├── moving.js │ ├── old-books.js │ ├── vacation.js │ └── walking.js │ └── Labs │ ├── account-balance.js │ ├── graduation.js │ ├── max-number.js │ ├── min-number.js │ ├── password.js │ ├── read-text.js │ ├── sequence.js │ └── sum-numbers.js ├── README.md ├── Spring Data ├── Exam 2024-04-14 │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── softuni │ │ │ └── exam │ │ │ ├── ExamApplication.java │ │ │ ├── ServletInitializer.java │ │ │ ├── config │ │ │ └── ApplicationBeanConfiguration.java │ │ │ ├── models │ │ │ ├── dto │ │ │ │ ├── DeviceInputDto.java │ │ │ │ ├── DevicesImportDto.java │ │ │ │ ├── SaleInputDto.java │ │ │ │ └── SellerInputDto.java │ │ │ ├── entity │ │ │ │ ├── BaseEntity.java │ │ │ │ ├── Device.java │ │ │ │ ├── Sale.java │ │ │ │ └── Seller.java │ │ │ └── enums │ │ │ │ └── DeviceType.java │ │ │ ├── repository │ │ │ ├── DeviceRepository.java │ │ │ ├── SaleRepository.java │ │ │ └── SellerRepository.java │ │ │ ├── service │ │ │ ├── DeviceService.java │ │ │ ├── SaleService.java │ │ │ ├── SellerService.java │ │ │ └── impl │ │ │ │ ├── DeviceServiceImpl.java │ │ │ │ ├── SaleServiceImpl.java │ │ │ │ └── SellerServiceImpl.java │ │ │ ├── util │ │ │ ├── ValidationUtil.java │ │ │ ├── ValidationUtilImpl.java │ │ │ ├── XmlParser.java │ │ │ └── XmlParserImpl.java │ │ │ └── web │ │ │ └── controllers │ │ │ ├── BaseController.java │ │ │ ├── ExportController.java │ │ │ ├── HomeController.java │ │ │ └── ImportController.java │ │ └── resources │ │ ├── application.properties │ │ ├── files │ │ ├── json │ │ │ ├── sales.json │ │ │ └── sellers.json │ │ └── xml │ │ │ └── devices.xml │ │ ├── static │ │ ├── css │ │ │ ├── bootstrap.min.css │ │ │ └── style.css │ │ ├── js │ │ │ ├── bootstrap.min.js │ │ │ └── jquery-3.3.1.min.js │ │ └── pics │ │ │ ├── frame_1.png │ │ │ ├── frame_2.png │ │ │ ├── frame_3.png │ │ │ ├── home1.png │ │ │ ├── home2.png │ │ │ ├── mobiles_back3.jpg │ │ │ ├── mobiles_back4.jpg │ │ │ ├── mobiles_back_2.jpg │ │ │ ├── mobiles_background.jpg │ │ │ └── tablet_frame.png │ │ └── templates │ │ ├── export │ │ └── export-devices.html │ │ ├── fragments │ │ ├── base-layout.html │ │ ├── footer.html │ │ ├── head.html │ │ └── navbar.html │ │ ├── index.html │ │ ├── json │ │ ├── import-json.html │ │ ├── import-sales.html │ │ └── import-sellers.html │ │ └── xml │ │ ├── import-devices.html │ │ └── import-xml.html ├── Exam Preparation │ └── Secret America │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ ├── java │ │ └── softuni │ │ │ └── exam │ │ │ ├── SecretAmericaApplication.java │ │ │ ├── config │ │ │ └── ApplicationBeanConfiguration.java │ │ │ ├── models │ │ │ ├── dto │ │ │ │ ├── AttractionExportDto.java │ │ │ │ ├── AttractionInputDto.java │ │ │ │ ├── CountryInputDto.java │ │ │ │ ├── PersonalDataImportDto.java │ │ │ │ ├── PersonalDataInputDto.java │ │ │ │ ├── VisitorImportDto.java │ │ │ │ └── VisitorInputDto.java │ │ │ └── entity │ │ │ │ ├── Attraction.java │ │ │ │ ├── BaseEntity.java │ │ │ │ ├── Country.java │ │ │ │ ├── PersonalData.java │ │ │ │ └── Visitor.java │ │ │ ├── repository │ │ │ ├── AttractionRepository.java │ │ │ ├── CountryRepository.java │ │ │ ├── PersonalDataRepository.java │ │ │ └── VisitorRepository.java │ │ │ ├── service │ │ │ ├── AttractionService.java │ │ │ ├── CountryService.java │ │ │ ├── PersonalDataService.java │ │ │ ├── VisitorService.java │ │ │ └── impl │ │ │ │ ├── AttractionServiceImpl.java │ │ │ │ ├── CountryServiceImpl.java │ │ │ │ ├── PersonalDataServiceImpl.java │ │ │ │ └── VisitorServiceImpl.java │ │ │ ├── util │ │ │ └── LocalDateXmlAdapter.java │ │ │ └── web │ │ │ └── controllers │ │ │ ├── BaseController.java │ │ │ ├── ExportController.java │ │ │ ├── HomeController.java │ │ │ └── ImportController.java │ │ └── resources │ │ ├── application.properties │ │ ├── files │ │ ├── json │ │ │ ├── attractions.json │ │ │ └── countries.json │ │ └── xml │ │ │ ├── personal_data.xml │ │ │ └── visitors.xml │ │ ├── static │ │ ├── css │ │ │ ├── bootstrap.min.css │ │ │ └── style.css │ │ ├── js │ │ │ ├── bootstrap.min.js │ │ │ └── jquery-3.3.1.min.js │ │ └── pics │ │ │ ├── aztec.png │ │ │ ├── background.jpg │ │ │ ├── calendar1.png │ │ │ └── monte.png │ │ └── templates │ │ ├── export │ │ ├── export-attractions.html │ │ └── export-visitors.html │ │ ├── fragments │ │ ├── base-layout.html │ │ ├── footer.html │ │ ├── head.html │ │ └── navbar.html │ │ ├── index.html │ │ ├── json │ │ ├── import-attractions.html │ │ ├── import-countries.html │ │ └── import-json.html │ │ └── xml │ │ ├── import-personalData.html │ │ ├── import-visitors.html │ │ └── import-xml.html ├── Hibernate Code First │ ├── Exercises │ │ ├── exercise_1 │ │ │ ├── Solution.java │ │ │ └── entities │ │ │ │ └── WizardDeposit.java │ │ ├── exercise_2 │ │ │ ├── Solution.java │ │ │ └── entities │ │ │ │ ├── Customer.java │ │ │ │ ├── Product.java │ │ │ │ ├── Sale.java │ │ │ │ └── StoreLocation.java │ │ ├── exercise_3 │ │ │ ├── Solution.java │ │ │ └── entities │ │ │ │ ├── BaseEntity.java │ │ │ │ ├── BaseUser.java │ │ │ │ ├── Course.java │ │ │ │ ├── Student.java │ │ │ │ └── Teacher.java │ │ ├── exercise_4 │ │ │ ├── Solution.java │ │ │ └── entities │ │ │ │ ├── BaseEntity.java │ │ │ │ ├── Diagnose.java │ │ │ │ ├── Medicament.java │ │ │ │ ├── Patient.java │ │ │ │ └── Visitation.java │ │ ├── exercise_5 │ │ │ ├── Solution.java │ │ │ └── entities │ │ │ │ ├── BankAccount.java │ │ │ │ ├── BaseBillingDetail.java │ │ │ │ ├── BaseEntity.java │ │ │ │ ├── CreditCard.java │ │ │ │ ├── CreditCardType.java │ │ │ │ └── User.java │ │ └── exercise_6 │ │ │ ├── Solution.java │ │ │ └── entities │ │ │ ├── BaseEntity.java │ │ │ ├── Bet.java │ │ │ ├── Bettor.java │ │ │ ├── Color.java │ │ │ ├── Competition.java │ │ │ ├── CompetitionType.java │ │ │ ├── Continent.java │ │ │ ├── Country.java │ │ │ ├── Game.java │ │ │ ├── Performance.java │ │ │ ├── Player.java │ │ │ ├── Position.java │ │ │ ├── Round.java │ │ │ ├── Team.java │ │ │ └── Town.java │ ├── Labs │ │ └── lab_1 │ │ │ ├── Solution.java │ │ │ └── entities │ │ │ ├── Bike.java │ │ │ ├── Car.java │ │ │ ├── Company.java │ │ │ ├── Driver.java │ │ │ ├── Plane.java │ │ │ ├── PlateNumber.java │ │ │ ├── Truck.java │ │ │ └── Vehicle.java │ ├── pom.xml │ └── resources │ │ └── META-INF │ │ └── persistence.xml ├── Introduction to Hibernate │ ├── Exercises │ │ ├── dtos │ │ │ ├── AddressSummaryDto.java │ │ │ ├── DepartmentSummaryDto.java │ │ │ └── EmployeeSummaryDto.java │ │ ├── entities │ │ │ ├── Address.java │ │ │ ├── Department.java │ │ │ ├── Employee.java │ │ │ ├── Project.java │ │ │ └── Town.java │ │ ├── exercise_1 │ │ │ └── Solution.java │ │ ├── exercise_10 │ │ │ └── Solution.java │ │ ├── exercise_11 │ │ │ └── Solution.java │ │ ├── exercise_12 │ │ │ └── Solution.java │ │ ├── exercise_2 │ │ │ └── Solution.java │ │ ├── exercise_3 │ │ │ └── Solution.java │ │ ├── exercise_4 │ │ │ └── Solution.java │ │ ├── exercise_5 │ │ │ └── Solution.java │ │ ├── exercise_6 │ │ │ └── Solution.java │ │ ├── exercise_7 │ │ │ └── Solution.java │ │ ├── exercise_8 │ │ │ └── Solution.java │ │ └── exercise_9 │ │ │ └── Solution.java │ ├── pom.xml │ └── resources │ │ └── META-INF │ │ └── persistence.xml ├── JSON Processing │ ├── Exercises │ │ └── exercise_1 │ │ │ ├── Runner.java │ │ │ ├── Solution.java │ │ │ ├── config │ │ │ ├── JsonConfiguration.java │ │ │ └── ModelMapperConfiguration.java │ │ │ ├── dtos │ │ │ ├── CategoryInputDto.java │ │ │ ├── ProductInputDto.java │ │ │ ├── ProductSummaryDto.java │ │ │ └── UserInputDto.java │ │ │ ├── models │ │ │ ├── BaseEntity.java │ │ │ ├── Category.java │ │ │ ├── Product.java │ │ │ └── User.java │ │ │ ├── repositories │ │ │ ├── CategoryRepository.java │ │ │ ├── ProductRepository.java │ │ │ └── UserRepository.java │ │ │ └── services │ │ │ ├── CategoryService.java │ │ │ ├── CategoryServiceImpl.java │ │ │ ├── DataPreparationService.java │ │ │ ├── DataPreparationServiceImpl.java │ │ │ ├── ProductService.java │ │ │ ├── ProductServiceImpl.java │ │ │ ├── UserService.java │ │ │ └── UserServiceImpl.java │ ├── pom.xml │ └── resources │ │ ├── application.properties │ │ ├── cars.json │ │ ├── categories.json │ │ ├── customers.json │ │ ├── exercise_1.properties │ │ ├── parts.json │ │ ├── products.json │ │ ├── suppliers.json │ │ └── users.json ├── Java DB Apps Introduction │ ├── Exercises │ │ ├── exercise_1 │ │ │ └── Solution.java │ │ ├── exercise_2 │ │ │ └── Solution.java │ │ ├── exercise_3 │ │ │ └── Solution.java │ │ ├── exercise_4 │ │ │ └── Solution.java │ │ ├── exercise_5 │ │ │ └── Solution.java │ │ ├── exercise_6 │ │ │ └── Solution.java │ │ ├── exercise_7 │ │ │ └── Solution.java │ │ └── exercise_8 │ │ │ └── Solution.java │ ├── Labs │ │ ├── lab_1 │ │ │ └── Solution.java │ │ └── lab_2 │ │ │ └── Solution.java │ └── pom.xml ├── ORM Fundamentals │ ├── Mini ORM │ │ ├── Program.java │ │ ├── entities │ │ │ └── User.java │ │ └── orm │ │ │ ├── DbContext.java │ │ │ ├── EntityManager.java │ │ │ ├── MyConnector.java │ │ │ └── annotations │ │ │ ├── Column.java │ │ │ ├── Entity.java │ │ │ └── Id.java │ └── pom.xml ├── Spring Data Advanced Querying │ ├── Exercises │ │ └── exercise_1 │ │ │ ├── Runner.java │ │ │ ├── Solution.java │ │ │ ├── dtos │ │ │ └── AuthorSalesDto.java │ │ │ ├── enums │ │ │ ├── AgeRestriction.java │ │ │ └── BookEditionType.java │ │ │ ├── models │ │ │ ├── Author.java │ │ │ ├── BaseEntity.java │ │ │ ├── Book.java │ │ │ └── Category.java │ │ │ ├── repositories │ │ │ ├── AuthorRepository.java │ │ │ ├── BookRepository.java │ │ │ └── CategoryRepository.java │ │ │ └── services │ │ │ ├── AuthorService.java │ │ │ ├── AuthorServiceImpl.java │ │ │ ├── BookService.java │ │ │ ├── BookServiceImpl.java │ │ │ ├── CategoryService.java │ │ │ └── CategoryServiceImpl.java │ ├── Labs │ │ └── lab_1 │ │ │ ├── Runner.java │ │ │ ├── Solution.java │ │ │ ├── entities │ │ │ ├── BaseEntity.java │ │ │ ├── Ingredient.java │ │ │ ├── Label.java │ │ │ └── Shampoo.java │ │ │ ├── enums │ │ │ └── Size.java │ │ │ └── repositories │ │ │ ├── IngredientRepository.java │ │ │ └── ShampooRepository.java │ ├── pom.xml │ └── resources │ │ ├── application.properties │ │ ├── authors.txt │ │ ├── books.txt │ │ ├── categories.txt │ │ ├── exercise_1.properties │ │ └── lab_1.properties ├── Spring Data Auto Mapping Objects │ ├── Exercises │ │ └── exercise_1 │ │ │ ├── Runner.java │ │ │ ├── Solution.java │ │ │ ├── config │ │ │ └── ModelMapperConfiguration.java │ │ │ ├── dtos │ │ │ ├── GameDto.java │ │ │ ├── GameInputDto.java │ │ │ ├── OrderDto.java │ │ │ ├── ShoppingCartItemDto.java │ │ │ ├── UserDto.java │ │ │ ├── UserLoginDto.java │ │ │ └── UserRegisterDto.java │ │ │ ├── models │ │ │ ├── BaseEntity.java │ │ │ ├── Game.java │ │ │ ├── Order.java │ │ │ ├── ShoppingCartItem.java │ │ │ └── User.java │ │ │ ├── repositories │ │ │ ├── GameRepository.java │ │ │ ├── OrderRepository.java │ │ │ ├── ShoppingCartItemRepository.java │ │ │ └── UserRepository.java │ │ │ └── services │ │ │ ├── GameService.java │ │ │ ├── GameServiceImpl.java │ │ │ ├── OrderService.java │ │ │ ├── OrderServiceImpl.java │ │ │ ├── ShoppingCartService.java │ │ │ ├── ShoppingCartServiceImpl.java │ │ │ ├── UserService.java │ │ │ └── UserServiceImpl.java │ ├── Labs │ │ └── lab_1 │ │ │ ├── Runner.java │ │ │ ├── Solution.java │ │ │ ├── dtos │ │ │ ├── EmployeeDto.java │ │ │ ├── ManagerDto.java │ │ │ └── SubordinateDto.java │ │ │ ├── models │ │ │ ├── BaseEntity.java │ │ │ └── Employee.java │ │ │ └── repositories │ │ │ └── EmployeeRepository.java │ ├── pom.xml │ └── resources │ │ ├── application.properties │ │ ├── exercise_1.properties │ │ └── lab_1.properties ├── Spring Data Introduction │ ├── Exercises │ │ ├── exercise_1 │ │ │ ├── Runner.java │ │ │ ├── Solution.java │ │ │ ├── dtos │ │ │ │ └── AuthorSummaryDto.java │ │ │ ├── enums │ │ │ │ ├── AgeRestriction.java │ │ │ │ └── BookEditionType.java │ │ │ ├── models │ │ │ │ ├── Author.java │ │ │ │ ├── BaseEntity.java │ │ │ │ ├── Book.java │ │ │ │ └── Category.java │ │ │ ├── repositories │ │ │ │ ├── AuthorRepository.java │ │ │ │ ├── BookRepository.java │ │ │ │ └── CategoryRepository.java │ │ │ └── services │ │ │ │ ├── AuthorService.java │ │ │ │ ├── AuthorServiceImpl.java │ │ │ │ ├── BookService.java │ │ │ │ ├── BookServiceImpl.java │ │ │ │ ├── CategoryService.java │ │ │ │ └── CategoryServiceImpl.java │ │ └── exercise_2 │ │ │ ├── Runner.java │ │ │ ├── Solution.java │ │ │ ├── models │ │ │ ├── Album.java │ │ │ ├── BaseEntity.java │ │ │ ├── Picture.java │ │ │ ├── Town.java │ │ │ └── User.java │ │ │ ├── repositories │ │ │ └── UserRepository.java │ │ │ ├── services │ │ │ ├── UserService.java │ │ │ └── UserServiceImpl.java │ │ │ └── validation │ │ │ ├── Email.java │ │ │ ├── EmailValidator.java │ │ │ ├── Password.java │ │ │ └── PasswordValidator.java │ ├── Labs │ │ └── lab_1 │ │ │ ├── Runner.java │ │ │ ├── Solution.java │ │ │ ├── models │ │ │ ├── Account.java │ │ │ ├── BaseEntity.java │ │ │ └── User.java │ │ │ ├── repositories │ │ │ ├── AccountRepository.java │ │ │ └── UserRepository.java │ │ │ └── services │ │ │ ├── AccountService.java │ │ │ ├── AccountServiceImpl.java │ │ │ ├── UserService.java │ │ │ └── UserServiceImpl.java │ ├── pom.xml │ └── resources │ │ ├── application.properties │ │ ├── authors.txt │ │ ├── books.txt │ │ ├── categories.txt │ │ ├── exercise_1.properties │ │ ├── exercise_2.properties │ │ └── lab_1.properties ├── XML Processing │ ├── Exercises │ │ └── exercise_2 │ │ │ ├── Runner.java │ │ │ ├── Solution.java │ │ │ ├── config │ │ │ └── ModelMapperConfiguration.java │ │ │ ├── dtos │ │ │ ├── CarDto.java │ │ │ ├── CarExtendedDto.java │ │ │ ├── CarInputDto.java │ │ │ ├── CarRelationsDto.java │ │ │ ├── CarsExportDto.java │ │ │ ├── CarsExtendedExportDto.java │ │ │ ├── CarsImportDto.java │ │ │ ├── CustomerDto.java │ │ │ ├── CustomerExtendedDto.java │ │ │ ├── CustomerInputDto.java │ │ │ ├── CustomersExportDto.java │ │ │ ├── CustomersExtendedExportDto.java │ │ │ ├── CustomersImportDto.java │ │ │ ├── PartDto.java │ │ │ ├── PartInputDto.java │ │ │ ├── PartRelationsDto.java │ │ │ ├── PartsImportDto.java │ │ │ ├── SaleDto.java │ │ │ ├── SaleInputDto.java │ │ │ ├── SaleRelationsDto.java │ │ │ ├── SupplierDto.java │ │ │ ├── SupplierInputDto.java │ │ │ ├── SupplierReportDto.java │ │ │ ├── SuppliersImportDto.java │ │ │ └── SuppliersReportExportDto.java │ │ │ ├── entities │ │ │ ├── BaseEntity.java │ │ │ ├── Car.java │ │ │ ├── Customer.java │ │ │ ├── Part.java │ │ │ ├── Sale.java │ │ │ └── Supplier.java │ │ │ ├── repositories │ │ │ ├── CarRepository.java │ │ │ ├── CustomerRepository.java │ │ │ ├── PartRepository.java │ │ │ ├── SaleRepository.java │ │ │ └── SupplierRepository.java │ │ │ ├── services │ │ │ ├── CarService.java │ │ │ ├── CarServiceImpl.java │ │ │ ├── CustomerService.java │ │ │ ├── CustomerServiceImpl.java │ │ │ ├── PartService.java │ │ │ ├── PartServiceImpl.java │ │ │ ├── SaleService.java │ │ │ ├── SaleServiceImpl.java │ │ │ ├── SupplierService.java │ │ │ └── SupplierServiceImpl.java │ │ │ └── utils │ │ │ └── LocalDateXmlAdapter.java │ ├── pom.xml │ └── resources │ │ ├── application.properties │ │ ├── cars.xml │ │ ├── categories.xml │ │ ├── customers.xml │ │ ├── exercise_2.properties │ │ ├── parts.xml │ │ ├── products.xml │ │ ├── suppliers.xml │ │ └── users.xml └── docker-compose.yml ├── icons ├── cpp.svg ├── csharp.svg ├── ef-core.svg ├── hibernate.svg ├── java.svg ├── js.svg ├── mssql.svg ├── mysql.svg └── spring.svg └── whiteboards ├── C# Advanced - May 2025.pdf └── C# Advanced - September 2024.pdf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/.gitignore -------------------------------------------------------------------------------- /C# Advanced/Defining Classes/Defining Classes.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Defining Classes/Defining Classes.sln -------------------------------------------------------------------------------- /C# Advanced/Defining Classes/Exercises/CarSalesman/Car.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Defining Classes/Exercises/CarSalesman/Car.cs -------------------------------------------------------------------------------- /C# Advanced/Defining Classes/Exercises/CarSalesman/Engine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Defining Classes/Exercises/CarSalesman/Engine.cs -------------------------------------------------------------------------------- /C# Advanced/Defining Classes/Exercises/CarSalesman/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Defining Classes/Exercises/CarSalesman/Program.cs -------------------------------------------------------------------------------- /C# Advanced/Defining Classes/Exercises/DateModifier/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Defining Classes/Exercises/DateModifier/Program.cs -------------------------------------------------------------------------------- /C# Advanced/Defining Classes/Exercises/DefiningClasses/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Defining Classes/Exercises/DefiningClasses/Person.cs -------------------------------------------------------------------------------- /C# Advanced/Defining Classes/Exercises/DefiningClasses/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Defining Classes/Exercises/DefiningClasses/StartUp.cs -------------------------------------------------------------------------------- /C# Advanced/Defining Classes/Exercises/OpinionPoll/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Defining Classes/Exercises/OpinionPoll/Person.cs -------------------------------------------------------------------------------- /C# Advanced/Defining Classes/Exercises/OpinionPoll/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Defining Classes/Exercises/OpinionPoll/Program.cs -------------------------------------------------------------------------------- /C# Advanced/Defining Classes/Exercises/PokemonTrainer/Pokemon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Defining Classes/Exercises/PokemonTrainer/Pokemon.cs -------------------------------------------------------------------------------- /C# Advanced/Defining Classes/Exercises/PokemonTrainer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Defining Classes/Exercises/PokemonTrainer/Program.cs -------------------------------------------------------------------------------- /C# Advanced/Defining Classes/Exercises/PokemonTrainer/Trainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Defining Classes/Exercises/PokemonTrainer/Trainer.cs -------------------------------------------------------------------------------- /C# Advanced/Defining Classes/Exercises/RawData/Car.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Defining Classes/Exercises/RawData/Car.cs -------------------------------------------------------------------------------- /C# Advanced/Defining Classes/Exercises/RawData/Cargo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Defining Classes/Exercises/RawData/Cargo.cs -------------------------------------------------------------------------------- /C# Advanced/Defining Classes/Exercises/RawData/Engine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Defining Classes/Exercises/RawData/Engine.cs -------------------------------------------------------------------------------- /C# Advanced/Defining Classes/Exercises/RawData/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Defining Classes/Exercises/RawData/Program.cs -------------------------------------------------------------------------------- /C# Advanced/Defining Classes/Exercises/RawData/RawData.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Defining Classes/Exercises/RawData/RawData.csproj -------------------------------------------------------------------------------- /C# Advanced/Defining Classes/Exercises/RawData/Tire.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Defining Classes/Exercises/RawData/Tire.cs -------------------------------------------------------------------------------- /C# Advanced/Defining Classes/Exercises/SoftUniParking/Car.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Defining Classes/Exercises/SoftUniParking/Car.cs -------------------------------------------------------------------------------- /C# Advanced/Defining Classes/Exercises/SoftUniParking/Parking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Defining Classes/Exercises/SoftUniParking/Parking.cs -------------------------------------------------------------------------------- /C# Advanced/Defining Classes/Exercises/SoftUniParking/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Defining Classes/Exercises/SoftUniParking/StartUp.cs -------------------------------------------------------------------------------- /C# Advanced/Defining Classes/Exercises/SpeedRacing/Car.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Defining Classes/Exercises/SpeedRacing/Car.cs -------------------------------------------------------------------------------- /C# Advanced/Defining Classes/Exercises/SpeedRacing/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Defining Classes/Exercises/SpeedRacing/Program.cs -------------------------------------------------------------------------------- /C# Advanced/Exam 2022-12-14/ClimbThePeaks/ClimbThePeaks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Exam 2022-12-14/ClimbThePeaks/ClimbThePeaks.csproj -------------------------------------------------------------------------------- /C# Advanced/Exam 2022-12-14/ClimbThePeaks/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Exam 2022-12-14/ClimbThePeaks/Program.cs -------------------------------------------------------------------------------- /C# Advanced/Exam 2022-12-14/Exam 2022-12-14.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Exam 2022-12-14/Exam 2022-12-14.sln -------------------------------------------------------------------------------- /C# Advanced/Exam 2022-12-14/NavyBattle/NavyBattle.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Exam 2022-12-14/NavyBattle/NavyBattle.csproj -------------------------------------------------------------------------------- /C# Advanced/Exam 2022-12-14/NavyBattle/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Exam 2022-12-14/NavyBattle/Program.cs -------------------------------------------------------------------------------- /C# Advanced/Exam 2022-12-14/ShoeStore/Shoe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Exam 2022-12-14/ShoeStore/Shoe.cs -------------------------------------------------------------------------------- /C# Advanced/Exam 2022-12-14/ShoeStore/ShoeStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Exam 2022-12-14/ShoeStore/ShoeStore.cs -------------------------------------------------------------------------------- /C# Advanced/Exam 2022-12-14/ShoeStore/ShoeStore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Exam 2022-12-14/ShoeStore/ShoeStore.csproj -------------------------------------------------------------------------------- /C# Advanced/Exam 2022-12-14/ShoeStore/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Exam 2022-12-14/ShoeStore/StartUp.cs -------------------------------------------------------------------------------- /C# Advanced/Exam 2024-02-17/ChickenSnack/ChickenSnack.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Exam 2024-02-17/ChickenSnack/ChickenSnack.csproj -------------------------------------------------------------------------------- /C# Advanced/Exam 2024-02-17/ChickenSnack/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Exam 2024-02-17/ChickenSnack/Program.cs -------------------------------------------------------------------------------- /C# Advanced/Exam 2024-02-17/ClearSkies/ClearSkies.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Exam 2024-02-17/ClearSkies/ClearSkies.csproj -------------------------------------------------------------------------------- /C# Advanced/Exam 2024-02-17/ClearSkies/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Exam 2024-02-17/ClearSkies/Program.cs -------------------------------------------------------------------------------- /C# Advanced/Exam 2024-02-17/Exam 2024-02-17.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Exam 2024-02-17/Exam 2024-02-17.sln -------------------------------------------------------------------------------- /C# Advanced/Exam 2024-02-17/SharkTaxonomy/Classifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Exam 2024-02-17/SharkTaxonomy/Classifier.cs -------------------------------------------------------------------------------- /C# Advanced/Exam 2024-02-17/SharkTaxonomy/Shark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Exam 2024-02-17/SharkTaxonomy/Shark.cs -------------------------------------------------------------------------------- /C# Advanced/Exam 2024-02-17/SharkTaxonomy/SharkTaxonomy.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Exam 2024-02-17/SharkTaxonomy/SharkTaxonomy.csproj -------------------------------------------------------------------------------- /C# Advanced/Exam 2024-02-17/SharkTaxonomy/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Exam 2024-02-17/SharkTaxonomy/StartUp.cs -------------------------------------------------------------------------------- /C# Advanced/Exam 2024-04-10/DataCenter/DataCenter.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Exam 2024-04-10/DataCenter/DataCenter.csproj -------------------------------------------------------------------------------- /C# Advanced/Exam 2024-04-10/DataCenter/Rack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Exam 2024-04-10/DataCenter/Rack.cs -------------------------------------------------------------------------------- /C# Advanced/Exam 2024-04-10/DataCenter/Server.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Exam 2024-04-10/DataCenter/Server.cs -------------------------------------------------------------------------------- /C# Advanced/Exam 2024-04-10/DataCenter/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Exam 2024-04-10/DataCenter/StartUp.cs -------------------------------------------------------------------------------- /C# Advanced/Exam 2024-04-10/EscapeTheMaze/EscapeTheMaze.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Exam 2024-04-10/EscapeTheMaze/EscapeTheMaze.csproj -------------------------------------------------------------------------------- /C# Advanced/Exam 2024-04-10/EscapeTheMaze/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Exam 2024-04-10/EscapeTheMaze/Program.cs -------------------------------------------------------------------------------- /C# Advanced/Exam 2024-04-10/Exam 2024-04-10.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Exam 2024-04-10/Exam 2024-04-10.sln -------------------------------------------------------------------------------- /C# Advanced/Exam 2024-04-10/PiePursuit/PiePursuit.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Exam 2024-04-10/PiePursuit/PiePursuit.csproj -------------------------------------------------------------------------------- /C# Advanced/Exam 2024-04-10/PiePursuit/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Exam 2024-04-10/PiePursuit/Program.cs -------------------------------------------------------------------------------- /C# Advanced/Exam 2024-08-12/CocktailBar/Cocktail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Exam 2024-08-12/CocktailBar/Cocktail.cs -------------------------------------------------------------------------------- /C# Advanced/Exam 2024-08-12/CocktailBar/CocktailBar.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Exam 2024-08-12/CocktailBar/CocktailBar.csproj -------------------------------------------------------------------------------- /C# Advanced/Exam 2024-08-12/CocktailBar/Menu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Exam 2024-08-12/CocktailBar/Menu.cs -------------------------------------------------------------------------------- /C# Advanced/Exam 2024-08-12/CocktailBar/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Exam 2024-08-12/CocktailBar/StartUp.cs -------------------------------------------------------------------------------- /C# Advanced/Exam 2024-08-12/CollectingStars/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Exam 2024-08-12/CollectingStars/Program.cs -------------------------------------------------------------------------------- /C# Advanced/Exam 2024-08-12/Exam 2024-08-12.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Exam 2024-08-12/Exam 2024-08-12.sln -------------------------------------------------------------------------------- /C# Advanced/Exam 2024-08-12/WildSurvival/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Exam 2024-08-12/WildSurvival/Program.cs -------------------------------------------------------------------------------- /C# Advanced/Exam 2024-08-12/WildSurvival/WildSurvival.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Exam 2024-08-12/WildSurvival/WildSurvival.csproj -------------------------------------------------------------------------------- /C# Advanced/Functional Programming/Functional Programming.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Functional Programming/Functional Programming.sln -------------------------------------------------------------------------------- /C# Advanced/Generics/Exercises/GenericBoxOfInteger/Box.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Generics/Exercises/GenericBoxOfInteger/Box.cs -------------------------------------------------------------------------------- /C# Advanced/Generics/Exercises/GenericBoxOfInteger/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Generics/Exercises/GenericBoxOfInteger/Program.cs -------------------------------------------------------------------------------- /C# Advanced/Generics/Exercises/GenericBoxOfString/Box.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Generics/Exercises/GenericBoxOfString/Box.cs -------------------------------------------------------------------------------- /C# Advanced/Generics/Exercises/GenericBoxOfString/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Generics/Exercises/GenericBoxOfString/Program.cs -------------------------------------------------------------------------------- /C# Advanced/Generics/Exercises/GenericCountMethodDouble/Box.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Generics/Exercises/GenericCountMethodDouble/Box.cs -------------------------------------------------------------------------------- /C# Advanced/Generics/Exercises/GenericCountMethodString/Box.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Generics/Exercises/GenericCountMethodString/Box.cs -------------------------------------------------------------------------------- /C# Advanced/Generics/Exercises/GenericSwapMethodInteger/Box.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Generics/Exercises/GenericSwapMethodInteger/Box.cs -------------------------------------------------------------------------------- /C# Advanced/Generics/Exercises/GenericSwapMethodString/Box.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Generics/Exercises/GenericSwapMethodString/Box.cs -------------------------------------------------------------------------------- /C# Advanced/Generics/Exercises/GenericSwapMethodString/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Generics/Exercises/GenericSwapMethodString/Program.cs -------------------------------------------------------------------------------- /C# Advanced/Generics/Exercises/Threeuple/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Generics/Exercises/Threeuple/Program.cs -------------------------------------------------------------------------------- /C# Advanced/Generics/Exercises/Threeuple/Threeuple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Generics/Exercises/Threeuple/Threeuple.cs -------------------------------------------------------------------------------- /C# Advanced/Generics/Exercises/Threeuple/Threeuple.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Generics/Exercises/Threeuple/Threeuple.csproj -------------------------------------------------------------------------------- /C# Advanced/Generics/Exercises/Tuple/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Generics/Exercises/Tuple/Program.cs -------------------------------------------------------------------------------- /C# Advanced/Generics/Exercises/Tuple/Tuple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Generics/Exercises/Tuple/Tuple.cs -------------------------------------------------------------------------------- /C# Advanced/Generics/Exercises/Tuple/Tuple.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Generics/Exercises/Tuple/Tuple.csproj -------------------------------------------------------------------------------- /C# Advanced/Generics/Generics.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Generics/Generics.sln -------------------------------------------------------------------------------- /C# Advanced/Iterators and Comparators/Exercises/Froggy/Lake.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Iterators and Comparators/Exercises/Froggy/Lake.cs -------------------------------------------------------------------------------- /C# Advanced/Iterators and Comparators/Exercises/Froggy/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Iterators and Comparators/Exercises/Froggy/Program.cs -------------------------------------------------------------------------------- /C# Advanced/Multidimensional Arrays/Exercises/Bombs/Bombs.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Multidimensional Arrays/Exercises/Bombs/Bombs.csproj -------------------------------------------------------------------------------- /C# Advanced/Multidimensional Arrays/Exercises/Bombs/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Multidimensional Arrays/Exercises/Bombs/Program.cs -------------------------------------------------------------------------------- /C# Advanced/Multidimensional Arrays/Exercises/Miner/Miner.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Multidimensional Arrays/Exercises/Miner/Miner.csproj -------------------------------------------------------------------------------- /C# Advanced/Multidimensional Arrays/Exercises/Miner/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Multidimensional Arrays/Exercises/Miner/Program.cs -------------------------------------------------------------------------------- /C# Advanced/Multidimensional Arrays/Multidimensional Arrays.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Multidimensional Arrays/Multidimensional Arrays.sln -------------------------------------------------------------------------------- /C# Advanced/Sets and Dictionaries/Exercises/EvenTimes/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Sets and Dictionaries/Exercises/EvenTimes/Program.cs -------------------------------------------------------------------------------- /C# Advanced/Sets and Dictionaries/Exercises/ForceBook/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Sets and Dictionaries/Exercises/ForceBook/Program.cs -------------------------------------------------------------------------------- /C# Advanced/Sets and Dictionaries/Exercises/Ranking/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Sets and Dictionaries/Exercises/Ranking/Program.cs -------------------------------------------------------------------------------- /C# Advanced/Sets and Dictionaries/Exercises/TheVLogger/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Sets and Dictionaries/Exercises/TheVLogger/Program.cs -------------------------------------------------------------------------------- /C# Advanced/Sets and Dictionaries/Exercises/Wardrobe/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Sets and Dictionaries/Exercises/Wardrobe/Program.cs -------------------------------------------------------------------------------- /C# Advanced/Sets and Dictionaries/Labs/ParkingLot/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Sets and Dictionaries/Labs/ParkingLot/Program.cs -------------------------------------------------------------------------------- /C# Advanced/Sets and Dictionaries/Labs/ProductShop/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Sets and Dictionaries/Labs/ProductShop/Program.cs -------------------------------------------------------------------------------- /C# Advanced/Sets and Dictionaries/Labs/SoftUniParty/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Sets and Dictionaries/Labs/SoftUniParty/Program.cs -------------------------------------------------------------------------------- /C# Advanced/Sets and Dictionaries/Sets and Dictionaries.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Sets and Dictionaries/Sets and Dictionaries.sln -------------------------------------------------------------------------------- /C# Advanced/Stacks and Queues/Exercises/Crossroads/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Stacks and Queues/Exercises/Crossroads/Program.cs -------------------------------------------------------------------------------- /C# Advanced/Stacks and Queues/Exercises/CupsAndBottles/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Stacks and Queues/Exercises/CupsAndBottles/Program.cs -------------------------------------------------------------------------------- /C# Advanced/Stacks and Queues/Exercises/FastFood/FastFood.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Stacks and Queues/Exercises/FastFood/FastFood.csproj -------------------------------------------------------------------------------- /C# Advanced/Stacks and Queues/Exercises/FastFood/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Stacks and Queues/Exercises/FastFood/Program.cs -------------------------------------------------------------------------------- /C# Advanced/Stacks and Queues/Exercises/KeyRevolver/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Stacks and Queues/Exercises/KeyRevolver/Program.cs -------------------------------------------------------------------------------- /C# Advanced/Stacks and Queues/Exercises/SongsQueue/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Stacks and Queues/Exercises/SongsQueue/Program.cs -------------------------------------------------------------------------------- /C# Advanced/Stacks and Queues/Exercises/TruckTour/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Stacks and Queues/Exercises/TruckTour/Program.cs -------------------------------------------------------------------------------- /C# Advanced/Stacks and Queues/Labs/HotPotato/HotPotato.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Stacks and Queues/Labs/HotPotato/HotPotato.csproj -------------------------------------------------------------------------------- /C# Advanced/Stacks and Queues/Labs/HotPotato/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Stacks and Queues/Labs/HotPotato/Program.cs -------------------------------------------------------------------------------- /C# Advanced/Stacks and Queues/Labs/MatchingBrackets/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Stacks and Queues/Labs/MatchingBrackets/Program.cs -------------------------------------------------------------------------------- /C# Advanced/Stacks and Queues/Labs/PrintEvenNumbers/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Stacks and Queues/Labs/PrintEvenNumbers/Program.cs -------------------------------------------------------------------------------- /C# Advanced/Stacks and Queues/Labs/ReverseString/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Stacks and Queues/Labs/ReverseString/Program.cs -------------------------------------------------------------------------------- /C# Advanced/Stacks and Queues/Labs/SimpleCalculator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Stacks and Queues/Labs/SimpleCalculator/Program.cs -------------------------------------------------------------------------------- /C# Advanced/Stacks and Queues/Labs/StackSum/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Stacks and Queues/Labs/StackSum/Program.cs -------------------------------------------------------------------------------- /C# Advanced/Stacks and Queues/Labs/StackSum/StackSum.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Stacks and Queues/Labs/StackSum/StackSum.csproj -------------------------------------------------------------------------------- /C# Advanced/Stacks and Queues/Labs/Supermarket/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Stacks and Queues/Labs/Supermarket/Program.cs -------------------------------------------------------------------------------- /C# Advanced/Stacks and Queues/Labs/Supermarket/Supermarket.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Stacks and Queues/Labs/Supermarket/Supermarket.csproj -------------------------------------------------------------------------------- /C# Advanced/Stacks and Queues/Labs/TrafficJam/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Stacks and Queues/Labs/TrafficJam/Program.cs -------------------------------------------------------------------------------- /C# Advanced/Stacks and Queues/Labs/TrafficJam/TrafficJam.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Stacks and Queues/Labs/TrafficJam/TrafficJam.csproj -------------------------------------------------------------------------------- /C# Advanced/Stacks and Queues/Stacks and Queues.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Stacks and Queues/Stacks and Queues.sln -------------------------------------------------------------------------------- /C# Advanced/Streams, Files and Directories/Labs/ExtractSpecialBytes/Files/bytes.txt: -------------------------------------------------------------------------------- 1 | 20 2 | 46 3 | 183 4 | 212 -------------------------------------------------------------------------------- /C# Advanced/Streams, Files and Directories/Labs/FolderSize/Files/TestFolder/dataFile.TXT: -------------------------------------------------------------------------------- 1 | Some random text. -------------------------------------------------------------------------------- /C# Advanced/Streams, Files and Directories/Labs/FolderSize/Files/output.txt: -------------------------------------------------------------------------------- 1 | 0.0869140625 KB 2 | -------------------------------------------------------------------------------- /C# Advanced/Streams, Files and Directories/Labs/MergeFiles/Files/input1.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 3 3 | 5 -------------------------------------------------------------------------------- /C# Advanced/Streams, Files and Directories/Labs/MergeFiles/Files/input2.txt: -------------------------------------------------------------------------------- 1 | 2 2 | 4 3 | 6 -------------------------------------------------------------------------------- /C# Advanced/Streams, Files and Directories/Labs/MergeFiles/Files/output.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 3 4 | 4 5 | 5 6 | 6 7 | -------------------------------------------------------------------------------- /C# Advanced/Streams, Files and Directories/Labs/WordCount/Files/words.txt: -------------------------------------------------------------------------------- 1 | quick is fault -------------------------------------------------------------------------------- /C# Advanced/Workshop - Data Structures/LinkedList/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Workshop - Data Structures/LinkedList/Program.cs -------------------------------------------------------------------------------- /C# Advanced/Workshop - Data Structures/List/CustomList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Workshop - Data Structures/List/CustomList.cs -------------------------------------------------------------------------------- /C# Advanced/Workshop - Data Structures/List/List.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Workshop - Data Structures/List/List.csproj -------------------------------------------------------------------------------- /C# Advanced/Workshop - Data Structures/List/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Workshop - Data Structures/List/Program.cs -------------------------------------------------------------------------------- /C# Advanced/Workshop - Data Structures/Queue/CustomQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Workshop - Data Structures/Queue/CustomQueue.cs -------------------------------------------------------------------------------- /C# Advanced/Workshop - Data Structures/Queue/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Workshop - Data Structures/Queue/Program.cs -------------------------------------------------------------------------------- /C# Advanced/Workshop - Data Structures/Queue/Queue.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Workshop - Data Structures/Queue/Queue.csproj -------------------------------------------------------------------------------- /C# Advanced/Workshop - Data Structures/Stack/CustomStack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Workshop - Data Structures/Stack/CustomStack.cs -------------------------------------------------------------------------------- /C# Advanced/Workshop - Data Structures/Stack/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Workshop - Data Structures/Stack/Program.cs -------------------------------------------------------------------------------- /C# Advanced/Workshop - Data Structures/Stack/Stack.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# Advanced/Workshop - Data Structures/Stack/Stack.csproj -------------------------------------------------------------------------------- /C# OOP/Design Patterns/Design Patterns.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Design Patterns/Design Patterns.sln -------------------------------------------------------------------------------- /C# OOP/Design Patterns/Exercises/Composite/Composite.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Design Patterns/Exercises/Composite/Composite.csproj -------------------------------------------------------------------------------- /C# OOP/Design Patterns/Exercises/Composite/CompositeGift.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Design Patterns/Exercises/Composite/CompositeGift.cs -------------------------------------------------------------------------------- /C# OOP/Design Patterns/Exercises/Composite/Gift.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Design Patterns/Exercises/Composite/Gift.cs -------------------------------------------------------------------------------- /C# OOP/Design Patterns/Exercises/Composite/Interfaces/IGift.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Design Patterns/Exercises/Composite/Interfaces/IGift.cs -------------------------------------------------------------------------------- /C# OOP/Design Patterns/Exercises/Composite/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Design Patterns/Exercises/Composite/Program.cs -------------------------------------------------------------------------------- /C# OOP/Design Patterns/Exercises/Prototype/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Design Patterns/Exercises/Prototype/Program.cs -------------------------------------------------------------------------------- /C# OOP/Design Patterns/Exercises/Prototype/Prototype.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Design Patterns/Exercises/Prototype/Prototype.csproj -------------------------------------------------------------------------------- /C# OOP/Design Patterns/Exercises/Prototype/Sandwich.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Design Patterns/Exercises/Prototype/Sandwich.cs -------------------------------------------------------------------------------- /C# OOP/Design Patterns/Exercises/Template/Bread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Design Patterns/Exercises/Template/Bread.cs -------------------------------------------------------------------------------- /C# OOP/Design Patterns/Exercises/Template/Interfaces/IFood.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Design Patterns/Exercises/Template/Interfaces/IFood.cs -------------------------------------------------------------------------------- /C# OOP/Design Patterns/Exercises/Template/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Design Patterns/Exercises/Template/Program.cs -------------------------------------------------------------------------------- /C# OOP/Design Patterns/Exercises/Template/Sourdough.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Design Patterns/Exercises/Template/Sourdough.cs -------------------------------------------------------------------------------- /C# OOP/Design Patterns/Exercises/Template/Template.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Design Patterns/Exercises/Template/Template.csproj -------------------------------------------------------------------------------- /C# OOP/Design Patterns/Exercises/Template/TwelveGrain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Design Patterns/Exercises/Template/TwelveGrain.cs -------------------------------------------------------------------------------- /C# OOP/Design Patterns/Exercises/Template/WholeWheat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Design Patterns/Exercises/Template/WholeWheat.cs -------------------------------------------------------------------------------- /C# OOP/Encapsulation/Encapsulation.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Encapsulation/Encapsulation.sln -------------------------------------------------------------------------------- /C# OOP/Encapsulation/Exercises/AnimalFarm/AnimalFarm.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Encapsulation/Exercises/AnimalFarm/AnimalFarm.csproj -------------------------------------------------------------------------------- /C# OOP/Encapsulation/Exercises/AnimalFarm/Models/Chicken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Encapsulation/Exercises/AnimalFarm/Models/Chicken.cs -------------------------------------------------------------------------------- /C# OOP/Encapsulation/Exercises/AnimalFarm/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Encapsulation/Exercises/AnimalFarm/Program.cs -------------------------------------------------------------------------------- /C# OOP/Encapsulation/Exercises/Box/Box.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Encapsulation/Exercises/Box/Box.cs -------------------------------------------------------------------------------- /C# OOP/Encapsulation/Exercises/Box/Box.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Encapsulation/Exercises/Box/Box.csproj -------------------------------------------------------------------------------- /C# OOP/Encapsulation/Exercises/Box/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Encapsulation/Exercises/Box/Program.cs -------------------------------------------------------------------------------- /C# OOP/Encapsulation/Exercises/FootballTeamGenerator/Player.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Encapsulation/Exercises/FootballTeamGenerator/Player.cs -------------------------------------------------------------------------------- /C# OOP/Encapsulation/Exercises/FootballTeamGenerator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Encapsulation/Exercises/FootballTeamGenerator/Program.cs -------------------------------------------------------------------------------- /C# OOP/Encapsulation/Exercises/FootballTeamGenerator/Team.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Encapsulation/Exercises/FootballTeamGenerator/Team.cs -------------------------------------------------------------------------------- /C# OOP/Encapsulation/Exercises/PizzaCalories/Dough.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Encapsulation/Exercises/PizzaCalories/Dough.cs -------------------------------------------------------------------------------- /C# OOP/Encapsulation/Exercises/PizzaCalories/Enums/FlourType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Encapsulation/Exercises/PizzaCalories/Enums/FlourType.cs -------------------------------------------------------------------------------- /C# OOP/Encapsulation/Exercises/PizzaCalories/Enums/ToppingType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Encapsulation/Exercises/PizzaCalories/Enums/ToppingType.cs -------------------------------------------------------------------------------- /C# OOP/Encapsulation/Exercises/PizzaCalories/Pizza.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Encapsulation/Exercises/PizzaCalories/Pizza.cs -------------------------------------------------------------------------------- /C# OOP/Encapsulation/Exercises/PizzaCalories/PizzaCalories.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Encapsulation/Exercises/PizzaCalories/PizzaCalories.csproj -------------------------------------------------------------------------------- /C# OOP/Encapsulation/Exercises/PizzaCalories/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Encapsulation/Exercises/PizzaCalories/Program.cs -------------------------------------------------------------------------------- /C# OOP/Encapsulation/Exercises/PizzaCalories/Topping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Encapsulation/Exercises/PizzaCalories/Topping.cs -------------------------------------------------------------------------------- /C# OOP/Encapsulation/Exercises/ShoppingSpree/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Encapsulation/Exercises/ShoppingSpree/Person.cs -------------------------------------------------------------------------------- /C# OOP/Encapsulation/Exercises/ShoppingSpree/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Encapsulation/Exercises/ShoppingSpree/Product.cs -------------------------------------------------------------------------------- /C# OOP/Encapsulation/Exercises/ShoppingSpree/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Encapsulation/Exercises/ShoppingSpree/Program.cs -------------------------------------------------------------------------------- /C# OOP/Encapsulation/Exercises/ShoppingSpree/ShoppingSpree.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Encapsulation/Exercises/ShoppingSpree/ShoppingSpree.csproj -------------------------------------------------------------------------------- /C# OOP/Exam 2024-04-16/Exam 2024-04-16.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Exam 2024-04-16/Exam 2024-04-16.sln -------------------------------------------------------------------------------- /C# OOP/Exam 2024-04-16/RecourceCloud/DepartmentCloud.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Exam 2024-04-16/RecourceCloud/DepartmentCloud.cs -------------------------------------------------------------------------------- /C# OOP/Exam 2024-04-16/RecourceCloud/RecourceCloud.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Exam 2024-04-16/RecourceCloud/RecourceCloud.csproj -------------------------------------------------------------------------------- /C# OOP/Exam 2024-04-16/RecourceCloud/Resource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Exam 2024-04-16/RecourceCloud/Resource.cs -------------------------------------------------------------------------------- /C# OOP/Exam 2024-04-16/RecourceCloud/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Exam 2024-04-16/RecourceCloud/StartUp.cs -------------------------------------------------------------------------------- /C# OOP/Exam 2024-04-16/RecourceCloud/Task.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Exam 2024-04-16/RecourceCloud/Task.cs -------------------------------------------------------------------------------- /C# OOP/Exam 2024-04-16/TheContentDepartment/Core/Controller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Exam 2024-04-16/TheContentDepartment/Core/Controller.cs -------------------------------------------------------------------------------- /C# OOP/Exam 2024-04-16/TheContentDepartment/Core/Engine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Exam 2024-04-16/TheContentDepartment/Core/Engine.cs -------------------------------------------------------------------------------- /C# OOP/Exam 2024-04-16/TheContentDepartment/IO/Reader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Exam 2024-04-16/TheContentDepartment/IO/Reader.cs -------------------------------------------------------------------------------- /C# OOP/Exam 2024-04-16/TheContentDepartment/IO/Writer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Exam 2024-04-16/TheContentDepartment/IO/Writer.cs -------------------------------------------------------------------------------- /C# OOP/Exam 2024-04-16/TheContentDepartment/Models/Exam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Exam 2024-04-16/TheContentDepartment/Models/Exam.cs -------------------------------------------------------------------------------- /C# OOP/Exam 2024-04-16/TheContentDepartment/Models/Resource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Exam 2024-04-16/TheContentDepartment/Models/Resource.cs -------------------------------------------------------------------------------- /C# OOP/Exam 2024-04-16/TheContentDepartment/Models/TeamLead.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Exam 2024-04-16/TheContentDepartment/Models/TeamLead.cs -------------------------------------------------------------------------------- /C# OOP/Exam 2024-04-16/TheContentDepartment/Models/TeamMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Exam 2024-04-16/TheContentDepartment/Models/TeamMember.cs -------------------------------------------------------------------------------- /C# OOP/Exam 2024-04-16/TheContentDepartment/Models/Workshop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Exam 2024-04-16/TheContentDepartment/Models/Workshop.cs -------------------------------------------------------------------------------- /C# OOP/Exam 2024-04-16/TheContentDepartment/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Exam 2024-04-16/TheContentDepartment/StartUp.cs -------------------------------------------------------------------------------- /C# OOP/Exam 2024-08-14/AutoTrade.Tests/AutoTrade.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Exam 2024-08-14/AutoTrade.Tests/AutoTrade.Tests.csproj -------------------------------------------------------------------------------- /C# OOP/Exam 2024-08-14/AutoTrade.Tests/DealerShopTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Exam 2024-08-14/AutoTrade.Tests/DealerShopTests.cs -------------------------------------------------------------------------------- /C# OOP/Exam 2024-08-14/AutoTrade/AutoTrade.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Exam 2024-08-14/AutoTrade/AutoTrade.csproj -------------------------------------------------------------------------------- /C# OOP/Exam 2024-08-14/AutoTrade/DealerShop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Exam 2024-08-14/AutoTrade/DealerShop.cs -------------------------------------------------------------------------------- /C# OOP/Exam 2024-08-14/AutoTrade/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Exam 2024-08-14/AutoTrade/StartUp.cs -------------------------------------------------------------------------------- /C# OOP/Exam 2024-08-14/AutoTrade/Vehicle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Exam 2024-08-14/AutoTrade/Vehicle.cs -------------------------------------------------------------------------------- /C# OOP/Exam 2024-08-14/CarDealership/CarDealership.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Exam 2024-08-14/CarDealership/CarDealership.csproj -------------------------------------------------------------------------------- /C# OOP/Exam 2024-08-14/CarDealership/Core/Contracts/IEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Exam 2024-08-14/CarDealership/Core/Contracts/IEngine.cs -------------------------------------------------------------------------------- /C# OOP/Exam 2024-08-14/CarDealership/Core/Controller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Exam 2024-08-14/CarDealership/Core/Controller.cs -------------------------------------------------------------------------------- /C# OOP/Exam 2024-08-14/CarDealership/Core/Engine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Exam 2024-08-14/CarDealership/Core/Engine.cs -------------------------------------------------------------------------------- /C# OOP/Exam 2024-08-14/CarDealership/IO/Contracts/IReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Exam 2024-08-14/CarDealership/IO/Contracts/IReader.cs -------------------------------------------------------------------------------- /C# OOP/Exam 2024-08-14/CarDealership/IO/Contracts/IWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Exam 2024-08-14/CarDealership/IO/Contracts/IWriter.cs -------------------------------------------------------------------------------- /C# OOP/Exam 2024-08-14/CarDealership/IO/Reader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Exam 2024-08-14/CarDealership/IO/Reader.cs -------------------------------------------------------------------------------- /C# OOP/Exam 2024-08-14/CarDealership/IO/Writer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Exam 2024-08-14/CarDealership/IO/Writer.cs -------------------------------------------------------------------------------- /C# OOP/Exam 2024-08-14/CarDealership/Models/Contracts/IVehicle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Exam 2024-08-14/CarDealership/Models/Contracts/IVehicle.cs -------------------------------------------------------------------------------- /C# OOP/Exam 2024-08-14/CarDealership/Models/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Exam 2024-08-14/CarDealership/Models/Customer.cs -------------------------------------------------------------------------------- /C# OOP/Exam 2024-08-14/CarDealership/Models/Dealership.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Exam 2024-08-14/CarDealership/Models/Dealership.cs -------------------------------------------------------------------------------- /C# OOP/Exam 2024-08-14/CarDealership/Models/IndividualClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Exam 2024-08-14/CarDealership/Models/IndividualClient.cs -------------------------------------------------------------------------------- /C# OOP/Exam 2024-08-14/CarDealership/Models/SUV.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Exam 2024-08-14/CarDealership/Models/SUV.cs -------------------------------------------------------------------------------- /C# OOP/Exam 2024-08-14/CarDealership/Models/SaloonCar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Exam 2024-08-14/CarDealership/Models/SaloonCar.cs -------------------------------------------------------------------------------- /C# OOP/Exam 2024-08-14/CarDealership/Models/Truck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Exam 2024-08-14/CarDealership/Models/Truck.cs -------------------------------------------------------------------------------- /C# OOP/Exam 2024-08-14/CarDealership/Models/Vehicle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Exam 2024-08-14/CarDealership/Models/Vehicle.cs -------------------------------------------------------------------------------- /C# OOP/Exam 2024-08-14/CarDealership/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Exam 2024-08-14/CarDealership/StartUp.cs -------------------------------------------------------------------------------- /C# OOP/Exam 2024-08-14/CarDealership/Utilities/Results/Actual.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Exam 2024-08-14/CarDealership/Utilities/Results/Actual.txt -------------------------------------------------------------------------------- /C# OOP/Exam 2024-08-14/Exam 2024-08-14.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Exam 2024-08-14/Exam 2024-08-14.sln -------------------------------------------------------------------------------- /C# OOP/Exam 2024-12-18/CyberSecurityDS/Core/Contracts/IEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Exam 2024-12-18/CyberSecurityDS/Core/Contracts/IEngine.cs -------------------------------------------------------------------------------- /C# OOP/Exam 2024-12-18/CyberSecurityDS/Core/Controller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Exam 2024-12-18/CyberSecurityDS/Core/Controller.cs -------------------------------------------------------------------------------- /C# OOP/Exam 2024-12-18/CyberSecurityDS/Core/Engine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Exam 2024-12-18/CyberSecurityDS/Core/Engine.cs -------------------------------------------------------------------------------- /C# OOP/Exam 2024-12-18/CyberSecurityDS/CyberSecurityDS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Exam 2024-12-18/CyberSecurityDS/CyberSecurityDS.csproj -------------------------------------------------------------------------------- /C# OOP/Exam 2024-12-18/CyberSecurityDS/IO/Contracts/IReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Exam 2024-12-18/CyberSecurityDS/IO/Contracts/IReader.cs -------------------------------------------------------------------------------- /C# OOP/Exam 2024-12-18/CyberSecurityDS/IO/Contracts/IWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Exam 2024-12-18/CyberSecurityDS/IO/Contracts/IWriter.cs -------------------------------------------------------------------------------- /C# OOP/Exam 2024-12-18/CyberSecurityDS/IO/Reader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Exam 2024-12-18/CyberSecurityDS/IO/Reader.cs -------------------------------------------------------------------------------- /C# OOP/Exam 2024-12-18/CyberSecurityDS/IO/Writer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Exam 2024-12-18/CyberSecurityDS/IO/Writer.cs -------------------------------------------------------------------------------- /C# OOP/Exam 2024-12-18/CyberSecurityDS/Models/Antivirus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Exam 2024-12-18/CyberSecurityDS/Models/Antivirus.cs -------------------------------------------------------------------------------- /C# OOP/Exam 2024-12-18/CyberSecurityDS/Models/CyberAttack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Exam 2024-12-18/CyberSecurityDS/Models/CyberAttack.cs -------------------------------------------------------------------------------- /C# OOP/Exam 2024-12-18/CyberSecurityDS/Models/Firewall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Exam 2024-12-18/CyberSecurityDS/Models/Firewall.cs -------------------------------------------------------------------------------- /C# OOP/Exam 2024-12-18/CyberSecurityDS/Models/MalwareAttack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Exam 2024-12-18/CyberSecurityDS/Models/MalwareAttack.cs -------------------------------------------------------------------------------- /C# OOP/Exam 2024-12-18/CyberSecurityDS/Models/PhishingAttack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Exam 2024-12-18/CyberSecurityDS/Models/PhishingAttack.cs -------------------------------------------------------------------------------- /C# OOP/Exam 2024-12-18/CyberSecurityDS/Models/SystemManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Exam 2024-12-18/CyberSecurityDS/Models/SystemManager.cs -------------------------------------------------------------------------------- /C# OOP/Exam 2024-12-18/CyberSecurityDS/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Exam 2024-12-18/CyberSecurityDS/StartUp.cs -------------------------------------------------------------------------------- /C# OOP/Exam 2024-12-18/CyberSecurityDS/Utilities/Results/Actual.txt: -------------------------------------------------------------------------------- 1 | Security: 2 | Threads: 3 | -Mitigated: 4 | -Pending: 5 | -------------------------------------------------------------------------------- /C# OOP/Exam 2024-12-18/Exam 2024-12-18.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Exam 2024-12-18/Exam 2024-12-18.sln -------------------------------------------------------------------------------- /C# OOP/Exam 2024-12-18/SecureOpsSystem.Tests/SecureHubTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Exam 2024-12-18/SecureOpsSystem.Tests/SecureHubTests.cs -------------------------------------------------------------------------------- /C# OOP/Exam 2024-12-18/SecureOpsSystem/SecureHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Exam 2024-12-18/SecureOpsSystem/SecureHub.cs -------------------------------------------------------------------------------- /C# OOP/Exam 2024-12-18/SecureOpsSystem/SecureOpsSystem.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Exam 2024-12-18/SecureOpsSystem/SecureOpsSystem.csproj -------------------------------------------------------------------------------- /C# OOP/Exam 2024-12-18/SecureOpsSystem/SecurityTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Exam 2024-12-18/SecureOpsSystem/SecurityTool.cs -------------------------------------------------------------------------------- /C# OOP/Exam 2024-12-18/SecureOpsSystem/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Exam 2024-12-18/SecureOpsSystem/StartUp.cs -------------------------------------------------------------------------------- /C# OOP/Inheritance/Exercises/Animals/Animal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Inheritance/Exercises/Animals/Animal.cs -------------------------------------------------------------------------------- /C# OOP/Inheritance/Exercises/Animals/Animals.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Inheritance/Exercises/Animals/Animals.csproj -------------------------------------------------------------------------------- /C# OOP/Inheritance/Exercises/Animals/Cat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Inheritance/Exercises/Animals/Cat.cs -------------------------------------------------------------------------------- /C# OOP/Inheritance/Exercises/Animals/Dog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Inheritance/Exercises/Animals/Dog.cs -------------------------------------------------------------------------------- /C# OOP/Inheritance/Exercises/Animals/Frog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Inheritance/Exercises/Animals/Frog.cs -------------------------------------------------------------------------------- /C# OOP/Inheritance/Exercises/Animals/Kitten.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Inheritance/Exercises/Animals/Kitten.cs -------------------------------------------------------------------------------- /C# OOP/Inheritance/Exercises/Animals/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Inheritance/Exercises/Animals/StartUp.cs -------------------------------------------------------------------------------- /C# OOP/Inheritance/Exercises/Animals/Tomcat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Inheritance/Exercises/Animals/Tomcat.cs -------------------------------------------------------------------------------- /C# OOP/Inheritance/Exercises/NeedForSpeed/Car.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Inheritance/Exercises/NeedForSpeed/Car.cs -------------------------------------------------------------------------------- /C# OOP/Inheritance/Exercises/NeedForSpeed/CrossMotorcycle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Inheritance/Exercises/NeedForSpeed/CrossMotorcycle.cs -------------------------------------------------------------------------------- /C# OOP/Inheritance/Exercises/NeedForSpeed/FamilyCar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Inheritance/Exercises/NeedForSpeed/FamilyCar.cs -------------------------------------------------------------------------------- /C# OOP/Inheritance/Exercises/NeedForSpeed/Motorcycle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Inheritance/Exercises/NeedForSpeed/Motorcycle.cs -------------------------------------------------------------------------------- /C# OOP/Inheritance/Exercises/NeedForSpeed/NeedForSpeed.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Inheritance/Exercises/NeedForSpeed/NeedForSpeed.csproj -------------------------------------------------------------------------------- /C# OOP/Inheritance/Exercises/NeedForSpeed/RaceMotorcycle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Inheritance/Exercises/NeedForSpeed/RaceMotorcycle.cs -------------------------------------------------------------------------------- /C# OOP/Inheritance/Exercises/NeedForSpeed/SportCar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Inheritance/Exercises/NeedForSpeed/SportCar.cs -------------------------------------------------------------------------------- /C# OOP/Inheritance/Exercises/NeedForSpeed/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Inheritance/Exercises/NeedForSpeed/StartUp.cs -------------------------------------------------------------------------------- /C# OOP/Inheritance/Exercises/NeedForSpeed/Vehicle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Inheritance/Exercises/NeedForSpeed/Vehicle.cs -------------------------------------------------------------------------------- /C# OOP/Inheritance/Exercises/Person/Child.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Inheritance/Exercises/Person/Child.cs -------------------------------------------------------------------------------- /C# OOP/Inheritance/Exercises/Person/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Inheritance/Exercises/Person/Person.cs -------------------------------------------------------------------------------- /C# OOP/Inheritance/Exercises/Person/Person.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Inheritance/Exercises/Person/Person.csproj -------------------------------------------------------------------------------- /C# OOP/Inheritance/Exercises/Person/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Inheritance/Exercises/Person/Program.cs -------------------------------------------------------------------------------- /C# OOP/Inheritance/Exercises/PlayersAndMonsters/BladeKnight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Inheritance/Exercises/PlayersAndMonsters/BladeKnight.cs -------------------------------------------------------------------------------- /C# OOP/Inheritance/Exercises/PlayersAndMonsters/DarkKnight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Inheritance/Exercises/PlayersAndMonsters/DarkKnight.cs -------------------------------------------------------------------------------- /C# OOP/Inheritance/Exercises/PlayersAndMonsters/DarkWizard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Inheritance/Exercises/PlayersAndMonsters/DarkWizard.cs -------------------------------------------------------------------------------- /C# OOP/Inheritance/Exercises/PlayersAndMonsters/Elf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Inheritance/Exercises/PlayersAndMonsters/Elf.cs -------------------------------------------------------------------------------- /C# OOP/Inheritance/Exercises/PlayersAndMonsters/Hero.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Inheritance/Exercises/PlayersAndMonsters/Hero.cs -------------------------------------------------------------------------------- /C# OOP/Inheritance/Exercises/PlayersAndMonsters/Knight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Inheritance/Exercises/PlayersAndMonsters/Knight.cs -------------------------------------------------------------------------------- /C# OOP/Inheritance/Exercises/PlayersAndMonsters/MuseElf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Inheritance/Exercises/PlayersAndMonsters/MuseElf.cs -------------------------------------------------------------------------------- /C# OOP/Inheritance/Exercises/PlayersAndMonsters/SoulMaster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Inheritance/Exercises/PlayersAndMonsters/SoulMaster.cs -------------------------------------------------------------------------------- /C# OOP/Inheritance/Exercises/PlayersAndMonsters/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Inheritance/Exercises/PlayersAndMonsters/StartUp.cs -------------------------------------------------------------------------------- /C# OOP/Inheritance/Exercises/PlayersAndMonsters/Wizard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Inheritance/Exercises/PlayersAndMonsters/Wizard.cs -------------------------------------------------------------------------------- /C# OOP/Inheritance/Exercises/Restaurant/Beverage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Inheritance/Exercises/Restaurant/Beverage.cs -------------------------------------------------------------------------------- /C# OOP/Inheritance/Exercises/Restaurant/Cake.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Inheritance/Exercises/Restaurant/Cake.cs -------------------------------------------------------------------------------- /C# OOP/Inheritance/Exercises/Restaurant/Coffee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Inheritance/Exercises/Restaurant/Coffee.cs -------------------------------------------------------------------------------- /C# OOP/Inheritance/Exercises/Restaurant/ColdBeverage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Inheritance/Exercises/Restaurant/ColdBeverage.cs -------------------------------------------------------------------------------- /C# OOP/Inheritance/Exercises/Restaurant/Dessert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Inheritance/Exercises/Restaurant/Dessert.cs -------------------------------------------------------------------------------- /C# OOP/Inheritance/Exercises/Restaurant/Fish.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Inheritance/Exercises/Restaurant/Fish.cs -------------------------------------------------------------------------------- /C# OOP/Inheritance/Exercises/Restaurant/Food.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Inheritance/Exercises/Restaurant/Food.cs -------------------------------------------------------------------------------- /C# OOP/Inheritance/Exercises/Restaurant/HotBeverage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Inheritance/Exercises/Restaurant/HotBeverage.cs -------------------------------------------------------------------------------- /C# OOP/Inheritance/Exercises/Restaurant/MainDish.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Inheritance/Exercises/Restaurant/MainDish.cs -------------------------------------------------------------------------------- /C# OOP/Inheritance/Exercises/Restaurant/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Inheritance/Exercises/Restaurant/Product.cs -------------------------------------------------------------------------------- /C# OOP/Inheritance/Exercises/Restaurant/Restaurant.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Inheritance/Exercises/Restaurant/Restaurant.csproj -------------------------------------------------------------------------------- /C# OOP/Inheritance/Exercises/Restaurant/Soup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Inheritance/Exercises/Restaurant/Soup.cs -------------------------------------------------------------------------------- /C# OOP/Inheritance/Exercises/Restaurant/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Inheritance/Exercises/Restaurant/StartUp.cs -------------------------------------------------------------------------------- /C# OOP/Inheritance/Exercises/Restaurant/Starter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Inheritance/Exercises/Restaurant/Starter.cs -------------------------------------------------------------------------------- /C# OOP/Inheritance/Exercises/Restaurant/Tea.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Inheritance/Exercises/Restaurant/Tea.cs -------------------------------------------------------------------------------- /C# OOP/Inheritance/Exercises/Zoo/Animal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Inheritance/Exercises/Zoo/Animal.cs -------------------------------------------------------------------------------- /C# OOP/Inheritance/Exercises/Zoo/Bear.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Inheritance/Exercises/Zoo/Bear.cs -------------------------------------------------------------------------------- /C# OOP/Inheritance/Exercises/Zoo/Gorilla.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Inheritance/Exercises/Zoo/Gorilla.cs -------------------------------------------------------------------------------- /C# OOP/Inheritance/Exercises/Zoo/Lizard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Inheritance/Exercises/Zoo/Lizard.cs -------------------------------------------------------------------------------- /C# OOP/Inheritance/Exercises/Zoo/Mammal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Inheritance/Exercises/Zoo/Mammal.cs -------------------------------------------------------------------------------- /C# OOP/Inheritance/Exercises/Zoo/Reptile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Inheritance/Exercises/Zoo/Reptile.cs -------------------------------------------------------------------------------- /C# OOP/Inheritance/Exercises/Zoo/Snake.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Inheritance/Exercises/Zoo/Snake.cs -------------------------------------------------------------------------------- /C# OOP/Inheritance/Exercises/Zoo/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Inheritance/Exercises/Zoo/StartUp.cs -------------------------------------------------------------------------------- /C# OOP/Inheritance/Exercises/Zoo/Zoo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Inheritance/Exercises/Zoo/Zoo.csproj -------------------------------------------------------------------------------- /C# OOP/Inheritance/Inheritance.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Inheritance/Inheritance.sln -------------------------------------------------------------------------------- /C# OOP/Inheritance/Labs/CustomRandomList/CustomRandomList.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Inheritance/Labs/CustomRandomList/CustomRandomList.csproj -------------------------------------------------------------------------------- /C# OOP/Inheritance/Labs/CustomRandomList/RandomList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Inheritance/Labs/CustomRandomList/RandomList.cs -------------------------------------------------------------------------------- /C# OOP/Inheritance/Labs/CustomRandomList/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Inheritance/Labs/CustomRandomList/StartUp.cs -------------------------------------------------------------------------------- /C# OOP/Inheritance/Labs/CustomStack/CustomStack.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Inheritance/Labs/CustomStack/CustomStack.csproj -------------------------------------------------------------------------------- /C# OOP/Inheritance/Labs/CustomStack/StackOfStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Inheritance/Labs/CustomStack/StackOfStrings.cs -------------------------------------------------------------------------------- /C# OOP/Inheritance/Labs/CustomStack/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Inheritance/Labs/CustomStack/StartUp.cs -------------------------------------------------------------------------------- /C# OOP/Inheritance/Labs/Farm/Animal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Inheritance/Labs/Farm/Animal.cs -------------------------------------------------------------------------------- /C# OOP/Inheritance/Labs/Farm/Cat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Inheritance/Labs/Farm/Cat.cs -------------------------------------------------------------------------------- /C# OOP/Inheritance/Labs/Farm/Dog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Inheritance/Labs/Farm/Dog.cs -------------------------------------------------------------------------------- /C# OOP/Inheritance/Labs/Farm/Farm.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Inheritance/Labs/Farm/Farm.csproj -------------------------------------------------------------------------------- /C# OOP/Inheritance/Labs/Farm/Puppy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Inheritance/Labs/Farm/Puppy.cs -------------------------------------------------------------------------------- /C# OOP/Inheritance/Labs/Farm/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Inheritance/Labs/Farm/StartUp.cs -------------------------------------------------------------------------------- /C# OOP/Interfaces and Abstraction/Exercises/FoodShortage/Rebel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Interfaces and Abstraction/Exercises/FoodShortage/Rebel.cs -------------------------------------------------------------------------------- /C# OOP/Interfaces and Abstraction/Exercises/PersonInfo/Citizen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Interfaces and Abstraction/Exercises/PersonInfo/Citizen.cs -------------------------------------------------------------------------------- /C# OOP/Interfaces and Abstraction/Exercises/PersonInfo/IPerson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Interfaces and Abstraction/Exercises/PersonInfo/IPerson.cs -------------------------------------------------------------------------------- /C# OOP/Interfaces and Abstraction/Exercises/PersonInfo/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Interfaces and Abstraction/Exercises/PersonInfo/StartUp.cs -------------------------------------------------------------------------------- /C# OOP/Interfaces and Abstraction/Exercises/Telephony/IBrowser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Interfaces and Abstraction/Exercises/Telephony/IBrowser.cs -------------------------------------------------------------------------------- /C# OOP/Interfaces and Abstraction/Exercises/Telephony/ICaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Interfaces and Abstraction/Exercises/Telephony/ICaller.cs -------------------------------------------------------------------------------- /C# OOP/Interfaces and Abstraction/Exercises/Telephony/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Interfaces and Abstraction/Exercises/Telephony/Program.cs -------------------------------------------------------------------------------- /C# OOP/Interfaces and Abstraction/Interfaces and Abstraction.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Interfaces and Abstraction/Interfaces and Abstraction.sln -------------------------------------------------------------------------------- /C# OOP/Polymorphism/Exercises/Raiding/Factories/DruidFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Polymorphism/Exercises/Raiding/Factories/DruidFactory.cs -------------------------------------------------------------------------------- /C# OOP/Polymorphism/Exercises/Raiding/Factories/PaladinFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Polymorphism/Exercises/Raiding/Factories/PaladinFactory.cs -------------------------------------------------------------------------------- /C# OOP/Polymorphism/Exercises/Raiding/Factories/RogueFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Polymorphism/Exercises/Raiding/Factories/RogueFactory.cs -------------------------------------------------------------------------------- /C# OOP/Polymorphism/Exercises/Raiding/Factories/WarriorFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Polymorphism/Exercises/Raiding/Factories/WarriorFactory.cs -------------------------------------------------------------------------------- /C# OOP/Polymorphism/Exercises/Raiding/Interfaces/Models/IHero.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Polymorphism/Exercises/Raiding/Interfaces/Models/IHero.cs -------------------------------------------------------------------------------- /C# OOP/Polymorphism/Exercises/Raiding/Models/BaseHealingHero.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Polymorphism/Exercises/Raiding/Models/BaseHealingHero.cs -------------------------------------------------------------------------------- /C# OOP/Polymorphism/Exercises/Raiding/Models/BaseHero.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Polymorphism/Exercises/Raiding/Models/BaseHero.cs -------------------------------------------------------------------------------- /C# OOP/Polymorphism/Exercises/Raiding/Models/BaseHittingHero.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Polymorphism/Exercises/Raiding/Models/BaseHittingHero.cs -------------------------------------------------------------------------------- /C# OOP/Polymorphism/Exercises/Raiding/Models/Druid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Polymorphism/Exercises/Raiding/Models/Druid.cs -------------------------------------------------------------------------------- /C# OOP/Polymorphism/Exercises/Raiding/Models/Paladin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Polymorphism/Exercises/Raiding/Models/Paladin.cs -------------------------------------------------------------------------------- /C# OOP/Polymorphism/Exercises/Raiding/Models/Rogue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Polymorphism/Exercises/Raiding/Models/Rogue.cs -------------------------------------------------------------------------------- /C# OOP/Polymorphism/Exercises/Raiding/Models/Warrior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Polymorphism/Exercises/Raiding/Models/Warrior.cs -------------------------------------------------------------------------------- /C# OOP/Polymorphism/Exercises/Raiding/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Polymorphism/Exercises/Raiding/Program.cs -------------------------------------------------------------------------------- /C# OOP/Polymorphism/Exercises/Raiding/Raiding.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Polymorphism/Exercises/Raiding/Raiding.csproj -------------------------------------------------------------------------------- /C# OOP/Polymorphism/Exercises/Vehicles.II/Interfaces/IVehicle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Polymorphism/Exercises/Vehicles.II/Interfaces/IVehicle.cs -------------------------------------------------------------------------------- /C# OOP/Polymorphism/Exercises/Vehicles.II/Models/BaseVehicle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Polymorphism/Exercises/Vehicles.II/Models/BaseVehicle.cs -------------------------------------------------------------------------------- /C# OOP/Polymorphism/Exercises/Vehicles.II/Models/Bus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Polymorphism/Exercises/Vehicles.II/Models/Bus.cs -------------------------------------------------------------------------------- /C# OOP/Polymorphism/Exercises/Vehicles.II/Models/Car.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Polymorphism/Exercises/Vehicles.II/Models/Car.cs -------------------------------------------------------------------------------- /C# OOP/Polymorphism/Exercises/Vehicles.II/Models/Truck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Polymorphism/Exercises/Vehicles.II/Models/Truck.cs -------------------------------------------------------------------------------- /C# OOP/Polymorphism/Exercises/Vehicles.II/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Polymorphism/Exercises/Vehicles.II/Program.cs -------------------------------------------------------------------------------- /C# OOP/Polymorphism/Exercises/Vehicles.II/Vehicles.II.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Polymorphism/Exercises/Vehicles.II/Vehicles.II.csproj -------------------------------------------------------------------------------- /C# OOP/Polymorphism/Exercises/Vehicles/Interfaces/IVehicle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Polymorphism/Exercises/Vehicles/Interfaces/IVehicle.cs -------------------------------------------------------------------------------- /C# OOP/Polymorphism/Exercises/Vehicles/Models/BaseVehicle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Polymorphism/Exercises/Vehicles/Models/BaseVehicle.cs -------------------------------------------------------------------------------- /C# OOP/Polymorphism/Exercises/Vehicles/Models/Car.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Polymorphism/Exercises/Vehicles/Models/Car.cs -------------------------------------------------------------------------------- /C# OOP/Polymorphism/Exercises/Vehicles/Models/Truck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Polymorphism/Exercises/Vehicles/Models/Truck.cs -------------------------------------------------------------------------------- /C# OOP/Polymorphism/Exercises/Vehicles/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Polymorphism/Exercises/Vehicles/Program.cs -------------------------------------------------------------------------------- /C# OOP/Polymorphism/Exercises/Vehicles/Vehicles.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Polymorphism/Exercises/Vehicles/Vehicles.csproj -------------------------------------------------------------------------------- /C# OOP/Polymorphism/Exercises/WildFarm/Animals/BaseAnimal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Polymorphism/Exercises/WildFarm/Animals/BaseAnimal.cs -------------------------------------------------------------------------------- /C# OOP/Polymorphism/Exercises/WildFarm/Animals/Birds/BaseBird.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Polymorphism/Exercises/WildFarm/Animals/Birds/BaseBird.cs -------------------------------------------------------------------------------- /C# OOP/Polymorphism/Exercises/WildFarm/Animals/Birds/Hen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Polymorphism/Exercises/WildFarm/Animals/Birds/Hen.cs -------------------------------------------------------------------------------- /C# OOP/Polymorphism/Exercises/WildFarm/Animals/Birds/Owl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Polymorphism/Exercises/WildFarm/Animals/Birds/Owl.cs -------------------------------------------------------------------------------- /C# OOP/Polymorphism/Exercises/WildFarm/Animals/Mammals/Dog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Polymorphism/Exercises/WildFarm/Animals/Mammals/Dog.cs -------------------------------------------------------------------------------- /C# OOP/Polymorphism/Exercises/WildFarm/Animals/Mammals/Mouse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Polymorphism/Exercises/WildFarm/Animals/Mammals/Mouse.cs -------------------------------------------------------------------------------- /C# OOP/Polymorphism/Exercises/WildFarm/Foods/BaseFood.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Polymorphism/Exercises/WildFarm/Foods/BaseFood.cs -------------------------------------------------------------------------------- /C# OOP/Polymorphism/Exercises/WildFarm/Foods/Fruit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Polymorphism/Exercises/WildFarm/Foods/Fruit.cs -------------------------------------------------------------------------------- /C# OOP/Polymorphism/Exercises/WildFarm/Foods/Meat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Polymorphism/Exercises/WildFarm/Foods/Meat.cs -------------------------------------------------------------------------------- /C# OOP/Polymorphism/Exercises/WildFarm/Foods/Seeds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Polymorphism/Exercises/WildFarm/Foods/Seeds.cs -------------------------------------------------------------------------------- /C# OOP/Polymorphism/Exercises/WildFarm/Foods/Vegetable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Polymorphism/Exercises/WildFarm/Foods/Vegetable.cs -------------------------------------------------------------------------------- /C# OOP/Polymorphism/Exercises/WildFarm/Interfaces/IAnimal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Polymorphism/Exercises/WildFarm/Interfaces/IAnimal.cs -------------------------------------------------------------------------------- /C# OOP/Polymorphism/Exercises/WildFarm/Interfaces/IFood.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Polymorphism/Exercises/WildFarm/Interfaces/IFood.cs -------------------------------------------------------------------------------- /C# OOP/Polymorphism/Exercises/WildFarm/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Polymorphism/Exercises/WildFarm/Program.cs -------------------------------------------------------------------------------- /C# OOP/Polymorphism/Exercises/WildFarm/WildFarm.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Polymorphism/Exercises/WildFarm/WildFarm.csproj -------------------------------------------------------------------------------- /C# OOP/Polymorphism/Polymorphism.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Polymorphism/Polymorphism.sln -------------------------------------------------------------------------------- /C# OOP/Reflection and Attributes/Labs/AuthorProblem/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Reflection and Attributes/Labs/AuthorProblem/StartUp.cs -------------------------------------------------------------------------------- /C# OOP/Reflection and Attributes/Labs/AuthorProblem/Tracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Reflection and Attributes/Labs/AuthorProblem/Tracker.cs -------------------------------------------------------------------------------- /C# OOP/Reflection and Attributes/Labs/Stealer/Hacker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Reflection and Attributes/Labs/Stealer/Hacker.cs -------------------------------------------------------------------------------- /C# OOP/Reflection and Attributes/Labs/Stealer/Spy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Reflection and Attributes/Labs/Stealer/Spy.cs -------------------------------------------------------------------------------- /C# OOP/Reflection and Attributes/Labs/Stealer/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Reflection and Attributes/Labs/Stealer/StartUp.cs -------------------------------------------------------------------------------- /C# OOP/Reflection and Attributes/Labs/Stealer/Stealer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Reflection and Attributes/Labs/Stealer/Stealer.csproj -------------------------------------------------------------------------------- /C# OOP/Reflection and Attributes/Reflection and Attributes.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Reflection and Attributes/Reflection and Attributes.sln -------------------------------------------------------------------------------- /C# OOP/SOLID/Logging/Appenders/BaseAppender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/SOLID/Logging/Appenders/BaseAppender.cs -------------------------------------------------------------------------------- /C# OOP/SOLID/Logging/Appenders/ConsoleAppender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/SOLID/Logging/Appenders/ConsoleAppender.cs -------------------------------------------------------------------------------- /C# OOP/SOLID/Logging/Appenders/FileAppender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/SOLID/Logging/Appenders/FileAppender.cs -------------------------------------------------------------------------------- /C# OOP/SOLID/Logging/Enums/ReportLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/SOLID/Logging/Enums/ReportLevel.cs -------------------------------------------------------------------------------- /C# OOP/SOLID/Logging/Factories/Appenders/FileAppenderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/SOLID/Logging/Factories/Appenders/FileAppenderFactory.cs -------------------------------------------------------------------------------- /C# OOP/SOLID/Logging/Factories/Layouts/SimpleLayoutFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/SOLID/Logging/Factories/Layouts/SimpleLayoutFactory.cs -------------------------------------------------------------------------------- /C# OOP/SOLID/Logging/Factories/Layouts/XmlLayoutFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/SOLID/Logging/Factories/Layouts/XmlLayoutFactory.cs -------------------------------------------------------------------------------- /C# OOP/SOLID/Logging/Interfaces/Factories/IAppenderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/SOLID/Logging/Interfaces/Factories/IAppenderFactory.cs -------------------------------------------------------------------------------- /C# OOP/SOLID/Logging/Interfaces/Factories/ILayoutFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/SOLID/Logging/Interfaces/Factories/ILayoutFactory.cs -------------------------------------------------------------------------------- /C# OOP/SOLID/Logging/Interfaces/IAppender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/SOLID/Logging/Interfaces/IAppender.cs -------------------------------------------------------------------------------- /C# OOP/SOLID/Logging/Interfaces/ILayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/SOLID/Logging/Interfaces/ILayout.cs -------------------------------------------------------------------------------- /C# OOP/SOLID/Logging/Interfaces/ILogMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/SOLID/Logging/Interfaces/ILogMessage.cs -------------------------------------------------------------------------------- /C# OOP/SOLID/Logging/Interfaces/ILogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/SOLID/Logging/Interfaces/ILogger.cs -------------------------------------------------------------------------------- /C# OOP/SOLID/Logging/Layouts/SimpleLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/SOLID/Logging/Layouts/SimpleLayout.cs -------------------------------------------------------------------------------- /C# OOP/SOLID/Logging/Layouts/XmlLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/SOLID/Logging/Layouts/XmlLayout.cs -------------------------------------------------------------------------------- /C# OOP/SOLID/Logging/Loggers/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/SOLID/Logging/Loggers/Logger.cs -------------------------------------------------------------------------------- /C# OOP/SOLID/Logging/Logging.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/SOLID/Logging/Logging.csproj -------------------------------------------------------------------------------- /C# OOP/SOLID/Logging/Models/LogMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/SOLID/Logging/Models/LogMessage.cs -------------------------------------------------------------------------------- /C# OOP/SOLID/Logging/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/SOLID/Logging/Program.cs -------------------------------------------------------------------------------- /C# OOP/SOLID/SOLID.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/SOLID/SOLID.sln -------------------------------------------------------------------------------- /C# OOP/Unit Testing/Exercises/CarManager.Tests/CarManagerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Unit Testing/Exercises/CarManager.Tests/CarManagerTests.cs -------------------------------------------------------------------------------- /C# OOP/Unit Testing/Exercises/CarManager/Car.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Unit Testing/Exercises/CarManager/Car.cs -------------------------------------------------------------------------------- /C# OOP/Unit Testing/Exercises/CarManager/CarManager.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Unit Testing/Exercises/CarManager/CarManager.csproj -------------------------------------------------------------------------------- /C# OOP/Unit Testing/Exercises/Database.Tests/DatabaseTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Unit Testing/Exercises/Database.Tests/DatabaseTests.cs -------------------------------------------------------------------------------- /C# OOP/Unit Testing/Exercises/Database/Database.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Unit Testing/Exercises/Database/Database.cs -------------------------------------------------------------------------------- /C# OOP/Unit Testing/Exercises/Database/Database.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Unit Testing/Exercises/Database/Database.csproj -------------------------------------------------------------------------------- /C# OOP/Unit Testing/Exercises/DatabaseExtended/Database.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Unit Testing/Exercises/DatabaseExtended/Database.cs -------------------------------------------------------------------------------- /C# OOP/Unit Testing/Exercises/DatabaseExtended/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Unit Testing/Exercises/DatabaseExtended/Person.cs -------------------------------------------------------------------------------- /C# OOP/Unit Testing/Unit Testing.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Unit Testing/Unit Testing.sln -------------------------------------------------------------------------------- /C# OOP/Workshop - DI/DI.Core/AbstractModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Workshop - DI/DI.Core/AbstractModule.cs -------------------------------------------------------------------------------- /C# OOP/Workshop - DI/DI.Core/Attributes/InjectAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Workshop - DI/DI.Core/Attributes/InjectAttribute.cs -------------------------------------------------------------------------------- /C# OOP/Workshop - DI/DI.Core/DI.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Workshop - DI/DI.Core/DI.Core.csproj -------------------------------------------------------------------------------- /C# OOP/Workshop - DI/DI.Core/Interfaces/IModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Workshop - DI/DI.Core/Interfaces/IModule.cs -------------------------------------------------------------------------------- /C# OOP/Workshop - DI/DI/ConsoleWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Workshop - DI/DI/ConsoleWriter.cs -------------------------------------------------------------------------------- /C# OOP/Workshop - DI/DI/DI.Demo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Workshop - DI/DI/DI.Demo.csproj -------------------------------------------------------------------------------- /C# OOP/Workshop - DI/DI/DefaultService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Workshop - DI/DI/DefaultService.cs -------------------------------------------------------------------------------- /C# OOP/Workshop - DI/DI/DemoModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Workshop - DI/DI/DemoModule.cs -------------------------------------------------------------------------------- /C# OOP/Workshop - DI/DI/GroupService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Workshop - DI/DI/GroupService.cs -------------------------------------------------------------------------------- /C# OOP/Workshop - DI/DI/Interfaces/IService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Workshop - DI/DI/Interfaces/IService.cs -------------------------------------------------------------------------------- /C# OOP/Workshop - DI/DI/Interfaces/IWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Workshop - DI/DI/Interfaces/IWriter.cs -------------------------------------------------------------------------------- /C# OOP/Workshop - DI/DI/Models/Group.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Workshop - DI/DI/Models/Group.cs -------------------------------------------------------------------------------- /C# OOP/Workshop - DI/DI/Models/Organization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Workshop - DI/DI/Models/Organization.cs -------------------------------------------------------------------------------- /C# OOP/Workshop - DI/DI/Models/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Workshop - DI/DI/Models/User.cs -------------------------------------------------------------------------------- /C# OOP/Workshop - DI/DI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Workshop - DI/DI/Program.cs -------------------------------------------------------------------------------- /C# OOP/Workshop - DI/DI/UserService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Workshop - DI/DI/UserService.cs -------------------------------------------------------------------------------- /C# OOP/Workshop - DI/Workshop - DI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Workshop - DI/Workshop - DI.sln -------------------------------------------------------------------------------- /C# OOP/Workshop - Snake/SimpleSnake/Core/ConsoleOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Workshop - Snake/SimpleSnake/Core/ConsoleOperator.cs -------------------------------------------------------------------------------- /C# OOP/Workshop - Snake/SimpleSnake/Core/Engine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Workshop - Snake/SimpleSnake/Core/Engine.cs -------------------------------------------------------------------------------- /C# OOP/Workshop - Snake/SimpleSnake/Enums/Direction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Workshop - Snake/SimpleSnake/Enums/Direction.cs -------------------------------------------------------------------------------- /C# OOP/Workshop - Snake/SimpleSnake/GameObjects/Food.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Workshop - Snake/SimpleSnake/GameObjects/Food.cs -------------------------------------------------------------------------------- /C# OOP/Workshop - Snake/SimpleSnake/GameObjects/Playground.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Workshop - Snake/SimpleSnake/GameObjects/Playground.cs -------------------------------------------------------------------------------- /C# OOP/Workshop - Snake/SimpleSnake/GameObjects/Point.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Workshop - Snake/SimpleSnake/GameObjects/Point.cs -------------------------------------------------------------------------------- /C# OOP/Workshop - Snake/SimpleSnake/GameObjects/Snake.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Workshop - Snake/SimpleSnake/GameObjects/Snake.cs -------------------------------------------------------------------------------- /C# OOP/Workshop - Snake/SimpleSnake/Interfaces/IEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Workshop - Snake/SimpleSnake/Interfaces/IEngine.cs -------------------------------------------------------------------------------- /C# OOP/Workshop - Snake/SimpleSnake/Interfaces/IReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Workshop - Snake/SimpleSnake/Interfaces/IReader.cs -------------------------------------------------------------------------------- /C# OOP/Workshop - Snake/SimpleSnake/Interfaces/IWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Workshop - Snake/SimpleSnake/Interfaces/IWriter.cs -------------------------------------------------------------------------------- /C# OOP/Workshop - Snake/SimpleSnake/SimpleSnake.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Workshop - Snake/SimpleSnake/SimpleSnake.csproj -------------------------------------------------------------------------------- /C# OOP/Workshop - Snake/SimpleSnake/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Workshop - Snake/SimpleSnake/StartUp.cs -------------------------------------------------------------------------------- /C# OOP/Workshop - Snake/SimpleSnake/Utilities/ConsoleWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Workshop - Snake/SimpleSnake/Utilities/ConsoleWindow.cs -------------------------------------------------------------------------------- /C# OOP/Workshop - Snake/Workshop - Snake.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C# OOP/Workshop - Snake/Workshop - Snake.sln -------------------------------------------------------------------------------- /C++ Advanced/Exam Preparation/Exam Preparation.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C++ Advanced/Exam Preparation/Exam Preparation.sln -------------------------------------------------------------------------------- /C++ Advanced/Exam Preparation/Letters/Letters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C++ Advanced/Exam Preparation/Letters/Letters.cpp -------------------------------------------------------------------------------- /C++ Advanced/Exam Preparation/Letters/Letters.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C++ Advanced/Exam Preparation/Letters/Letters.vcxproj -------------------------------------------------------------------------------- /C++ Advanced/Exam Preparation/Letters/Letters.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C++ Advanced/Exam Preparation/Letters/Letters.vcxproj.filters -------------------------------------------------------------------------------- /C++ Advanced/Exam Preparation/Rust/Rust.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C++ Advanced/Exam Preparation/Rust/Rust.cpp -------------------------------------------------------------------------------- /C++ Advanced/Exam Preparation/Rust/Rust.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C++ Advanced/Exam Preparation/Rust/Rust.vcxproj -------------------------------------------------------------------------------- /C++ Advanced/Exam Preparation/Rust/Rust.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C++ Advanced/Exam Preparation/Rust/Rust.vcxproj.filters -------------------------------------------------------------------------------- /C++ Advanced/Memory Management/Labs/MinBy/MinBy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C++ Advanced/Memory Management/Labs/MinBy/MinBy.cpp -------------------------------------------------------------------------------- /C++ Advanced/Memory Management/Labs/MinBy/MinBy.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C++ Advanced/Memory Management/Labs/MinBy/MinBy.vcxproj -------------------------------------------------------------------------------- /C++ Advanced/Memory Management/Labs/MinBy/MinBy.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C++ Advanced/Memory Management/Labs/MinBy/MinBy.vcxproj.filters -------------------------------------------------------------------------------- /C++ Advanced/Memory Management/Memory Management.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C++ Advanced/Memory Management/Memory Management.sln -------------------------------------------------------------------------------- /C++ Fundamentals/Arrays/Above Average/Above Average.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C++ Fundamentals/Arrays/Above Average/Above Average.cpp -------------------------------------------------------------------------------- /C++ Fundamentals/Arrays/Above Average/Above Average.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C++ Fundamentals/Arrays/Above Average/Above Average.vcxproj -------------------------------------------------------------------------------- /C++ Fundamentals/Arrays/Array Rotation/Array Rotation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C++ Fundamentals/Arrays/Array Rotation/Array Rotation.cpp -------------------------------------------------------------------------------- /C++ Fundamentals/Arrays/Array Rotation/Array Rotation.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C++ Fundamentals/Arrays/Array Rotation/Array Rotation.vcxproj -------------------------------------------------------------------------------- /C++ Fundamentals/Arrays/Arrays.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C++ Fundamentals/Arrays/Arrays.sln -------------------------------------------------------------------------------- /C++ Fundamentals/Arrays/Cartesian Product/Cartesian Product.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C++ Fundamentals/Arrays/Cartesian Product/Cartesian Product.cpp -------------------------------------------------------------------------------- /C++ Fundamentals/Arrays/Closest Numbers/Closest Numbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C++ Fundamentals/Arrays/Closest Numbers/Closest Numbers.cpp -------------------------------------------------------------------------------- /C++ Fundamentals/Arrays/Closest Numbers/Closest Numbers.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C++ Fundamentals/Arrays/Closest Numbers/Closest Numbers.vcxproj -------------------------------------------------------------------------------- /C++ Fundamentals/Arrays/LongestSequence/LongestSequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C++ Fundamentals/Arrays/LongestSequence/LongestSequence.cpp -------------------------------------------------------------------------------- /C++ Fundamentals/Arrays/LongestSequence/LongestSequence.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C++ Fundamentals/Arrays/LongestSequence/LongestSequence.vcxproj -------------------------------------------------------------------------------- /C++ Fundamentals/Arrays/Magic Sum/Magic Sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C++ Fundamentals/Arrays/Magic Sum/Magic Sum.cpp -------------------------------------------------------------------------------- /C++ Fundamentals/Arrays/Magic Sum/Magic Sum.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C++ Fundamentals/Arrays/Magic Sum/Magic Sum.vcxproj -------------------------------------------------------------------------------- /C++ Fundamentals/Arrays/Magic Sum/Magic Sum.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C++ Fundamentals/Arrays/Magic Sum/Magic Sum.vcxproj.filters -------------------------------------------------------------------------------- /C++ Fundamentals/Arrays/Top Integers/Top Integers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C++ Fundamentals/Arrays/Top Integers/Top Integers.cpp -------------------------------------------------------------------------------- /C++ Fundamentals/Arrays/Top Integers/Top Integers.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C++ Fundamentals/Arrays/Top Integers/Top Integers.vcxproj -------------------------------------------------------------------------------- /C++ Fundamentals/Arrays/Top Integers/Top Integers.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C++ Fundamentals/Arrays/Top Integers/Top Integers.vcxproj.filters -------------------------------------------------------------------------------- /C++ Fundamentals/Arrays/Zig-Zag Arrays/Zig-Zag Arrays.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C++ Fundamentals/Arrays/Zig-Zag Arrays/Zig-Zag Arrays.cpp -------------------------------------------------------------------------------- /C++ Fundamentals/Arrays/Zig-Zag Arrays/Zig-Zag Arrays.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C++ Fundamentals/Arrays/Zig-Zag Arrays/Zig-Zag Arrays.vcxproj -------------------------------------------------------------------------------- /C++ Fundamentals/Basic Syntax/Basic Syntax.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C++ Fundamentals/Basic Syntax/Basic Syntax.sln -------------------------------------------------------------------------------- /C++ Fundamentals/Basic Syntax/Min and Max/Min and Max.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C++ Fundamentals/Basic Syntax/Min and Max/Min and Max.cpp -------------------------------------------------------------------------------- /C++ Fundamentals/Basic Syntax/Min and Max/Min and Max.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C++ Fundamentals/Basic Syntax/Min and Max/Min and Max.vcxproj -------------------------------------------------------------------------------- /C++ Fundamentals/Basic Syntax/Numbers 1 to N/Numbers 1 to N.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C++ Fundamentals/Basic Syntax/Numbers 1 to N/Numbers 1 to N.cpp -------------------------------------------------------------------------------- /C++ Fundamentals/Basic Syntax/Print and Sum/Print and Sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C++ Fundamentals/Basic Syntax/Print and Sum/Print and Sum.cpp -------------------------------------------------------------------------------- /C++ Fundamentals/Basic Syntax/Print and Sum/Print and Sum.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C++ Fundamentals/Basic Syntax/Print and Sum/Print and Sum.vcxproj -------------------------------------------------------------------------------- /C++ Fundamentals/Basic Syntax/Product Sign/Product Sign.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C++ Fundamentals/Basic Syntax/Product Sign/Product Sign.cpp -------------------------------------------------------------------------------- /C++ Fundamentals/Basic Syntax/Product Sign/Product Sign.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C++ Fundamentals/Basic Syntax/Product Sign/Product Sign.vcxproj -------------------------------------------------------------------------------- /C++ Fundamentals/Basic Syntax/Strong Number/Strong Number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C++ Fundamentals/Basic Syntax/Strong Number/Strong Number.cpp -------------------------------------------------------------------------------- /C++ Fundamentals/Basic Syntax/Strong Number/Strong Number.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C++ Fundamentals/Basic Syntax/Strong Number/Strong Number.vcxproj -------------------------------------------------------------------------------- /C++ Fundamentals/Demo - File Streams/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C++ Fundamentals/Demo - File Streams/CMakeLists.txt -------------------------------------------------------------------------------- /C++ Fundamentals/Demo - File Streams/calculate_hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C++ Fundamentals/Demo - File Streams/calculate_hash.cpp -------------------------------------------------------------------------------- /C++ Fundamentals/Demo - File Streams/files/sample-text.txt: -------------------------------------------------------------------------------- 1 | What a beautiful day! 2 | Let's write some code. 3 | 4 | C++ is cool, right? -------------------------------------------------------------------------------- /C++ Fundamentals/Demo - File Streams/read_binary_content.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C++ Fundamentals/Demo - File Streams/read_binary_content.cpp -------------------------------------------------------------------------------- /C++ Fundamentals/Demo - File Streams/read_content.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C++ Fundamentals/Demo - File Streams/read_content.cpp -------------------------------------------------------------------------------- /C++ Fundamentals/Demo - File Streams/split_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C++ Fundamentals/Demo - File Streams/split_file.cpp -------------------------------------------------------------------------------- /C++ Fundamentals/Demo - File Streams/write_content.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C++ Fundamentals/Demo - File Streams/write_content.cpp -------------------------------------------------------------------------------- /C++ Fundamentals/Functions/Center Point/Center Point.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C++ Fundamentals/Functions/Center Point/Center Point.cpp -------------------------------------------------------------------------------- /C++ Fundamentals/Functions/Center Point/Center Point.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C++ Fundamentals/Functions/Center Point/Center Point.vcxproj -------------------------------------------------------------------------------- /C++ Fundamentals/Functions/Functions.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C++ Fundamentals/Functions/Functions.sln -------------------------------------------------------------------------------- /C++ Fundamentals/Functions/Operations/Operations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C++ Fundamentals/Functions/Operations/Operations.cpp -------------------------------------------------------------------------------- /C++ Fundamentals/Functions/Operations/Operations.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C++ Fundamentals/Functions/Operations/Operations.vcxproj -------------------------------------------------------------------------------- /C++ Fundamentals/Functions/Operations/Operations.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C++ Fundamentals/Functions/Operations/Operations.vcxproj.filters -------------------------------------------------------------------------------- /C++ Fundamentals/Functions/Orders/Orders.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C++ Fundamentals/Functions/Orders/Orders.cpp -------------------------------------------------------------------------------- /C++ Fundamentals/Functions/Orders/Orders.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C++ Fundamentals/Functions/Orders/Orders.vcxproj -------------------------------------------------------------------------------- /C++ Fundamentals/Functions/Orders/Orders.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C++ Fundamentals/Functions/Orders/Orders.vcxproj.filters -------------------------------------------------------------------------------- /C++ Fundamentals/Functions/Vowels Count/Vowels Count.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C++ Fundamentals/Functions/Vowels Count/Vowels Count.cpp -------------------------------------------------------------------------------- /C++ Fundamentals/Functions/Vowels Count/Vowels Count.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C++ Fundamentals/Functions/Vowels Count/Vowels Count.vcxproj -------------------------------------------------------------------------------- /C++ Fundamentals/Strings and Streams/Replace All/Replace All.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C++ Fundamentals/Strings and Streams/Replace All/Replace All.cpp -------------------------------------------------------------------------------- /C++ Fundamentals/Strings and Streams/Strings and Streams.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C++ Fundamentals/Strings and Streams/Strings and Streams.sln -------------------------------------------------------------------------------- /C++ Fundamentals/Strings and Streams/Title Case/Title Case.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C++ Fundamentals/Strings and Streams/Title Case/Title Case.cpp -------------------------------------------------------------------------------- /C++ Fundamentals/Vectors, Lists and Iterators/Bus/Bus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C++ Fundamentals/Vectors, Lists and Iterators/Bus/Bus.cpp -------------------------------------------------------------------------------- /C++ Fundamentals/Vectors, Lists and Iterators/Bus/Bus.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C++ Fundamentals/Vectors, Lists and Iterators/Bus/Bus.vcxproj -------------------------------------------------------------------------------- /C++ Fundamentals/Vectors, Lists and Iterators/Pipes/Pipes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C++ Fundamentals/Vectors, Lists and Iterators/Pipes/Pipes.cpp -------------------------------------------------------------------------------- /C++ Fundamentals/Vectors, Lists and Iterators/Pipes/Pipes.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/C++ Fundamentals/Vectors, Lists and Iterators/Pipes/Pipes.vcxproj -------------------------------------------------------------------------------- /Entity Framework Core/ORM Fundamentals/MiniORM.App/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Entity Framework Core/ORM Fundamentals/MiniORM.App/Program.cs -------------------------------------------------------------------------------- /Entity Framework Core/ORM Fundamentals/MiniORM/ChangeTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Entity Framework Core/ORM Fundamentals/MiniORM/ChangeTracker.cs -------------------------------------------------------------------------------- /Entity Framework Core/ORM Fundamentals/MiniORM/DbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Entity Framework Core/ORM Fundamentals/MiniORM/DbContext.cs -------------------------------------------------------------------------------- /Entity Framework Core/ORM Fundamentals/MiniORM/DbSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Entity Framework Core/ORM Fundamentals/MiniORM/DbSet.cs -------------------------------------------------------------------------------- /Entity Framework Core/ORM Fundamentals/MiniORM/MiniORM.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Entity Framework Core/ORM Fundamentals/MiniORM/MiniORM.csproj -------------------------------------------------------------------------------- /Entity Framework Core/ORM Fundamentals/ORM Fundamentals.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Entity Framework Core/ORM Fundamentals/ORM Fundamentals.sln -------------------------------------------------------------------------------- /JS Front-End/Functions and Statements/Exercises/loading-bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/JS Front-End/Functions and Statements/Exercises/loading-bar.js -------------------------------------------------------------------------------- /JS Front-End/Functions and Statements/Exercises/nxn-matrix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/JS Front-End/Functions and Statements/Exercises/nxn-matrix.js -------------------------------------------------------------------------------- /JS Front-End/Functions and Statements/Exercises/perfect-number.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/JS Front-End/Functions and Statements/Exercises/perfect-number.js -------------------------------------------------------------------------------- /JS Front-End/Functions and Statements/More Exercises/car-wash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/JS Front-End/Functions and Statements/More Exercises/car-wash.js -------------------------------------------------------------------------------- /JS Front-End/Functions and Statements/More Exercises/print-dna.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/JS Front-End/Functions and Statements/More Exercises/print-dna.js -------------------------------------------------------------------------------- /JS Front-End/HTTP and AJAX/Exercises/01. Blog/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/JS Front-End/HTTP and AJAX/Exercises/01. Blog/app.js -------------------------------------------------------------------------------- /JS Front-End/HTTP and AJAX/Exercises/01. Blog/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/JS Front-End/HTTP and AJAX/Exercises/01. Blog/index.html -------------------------------------------------------------------------------- /JS Front-End/HTTP and AJAX/Exercises/01. Blog/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/JS Front-End/HTTP and AJAX/Exercises/01. Blog/styles.css -------------------------------------------------------------------------------- /JS Front-End/HTTP and AJAX/Exercises/02. Messenger/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/JS Front-End/HTTP and AJAX/Exercises/02. Messenger/app.js -------------------------------------------------------------------------------- /JS Front-End/HTTP and AJAX/Exercises/02. Messenger/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/JS Front-End/HTTP and AJAX/Exercises/02. Messenger/index.html -------------------------------------------------------------------------------- /JS Front-End/HTTP and AJAX/Exercises/02. Messenger/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/JS Front-End/HTTP and AJAX/Exercises/02. Messenger/styles.css -------------------------------------------------------------------------------- /JS Front-End/HTTP and AJAX/Exercises/03. Phonebook/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/JS Front-End/HTTP and AJAX/Exercises/03. Phonebook/app.js -------------------------------------------------------------------------------- /JS Front-End/HTTP and AJAX/Exercises/03. Phonebook/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/JS Front-End/HTTP and AJAX/Exercises/03. Phonebook/index.html -------------------------------------------------------------------------------- /JS Front-End/HTTP and AJAX/Exercises/03. Phonebook/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/JS Front-End/HTTP and AJAX/Exercises/03. Phonebook/styles.css -------------------------------------------------------------------------------- /JS Front-End/HTTP and AJAX/Exercises/04. Students/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/JS Front-End/HTTP and AJAX/Exercises/04. Students/app.js -------------------------------------------------------------------------------- /JS Front-End/HTTP and AJAX/Exercises/04. Students/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/JS Front-End/HTTP and AJAX/Exercises/04. Students/index.html -------------------------------------------------------------------------------- /JS Front-End/HTTP and AJAX/Exercises/04. Students/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/JS Front-End/HTTP and AJAX/Exercises/04. Students/styles.css -------------------------------------------------------------------------------- /JS Front-End/HTTP and AJAX/Exercises/05. Locked Profile/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/JS Front-End/HTTP and AJAX/Exercises/05. Locked Profile/app.js -------------------------------------------------------------------------------- /JS Front-End/HTTP and AJAX/Exercises/06. Accordion/accordion.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/JS Front-End/HTTP and AJAX/Exercises/06. Accordion/accordion.css -------------------------------------------------------------------------------- /JS Front-End/HTTP and AJAX/Exercises/06. Accordion/accordion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/JS Front-End/HTTP and AJAX/Exercises/06. Accordion/accordion.js -------------------------------------------------------------------------------- /JS Front-End/HTTP and AJAX/Exercises/06. Accordion/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/JS Front-End/HTTP and AJAX/Exercises/06. Accordion/index.html -------------------------------------------------------------------------------- /JS Front-End/JS Arrays and Strings/Exercises/array-rotation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/JS Front-End/JS Arrays and Strings/Exercises/array-rotation.js -------------------------------------------------------------------------------- /JS Front-End/JS Arrays and Strings/Exercises/list-of-names.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/JS Front-End/JS Arrays and Strings/Exercises/list-of-names.js -------------------------------------------------------------------------------- /JS Front-End/JS Arrays and Strings/Exercises/modern-times-of-#.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/JS Front-End/JS Arrays and Strings/Exercises/modern-times-of-#.js -------------------------------------------------------------------------------- /JS Front-End/JS Arrays and Strings/Exercises/reveal-words.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/JS Front-End/JS Arrays and Strings/Exercises/reveal-words.js -------------------------------------------------------------------------------- /JS Front-End/JS Arrays and Strings/Exercises/sorting-numbers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/JS Front-End/JS Arrays and Strings/Exercises/sorting-numbers.js -------------------------------------------------------------------------------- /JS Front-End/JS Arrays and Strings/Exercises/string-substring.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/JS Front-End/JS Arrays and Strings/Exercises/string-substring.js -------------------------------------------------------------------------------- /JS Front-End/JS Arrays and Strings/More Exercises/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/JS Front-End/JS Arrays and Strings/More Exercises/login.js -------------------------------------------------------------------------------- /JS Front-End/JS Syntax Fundamentals/Exercises/ages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/JS Front-End/JS Syntax Fundamentals/Exercises/ages.js -------------------------------------------------------------------------------- /JS Front-End/JS Syntax Fundamentals/Exercises/chars-to-string.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/JS Front-End/JS Syntax Fundamentals/Exercises/chars-to-string.js -------------------------------------------------------------------------------- /JS Front-End/JS Syntax Fundamentals/Exercises/fruit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/JS Front-End/JS Syntax Fundamentals/Exercises/fruit.js -------------------------------------------------------------------------------- /JS Front-End/JS Syntax Fundamentals/Exercises/leap-year.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/JS Front-End/JS Syntax Fundamentals/Exercises/leap-year.js -------------------------------------------------------------------------------- /JS Front-End/JS Syntax Fundamentals/Exercises/print-and-sum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/JS Front-End/JS Syntax Fundamentals/Exercises/print-and-sum.js -------------------------------------------------------------------------------- /JS Front-End/JS Syntax Fundamentals/Exercises/reversed-chars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/JS Front-End/JS Syntax Fundamentals/Exercises/reversed-chars.js -------------------------------------------------------------------------------- /JS Front-End/JS Syntax Fundamentals/Exercises/road-radar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/JS Front-End/JS Syntax Fundamentals/Exercises/road-radar.js -------------------------------------------------------------------------------- /JS Front-End/JS Syntax Fundamentals/Exercises/same-numbers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/JS Front-End/JS Syntax Fundamentals/Exercises/same-numbers.js -------------------------------------------------------------------------------- /JS Front-End/JS Syntax Fundamentals/Exercises/sum-digits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/JS Front-End/JS Syntax Fundamentals/Exercises/sum-digits.js -------------------------------------------------------------------------------- /JS Front-End/JS Syntax Fundamentals/Exercises/vacation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/JS Front-End/JS Syntax Fundamentals/Exercises/vacation.js -------------------------------------------------------------------------------- /JS Front-End/JS Syntax Fundamentals/More Exercises/calculator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/JS Front-End/JS Syntax Fundamentals/More Exercises/calculator.js -------------------------------------------------------------------------------- /JS Front-End/Objects and Classes/Exercises/employees.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/JS Front-End/Objects and Classes/Exercises/employees.js -------------------------------------------------------------------------------- /JS Front-End/Objects and Classes/Exercises/inventory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/JS Front-End/Objects and Classes/Exercises/inventory.js -------------------------------------------------------------------------------- /JS Front-End/Objects and Classes/Exercises/make-a-dictionary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/JS Front-End/Objects and Classes/Exercises/make-a-dictionary.js -------------------------------------------------------------------------------- /JS Front-End/Objects and Classes/Exercises/movies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/JS Front-End/Objects and Classes/Exercises/movies.js -------------------------------------------------------------------------------- /JS Front-End/Objects and Classes/Exercises/odd-occurrences.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/JS Front-End/Objects and Classes/Exercises/odd-occurrences.js -------------------------------------------------------------------------------- /JS Front-End/Objects and Classes/Exercises/piccolo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/JS Front-End/Objects and Classes/Exercises/piccolo.js -------------------------------------------------------------------------------- /JS Front-End/Objects and Classes/Exercises/store-provision.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/JS Front-End/Objects and Classes/Exercises/store-provision.js -------------------------------------------------------------------------------- /JS Front-End/Objects and Classes/Exercises/towns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/JS Front-End/Objects and Classes/Exercises/towns.js -------------------------------------------------------------------------------- /JS Front-End/Objects and Classes/Exercises/vehicle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/JS Front-End/Objects and Classes/Exercises/vehicle.js -------------------------------------------------------------------------------- /JS Front-End/Objects and Classes/Exercises/words-tracker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/JS Front-End/Objects and Classes/Exercises/words-tracker.js -------------------------------------------------------------------------------- /JS Front-End/Objects and Classes/More Exercises/armies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/JS Front-End/Objects and Classes/More Exercises/armies.js -------------------------------------------------------------------------------- /JS Front-End/Objects and Classes/More Exercises/book-shelf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/JS Front-End/Objects and Classes/More Exercises/book-shelf.js -------------------------------------------------------------------------------- /JS Front-End/Objects and Classes/More Exercises/catalogue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/JS Front-End/Objects and Classes/More Exercises/catalogue.js -------------------------------------------------------------------------------- /JS Front-End/Objects and Classes/More Exercises/comments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/JS Front-End/Objects and Classes/More Exercises/comments.js -------------------------------------------------------------------------------- /JS Front-End/Objects and Classes/More Exercises/garage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/JS Front-End/Objects and Classes/More Exercises/garage.js -------------------------------------------------------------------------------- /JS Front-End/Objects and Classes/More Exercises/laptop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/JS Front-End/Objects and Classes/More Exercises/laptop.js -------------------------------------------------------------------------------- /JS Front-End/Objects and Classes/More Exercises/sequences.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/JS Front-End/Objects and Classes/More Exercises/sequences.js -------------------------------------------------------------------------------- /JS Front-End/Objects and Classes/More Exercises/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/JS Front-End/Objects and Classes/More Exercises/storage.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/LICENSE -------------------------------------------------------------------------------- /Programming Basics/C#/Exam Preparation/AgencyProfit/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C#/Exam Preparation/AgencyProfit/Program.cs -------------------------------------------------------------------------------- /Programming Basics/C#/Exam Preparation/CatWalking/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C#/Exam Preparation/CatWalking/Program.cs -------------------------------------------------------------------------------- /Programming Basics/C#/Exam Preparation/CoffeeMachine/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C#/Exam Preparation/CoffeeMachine/Program.cs -------------------------------------------------------------------------------- /Programming Basics/C#/Exam Preparation/Exam Preparation.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C#/Exam Preparation/Exam Preparation.sln -------------------------------------------------------------------------------- /Programming Basics/C#/Exam Preparation/MovieStars/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C#/Exam Preparation/MovieStars/Program.cs -------------------------------------------------------------------------------- /Programming Basics/C#/Exam Preparation/TrekkingMania/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C#/Exam Preparation/TrekkingMania/Program.cs -------------------------------------------------------------------------------- /Programming Basics/C#/For loops/Exercises/CleverLily/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C#/For loops/Exercises/CleverLily/Program.cs -------------------------------------------------------------------------------- /Programming Basics/C#/For loops/Exercises/Histogram/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C#/For loops/Exercises/Histogram/Program.cs -------------------------------------------------------------------------------- /Programming Basics/C#/For loops/Exercises/Oscars/Oscars.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C#/For loops/Exercises/Oscars/Oscars.csproj -------------------------------------------------------------------------------- /Programming Basics/C#/For loops/Exercises/Oscars/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C#/For loops/Exercises/Oscars/Program.cs -------------------------------------------------------------------------------- /Programming Basics/C#/For loops/Exercises/Salary/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C#/For loops/Exercises/Salary/Program.cs -------------------------------------------------------------------------------- /Programming Basics/C#/For loops/Exercises/Salary/Salary.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C#/For loops/Exercises/Salary/Salary.csproj -------------------------------------------------------------------------------- /Programming Basics/C#/For loops/For loops.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C#/For loops/For loops.sln -------------------------------------------------------------------------------- /Programming Basics/C#/For loops/Labs/CharacterSequence/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C#/For loops/Labs/CharacterSequence/Program.cs -------------------------------------------------------------------------------- /Programming Basics/C#/For loops/Labs/EvenPowersOf2/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C#/For loops/Labs/EvenPowersOf2/Program.cs -------------------------------------------------------------------------------- /Programming Basics/C#/For loops/Labs/LeftRightSum/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C#/For loops/Labs/LeftRightSum/Program.cs -------------------------------------------------------------------------------- /Programming Basics/C#/For loops/Labs/NumberSequence/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C#/For loops/Labs/NumberSequence/Program.cs -------------------------------------------------------------------------------- /Programming Basics/C#/For loops/Labs/NumbersFrom1To100/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C#/For loops/Labs/NumbersFrom1To100/Program.cs -------------------------------------------------------------------------------- /Programming Basics/C#/For loops/Labs/NumbersFromNTo1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C#/For loops/Labs/NumbersFromNTo1/Program.cs -------------------------------------------------------------------------------- /Programming Basics/C#/For loops/Labs/OddEvenSum/OddEvenSum.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C#/For loops/Labs/OddEvenSum/OddEvenSum.csproj -------------------------------------------------------------------------------- /Programming Basics/C#/For loops/Labs/OddEvenSum/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C#/For loops/Labs/OddEvenSum/Program.cs -------------------------------------------------------------------------------- /Programming Basics/C#/For loops/Labs/SumNumbers/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C#/For loops/Labs/SumNumbers/Program.cs -------------------------------------------------------------------------------- /Programming Basics/C#/For loops/Labs/SumNumbers/SumNumbers.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C#/For loops/Labs/SumNumbers/SumNumbers.csproj -------------------------------------------------------------------------------- /Programming Basics/C#/For loops/Labs/VowelsSum/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C#/For loops/Labs/VowelsSum/Program.cs -------------------------------------------------------------------------------- /Programming Basics/C#/For loops/Labs/VowelsSum/VowelsSum.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C#/For loops/Labs/VowelsSum/VowelsSum.csproj -------------------------------------------------------------------------------- /Programming Basics/C#/Introduction/Exercises/FishTank/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C#/Introduction/Exercises/FishTank/Program.cs -------------------------------------------------------------------------------- /Programming Basics/C#/Introduction/Exercises/UsdToBgn/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C#/Introduction/Exercises/UsdToBgn/Program.cs -------------------------------------------------------------------------------- /Programming Basics/C#/Introduction/Introduction.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C#/Introduction/Introduction.sln -------------------------------------------------------------------------------- /Programming Basics/C#/Introduction/Labs/GreetingByName/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C#/Introduction/Labs/GreetingByName/Program.cs -------------------------------------------------------------------------------- /Programming Basics/C#/Introduction/Labs/HelloSoftUni/Program.cs: -------------------------------------------------------------------------------- 1 | Console.WriteLine("Hello SoftUni"); -------------------------------------------------------------------------------- /Programming Basics/C#/Introduction/Labs/NumsFrom1To10/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C#/Introduction/Labs/NumsFrom1To10/Program.cs -------------------------------------------------------------------------------- /Programming Basics/C#/Introduction/Labs/PetShop/PetShop.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C#/Introduction/Labs/PetShop/PetShop.csproj -------------------------------------------------------------------------------- /Programming Basics/C#/Introduction/Labs/PetShop/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C#/Introduction/Labs/PetShop/Program.cs -------------------------------------------------------------------------------- /Programming Basics/C#/Introduction/Labs/RectangleArea/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C#/Introduction/Labs/RectangleArea/Program.cs -------------------------------------------------------------------------------- /Programming Basics/C#/Introduction/Labs/YardGreening/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C#/Introduction/Labs/YardGreening/Program.cs -------------------------------------------------------------------------------- /Programming Basics/C#/Nested loops/Labs/Building/Building.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C#/Nested loops/Labs/Building/Building.csproj -------------------------------------------------------------------------------- /Programming Basics/C#/Nested loops/Labs/Building/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C#/Nested loops/Labs/Building/Program.cs -------------------------------------------------------------------------------- /Programming Basics/C#/Nested loops/Labs/Clock/Clock.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C#/Nested loops/Labs/Clock/Clock.csproj -------------------------------------------------------------------------------- /Programming Basics/C#/Nested loops/Labs/Clock/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C#/Nested loops/Labs/Clock/Program.cs -------------------------------------------------------------------------------- /Programming Basics/C#/Nested loops/Labs/Combinations/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C#/Nested loops/Labs/Combinations/Program.cs -------------------------------------------------------------------------------- /Programming Basics/C#/Nested loops/Labs/Travelling/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C#/Nested loops/Labs/Travelling/Program.cs -------------------------------------------------------------------------------- /Programming Basics/C#/Nested loops/Nested loops.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C#/Nested loops/Nested loops.sln -------------------------------------------------------------------------------- /Programming Basics/C#/While loops/Exercises/Cake/Cake.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C#/While loops/Exercises/Cake/Cake.csproj -------------------------------------------------------------------------------- /Programming Basics/C#/While loops/Exercises/Cake/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C#/While loops/Exercises/Cake/Program.cs -------------------------------------------------------------------------------- /Programming Basics/C#/While loops/Exercises/Coins/Coins.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C#/While loops/Exercises/Coins/Coins.csproj -------------------------------------------------------------------------------- /Programming Basics/C#/While loops/Exercises/Coins/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C#/While loops/Exercises/Coins/Program.cs -------------------------------------------------------------------------------- /Programming Basics/C#/While loops/Exercises/Moving/Moving.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C#/While loops/Exercises/Moving/Moving.csproj -------------------------------------------------------------------------------- /Programming Basics/C#/While loops/Exercises/Moving/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C#/While loops/Exercises/Moving/Program.cs -------------------------------------------------------------------------------- /Programming Basics/C#/While loops/Exercises/OldBooks/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C#/While loops/Exercises/OldBooks/Program.cs -------------------------------------------------------------------------------- /Programming Basics/C#/While loops/Exercises/Vacation/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C#/While loops/Exercises/Vacation/Program.cs -------------------------------------------------------------------------------- /Programming Basics/C#/While loops/Exercises/Walking/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C#/While loops/Exercises/Walking/Program.cs -------------------------------------------------------------------------------- /Programming Basics/C#/While loops/Labs/AccountBalance/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C#/While loops/Labs/AccountBalance/Program.cs -------------------------------------------------------------------------------- /Programming Basics/C#/While loops/Labs/Graduation/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C#/While loops/Labs/Graduation/Program.cs -------------------------------------------------------------------------------- /Programming Basics/C#/While loops/Labs/MaxNumber/MaxNumber.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C#/While loops/Labs/MaxNumber/MaxNumber.csproj -------------------------------------------------------------------------------- /Programming Basics/C#/While loops/Labs/MaxNumber/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C#/While loops/Labs/MaxNumber/Program.cs -------------------------------------------------------------------------------- /Programming Basics/C#/While loops/Labs/MinNumber/MinNumber.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C#/While loops/Labs/MinNumber/MinNumber.csproj -------------------------------------------------------------------------------- /Programming Basics/C#/While loops/Labs/MinNumber/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C#/While loops/Labs/MinNumber/Program.cs -------------------------------------------------------------------------------- /Programming Basics/C#/While loops/Labs/Password/Password.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C#/While loops/Labs/Password/Password.csproj -------------------------------------------------------------------------------- /Programming Basics/C#/While loops/Labs/Password/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C#/While loops/Labs/Password/Program.cs -------------------------------------------------------------------------------- /Programming Basics/C#/While loops/Labs/ReadText/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C#/While loops/Labs/ReadText/Program.cs -------------------------------------------------------------------------------- /Programming Basics/C#/While loops/Labs/ReadText/ReadText.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C#/While loops/Labs/ReadText/ReadText.csproj -------------------------------------------------------------------------------- /Programming Basics/C#/While loops/Labs/Sequence/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C#/While loops/Labs/Sequence/Program.cs -------------------------------------------------------------------------------- /Programming Basics/C#/While loops/Labs/Sequence/Sequence.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C#/While loops/Labs/Sequence/Sequence.csproj -------------------------------------------------------------------------------- /Programming Basics/C#/While loops/Labs/SumNumbers/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C#/While loops/Labs/SumNumbers/Program.cs -------------------------------------------------------------------------------- /Programming Basics/C#/While loops/While loops.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C#/While loops/While loops.sln -------------------------------------------------------------------------------- /Programming Basics/C++/Exam preparation/Club/Club.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C++/Exam preparation/Club/Club.cpp -------------------------------------------------------------------------------- /Programming Basics/C++/Exam preparation/Club/Club.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C++/Exam preparation/Club/Club.vcxproj -------------------------------------------------------------------------------- /Programming Basics/C++/Exam preparation/Club/Club.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C++/Exam preparation/Club/Club.vcxproj.filters -------------------------------------------------------------------------------- /Programming Basics/C++/Exam preparation/Exam preparation.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C++/Exam preparation/Exam preparation.sln -------------------------------------------------------------------------------- /Programming Basics/C++/Exam preparation/Pool/Pool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C++/Exam preparation/Pool/Pool.cpp -------------------------------------------------------------------------------- /Programming Basics/C++/Exam preparation/Pool/Pool.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C++/Exam preparation/Pool/Pool.vcxproj -------------------------------------------------------------------------------- /Programming Basics/C++/Exam preparation/Pool/Pool.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C++/Exam preparation/Pool/Pool.vcxproj.filters -------------------------------------------------------------------------------- /Programming Basics/C++/Exam preparation/Safari/Safari.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C++/Exam preparation/Safari/Safari.cpp -------------------------------------------------------------------------------- /Programming Basics/C++/Exam preparation/Safari/Safari.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C++/Exam preparation/Safari/Safari.vcxproj -------------------------------------------------------------------------------- /Programming Basics/C++/For loops/Exercises/Oscars/Oscars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C++/For loops/Exercises/Oscars/Oscars.cpp -------------------------------------------------------------------------------- /Programming Basics/C++/For loops/Exercises/Oscars/Oscars.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C++/For loops/Exercises/Oscars/Oscars.vcxproj -------------------------------------------------------------------------------- /Programming Basics/C++/For loops/Exercises/Salary/Salary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C++/For loops/Exercises/Salary/Salary.cpp -------------------------------------------------------------------------------- /Programming Basics/C++/For loops/Exercises/Salary/Salary.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C++/For loops/Exercises/Salary/Salary.vcxproj -------------------------------------------------------------------------------- /Programming Basics/C++/For loops/For loops.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C++/For loops/For loops.sln -------------------------------------------------------------------------------- /Programming Basics/C++/For loops/Labs/OddEvenSum/OddEvenSum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C++/For loops/Labs/OddEvenSum/OddEvenSum.cpp -------------------------------------------------------------------------------- /Programming Basics/C++/For loops/Labs/VowelsSum/VowelsSum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C++/For loops/Labs/VowelsSum/VowelsSum.cpp -------------------------------------------------------------------------------- /Programming Basics/C++/Introduction/Introduction.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C++/Introduction/Introduction.sln -------------------------------------------------------------------------------- /Programming Basics/C++/Introduction/Labs/PetShop/PetShop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C++/Introduction/Labs/PetShop/PetShop.cpp -------------------------------------------------------------------------------- /Programming Basics/C++/Nested loops/Labs/Building/Building.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C++/Nested loops/Labs/Building/Building.cpp -------------------------------------------------------------------------------- /Programming Basics/C++/Nested loops/Labs/Clock/Clock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C++/Nested loops/Labs/Clock/Clock.cpp -------------------------------------------------------------------------------- /Programming Basics/C++/Nested loops/Labs/Clock/Clock.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C++/Nested loops/Labs/Clock/Clock.vcxproj -------------------------------------------------------------------------------- /Programming Basics/C++/Nested loops/Nested loops.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C++/Nested loops/Nested loops.sln -------------------------------------------------------------------------------- /Programming Basics/C++/While loops/Exercises/Cake/Cake.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C++/While loops/Exercises/Cake/Cake.cpp -------------------------------------------------------------------------------- /Programming Basics/C++/While loops/Exercises/Cake/Cake.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C++/While loops/Exercises/Cake/Cake.vcxproj -------------------------------------------------------------------------------- /Programming Basics/C++/While loops/Exercises/Coins/Coins.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C++/While loops/Exercises/Coins/Coins.cpp -------------------------------------------------------------------------------- /Programming Basics/C++/While loops/Exercises/Moving/Moving.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C++/While loops/Exercises/Moving/Moving.cpp -------------------------------------------------------------------------------- /Programming Basics/C++/While loops/Labs/Password/Password.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C++/While loops/Labs/Password/Password.cpp -------------------------------------------------------------------------------- /Programming Basics/C++/While loops/Labs/ReadText/ReadText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C++/While loops/Labs/ReadText/ReadText.cpp -------------------------------------------------------------------------------- /Programming Basics/C++/While loops/Labs/Sequence/Sequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C++/While loops/Labs/Sequence/Sequence.cpp -------------------------------------------------------------------------------- /Programming Basics/C++/While loops/While loops.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/C++/While loops/While loops.sln -------------------------------------------------------------------------------- /Programming Basics/JavaScript/For loops/Exercises/histogram.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/JavaScript/For loops/Exercises/histogram.js -------------------------------------------------------------------------------- /Programming Basics/JavaScript/For loops/Exercises/oscars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/JavaScript/For loops/Exercises/oscars.js -------------------------------------------------------------------------------- /Programming Basics/JavaScript/For loops/Exercises/salary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/JavaScript/For loops/Exercises/salary.js -------------------------------------------------------------------------------- /Programming Basics/JavaScript/For loops/Labs/sum-of-numbers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/JavaScript/For loops/Labs/sum-of-numbers.js -------------------------------------------------------------------------------- /Programming Basics/JavaScript/For loops/Labs/vowels-sum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/JavaScript/For loops/Labs/vowels-sum.js -------------------------------------------------------------------------------- /Programming Basics/JavaScript/Introduction/Labs/pet-shop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/JavaScript/Introduction/Labs/pet-shop.js -------------------------------------------------------------------------------- /Programming Basics/JavaScript/Introduction/Labs/square-area.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/JavaScript/Introduction/Labs/square-area.js -------------------------------------------------------------------------------- /Programming Basics/JavaScript/Nested loops/Lab/building.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/JavaScript/Nested loops/Lab/building.js -------------------------------------------------------------------------------- /Programming Basics/JavaScript/Nested loops/Lab/clock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/JavaScript/Nested loops/Lab/clock.js -------------------------------------------------------------------------------- /Programming Basics/JavaScript/Nested loops/Lab/combinations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/JavaScript/Nested loops/Lab/combinations.js -------------------------------------------------------------------------------- /Programming Basics/JavaScript/Nested loops/Lab/travelling.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/JavaScript/Nested loops/Lab/travelling.js -------------------------------------------------------------------------------- /Programming Basics/JavaScript/While loops/Exercises/cake.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/JavaScript/While loops/Exercises/cake.js -------------------------------------------------------------------------------- /Programming Basics/JavaScript/While loops/Exercises/coins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/JavaScript/While loops/Exercises/coins.js -------------------------------------------------------------------------------- /Programming Basics/JavaScript/While loops/Exercises/moving.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/JavaScript/While loops/Exercises/moving.js -------------------------------------------------------------------------------- /Programming Basics/JavaScript/While loops/Exercises/walking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/JavaScript/While loops/Exercises/walking.js -------------------------------------------------------------------------------- /Programming Basics/JavaScript/While loops/Labs/graduation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/JavaScript/While loops/Labs/graduation.js -------------------------------------------------------------------------------- /Programming Basics/JavaScript/While loops/Labs/max-number.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/JavaScript/While loops/Labs/max-number.js -------------------------------------------------------------------------------- /Programming Basics/JavaScript/While loops/Labs/min-number.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/JavaScript/While loops/Labs/min-number.js -------------------------------------------------------------------------------- /Programming Basics/JavaScript/While loops/Labs/password.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/JavaScript/While loops/Labs/password.js -------------------------------------------------------------------------------- /Programming Basics/JavaScript/While loops/Labs/read-text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/JavaScript/While loops/Labs/read-text.js -------------------------------------------------------------------------------- /Programming Basics/JavaScript/While loops/Labs/sequence.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/JavaScript/While loops/Labs/sequence.js -------------------------------------------------------------------------------- /Programming Basics/JavaScript/While loops/Labs/sum-numbers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Programming Basics/JavaScript/While loops/Labs/sum-numbers.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/README.md -------------------------------------------------------------------------------- /Spring Data/Exam 2024-04-14/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Spring Data/Exam 2024-04-14/pom.xml -------------------------------------------------------------------------------- /Spring Data/Exam Preparation/Secret America/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Spring Data/Exam Preparation/Secret America/pom.xml -------------------------------------------------------------------------------- /Spring Data/Hibernate Code First/Labs/lab_1/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Spring Data/Hibernate Code First/Labs/lab_1/Solution.java -------------------------------------------------------------------------------- /Spring Data/Hibernate Code First/Labs/lab_1/entities/Bike.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Spring Data/Hibernate Code First/Labs/lab_1/entities/Bike.java -------------------------------------------------------------------------------- /Spring Data/Hibernate Code First/Labs/lab_1/entities/Car.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Spring Data/Hibernate Code First/Labs/lab_1/entities/Car.java -------------------------------------------------------------------------------- /Spring Data/Hibernate Code First/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Spring Data/Hibernate Code First/pom.xml -------------------------------------------------------------------------------- /Spring Data/Introduction to Hibernate/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Spring Data/Introduction to Hibernate/pom.xml -------------------------------------------------------------------------------- /Spring Data/JSON Processing/Exercises/exercise_1/Runner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Spring Data/JSON Processing/Exercises/exercise_1/Runner.java -------------------------------------------------------------------------------- /Spring Data/JSON Processing/Exercises/exercise_1/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Spring Data/JSON Processing/Exercises/exercise_1/Solution.java -------------------------------------------------------------------------------- /Spring Data/JSON Processing/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Spring Data/JSON Processing/pom.xml -------------------------------------------------------------------------------- /Spring Data/JSON Processing/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Spring Data/JSON Processing/resources/application.properties -------------------------------------------------------------------------------- /Spring Data/JSON Processing/resources/cars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Spring Data/JSON Processing/resources/cars.json -------------------------------------------------------------------------------- /Spring Data/JSON Processing/resources/categories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Spring Data/JSON Processing/resources/categories.json -------------------------------------------------------------------------------- /Spring Data/JSON Processing/resources/customers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Spring Data/JSON Processing/resources/customers.json -------------------------------------------------------------------------------- /Spring Data/JSON Processing/resources/exercise_1.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Spring Data/JSON Processing/resources/exercise_1.properties -------------------------------------------------------------------------------- /Spring Data/JSON Processing/resources/parts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Spring Data/JSON Processing/resources/parts.json -------------------------------------------------------------------------------- /Spring Data/JSON Processing/resources/products.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Spring Data/JSON Processing/resources/products.json -------------------------------------------------------------------------------- /Spring Data/JSON Processing/resources/suppliers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Spring Data/JSON Processing/resources/suppliers.json -------------------------------------------------------------------------------- /Spring Data/JSON Processing/resources/users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Spring Data/JSON Processing/resources/users.json -------------------------------------------------------------------------------- /Spring Data/Java DB Apps Introduction/Labs/lab_1/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Spring Data/Java DB Apps Introduction/Labs/lab_1/Solution.java -------------------------------------------------------------------------------- /Spring Data/Java DB Apps Introduction/Labs/lab_2/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Spring Data/Java DB Apps Introduction/Labs/lab_2/Solution.java -------------------------------------------------------------------------------- /Spring Data/Java DB Apps Introduction/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Spring Data/Java DB Apps Introduction/pom.xml -------------------------------------------------------------------------------- /Spring Data/ORM Fundamentals/Mini ORM/Program.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Spring Data/ORM Fundamentals/Mini ORM/Program.java -------------------------------------------------------------------------------- /Spring Data/ORM Fundamentals/Mini ORM/entities/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Spring Data/ORM Fundamentals/Mini ORM/entities/User.java -------------------------------------------------------------------------------- /Spring Data/ORM Fundamentals/Mini ORM/orm/DbContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Spring Data/ORM Fundamentals/Mini ORM/orm/DbContext.java -------------------------------------------------------------------------------- /Spring Data/ORM Fundamentals/Mini ORM/orm/EntityManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Spring Data/ORM Fundamentals/Mini ORM/orm/EntityManager.java -------------------------------------------------------------------------------- /Spring Data/ORM Fundamentals/Mini ORM/orm/MyConnector.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Spring Data/ORM Fundamentals/Mini ORM/orm/MyConnector.java -------------------------------------------------------------------------------- /Spring Data/ORM Fundamentals/Mini ORM/orm/annotations/Id.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Spring Data/ORM Fundamentals/Mini ORM/orm/annotations/Id.java -------------------------------------------------------------------------------- /Spring Data/ORM Fundamentals/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Spring Data/ORM Fundamentals/pom.xml -------------------------------------------------------------------------------- /Spring Data/Spring Data Advanced Querying/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Spring Data/Spring Data Advanced Querying/pom.xml -------------------------------------------------------------------------------- /Spring Data/Spring Data Advanced Querying/resources/books.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Spring Data/Spring Data Advanced Querying/resources/books.txt -------------------------------------------------------------------------------- /Spring Data/Spring Data Auto Mapping Objects/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Spring Data/Spring Data Auto Mapping Objects/pom.xml -------------------------------------------------------------------------------- /Spring Data/Spring Data Introduction/Labs/lab_1/Runner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Spring Data/Spring Data Introduction/Labs/lab_1/Runner.java -------------------------------------------------------------------------------- /Spring Data/Spring Data Introduction/Labs/lab_1/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Spring Data/Spring Data Introduction/Labs/lab_1/Solution.java -------------------------------------------------------------------------------- /Spring Data/Spring Data Introduction/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Spring Data/Spring Data Introduction/pom.xml -------------------------------------------------------------------------------- /Spring Data/Spring Data Introduction/resources/authors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Spring Data/Spring Data Introduction/resources/authors.txt -------------------------------------------------------------------------------- /Spring Data/Spring Data Introduction/resources/books.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Spring Data/Spring Data Introduction/resources/books.txt -------------------------------------------------------------------------------- /Spring Data/Spring Data Introduction/resources/categories.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Spring Data/Spring Data Introduction/resources/categories.txt -------------------------------------------------------------------------------- /Spring Data/XML Processing/Exercises/exercise_2/Runner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Spring Data/XML Processing/Exercises/exercise_2/Runner.java -------------------------------------------------------------------------------- /Spring Data/XML Processing/Exercises/exercise_2/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Spring Data/XML Processing/Exercises/exercise_2/Solution.java -------------------------------------------------------------------------------- /Spring Data/XML Processing/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Spring Data/XML Processing/pom.xml -------------------------------------------------------------------------------- /Spring Data/XML Processing/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Spring Data/XML Processing/resources/application.properties -------------------------------------------------------------------------------- /Spring Data/XML Processing/resources/cars.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Spring Data/XML Processing/resources/cars.xml -------------------------------------------------------------------------------- /Spring Data/XML Processing/resources/categories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Spring Data/XML Processing/resources/categories.xml -------------------------------------------------------------------------------- /Spring Data/XML Processing/resources/customers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Spring Data/XML Processing/resources/customers.xml -------------------------------------------------------------------------------- /Spring Data/XML Processing/resources/exercise_2.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Spring Data/XML Processing/resources/exercise_2.properties -------------------------------------------------------------------------------- /Spring Data/XML Processing/resources/parts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Spring Data/XML Processing/resources/parts.xml -------------------------------------------------------------------------------- /Spring Data/XML Processing/resources/products.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Spring Data/XML Processing/resources/products.xml -------------------------------------------------------------------------------- /Spring Data/XML Processing/resources/suppliers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Spring Data/XML Processing/resources/suppliers.xml -------------------------------------------------------------------------------- /Spring Data/XML Processing/resources/users.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Spring Data/XML Processing/resources/users.xml -------------------------------------------------------------------------------- /Spring Data/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/Spring Data/docker-compose.yml -------------------------------------------------------------------------------- /icons/cpp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/icons/cpp.svg -------------------------------------------------------------------------------- /icons/csharp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/icons/csharp.svg -------------------------------------------------------------------------------- /icons/ef-core.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/icons/ef-core.svg -------------------------------------------------------------------------------- /icons/hibernate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/icons/hibernate.svg -------------------------------------------------------------------------------- /icons/java.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/icons/java.svg -------------------------------------------------------------------------------- /icons/js.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/icons/js.svg -------------------------------------------------------------------------------- /icons/mssql.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/icons/mssql.svg -------------------------------------------------------------------------------- /icons/mysql.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/icons/mysql.svg -------------------------------------------------------------------------------- /icons/spring.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/icons/spring.svg -------------------------------------------------------------------------------- /whiteboards/C# Advanced - May 2025.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/whiteboards/C# Advanced - May 2025.pdf -------------------------------------------------------------------------------- /whiteboards/C# Advanced - September 2024.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyTroeff/Training-SoftUni/HEAD/whiteboards/C# Advanced - September 2024.pdf --------------------------------------------------------------------------------