├── README.md ├── accessibility ├── AccessibilityResources.md ├── AccessibilitySituations.md ├── AccessibiltyForEveryone.md ├── AccessibleWebContent.md ├── AriaAttributes.md ├── Buttons.md ├── Colors.md ├── Focus.md ├── MobileDeviceAccessibility.md ├── README.md ├── RulesOfThumb.md └── WCAGStandards.md ├── cleancode ├── README.md ├── boundaries.md ├── classes.md ├── codeSmells.md ├── comments.md ├── emergence.md ├── errorHandling.md ├── formatting.md ├── functions.md ├── meaningfulNames.md └── unitTests.md ├── conferences ├── Codeland2019.md ├── EmberConf2018.md ├── EmberConf_Functional_CSS_Workshop.md ├── README.md └── UXPABOS2019.md ├── css ├── ArchitectureAndConventions.md ├── CSSResources.md ├── CustomProperties.md ├── MaintainableCSS.md ├── MediaQueries.md ├── README.md └── UsefulCSSSelectors.md ├── design ├── DesignRulesOfThumb.md ├── DesignSystems.md ├── DontMakeMeThink.md ├── OnWebTypography.md └── README.md ├── frontend ├── FrontEndArchitecture.md ├── FrontEndResources.md ├── HardboiledWebDesign.md ├── LivingStyleguideCaseStudy.md ├── Performance.md ├── README.md └── ResponsibleResponsiveDesign.md ├── javascript ├── ArrayMethods.md ├── AsyncAwait.md ├── BasicProgramStructure.md ├── CallStack.md ├── Classes.md ├── Closures.md ├── Comments.md ├── ComponentDOMManipulation.md ├── Currying.md ├── DataTypes.md ├── EqualSigns.md ├── EventBubbling.md ├── ExpressionsAndStatements.md ├── Functions.md ├── IIFEs.md ├── ImportAndExport.md ├── JavaScriptResources.md ├── Loops.md ├── ObjectMethods.md ├── ProjectBasics.md ├── README.md ├── Recursion.md ├── ReduceFunction.md ├── Scopes.md ├── SpreadOperator.md ├── StringMethods.md ├── SwitchStatements.md ├── TipsAndTricks.md ├── ValueAndReferenceTypes.md ├── VariableHoisting.md └── this.md ├── nonfiction ├── AlgorithmsToLiveBy.md ├── Essentialism.md ├── Its(Not)You.md ├── README.md ├── TrumpUniversityPlaybook.md ├── VerbalSelfDefense.md ├── YouAreNotSoSmart.md ├── burnYourPortfolio.md └── careerAdventuresOfJohnnyBunko.md ├── other ├── NewsfleshTrilogy.md └── README.md ├── practicalObjectOrientedDesign ├── README.md └── singleResponsibility.md ├── pragmaticProgrammer ├── README.md ├── pragmaticApproach.md └── pragmaticPhilosophy.md ├── pragmaticThinkingAndLearning ├── GainExperience.md ├── LearnDeliberately.md ├── ManageFocus.md ├── NoviceToExpert.md ├── README.md └── RightMind.md ├── programming ├── CommandLine.md ├── Git.md ├── ProgrammingResources.md ├── README.md ├── Regexes.md ├── bash.md └── vim.md ├── ruby ├── Accessors.md ├── Collections.md ├── ComponentHelpers.md ├── Lambdas.md ├── Methods.md ├── Modules.md ├── Operators.md ├── README.md ├── RailsPatterns.md ├── Regexes.md ├── RubyResources.md ├── Structs.md ├── Style.md ├── Super.md ├── Symbols.md └── VariableScope.md ├── softskills ├── README.md ├── beingProductive.md ├── habits.md ├── security.md ├── sleeping.md ├── twitter.md └── writing.md ├── stopWorryingStartLiving ├── README.md ├── basicTechniquesInAnalyzingWorry.md ├── breakTheWorryHabit.md └── fundamentalFactsAboutWorry.md ├── strongThinking ├── 13ThingsMentallyStrong.md ├── README.md ├── SixPillarsOfSelfEsteem.md ├── emotionalIntelligence.md ├── everythingIsFcked.md ├── fiveElementsEffectiveThinking.md └── stoicism.md ├── talkToAnyone ├── README.md ├── beAnInsider.md ├── compliments.md ├── createFastConnections.md ├── firstImpressions.md ├── parties.md ├── sensitiveCommunication.md ├── smallTalk.md ├── talkingLikeAnImportantPerson.md └── talkingOnThePhone.md ├── winFriendsInfluencePeople ├── README.md ├── handlingPeople.md ├── makePeopleLikeYou.md └── winPeopleYourWayOfThinking.md └── writingfiction ├── Dialogue.md ├── HowNotToWriteANovel.md ├── PlotAndStructure.md ├── README.md ├── SelfEditingFictionWriters.md └── WritingFictionForDummies.md /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/README.md -------------------------------------------------------------------------------- /accessibility/AccessibilityResources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/accessibility/AccessibilityResources.md -------------------------------------------------------------------------------- /accessibility/AccessibilitySituations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/accessibility/AccessibilitySituations.md -------------------------------------------------------------------------------- /accessibility/AccessibiltyForEveryone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/accessibility/AccessibiltyForEveryone.md -------------------------------------------------------------------------------- /accessibility/AccessibleWebContent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/accessibility/AccessibleWebContent.md -------------------------------------------------------------------------------- /accessibility/AriaAttributes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/accessibility/AriaAttributes.md -------------------------------------------------------------------------------- /accessibility/Buttons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/accessibility/Buttons.md -------------------------------------------------------------------------------- /accessibility/Colors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/accessibility/Colors.md -------------------------------------------------------------------------------- /accessibility/Focus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/accessibility/Focus.md -------------------------------------------------------------------------------- /accessibility/MobileDeviceAccessibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/accessibility/MobileDeviceAccessibility.md -------------------------------------------------------------------------------- /accessibility/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/accessibility/README.md -------------------------------------------------------------------------------- /accessibility/RulesOfThumb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/accessibility/RulesOfThumb.md -------------------------------------------------------------------------------- /accessibility/WCAGStandards.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/accessibility/WCAGStandards.md -------------------------------------------------------------------------------- /cleancode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/cleancode/README.md -------------------------------------------------------------------------------- /cleancode/boundaries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/cleancode/boundaries.md -------------------------------------------------------------------------------- /cleancode/classes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/cleancode/classes.md -------------------------------------------------------------------------------- /cleancode/codeSmells.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/cleancode/codeSmells.md -------------------------------------------------------------------------------- /cleancode/comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/cleancode/comments.md -------------------------------------------------------------------------------- /cleancode/emergence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/cleancode/emergence.md -------------------------------------------------------------------------------- /cleancode/errorHandling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/cleancode/errorHandling.md -------------------------------------------------------------------------------- /cleancode/formatting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/cleancode/formatting.md -------------------------------------------------------------------------------- /cleancode/functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/cleancode/functions.md -------------------------------------------------------------------------------- /cleancode/meaningfulNames.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/cleancode/meaningfulNames.md -------------------------------------------------------------------------------- /cleancode/unitTests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/cleancode/unitTests.md -------------------------------------------------------------------------------- /conferences/Codeland2019.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/conferences/Codeland2019.md -------------------------------------------------------------------------------- /conferences/EmberConf2018.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/conferences/EmberConf2018.md -------------------------------------------------------------------------------- /conferences/EmberConf_Functional_CSS_Workshop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/conferences/EmberConf_Functional_CSS_Workshop.md -------------------------------------------------------------------------------- /conferences/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/conferences/README.md -------------------------------------------------------------------------------- /conferences/UXPABOS2019.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/conferences/UXPABOS2019.md -------------------------------------------------------------------------------- /css/ArchitectureAndConventions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/css/ArchitectureAndConventions.md -------------------------------------------------------------------------------- /css/CSSResources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/css/CSSResources.md -------------------------------------------------------------------------------- /css/CustomProperties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/css/CustomProperties.md -------------------------------------------------------------------------------- /css/MaintainableCSS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/css/MaintainableCSS.md -------------------------------------------------------------------------------- /css/MediaQueries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/css/MediaQueries.md -------------------------------------------------------------------------------- /css/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/css/README.md -------------------------------------------------------------------------------- /css/UsefulCSSSelectors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/css/UsefulCSSSelectors.md -------------------------------------------------------------------------------- /design/DesignRulesOfThumb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/design/DesignRulesOfThumb.md -------------------------------------------------------------------------------- /design/DesignSystems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/design/DesignSystems.md -------------------------------------------------------------------------------- /design/DontMakeMeThink.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/design/DontMakeMeThink.md -------------------------------------------------------------------------------- /design/OnWebTypography.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/design/OnWebTypography.md -------------------------------------------------------------------------------- /design/README.md: -------------------------------------------------------------------------------- 1 | # Web Design 2 | 3 | Making the web look pretty! 4 | -------------------------------------------------------------------------------- /frontend/FrontEndArchitecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/frontend/FrontEndArchitecture.md -------------------------------------------------------------------------------- /frontend/FrontEndResources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/frontend/FrontEndResources.md -------------------------------------------------------------------------------- /frontend/HardboiledWebDesign.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/frontend/HardboiledWebDesign.md -------------------------------------------------------------------------------- /frontend/LivingStyleguideCaseStudy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/frontend/LivingStyleguideCaseStudy.md -------------------------------------------------------------------------------- /frontend/Performance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/frontend/Performance.md -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/ResponsibleResponsiveDesign.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/frontend/ResponsibleResponsiveDesign.md -------------------------------------------------------------------------------- /javascript/ArrayMethods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/javascript/ArrayMethods.md -------------------------------------------------------------------------------- /javascript/AsyncAwait.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/javascript/AsyncAwait.md -------------------------------------------------------------------------------- /javascript/BasicProgramStructure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/javascript/BasicProgramStructure.md -------------------------------------------------------------------------------- /javascript/CallStack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/javascript/CallStack.md -------------------------------------------------------------------------------- /javascript/Classes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/javascript/Classes.md -------------------------------------------------------------------------------- /javascript/Closures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/javascript/Closures.md -------------------------------------------------------------------------------- /javascript/Comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/javascript/Comments.md -------------------------------------------------------------------------------- /javascript/ComponentDOMManipulation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/javascript/ComponentDOMManipulation.md -------------------------------------------------------------------------------- /javascript/Currying.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/javascript/Currying.md -------------------------------------------------------------------------------- /javascript/DataTypes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/javascript/DataTypes.md -------------------------------------------------------------------------------- /javascript/EqualSigns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/javascript/EqualSigns.md -------------------------------------------------------------------------------- /javascript/EventBubbling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/javascript/EventBubbling.md -------------------------------------------------------------------------------- /javascript/ExpressionsAndStatements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/javascript/ExpressionsAndStatements.md -------------------------------------------------------------------------------- /javascript/Functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/javascript/Functions.md -------------------------------------------------------------------------------- /javascript/IIFEs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/javascript/IIFEs.md -------------------------------------------------------------------------------- /javascript/ImportAndExport.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/javascript/ImportAndExport.md -------------------------------------------------------------------------------- /javascript/JavaScriptResources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/javascript/JavaScriptResources.md -------------------------------------------------------------------------------- /javascript/Loops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/javascript/Loops.md -------------------------------------------------------------------------------- /javascript/ObjectMethods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/javascript/ObjectMethods.md -------------------------------------------------------------------------------- /javascript/ProjectBasics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/javascript/ProjectBasics.md -------------------------------------------------------------------------------- /javascript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/javascript/README.md -------------------------------------------------------------------------------- /javascript/Recursion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/javascript/Recursion.md -------------------------------------------------------------------------------- /javascript/ReduceFunction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/javascript/ReduceFunction.md -------------------------------------------------------------------------------- /javascript/Scopes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/javascript/Scopes.md -------------------------------------------------------------------------------- /javascript/SpreadOperator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/javascript/SpreadOperator.md -------------------------------------------------------------------------------- /javascript/StringMethods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/javascript/StringMethods.md -------------------------------------------------------------------------------- /javascript/SwitchStatements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/javascript/SwitchStatements.md -------------------------------------------------------------------------------- /javascript/TipsAndTricks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/javascript/TipsAndTricks.md -------------------------------------------------------------------------------- /javascript/ValueAndReferenceTypes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/javascript/ValueAndReferenceTypes.md -------------------------------------------------------------------------------- /javascript/VariableHoisting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/javascript/VariableHoisting.md -------------------------------------------------------------------------------- /javascript/this.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/javascript/this.md -------------------------------------------------------------------------------- /nonfiction/AlgorithmsToLiveBy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/nonfiction/AlgorithmsToLiveBy.md -------------------------------------------------------------------------------- /nonfiction/Essentialism.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/nonfiction/Essentialism.md -------------------------------------------------------------------------------- /nonfiction/Its(Not)You.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/nonfiction/Its(Not)You.md -------------------------------------------------------------------------------- /nonfiction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/nonfiction/README.md -------------------------------------------------------------------------------- /nonfiction/TrumpUniversityPlaybook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/nonfiction/TrumpUniversityPlaybook.md -------------------------------------------------------------------------------- /nonfiction/VerbalSelfDefense.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/nonfiction/VerbalSelfDefense.md -------------------------------------------------------------------------------- /nonfiction/YouAreNotSoSmart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/nonfiction/YouAreNotSoSmart.md -------------------------------------------------------------------------------- /nonfiction/burnYourPortfolio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/nonfiction/burnYourPortfolio.md -------------------------------------------------------------------------------- /nonfiction/careerAdventuresOfJohnnyBunko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/nonfiction/careerAdventuresOfJohnnyBunko.md -------------------------------------------------------------------------------- /other/NewsfleshTrilogy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/other/NewsfleshTrilogy.md -------------------------------------------------------------------------------- /other/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/other/README.md -------------------------------------------------------------------------------- /practicalObjectOrientedDesign/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/practicalObjectOrientedDesign/README.md -------------------------------------------------------------------------------- /practicalObjectOrientedDesign/singleResponsibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/practicalObjectOrientedDesign/singleResponsibility.md -------------------------------------------------------------------------------- /pragmaticProgrammer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/pragmaticProgrammer/README.md -------------------------------------------------------------------------------- /pragmaticProgrammer/pragmaticApproach.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/pragmaticProgrammer/pragmaticApproach.md -------------------------------------------------------------------------------- /pragmaticProgrammer/pragmaticPhilosophy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/pragmaticProgrammer/pragmaticPhilosophy.md -------------------------------------------------------------------------------- /pragmaticThinkingAndLearning/GainExperience.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/pragmaticThinkingAndLearning/GainExperience.md -------------------------------------------------------------------------------- /pragmaticThinkingAndLearning/LearnDeliberately.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/pragmaticThinkingAndLearning/LearnDeliberately.md -------------------------------------------------------------------------------- /pragmaticThinkingAndLearning/ManageFocus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/pragmaticThinkingAndLearning/ManageFocus.md -------------------------------------------------------------------------------- /pragmaticThinkingAndLearning/NoviceToExpert.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/pragmaticThinkingAndLearning/NoviceToExpert.md -------------------------------------------------------------------------------- /pragmaticThinkingAndLearning/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/pragmaticThinkingAndLearning/README.md -------------------------------------------------------------------------------- /pragmaticThinkingAndLearning/RightMind.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/pragmaticThinkingAndLearning/RightMind.md -------------------------------------------------------------------------------- /programming/CommandLine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/programming/CommandLine.md -------------------------------------------------------------------------------- /programming/Git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/programming/Git.md -------------------------------------------------------------------------------- /programming/ProgrammingResources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/programming/ProgrammingResources.md -------------------------------------------------------------------------------- /programming/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/programming/README.md -------------------------------------------------------------------------------- /programming/Regexes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/programming/Regexes.md -------------------------------------------------------------------------------- /programming/bash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/programming/bash.md -------------------------------------------------------------------------------- /programming/vim.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/programming/vim.md -------------------------------------------------------------------------------- /ruby/Accessors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/ruby/Accessors.md -------------------------------------------------------------------------------- /ruby/Collections.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/ruby/Collections.md -------------------------------------------------------------------------------- /ruby/ComponentHelpers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/ruby/ComponentHelpers.md -------------------------------------------------------------------------------- /ruby/Lambdas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/ruby/Lambdas.md -------------------------------------------------------------------------------- /ruby/Methods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/ruby/Methods.md -------------------------------------------------------------------------------- /ruby/Modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/ruby/Modules.md -------------------------------------------------------------------------------- /ruby/Operators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/ruby/Operators.md -------------------------------------------------------------------------------- /ruby/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/ruby/README.md -------------------------------------------------------------------------------- /ruby/RailsPatterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/ruby/RailsPatterns.md -------------------------------------------------------------------------------- /ruby/Regexes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/ruby/Regexes.md -------------------------------------------------------------------------------- /ruby/RubyResources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/ruby/RubyResources.md -------------------------------------------------------------------------------- /ruby/Structs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/ruby/Structs.md -------------------------------------------------------------------------------- /ruby/Style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/ruby/Style.md -------------------------------------------------------------------------------- /ruby/Super.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/ruby/Super.md -------------------------------------------------------------------------------- /ruby/Symbols.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/ruby/Symbols.md -------------------------------------------------------------------------------- /ruby/VariableScope.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/ruby/VariableScope.md -------------------------------------------------------------------------------- /softskills/README.md: -------------------------------------------------------------------------------- 1 | # Soft Skills 2 | 3 | Programming is easy. Communication and living are hard. 4 | -------------------------------------------------------------------------------- /softskills/beingProductive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/softskills/beingProductive.md -------------------------------------------------------------------------------- /softskills/habits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/softskills/habits.md -------------------------------------------------------------------------------- /softskills/security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/softskills/security.md -------------------------------------------------------------------------------- /softskills/sleeping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/softskills/sleeping.md -------------------------------------------------------------------------------- /softskills/twitter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/softskills/twitter.md -------------------------------------------------------------------------------- /softskills/writing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/softskills/writing.md -------------------------------------------------------------------------------- /stopWorryingStartLiving/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/stopWorryingStartLiving/README.md -------------------------------------------------------------------------------- /stopWorryingStartLiving/basicTechniquesInAnalyzingWorry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/stopWorryingStartLiving/basicTechniquesInAnalyzingWorry.md -------------------------------------------------------------------------------- /stopWorryingStartLiving/breakTheWorryHabit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/stopWorryingStartLiving/breakTheWorryHabit.md -------------------------------------------------------------------------------- /stopWorryingStartLiving/fundamentalFactsAboutWorry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/stopWorryingStartLiving/fundamentalFactsAboutWorry.md -------------------------------------------------------------------------------- /strongThinking/13ThingsMentallyStrong.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/strongThinking/13ThingsMentallyStrong.md -------------------------------------------------------------------------------- /strongThinking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/strongThinking/README.md -------------------------------------------------------------------------------- /strongThinking/SixPillarsOfSelfEsteem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/strongThinking/SixPillarsOfSelfEsteem.md -------------------------------------------------------------------------------- /strongThinking/emotionalIntelligence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/strongThinking/emotionalIntelligence.md -------------------------------------------------------------------------------- /strongThinking/everythingIsFcked.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/strongThinking/everythingIsFcked.md -------------------------------------------------------------------------------- /strongThinking/fiveElementsEffectiveThinking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/strongThinking/fiveElementsEffectiveThinking.md -------------------------------------------------------------------------------- /strongThinking/stoicism.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/strongThinking/stoicism.md -------------------------------------------------------------------------------- /talkToAnyone/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/talkToAnyone/README.md -------------------------------------------------------------------------------- /talkToAnyone/beAnInsider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/talkToAnyone/beAnInsider.md -------------------------------------------------------------------------------- /talkToAnyone/compliments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/talkToAnyone/compliments.md -------------------------------------------------------------------------------- /talkToAnyone/createFastConnections.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/talkToAnyone/createFastConnections.md -------------------------------------------------------------------------------- /talkToAnyone/firstImpressions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/talkToAnyone/firstImpressions.md -------------------------------------------------------------------------------- /talkToAnyone/parties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/talkToAnyone/parties.md -------------------------------------------------------------------------------- /talkToAnyone/sensitiveCommunication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/talkToAnyone/sensitiveCommunication.md -------------------------------------------------------------------------------- /talkToAnyone/smallTalk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/talkToAnyone/smallTalk.md -------------------------------------------------------------------------------- /talkToAnyone/talkingLikeAnImportantPerson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/talkToAnyone/talkingLikeAnImportantPerson.md -------------------------------------------------------------------------------- /talkToAnyone/talkingOnThePhone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/talkToAnyone/talkingOnThePhone.md -------------------------------------------------------------------------------- /winFriendsInfluencePeople/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/winFriendsInfluencePeople/README.md -------------------------------------------------------------------------------- /winFriendsInfluencePeople/handlingPeople.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/winFriendsInfluencePeople/handlingPeople.md -------------------------------------------------------------------------------- /winFriendsInfluencePeople/makePeopleLikeYou.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/winFriendsInfluencePeople/makePeopleLikeYou.md -------------------------------------------------------------------------------- /winFriendsInfluencePeople/winPeopleYourWayOfThinking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/winFriendsInfluencePeople/winPeopleYourWayOfThinking.md -------------------------------------------------------------------------------- /writingfiction/Dialogue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/writingfiction/Dialogue.md -------------------------------------------------------------------------------- /writingfiction/HowNotToWriteANovel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/writingfiction/HowNotToWriteANovel.md -------------------------------------------------------------------------------- /writingfiction/PlotAndStructure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/writingfiction/PlotAndStructure.md -------------------------------------------------------------------------------- /writingfiction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/writingfiction/README.md -------------------------------------------------------------------------------- /writingfiction/SelfEditingFictionWriters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/writingfiction/SelfEditingFictionWriters.md -------------------------------------------------------------------------------- /writingfiction/WritingFictionForDummies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxx1128/Webdev-Study-Notes/HEAD/writingfiction/WritingFictionForDummies.md --------------------------------------------------------------------------------