├── .gitignore ├── .vscode └── settings.json ├── All-Web-Technologies ├── CSS │ ├── Bootstrap │ │ └── Bootstrap.md │ ├── CSS.md │ ├── CSS3 │ │ ├── Flexbox.md │ │ ├── Grid.md │ │ ├── MediaQuery.md │ │ └── ResponsiveDesign.md │ ├── LESS │ │ └── Less.md │ ├── SASS │ │ └── SASS.md │ └── Tailwind │ │ └── Tailwind.md ├── HTML │ ├── Audio.md │ ├── Canvas.md │ ├── HTML5Features.md │ ├── HTMLBasics.md │ ├── Location.md │ ├── Table.md │ └── Video.md ├── Http │ ├── Ajax │ │ └── Ajax.md │ ├── Axios │ │ └── Axios.md │ ├── Fetch │ │ └── Fetch.md │ ├── Request.md │ ├── Response.md │ ├── StatusCodes.md │ └── XmlHttpRequest.md ├── JavaScript-Browser │ ├── BOM │ │ └── BrowserObjectModel.md │ ├── DOM │ │ ├── DOMManipulation.md │ │ └── DocumentObjectModel.md │ └── JavaScript.md ├── WebTechnologies.md └── jQuery │ ├── AjaxCallJquery.md │ ├── DOMManipulationWithJquery.md │ ├── DataTablePlugin.md │ ├── JQuery.md │ └── PopularPluginList.md ├── ApiDesign ├── GraphQL │ └── GraphQL.md └── RESTApi │ └── RESTApi.md ├── C#-DotNet └── Ch2_LanguageBasics │ ├── Conditionals.ipynb │ ├── Operators.ipynb │ ├── TypeCasts.ipynb │ ├── TypeJuggle.ipynb │ └── Variables_DataTypes.ipynb ├── DataStructures-And-Algorithms ├── Algorithms │ ├── Algorithms.md │ ├── BigONotations.md │ ├── Recursion.md │ ├── Searching.md │ ├── Sorting.md │ ├── SpaceComplexity.md │ └── TimeComplexity.md ├── Array │ ├── Array.md │ ├── Array.php │ └── test │ │ └── Array.test.php ├── DataStructures.md ├── Dictionary │ └── README.md ├── Graph │ └── README.md ├── LinkedList │ └── LinkedList.php ├── List │ └── README.md ├── Objects │ └── README.md ├── Queue │ └── Queue.md ├── Stack │ └── Stack.md ├── Tree │ └── Tree.md └── Tuple │ └── README.md ├── Database ├── NoSQL │ ├── Firebase │ │ └── README.md │ └── MongoDB │ │ └── MongoDB.md └── SQL │ ├── CRUDExample │ └── CrashCourse.md │ ├── ComplexQueries │ └── CrashCourse.md │ ├── Conditionals │ └── CrashCourse.md │ ├── DriverAndTools │ ├── CrashCourse.md │ ├── MySQLWorkBench.md │ └── PHPMyAdmin.md │ ├── MSSQL.md │ ├── MathOperations │ └── CrashCourse.md │ ├── MySQL.md │ ├── Oracle.md │ ├── PgSQL.md │ └── SQL.md ├── JavaScript-Language ├── AsyncAwait.md ├── CallbackHellAndHowToOvercome.md ├── Callbacks.md ├── Closure.md ├── ES5FeaturesList.md ├── ES6FeatureList.md ├── Generator.js ├── Hoisting.js ├── Hoisting.md ├── IteratorUsingGenerator.js ├── Loops.js ├── Numbers.js ├── Operator.js ├── Processes.md ├── Promise.md ├── Sanitizer.php ├── SpreadOperator.md ├── StringLiterals.js ├── StringMethods.js ├── Threading.md ├── VarVSLet.md └── WhyConstIsGood.md ├── Laravel-Ecosystem ├── BladeTemplate.md ├── Controllers.md ├── DispatchEvent.md ├── Events.md ├── Laravel.md ├── Middleware.md ├── PackageDevelopment.md ├── Request.md ├── Response.md ├── Routing.md └── images │ ├── image-20210311174515775.png │ └── image-20210311180422960.png ├── OOP ├── OOP.md ├── PatternAndPrinciples │ ├── DRY │ │ └── README.md │ ├── FunctionalProgramming │ │ └── FunctionalProgramming.md │ ├── KISS │ │ └── README.md │ ├── README.md │ ├── SOLID │ │ └── README.md │ └── YAGNI │ │ └── README.md ├── abstraction │ └── readme.md ├── classes │ ├── Class.md │ ├── Class.test.php │ └── Person.php ├── inheritance │ └── readme.md ├── interfaces │ ├── Cat.php │ ├── IAnimal.php │ ├── Interface.md │ ├── Interface.test.php │ └── index.php ├── objects │ └── readme.md └── polymorphism │ └── readme.md ├── PHP-Language ├── ImportantPhpTopics │ ├── AdvantageAndDisadvantagesOfPHP.md │ ├── AjaxCallFromPHP.md │ ├── CronJob.md │ ├── DataType.test.php │ ├── DataTypes.md │ ├── DiffereantConfigurationsOf_php_ini_file.md │ ├── HowPHPExecutesWithApacheInDepth.md │ ├── ImportantExtensionsList.md │ ├── Installation.md │ ├── IntroductionToPHP.md │ ├── MemorayManagementsInPHP.md │ ├── Networking.md │ ├── PHPFpm.md │ ├── Processes.md │ ├── SwooleRunTime.md │ ├── ThreadingInPHP.md │ ├── WebSocket.md │ └── WindowsVsLinuxSpecifiIssuesInPHP.md ├── array │ ├── 1.array.php │ ├── 10.array_diff_uassoc.php │ ├── 11.array_diff_ukey.php │ ├── 12.array_fill.php │ ├── 13.array_fill_keys.php │ ├── 14.array_filter.php │ ├── 15.array_flip.php │ ├── 16.array_intersect.php │ ├── 17.array_intersect_assoc.php │ ├── 18.array_intersect_key.php │ ├── 19.array_intersect_uassoc.php │ ├── 2.array_change_key_case.php │ ├── 20.array_intersect_ukey.php │ ├── 21.array_key_exists.php │ ├── 22.array_keys.php │ ├── 23.array_map.php │ ├── 24.array_filter.php │ ├── 3.array_chunk.php │ ├── 4.array_column.php │ ├── 5.array_combine.php │ ├── 6.array_count_values.php │ ├── 7.array_diff.php │ ├── 8.array_diff_assoc.php │ ├── 9.array_diff_key.php │ ├── Array.md │ ├── README.md │ ├── array_intersect.php │ ├── array_intersect_key.php │ ├── array_map.php │ ├── array_merge.php │ ├── array_reduce.php │ ├── associative_array.php │ ├── hack_array_union.php │ ├── link_generator.php │ ├── links.txt │ ├── multi_dimentional_array.php │ ├── numerical_array.php │ ├── sized_array.php │ └── spl_fixed_array.php ├── conditionals │ └── Conditionals.md ├── files │ ├── Files.md │ ├── fileupload.php │ ├── handle-file-upload.php │ ├── input.txt │ ├── readfile.php │ └── uploads │ │ └── Uploads.md ├── form-handling │ ├── Form-handling.md │ ├── form-component.php │ ├── form-handler.php │ ├── form.php │ ├── get.php │ └── post.php ├── functions │ ├── Function.md │ └── date.php ├── how-to │ ├── edit-from-table-column.php │ └── index.php ├── loops │ └── Loops.md ├── mysql_pdo │ ├── Mysql_pdo.md │ ├── mysql_crud.php │ ├── mysql_full.php │ └── mysql_pdo.php ├── oop │ └── Oop.md ├── php5-features │ └── PHP5Features.md ├── php7-features │ └── PHP7Features.md ├── php8-features │ ├── ConstructorProperties.php │ ├── NullsafeOperator.php │ ├── PHP8Features.md │ ├── first-class-callables.php │ └── short-closures.php ├── psrs │ ├── PSR0.md │ ├── PSR11.md │ └── PSR4.md ├── session-cookie │ ├── Session-cookie.md │ ├── cookies.php │ └── sessions.php ├── standard-input-output │ └── Standard-input-output.md └── string │ ├── MultiByteString.md │ ├── String.md │ ├── addcslashes.php │ ├── bengali_hindi_chars_range.php │ ├── explode.php │ ├── name_of_an_unicode_character.php │ └── string.php ├── ProblemSolving ├── OnlineJudges.md ├── ProblemSolving.md ├── codeforces-javascript-solves │ ├── HorseShoes.js │ └── _input.txt ├── codeforces-php-solves │ ├── Beautiful Matrix.php │ ├── Boy Or Girl.php │ ├── CalculatingFunction.php │ ├── Caps Lock.php │ ├── Cars.php │ ├── Chat Room.php │ ├── DevSkillOne.php │ ├── Drinks.php │ ├── DubStep.php │ ├── GeorgeAndAccomodation.php │ ├── GravitiyFlip.php │ ├── HQ9+.php │ ├── Helpful Math.php │ ├── HorseShoes.php │ ├── IWannaBeTheGuy.php │ ├── Lucky Division.php │ ├── NearlyLuckyNumber.php │ ├── Next Round.php │ ├── Note.php │ ├── Presents.php │ ├── QueueAtTheSchool.php │ ├── Soldier and Bananas.php │ ├── Stones On The Table.php │ ├── Theatre Square.php │ ├── Tram.php │ ├── Translation.php │ ├── Twins.php │ ├── Way Too Long Words.php │ ├── Young Physicist.php │ └── _input.txt ├── csharp-solves │ ├── .vs │ │ └── csharp-solves │ │ │ └── v17 │ │ │ └── .suo │ ├── HackerRank1 │ │ └── Program.cs │ ├── HorseShoes │ │ ├── HorseShoes.csproj │ │ ├── Program.cs │ │ └── obj │ │ │ └── Debug │ │ │ └── net6.0 │ │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ │ ├── HorseShoes.AssemblyInfo.cs │ │ │ ├── HorseShoes.AssemblyInfoInputs.cache │ │ │ ├── HorseShoes.GeneratedMSBuildEditorConfig.editorconfig │ │ │ └── HorseShoes.GlobalUsings.g.cs │ ├── Traverser │ │ ├── Program.cs │ │ ├── Traverser.csproj │ │ └── obj │ │ │ └── Debug │ │ │ └── net6.0 │ │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ │ ├── Traverser.AssemblyInfo.cs │ │ │ ├── Traverser.AssemblyInfoInputs.cache │ │ │ ├── Traverser.GeneratedMSBuildEditorConfig.editorconfig │ │ │ └── Traverser.GlobalUsings.g.cs │ ├── csharp-solves.csproj │ └── csharp-solves.sln └── web-related-problems │ └── render-parent-child-tree │ ├── index.php │ └── other.json ├── README.md ├── SoftSkills ├── Communications │ ├── BusinessProposalWriting.md │ ├── CVWriting.md │ ├── CoverLetterWriting.md │ ├── EmailWriting.md │ ├── Presentation.md │ └── PublicSpeaking.md ├── CommunityPlatforms │ ├── DevTo.md │ ├── Discord.md │ ├── Facebook.md │ ├── Medium.md │ ├── Reddit.md │ ├── StackOverflow.md │ └── Twitter.md ├── CvAndResume │ └── about-section-of-rails-dev.md ├── OfficeSuite │ ├── Excell.md │ ├── MSWord.md │ └── PresentationSlideCreating.md └── WorkPlatforms │ ├── GitLab.md │ ├── MicrosoftTeams.md │ ├── Slack.md │ ├── Trello.md │ ├── UpworkTracker.md │ └── Zoom.md ├── Testing ├── UnitTesting.md └── phpunit │ ├── README.md │ └── project │ ├── .phpunit.result.cache │ ├── composer.json │ ├── phpunit.xml │ ├── src │ └── Calculator.php │ └── tests │ ├── CalculatorTest.php │ ├── EqualityTest.php │ └── TearDownTest.php ├── Uncategorized ├── BackendFrameworks │ ├── Adonis │ │ └── CrashCourse.md │ ├── CakePHP │ │ └── CrashCourse.md │ ├── Django │ │ └── CrashCourse.md │ ├── DotNetCore │ │ └── CrashCourse.md │ ├── Express │ │ └── CrashCourse.md │ ├── Flask │ │ └── CrashCourse.md │ ├── Koa │ │ └── CrashCourse.md │ ├── Laravel │ │ └── CrashCourse.md │ ├── Lumen │ │ └── CrashCourse.md │ ├── Rails │ │ └── CrashCourse.md │ ├── Slim │ │ └── CrashCourse.md │ ├── SpringBoot │ │ └── CrashCourse.md │ └── Symphony │ │ └── CrashCourse.md ├── DevOps │ ├── DevOps.md │ ├── DigitalOceanLinux │ │ └── DigitalOceanLinux.md │ ├── Docker │ │ └── Docker.md │ └── cPanel │ │ └── CPanel.md ├── Documents │ ├── Documents.md │ ├── ExampleCvAndResume │ │ └── CVMakerTools.md │ ├── JobPostings │ │ ├── BrainStation23.md │ │ ├── GrameenphoneSeniorWebDev.md │ │ ├── JavaScript_RemoteWork.md │ │ └── VirtualMarketSolutionLimited.md │ ├── LaravelJobQuestions.md │ ├── Writing │ │ ├── .gitignore │ │ └── hello.tex │ └── karan_Projects_ A list of practical projects that anyone can solve in any programming language_.pdf ├── EditorsAndIDEs │ ├── Atom │ │ └── keyboard-shortcut.md │ ├── PHPStorm │ │ └── keyboard-shortcut.md │ ├── SublimeText │ │ ├── how-to-configure-integrated-terminal-in-subime-text.md │ │ └── keyboard-shortcut.md │ ├── Vim │ │ └── keyboard-shortcut.md │ └── VisualStudioCode │ │ ├── keybindings.json │ │ ├── keyboard-shortcut.md │ │ └── settings.json ├── FrontEndFrameworks │ ├── Angular │ │ └── CrashCourse.md │ ├── Components │ │ ├── BootstrapVue │ │ │ └── CrashCourse.md │ │ ├── Chakra │ │ │ └── CrashCourse.md │ │ ├── MaterialUI │ │ │ └── CrashCourse.md │ │ └── Vuetify │ │ │ └── CrashCourse.md │ ├── ReactJS │ │ ├── Hooks │ │ │ └── ReactHooks.md │ │ └── ReactJS.md │ ├── Svelte │ │ └── CrashCourse.md │ └── VueJS │ │ ├── Basics.vue.md │ │ ├── ConditionalRendering.md │ │ ├── Vue.md │ │ ├── VueApollo │ │ └── VueApollo.md │ │ ├── VueRouter │ │ └── VueRouter.md │ │ ├── Vuetify │ │ └── Vuetify.md │ │ ├── Vuex │ │ └── Vuex.md │ │ └── images │ │ ├── Images.md │ │ └── Screenshot from 2021-02-16 10-28-30.png ├── OperatingSystem │ └── Linux │ │ └── Linux.md ├── ProgrammingLanguages │ ├── C# │ │ ├── CrashCourse.md │ │ ├── PrimitiveDataTypes.ipynb │ │ └── basic-csharp │ │ │ ├── ForLoop.cs │ │ │ ├── Program.cs │ │ │ ├── ReadLine.cs │ │ │ ├── basic-csharp.csproj │ │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── net5.0 │ │ │ │ ├── basic-csharp.deps.json │ │ │ │ ├── basic-csharp.dll │ │ │ │ ├── basic-csharp.exe │ │ │ │ ├── basic-csharp.pdb │ │ │ │ ├── basic-csharp.runtimeconfig.dev.json │ │ │ │ ├── basic-csharp.runtimeconfig.json │ │ │ │ └── ref │ │ │ │ └── basic-csharp.dll │ │ │ └── obj │ │ │ ├── Debug │ │ │ └── net5.0 │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ ├── apphost.exe │ │ │ │ ├── basic-csharp.AssemblyInfo.cs │ │ │ │ ├── basic-csharp.AssemblyInfoInputs.cache │ │ │ │ ├── basic-csharp.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── basic-csharp.assets.cache │ │ │ │ ├── basic-csharp.csproj.AssemblyReference.cache │ │ │ │ ├── basic-csharp.csproj.CoreCompileInputs.cache │ │ │ │ ├── basic-csharp.csproj.FileListAbsolute.txt │ │ │ │ ├── basic-csharp.dll │ │ │ │ ├── basic-csharp.genruntimeconfig.cache │ │ │ │ ├── basic-csharp.pdb │ │ │ │ └── ref │ │ │ │ └── basic-csharp.dll │ │ │ ├── Release │ │ │ └── net5.0 │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ ├── basic-csharp.AssemblyInfo.cs │ │ │ │ ├── basic-csharp.AssemblyInfoInputs.cache │ │ │ │ ├── basic-csharp.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ └── basic-csharp.csproj.AssemblyReference.cache │ │ │ ├── basic-csharp.csproj.nuget.dgspec.json │ │ │ ├── basic-csharp.csproj.nuget.g.props │ │ │ ├── basic-csharp.csproj.nuget.g.targets │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ ├── C++ │ │ ├── CrashCourse.md │ │ ├── for-loop.cpp │ │ └── for-loop.exe │ ├── C │ │ └── CrashCourse.md │ ├── Golang │ │ └── CrashCourse.md │ ├── Java │ │ ├── BasicJavaProgramming │ │ │ ├── .idea │ │ │ │ ├── kotlinc.xml │ │ │ │ ├── libraries │ │ │ │ │ └── KotlinJavaRuntime.xml │ │ │ │ ├── misc.xml │ │ │ │ ├── modules.xml │ │ │ │ ├── uiDesigner.xml │ │ │ │ └── vcs.xml │ │ │ ├── BasicJavaProgramming.iml │ │ │ ├── out │ │ │ │ └── production │ │ │ │ │ └── BasicJavaProgramming │ │ │ │ │ └── StandardInputOutput.class │ │ │ └── src │ │ │ │ ├── DataStructures │ │ │ │ ├── Queue.java │ │ │ │ └── Stack.java │ │ │ │ ├── StandardInputOutput │ │ │ │ ├── StandardInput.java │ │ │ │ └── StandardInputOutput.java │ │ │ │ ├── String │ │ │ │ ├── StringLowerCase.java │ │ │ │ └── StringUpperCase.java │ │ │ │ └── TypeCast.java │ │ └── CrashCourse.md │ ├── JavaScript │ │ └── CrashCourse.md │ ├── Kotlin │ │ └── CrashCourse.md │ ├── PHP │ │ └── CrashCourse.md │ ├── Python │ │ └── CrashCourse.md │ ├── Rust │ │ └── CrashCourse.md │ └── Typescript │ │ └── CrashCourse.md ├── ProjectsAnalysis │ ├── AccountingSoftware │ │ └── ProjectRequirement.md │ ├── BankingSolution │ │ └── ProjectRequirement.md │ ├── Blog │ │ └── ProjectRequirement.md │ ├── BugTracker │ │ └── ProjectRequirement.md │ ├── BulkEmail │ │ └── ProjectRequirement.md │ ├── CMS │ │ └── ProjectRequirement.md │ ├── ChattingApp │ │ └── ProjectRequirement.md │ ├── CommonFeatures.md │ ├── CustomerRelationshipManagement_CRM │ │ └── ProjectRequirement.md │ ├── DeveloperForum │ │ └── ProjectRequirement.md │ ├── Ecommerce │ │ └── ProjectRequirement.md │ ├── EnterpriseResourcePlannng_ERP │ │ └── ProjectRequirement.md │ ├── GymManagement │ │ └── ProjectRequirement.md │ ├── HospitalManagement │ │ └── ProjectRequirement.md │ ├── InventoryManagementSoftware │ │ └── ProjectRequirement.md │ ├── NewsPortal │ │ └── ProjectRequirement.md │ ├── OnlineExamSystem │ │ └── ProjectRequirement.md │ ├── OnlineJudge │ │ └── ProjectRequirement.md │ ├── OnlineResume │ │ └── ProjectRequirement.md │ ├── PointOfSale_POS │ │ └── ProjectRequirement.md │ ├── ProjectManagement │ │ └── ProjectRequirement.md │ ├── QnASite │ │ └── ProjectRequirement.md │ ├── RestaurantManagement │ │ └── ProjectRequirement.md │ ├── SchoolManagement │ │ └── ProjectRequirement.md │ ├── SocialMedia │ │ └── ProjectRequirement.md │ ├── SportsLiveScore │ │ └── ProjectRequirement.md │ ├── TicketingSystem │ │ └── ProjectRequirement.md │ ├── TodoApp │ │ └── ProjectRequirement.md │ ├── URLShortener │ │ └── ProjectRequirement.md │ ├── UdemyClone │ │ └── ProjectRequirement.md │ └── VideoConferenceApp │ │ └── ProjectRequirement.md ├── Scripting │ ├── Bash │ │ └── Bash.md │ ├── Node │ │ └── NodeScripting.md │ ├── PHP │ │ ├── PHP.md │ │ ├── delete_files.php │ │ ├── file_utility_recursive.php │ │ └── touch.php │ ├── Powershell │ │ └── Powershell.md │ ├── Python │ │ └── PythonScripting.md │ └── Scripting.md ├── ThirdPartyServices │ ├── Amazon │ │ └── AWS.md │ ├── Facebook │ │ └── FacebookAdsApi.md │ ├── GitHub │ │ └── GitHubAPI.md │ ├── GoogleServices │ │ ├── Analytics.md │ │ └── Map.md │ ├── IntegratingThirdPartyAPIs.md │ ├── Microsoft │ │ └── Azure.md │ ├── Twillio │ │ └── SMSApi.md │ └── Twitter │ │ └── TwitterAPI.md └── VersionControlling │ ├── Git │ └── Git.md │ ├── GitHub │ ├── AddPersonalAccessTokenInGitHub.md │ ├── AddSSHKeyToGitHub.md │ ├── ContinuousIntegrationContinuousDelivery.md │ ├── GitHubActions.md │ └── HowToTestIfConnectedWithGithubViaTerminal.md │ ├── GitLab │ └── GitLabCICD.md │ ├── OpenSource_Contribution.md │ └── What_is_VCS.md └── images ├── Images.md ├── Routine.txt ├── Tools.php ├── d0o3wb0.jpeg └── laravel-vue.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwarul/become-software-engineer/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwarul/become-software-engineer/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /All-Web-Technologies/CSS/Bootstrap/Bootstrap.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /All-Web-Technologies/CSS/CSS.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /All-Web-Technologies/CSS/CSS3/Flexbox.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /All-Web-Technologies/CSS/CSS3/Grid.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /All-Web-Technologies/CSS/CSS3/MediaQuery.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /All-Web-Technologies/CSS/CSS3/ResponsiveDesign.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /All-Web-Technologies/CSS/LESS/Less.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /All-Web-Technologies/CSS/SASS/SASS.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /All-Web-Technologies/CSS/Tailwind/Tailwind.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwarul/become-software-engineer/HEAD/All-Web-Technologies/CSS/Tailwind/Tailwind.md -------------------------------------------------------------------------------- /All-Web-Technologies/HTML/Audio.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /All-Web-Technologies/HTML/Canvas.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /All-Web-Technologies/HTML/HTML5Features.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /All-Web-Technologies/HTML/HTMLBasics.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /All-Web-Technologies/HTML/Location.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /All-Web-Technologies/HTML/Table.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /All-Web-Technologies/HTML/Video.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /All-Web-Technologies/Http/Ajax/Ajax.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /All-Web-Technologies/Http/Axios/Axios.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /All-Web-Technologies/Http/Fetch/Fetch.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /All-Web-Technologies/Http/Request.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /All-Web-Technologies/Http/Response.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /All-Web-Technologies/Http/StatusCodes.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /All-Web-Technologies/Http/XmlHttpRequest.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /All-Web-Technologies/JavaScript-Browser/BOM/BrowserObjectModel.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /All-Web-Technologies/JavaScript-Browser/DOM/DOMManipulation.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /All-Web-Technologies/JavaScript-Browser/DOM/DocumentObjectModel.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /All-Web-Technologies/JavaScript-Browser/JavaScript.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /All-Web-Technologies/WebTechnologies.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /All-Web-Technologies/jQuery/AjaxCallJquery.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /All-Web-Technologies/jQuery/DOMManipulationWithJquery.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /All-Web-Technologies/jQuery/DataTablePlugin.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /All-Web-Technologies/jQuery/JQuery.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /All-Web-Technologies/jQuery/PopularPluginList.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ApiDesign/GraphQL/GraphQL.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ApiDesign/RESTApi/RESTApi.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C#-DotNet/Ch2_LanguageBasics/Conditionals.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwarul/become-software-engineer/HEAD/C#-DotNet/Ch2_LanguageBasics/Conditionals.ipynb -------------------------------------------------------------------------------- /C#-DotNet/Ch2_LanguageBasics/Operators.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwarul/become-software-engineer/HEAD/C#-DotNet/Ch2_LanguageBasics/Operators.ipynb -------------------------------------------------------------------------------- /C#-DotNet/Ch2_LanguageBasics/TypeCasts.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwarul/become-software-engineer/HEAD/C#-DotNet/Ch2_LanguageBasics/TypeCasts.ipynb -------------------------------------------------------------------------------- /C#-DotNet/Ch2_LanguageBasics/TypeJuggle.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwarul/become-software-engineer/HEAD/C#-DotNet/Ch2_LanguageBasics/TypeJuggle.ipynb -------------------------------------------------------------------------------- /C#-DotNet/Ch2_LanguageBasics/Variables_DataTypes.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwarul/become-software-engineer/HEAD/C#-DotNet/Ch2_LanguageBasics/Variables_DataTypes.ipynb -------------------------------------------------------------------------------- /DataStructures-And-Algorithms/Algorithms/Algorithms.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DataStructures-And-Algorithms/Algorithms/BigONotations.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DataStructures-And-Algorithms/Algorithms/Recursion.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DataStructures-And-Algorithms/Algorithms/Searching.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DataStructures-And-Algorithms/Algorithms/Sorting.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DataStructures-And-Algorithms/Algorithms/SpaceComplexity.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DataStructures-And-Algorithms/Algorithms/TimeComplexity.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DataStructures-And-Algorithms/Array/Array.md: -------------------------------------------------------------------------------- 1 | # Arrays 2 | 3 | -------------------------------------------------------------------------------- /DataStructures-And-Algorithms/Array/Array.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DataStructures-And-Algorithms/Array/test/Array.test.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DataStructures-And-Algorithms/DataStructures.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DataStructures-And-Algorithms/Dictionary/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DataStructures-And-Algorithms/Graph/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DataStructures-And-Algorithms/LinkedList/LinkedList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwarul/become-software-engineer/HEAD/DataStructures-And-Algorithms/LinkedList/LinkedList.php -------------------------------------------------------------------------------- /DataStructures-And-Algorithms/List/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DataStructures-And-Algorithms/Objects/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DataStructures-And-Algorithms/Queue/Queue.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DataStructures-And-Algorithms/Stack/Stack.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DataStructures-And-Algorithms/Tree/Tree.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DataStructures-And-Algorithms/Tuple/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Database/NoSQL/Firebase/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Database/NoSQL/MongoDB/MongoDB.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Database/SQL/CRUDExample/CrashCourse.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Database/SQL/ComplexQueries/CrashCourse.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Database/SQL/Conditionals/CrashCourse.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Database/SQL/DriverAndTools/CrashCourse.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Database/SQL/DriverAndTools/MySQLWorkBench.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Database/SQL/DriverAndTools/PHPMyAdmin.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Database/SQL/MSSQL.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Database/SQL/MathOperations/CrashCourse.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Database/SQL/MySQL.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Database/SQL/Oracle.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Database/SQL/PgSQL.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Database/SQL/SQL.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /JavaScript-Language/AsyncAwait.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /JavaScript-Language/CallbackHellAndHowToOvercome.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /JavaScript-Language/Callbacks.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /JavaScript-Language/Closure.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /JavaScript-Language/ES5FeaturesList.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /JavaScript-Language/ES6FeatureList.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /JavaScript-Language/Generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwarul/become-software-engineer/HEAD/JavaScript-Language/Generator.js -------------------------------------------------------------------------------- /JavaScript-Language/Hoisting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwarul/become-software-engineer/HEAD/JavaScript-Language/Hoisting.js -------------------------------------------------------------------------------- /JavaScript-Language/Hoisting.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /JavaScript-Language/IteratorUsingGenerator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwarul/become-software-engineer/HEAD/JavaScript-Language/IteratorUsingGenerator.js -------------------------------------------------------------------------------- /JavaScript-Language/Loops.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwarul/become-software-engineer/HEAD/JavaScript-Language/Loops.js -------------------------------------------------------------------------------- /JavaScript-Language/Numbers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwarul/become-software-engineer/HEAD/JavaScript-Language/Numbers.js -------------------------------------------------------------------------------- /JavaScript-Language/Operator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwarul/become-software-engineer/HEAD/JavaScript-Language/Operator.js -------------------------------------------------------------------------------- /JavaScript-Language/Processes.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /JavaScript-Language/Promise.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /JavaScript-Language/Sanitizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwarul/become-software-engineer/HEAD/JavaScript-Language/Sanitizer.php -------------------------------------------------------------------------------- /JavaScript-Language/SpreadOperator.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /JavaScript-Language/StringLiterals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwarul/become-software-engineer/HEAD/JavaScript-Language/StringLiterals.js -------------------------------------------------------------------------------- /JavaScript-Language/StringMethods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwarul/become-software-engineer/HEAD/JavaScript-Language/StringMethods.js -------------------------------------------------------------------------------- /JavaScript-Language/Threading.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /JavaScript-Language/VarVSLet.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /JavaScript-Language/WhyConstIsGood.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Laravel-Ecosystem/BladeTemplate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwarul/become-software-engineer/HEAD/Laravel-Ecosystem/BladeTemplate.md -------------------------------------------------------------------------------- /Laravel-Ecosystem/Controllers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwarul/become-software-engineer/HEAD/Laravel-Ecosystem/Controllers.md -------------------------------------------------------------------------------- /Laravel-Ecosystem/DispatchEvent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwarul/become-software-engineer/HEAD/Laravel-Ecosystem/DispatchEvent.md -------------------------------------------------------------------------------- /Laravel-Ecosystem/Events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwarul/become-software-engineer/HEAD/Laravel-Ecosystem/Events.md -------------------------------------------------------------------------------- /Laravel-Ecosystem/Laravel.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Laravel-Ecosystem/Middleware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwarul/become-software-engineer/HEAD/Laravel-Ecosystem/Middleware.md -------------------------------------------------------------------------------- /Laravel-Ecosystem/PackageDevelopment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwarul/become-software-engineer/HEAD/Laravel-Ecosystem/PackageDevelopment.md -------------------------------------------------------------------------------- /Laravel-Ecosystem/Request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwarul/become-software-engineer/HEAD/Laravel-Ecosystem/Request.md -------------------------------------------------------------------------------- /Laravel-Ecosystem/Response.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwarul/become-software-engineer/HEAD/Laravel-Ecosystem/Response.md -------------------------------------------------------------------------------- /Laravel-Ecosystem/Routing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwarul/become-software-engineer/HEAD/Laravel-Ecosystem/Routing.md -------------------------------------------------------------------------------- /Laravel-Ecosystem/images/image-20210311174515775.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwarul/become-software-engineer/HEAD/Laravel-Ecosystem/images/image-20210311174515775.png -------------------------------------------------------------------------------- /Laravel-Ecosystem/images/image-20210311180422960.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwarul/become-software-engineer/HEAD/Laravel-Ecosystem/images/image-20210311180422960.png -------------------------------------------------------------------------------- /OOP/OOP.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OOP/PatternAndPrinciples/DRY/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OOP/PatternAndPrinciples/FunctionalProgramming/FunctionalProgramming.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OOP/PatternAndPrinciples/KISS/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OOP/PatternAndPrinciples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwarul/become-software-engineer/HEAD/OOP/PatternAndPrinciples/README.md -------------------------------------------------------------------------------- /OOP/PatternAndPrinciples/SOLID/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OOP/PatternAndPrinciples/YAGNI/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OOP/abstraction/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OOP/classes/Class.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OOP/classes/Class.test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwarul/become-software-engineer/HEAD/OOP/classes/Class.test.php -------------------------------------------------------------------------------- /OOP/classes/Person.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwarul/become-software-engineer/HEAD/OOP/classes/Person.php -------------------------------------------------------------------------------- /OOP/inheritance/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OOP/interfaces/Cat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwarul/become-software-engineer/HEAD/OOP/interfaces/Cat.php -------------------------------------------------------------------------------- /OOP/interfaces/IAnimal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwarul/become-software-engineer/HEAD/OOP/interfaces/IAnimal.php -------------------------------------------------------------------------------- /OOP/interfaces/Interface.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OOP/interfaces/Interface.test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwarul/become-software-engineer/HEAD/OOP/interfaces/Interface.test.php -------------------------------------------------------------------------------- /OOP/interfaces/index.php: -------------------------------------------------------------------------------- 1 |