├── .eslintrc.json ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug_reports.yml │ ├── config.yml │ ├── entry_edit.yml │ └── entry_request.yml ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── post-merge-survey.yml │ └── push.yml ├── .gitignore ├── .husky ├── .gitignore └── pre-commit ├── .markdownlint.yaml ├── .nvmrc ├── .prettierignore ├── .prettierrc.js ├── README.md ├── bin └── concept-of-the-week.txt ├── content.test.ts ├── content ├── c-sharp │ ├── c-sharp.md │ └── concepts │ │ ├── arrays │ │ ├── arrays.md │ │ └── terms │ │ │ ├── clear │ │ │ └── clear.md │ │ │ └── length │ │ │ └── length.md │ │ ├── comments │ │ └── comments.md │ │ ├── data-types │ │ └── data-types.md │ │ ├── math-functions │ │ └── math-functions.md │ │ ├── methods │ │ └── methods.md │ │ ├── operators │ │ └── operators.md │ │ └── variables │ │ └── variables.md ├── c │ ├── c.md │ └── concepts │ │ ├── arrays │ │ └── arrays.md │ │ ├── basic-output │ │ ├── basic-output.md │ │ └── terms │ │ │ ├── printf │ │ │ └── printf.md │ │ │ ├── putchar │ │ │ └── putchar.md │ │ │ └── puts │ │ │ └── puts.md │ │ ├── comments │ │ └── comments.md │ │ ├── compiling │ │ └── compiling.md │ │ ├── data-types │ │ └── data-types.md │ │ ├── functions │ │ └── functions.md │ │ ├── macros │ │ └── macros.md │ │ ├── memory-management │ │ ├── memory-management.md │ │ └── terms │ │ │ ├── calloc │ │ │ └── calloc.md │ │ │ ├── free │ │ │ └── free.md │ │ │ ├── malloc │ │ │ └── malloc.md │ │ │ └── realloc │ │ │ └── realloc.md │ │ ├── operators │ │ └── operators.md │ │ ├── pointers │ │ └── pointers.md │ │ ├── preprocessors │ │ └── preprocessors.md │ │ ├── strings │ │ ├── strings.md │ │ └── terms │ │ │ ├── strchr │ │ │ └── strchr.md │ │ │ ├── strcmp │ │ │ └── strcmp.md │ │ │ ├── strcpy │ │ │ └── strcpy.md │ │ │ ├── strlen │ │ │ └── strlen.md │ │ │ └── strtok │ │ │ └── strtok.md │ │ ├── structures │ │ └── structures.md │ │ ├── user-input │ │ └── user-input.md │ │ └── variables │ │ └── variables.md ├── cloud-computing │ ├── cloud-computing.md │ └── concepts │ │ ├── aws-management-console │ │ └── aws-management-console.md │ │ ├── cloud-services │ │ └── cloud-services.md │ │ ├── faas │ │ └── faas.md │ │ ├── iaas │ │ └── iaas.md │ │ ├── paas │ │ └── paas.md │ │ ├── root-user │ │ └── root-user.md │ │ ├── saas │ │ └── saas.md │ │ ├── shared-responsibility-model │ │ └── shared-responsibility-model.md │ │ └── types-of-cloud │ │ └── types-of-cloud.md ├── command-line │ ├── command-line.md │ └── concepts │ │ ├── bash │ │ └── bash.md │ │ ├── environment-variables │ │ └── environment-variables.md │ │ ├── terminal │ │ └── terminal.md │ │ └── vim │ │ └── vim.md ├── cpp │ ├── concepts │ │ ├── arrays │ │ │ └── arrays.md │ │ ├── bitwise-operators │ │ │ └── bitwise-operators.md │ │ ├── classes │ │ │ └── classes.md │ │ ├── comments │ │ │ └── comments.md │ │ ├── conditionals │ │ │ └── conditionals.md │ │ ├── constructors │ │ │ └── constructors.md │ │ ├── data-types │ │ │ └── data-types.md │ │ ├── encapsulation │ │ │ └── encapsulation.md │ │ ├── enum │ │ │ └── enum.md │ │ ├── errors │ │ │ └── errors.md │ │ ├── exceptions │ │ │ └── exceptions.md │ │ ├── files │ │ │ └── files.md │ │ ├── functions │ │ │ └── functions.md │ │ ├── inheritance │ │ │ └── inheritance.md │ │ ├── loops │ │ │ └── loops.md │ │ ├── macros │ │ │ └── macros.md │ │ ├── maps │ │ │ ├── maps.md │ │ │ └── terms │ │ │ │ ├── clear │ │ │ │ └── clear.md │ │ │ │ ├── erase │ │ │ │ └── erase.md │ │ │ │ └── insert │ │ │ │ └── insert.md │ │ ├── math-functions │ │ │ ├── math-functions.md │ │ │ └── terms │ │ │ │ ├── abs │ │ │ │ └── abs.md │ │ │ │ ├── acos │ │ │ │ └── acos.md │ │ │ │ ├── acosh │ │ │ │ └── acosh.md │ │ │ │ ├── asin │ │ │ │ └── asin.md │ │ │ │ ├── asinh │ │ │ │ └── asinh.md │ │ │ │ ├── atan │ │ │ │ └── atan.md │ │ │ │ ├── atan2 │ │ │ │ └── atan2.md │ │ │ │ ├── atanh │ │ │ │ └── atanh.md │ │ │ │ ├── cbrt │ │ │ │ └── cbrt.md │ │ │ │ ├── ceil │ │ │ │ └── ceil.md │ │ │ │ ├── cos │ │ │ │ └── cos.md │ │ │ │ ├── cosh │ │ │ │ └── cosh.md │ │ │ │ ├── exp │ │ │ │ └── exp.md │ │ │ │ ├── exp2 │ │ │ │ └── exp2.md │ │ │ │ ├── expm1 │ │ │ │ └── expm1.md │ │ │ │ ├── fabs │ │ │ │ └── fabs.md │ │ │ │ ├── fdim │ │ │ │ └── fdim.md │ │ │ │ ├── floor │ │ │ │ └── floor.md │ │ │ │ ├── fmax │ │ │ │ └── fmax.md │ │ │ │ ├── fmin │ │ │ │ └── fmin.md │ │ │ │ ├── fmod │ │ │ │ └── fmod.md │ │ │ │ ├── hypot │ │ │ │ └── hypot.md │ │ │ │ ├── isfinite │ │ │ │ └── isfinite.md │ │ │ │ ├── isnan │ │ │ │ └── isnan.md │ │ │ │ ├── log │ │ │ │ └── log.md │ │ │ │ ├── log10 │ │ │ │ └── log10.md │ │ │ │ ├── log2 │ │ │ │ └── log2.md │ │ │ │ ├── modf │ │ │ │ └── modf.md │ │ │ │ ├── nan │ │ │ │ └── nan.md │ │ │ │ ├── nearbyint │ │ │ │ └── nearbyint.md │ │ │ │ ├── pow │ │ │ │ └── pow.md │ │ │ │ ├── remainder │ │ │ │ └── remainder.md │ │ │ │ ├── remquo │ │ │ │ └── remquo.md │ │ │ │ ├── rint │ │ │ │ └── rint.md │ │ │ │ ├── round │ │ │ │ └── round.md │ │ │ │ ├── signbit │ │ │ │ └── signbit.md │ │ │ │ ├── sin │ │ │ │ └── sin.md │ │ │ │ ├── sinh │ │ │ │ └── sinh.md │ │ │ │ ├── sqrt │ │ │ │ └── sqrt.md │ │ │ │ ├── tan │ │ │ │ └── tan.md │ │ │ │ ├── tanh │ │ │ │ └── tanh.md │ │ │ │ └── trunc │ │ │ │ └── trunc.md │ │ ├── methods │ │ │ └── methods.md │ │ ├── objects │ │ │ └── objects.md │ │ ├── operators │ │ │ └── operators.md │ │ ├── pointers │ │ │ └── pointers.md │ │ ├── polymorphism │ │ │ └── polymorphism.md │ │ ├── queues │ │ │ ├── queues.md │ │ │ └── terms │ │ │ │ ├── empty │ │ │ │ └── empty.md │ │ │ │ ├── front │ │ │ │ └── front.md │ │ │ │ ├── pop │ │ │ │ └── pop.md │ │ │ │ ├── push │ │ │ │ └── push.md │ │ │ │ └── size │ │ │ │ └── size.md │ │ ├── random │ │ │ └── random.md │ │ ├── references │ │ │ └── references.md │ │ ├── sets │ │ │ ├── sets.md │ │ │ └── terms │ │ │ │ ├── clear │ │ │ │ └── clear.md │ │ │ │ ├── erase │ │ │ │ └── erase.md │ │ │ │ └── insert │ │ │ │ └── insert.md │ │ ├── smart-pointers │ │ │ └── smart-pointers.md │ │ ├── stacks │ │ │ ├── stacks.md │ │ │ └── terms │ │ │ │ ├── empty │ │ │ │ └── empty.md │ │ │ │ ├── pop │ │ │ │ └── pop.md │ │ │ │ ├── push │ │ │ │ └── push.md │ │ │ │ ├── size │ │ │ │ └── size.md │ │ │ │ └── top │ │ │ │ └── top.md │ │ ├── strings │ │ │ ├── strings.md │ │ │ └── terms │ │ │ │ ├── find │ │ │ │ └── find.md │ │ │ │ ├── length │ │ │ │ └── length.md │ │ │ │ ├── replace │ │ │ │ └── replace.md │ │ │ │ ├── size │ │ │ │ └── size.md │ │ │ │ ├── strcmp │ │ │ │ └── strcmp.md │ │ │ │ ├── strcpy │ │ │ │ └── strcpy.md │ │ │ │ ├── strtok │ │ │ │ └── strtok.md │ │ │ │ └── substr │ │ │ │ └── substr.md │ │ ├── structure │ │ │ └── structure.md │ │ ├── switch │ │ │ └── switch.md │ │ ├── templates │ │ │ └── templates.md │ │ ├── user-input │ │ │ ├── terms │ │ │ │ └── getline │ │ │ │ │ └── getline.md │ │ │ └── user-input.md │ │ ├── variables │ │ │ └── variables.md │ │ └── vectors │ │ │ └── vectors.md │ └── cpp.md ├── css │ ├── concepts │ │ ├── anatomy │ │ │ └── anatomy.md │ │ ├── animations │ │ │ ├── animations.md │ │ │ └── terms │ │ │ │ ├── animation-delay │ │ │ │ └── animation-delay.md │ │ │ │ ├── animation-direction │ │ │ │ └── animation-direction.md │ │ │ │ ├── animation-duration │ │ │ │ └── animation-duration.md │ │ │ │ ├── animation-fill-mode │ │ │ │ └── animation-fill-mode.md │ │ │ │ ├── animation-iteration-count │ │ │ │ └── animation-iteration-count.md │ │ │ │ ├── animation-name │ │ │ │ └── animation-name.md │ │ │ │ ├── animation-play-state │ │ │ │ └── animation-play-state.md │ │ │ │ ├── animation-timing-function │ │ │ │ └── animation-timing-function.md │ │ │ │ ├── animation │ │ │ │ └── animation.md │ │ │ │ └── keyframes │ │ │ │ └── keyframes.md │ │ ├── background │ │ │ ├── background.md │ │ │ └── terms │ │ │ │ ├── background-attachment │ │ │ │ └── background-attachment.md │ │ │ │ ├── background-blend-mode │ │ │ │ └── background-blend-mode.md │ │ │ │ ├── background-clip │ │ │ │ └── background-clip.md │ │ │ │ ├── background-color │ │ │ │ └── background-color.md │ │ │ │ ├── background-image │ │ │ │ └── background-image.md │ │ │ │ ├── background-origin │ │ │ │ └── background-origin.md │ │ │ │ ├── background-position │ │ │ │ └── background-position.md │ │ │ │ ├── background-repeat │ │ │ │ └── background-repeat.md │ │ │ │ ├── background-size │ │ │ │ └── background-size.md │ │ │ │ └── background │ │ │ │ └── background.md │ │ ├── borders │ │ │ ├── borders.md │ │ │ └── terms │ │ │ │ ├── border-bottom │ │ │ │ └── border-bottom.md │ │ │ │ ├── border-color │ │ │ │ └── border-color.md │ │ │ │ ├── border-left │ │ │ │ └── border-left.md │ │ │ │ ├── border-radius │ │ │ │ └── border-radius.md │ │ │ │ ├── border-right │ │ │ │ └── border-right.md │ │ │ │ ├── border-style │ │ │ │ └── border-style.md │ │ │ │ ├── border-top │ │ │ │ └── border-top.md │ │ │ │ ├── border-width │ │ │ │ └── border-width.md │ │ │ │ └── border │ │ │ │ └── border.md │ │ ├── box-model │ │ │ └── box-model.md │ │ ├── box-sizing │ │ │ └── box-sizing.md │ │ ├── colors │ │ │ ├── colors.md │ │ │ └── terms │ │ │ │ ├── color │ │ │ │ └── color.md │ │ │ │ ├── hsl │ │ │ │ └── hsl.md │ │ │ │ ├── hsla │ │ │ │ └── hsla.md │ │ │ │ ├── opacity │ │ │ │ └── opacity.md │ │ │ │ ├── rgb │ │ │ │ └── rgb.md │ │ │ │ └── rgba │ │ │ │ └── rgba.md │ │ ├── combinators │ │ │ └── combinators.md │ │ ├── comments │ │ │ └── comments.md │ │ ├── cursor │ │ │ └── cursor.md │ │ ├── display │ │ │ ├── display.md │ │ │ └── terms │ │ │ │ ├── clear │ │ │ │ └── clear.md │ │ │ │ └── float │ │ │ │ └── float.md │ │ ├── filter-functions │ │ │ ├── filter-functions.md │ │ │ └── terms │ │ │ │ ├── blur │ │ │ │ └── blur.md │ │ │ │ ├── brightness │ │ │ │ └── brightness.md │ │ │ │ ├── contrast │ │ │ │ └── contrast.md │ │ │ │ ├── drop-shadow │ │ │ │ └── drop-shadow.md │ │ │ │ ├── grayscale │ │ │ │ └── grayscale.md │ │ │ │ ├── hue-rotate │ │ │ │ └── hue-rotate.md │ │ │ │ ├── invert │ │ │ │ └── invert.md │ │ │ │ ├── opacity │ │ │ │ └── opacity.md │ │ │ │ ├── saturate │ │ │ │ └── saturate.md │ │ │ │ └── sepia │ │ │ │ └── sepia.md │ │ ├── flexbox │ │ │ ├── flexbox.md │ │ │ └── terms │ │ │ │ ├── flex-basis │ │ │ │ └── flex-basis.md │ │ │ │ ├── flex-direction │ │ │ │ └── flex-direction.md │ │ │ │ ├── flex-flow │ │ │ │ └── flex-flow.md │ │ │ │ ├── flex-grow │ │ │ │ └── flex-grow.md │ │ │ │ ├── flex-shrink │ │ │ │ └── flex-shrink.md │ │ │ │ ├── flex-wrap │ │ │ │ └── flex-wrap.md │ │ │ │ └── flex │ │ │ │ └── flex.md │ │ ├── floats │ │ │ └── floats.md │ │ ├── grids │ │ │ ├── grids.md │ │ │ └── terms │ │ │ │ ├── grid-area │ │ │ │ └── grid-area.md │ │ │ │ ├── grid-auto-columns │ │ │ │ └── grid-auto-columns.md │ │ │ │ ├── grid-auto-rows │ │ │ │ └── grid-auto-rows.md │ │ │ │ ├── grid-column-end │ │ │ │ └── grid-column-end.md │ │ │ │ ├── grid-column-gap │ │ │ │ └── grid-column-gap.md │ │ │ │ ├── grid-column-start │ │ │ │ └── grid-column-start.md │ │ │ │ ├── grid-column │ │ │ │ └── grid-column.md │ │ │ │ ├── grid-gap │ │ │ │ └── grid-gap.md │ │ │ │ ├── grid-row-end │ │ │ │ └── grid-row-end.md │ │ │ │ ├── grid-row-gap │ │ │ │ └── grid-row-gap.md │ │ │ │ ├── grid-row-start │ │ │ │ └── grid-row-start.md │ │ │ │ ├── grid-row │ │ │ │ └── grid-row.md │ │ │ │ ├── grid-template-areas │ │ │ │ └── grid-template-areas.md │ │ │ │ ├── grid-template-columns │ │ │ │ └── grid-template-columns.md │ │ │ │ ├── grid-template-rows │ │ │ │ └── grid-template-rows.md │ │ │ │ ├── grid-template │ │ │ │ └── grid-template.md │ │ │ │ └── grid │ │ │ │ └── grid.md │ │ ├── inheritance │ │ │ └── inheritance.md │ │ ├── margins │ │ │ ├── margins.md │ │ │ └── terms │ │ │ │ ├── margin-bottom │ │ │ │ └── margin-bottom.md │ │ │ │ ├── margin-left │ │ │ │ └── margin-left.md │ │ │ │ ├── margin-right │ │ │ │ └── margin-right.md │ │ │ │ ├── margin-top │ │ │ │ └── margin-top.md │ │ │ │ └── margin │ │ │ │ └── margin.md │ │ ├── math-functions │ │ │ ├── math-functions.md │ │ │ └── terms │ │ │ │ ├── calc │ │ │ │ └── calc.md │ │ │ │ ├── clamp │ │ │ │ └── clamp.md │ │ │ │ ├── max │ │ │ │ └── max.md │ │ │ │ └── min │ │ │ │ └── min.md │ │ ├── overflow │ │ │ ├── overflow.md │ │ │ └── terms │ │ │ │ ├── overflow-x │ │ │ │ └── overflow-x.md │ │ │ │ ├── overflow-y │ │ │ │ └── overflow-y.md │ │ │ │ └── overflow │ │ │ │ └── overflow.md │ │ ├── padding │ │ │ ├── padding.md │ │ │ └── terms │ │ │ │ ├── padding-bottom │ │ │ │ └── padding-bottom.md │ │ │ │ ├── padding-left │ │ │ │ └── padding-left.md │ │ │ │ ├── padding-right │ │ │ │ └── padding-right.md │ │ │ │ ├── padding-top │ │ │ │ └── padding-top.md │ │ │ │ └── padding │ │ │ │ └── padding.md │ │ ├── position │ │ │ ├── position.md │ │ │ └── terms │ │ │ │ ├── bottom │ │ │ │ └── bottom.md │ │ │ │ ├── left │ │ │ │ └── left.md │ │ │ │ ├── position │ │ │ │ └── position.md │ │ │ │ ├── right │ │ │ │ └── right.md │ │ │ │ ├── top │ │ │ │ └── top.md │ │ │ │ └── z-index │ │ │ │ └── z-index.md │ │ ├── pseudo-classes │ │ │ └── pseudo-classes.md │ │ ├── selectors │ │ │ └── selectors.md │ │ ├── sizing │ │ │ ├── sizing.md │ │ │ └── terms │ │ │ │ ├── height │ │ │ │ └── height.md │ │ │ │ ├── max-height │ │ │ │ └── max-height.md │ │ │ │ ├── max-width │ │ │ │ └── max-width.md │ │ │ │ ├── min-height │ │ │ │ └── min-height.md │ │ │ │ ├── min-width │ │ │ │ └── min-width.md │ │ │ │ └── width │ │ │ │ └── width.md │ │ ├── transform-functions │ │ │ ├── terms │ │ │ │ ├── rotate │ │ │ │ │ └── rotate.md │ │ │ │ ├── scale │ │ │ │ │ └── scale.md │ │ │ │ ├── skew │ │ │ │ │ └── skew.md │ │ │ │ ├── transform-origin │ │ │ │ │ └── transform-origin.md │ │ │ │ ├── transform-style │ │ │ │ │ └── transform-style.md │ │ │ │ ├── transform │ │ │ │ │ └── transform.md │ │ │ │ ├── translate │ │ │ │ │ └── translate.md │ │ │ │ ├── translateX │ │ │ │ │ └── translateX.md │ │ │ │ └── translateY │ │ │ │ │ └── translateY.md │ │ │ └── transform-functions.md │ │ ├── transition │ │ │ ├── terms │ │ │ │ ├── transition-delay │ │ │ │ │ └── transition-delay.md │ │ │ │ ├── transition-duration │ │ │ │ │ └── transition-duration.md │ │ │ │ ├── transition-property │ │ │ │ │ └── transition-property.md │ │ │ │ ├── transition-timing-function │ │ │ │ │ └── transition-timing-function.md │ │ │ │ └── transition │ │ │ │ │ └── transition.md │ │ │ └── transition.md │ │ ├── typography │ │ │ ├── terms │ │ │ │ ├── font-face │ │ │ │ │ └── font-face.md │ │ │ │ ├── font-family │ │ │ │ │ └── font-family.md │ │ │ │ ├── font-size │ │ │ │ │ └── font-size.md │ │ │ │ ├── font-style │ │ │ │ │ └── font-style.md │ │ │ │ ├── font-weight │ │ │ │ │ └── font-weight.md │ │ │ │ ├── font │ │ │ │ │ └── font.md │ │ │ │ ├── letter-spacing │ │ │ │ │ └── letter-spacing.md │ │ │ │ ├── line-height │ │ │ │ │ └── line-height.md │ │ │ │ ├── text-align │ │ │ │ │ └── text-align.md │ │ │ │ ├── text-decoration │ │ │ │ │ └── text-decoration.md │ │ │ │ ├── text-indent │ │ │ │ │ └── text-indent.md │ │ │ │ ├── text-justify │ │ │ │ │ └── text-justify.md │ │ │ │ ├── text-overflow │ │ │ │ │ └── text-overflow.md │ │ │ │ ├── text-shadow │ │ │ │ │ └── text-shadow.md │ │ │ │ ├── text-transform │ │ │ │ │ └── text-transform.md │ │ │ │ └── word-spacing │ │ │ │ │ └── word-spacing.md │ │ │ └── typography.md │ │ ├── units │ │ │ └── units.md │ │ ├── variables │ │ │ └── variables.md │ │ └── visibility │ │ │ └── visibility.md │ └── css.md ├── cybersecurity │ ├── concepts │ │ ├── cyber-attack │ │ │ └── cyber-attack.md │ │ ├── hacking │ │ │ └── hacking.md │ │ ├── multi-factor-authentication │ │ │ └── multi-factor-authentication.md │ │ └── nmap │ │ │ ├── nmap.md │ │ │ └── terms │ │ │ ├── aggressive-scan │ │ │ └── aggressive-scan.md │ │ │ ├── nmap-scan │ │ │ └── nmap-scan.md │ │ │ ├── nmap-scripting-engine │ │ │ └── nmap-scripting-engine.md │ │ │ ├── nmap-version-detection │ │ │ └── nmap-version-detection.md │ │ │ ├── no-ping-scan │ │ │ └── no-ping-scan.md │ │ │ ├── no-port-scan │ │ │ └── no-port-scan.md │ │ │ ├── os-detection │ │ │ └── os-detection.md │ │ │ ├── ping-sweep │ │ │ └── ping-sweep.md │ │ │ ├── tcp-connect-scan │ │ │ └── tcp-connect-scan.md │ │ │ └── udp-scan │ │ │ └── udp-scan.md │ └── cybersecurity.md ├── docs-community │ ├── concepts │ │ ├── contributions │ │ │ ├── contributions.md │ │ │ └── terms │ │ │ │ ├── docs-repository │ │ │ │ └── docs-repository.md │ │ │ │ └── reviews │ │ │ │ └── reviews.md │ │ └── entries │ │ │ ├── entries.md │ │ │ └── terms │ │ │ ├── concept-entries │ │ │ └── concept-entries.md │ │ │ ├── term-entries │ │ │ └── term-entries.md │ │ │ └── topic-entries │ │ │ └── topic-entries.md │ └── docs-community.md ├── emojicode │ ├── concepts │ │ ├── comments │ │ │ └── comments.md │ │ ├── conditionals │ │ │ └── conditionals.md │ │ ├── data-types │ │ │ └── data-types.md │ │ ├── dictionaries │ │ │ └── dictionaries.md │ │ ├── for-in │ │ │ └── for-in.md │ │ ├── hello-world │ │ │ └── hello-world.md │ │ ├── interpolation │ │ │ └── interpolation.md │ │ ├── lists │ │ │ └── lists.md │ │ ├── operators │ │ │ └── operators.md │ │ ├── repeat-while │ │ │ └── repeat-while.md │ │ └── strings │ │ │ └── strings.md │ └── emojicode.md ├── general │ ├── concepts │ │ ├── abstract-syntax-tree │ │ │ └── abstract-syntax-tree.md │ │ ├── algorithm │ │ │ └── algorithm.md │ │ ├── api │ │ │ └── api.md │ │ ├── argument │ │ │ └── argument.md │ │ ├── array │ │ │ └── array.md │ │ ├── artificial-intelligence │ │ │ └── artificial-intelligence.md │ │ ├── augmented-reality │ │ │ └── augmented-reality.md │ │ ├── back-end │ │ │ └── back-end.md │ │ ├── big-data │ │ │ └── big-data.md │ │ ├── big-o-notation │ │ │ └── big-o-notation.md │ │ ├── binary-search-tree │ │ │ ├── binary-search-tree.md │ │ │ └── terms │ │ │ │ ├── inorder-traversal │ │ │ │ └── inorder-traversal.md │ │ │ │ ├── postorder-traversal │ │ │ │ └── postorder-traversal.md │ │ │ │ └── preorder-traversal │ │ │ │ └── preorder-traversal.md │ │ ├── binary │ │ │ └── binary.md │ │ ├── bitwise-operator │ │ │ └── bitwise-operator.md │ │ ├── boolean │ │ │ └── boolean.md │ │ ├── bot │ │ │ └── bot.md │ │ ├── cache │ │ │ └── cache.md │ │ ├── cdn │ │ │ └── cdn.md │ │ ├── class │ │ │ └── class.md │ │ ├── cms │ │ │ └── cms.md │ │ ├── code-editor │ │ │ └── code-editor.md │ │ ├── comment │ │ │ └── comment.md │ │ ├── cors │ │ │ ├── cors.md │ │ │ └── terms │ │ │ │ └── access-control-allow-origin │ │ │ │ └── access-control-allow-origin.md │ │ ├── cpu │ │ │ └── cpu.md │ │ ├── creational-design-patterns │ │ │ ├── creational-design-patterns.md │ │ │ └── terms │ │ │ │ ├── abstract-factory-pattern │ │ │ │ └── abstract-factory-pattern.md │ │ │ │ ├── builder-pattern │ │ │ │ └── builder-pattern.md │ │ │ │ ├── factory-pattern │ │ │ │ └── factory-pattern.md │ │ │ │ ├── prototype-pattern │ │ │ │ └── prototype-pattern.md │ │ │ │ └── singleton-pattern │ │ │ │ └── singleton-pattern.md │ │ ├── cryptocurrency │ │ │ └── cryptocurrency.md │ │ ├── csv │ │ │ └── csv.md │ │ ├── data-science │ │ │ └── data-science.md │ │ ├── data-types │ │ │ └── data-types.md │ │ ├── database │ │ │ ├── database.md │ │ │ └── terms │ │ │ │ ├── acid-properties │ │ │ │ └── acid-properties.md │ │ │ │ ├── index │ │ │ │ └── index.md │ │ │ │ └── transaction │ │ │ │ └── transaction.md │ │ ├── dictionary │ │ │ └── dictionary.md │ │ ├── dns │ │ │ └── dns.md │ │ ├── endianness │ │ │ └── endianness.md │ │ ├── error │ │ │ └── error.md │ │ ├── file-formats │ │ │ └── file-formats.md │ │ ├── file-paths │ │ │ └── file-paths.md │ │ ├── file-system-structure │ │ │ └── file-system-structure.md │ │ ├── firebase │ │ │ └── firebase.md │ │ ├── framework │ │ │ └── framework.md │ │ ├── front-end │ │ │ └── front-end.md │ │ ├── full-stack │ │ │ └── full-stack.md │ │ ├── function │ │ │ └── function.md │ │ ├── geolocation │ │ │ └── geolocation.md │ │ ├── github │ │ │ └── github.md │ │ ├── hash-table │ │ │ └── hash-table.md │ │ ├── historical-technical-figures │ │ │ ├── historical-technical-figures.md │ │ │ └── terms │ │ │ │ ├── aaron-swartz │ │ │ │ └── aaron-swartz.md │ │ │ │ ├── ada-lovelace │ │ │ │ └── ada-lovelace.md │ │ │ │ ├── alan-turing │ │ │ │ └── alan-turing.md │ │ │ │ ├── bjarne-stroustrup │ │ │ │ └── bjarne-stroustrup.md │ │ │ │ ├── dennis-ritchie │ │ │ │ └── dennis-ritchie.md │ │ │ │ ├── gordon-moore │ │ │ │ └── gordon-moore.md │ │ │ │ ├── grace-hopper │ │ │ │ └── grace-hopper.md │ │ │ │ ├── john-carmack │ │ │ │ └── john-carmack.md │ │ │ │ ├── ken-thompson │ │ │ │ └── ken-thompson.md │ │ │ │ ├── linus-torvalds │ │ │ │ └── linus-torvalds.md │ │ │ │ ├── tim-berners-lee │ │ │ │ └── tim-berners-lee.md │ │ │ │ └── yukihiro-matsumoto │ │ │ │ └── yukihiro-matsumoto.md │ │ ├── http │ │ │ └── http.md │ │ ├── ide │ │ │ └── ide.md │ │ ├── iot │ │ │ └── iot.md │ │ ├── jit-compilation │ │ │ └── jit-compilation.md │ │ ├── json │ │ │ └── json.md │ │ ├── jsp │ │ │ └── jsp.md │ │ ├── jupyter-notebook │ │ │ └── jupyter-notebook.md │ │ ├── machine-code │ │ │ └── machine-code.md │ │ ├── machine-learning │ │ │ └── machine-learning.md │ │ ├── memoization │ │ │ └── memoization.md │ │ ├── method │ │ │ └── method.md │ │ ├── middleware │ │ │ └── middleware.md │ │ ├── modulo │ │ │ └── modulo.md │ │ ├── nft │ │ │ └── nft.md │ │ ├── number │ │ │ └── number.md │ │ ├── object │ │ │ └── object.md │ │ ├── one-hot-encoding │ │ │ └── one-hot-encoding.md │ │ ├── parameter │ │ │ └── parameter.md │ │ ├── processor │ │ │ └── processor.md │ │ ├── programming-optimization │ │ │ └── programming-optimization.md │ │ ├── programming-paradigms │ │ │ ├── programming-paradigms.md │ │ │ └── terms │ │ │ │ ├── encapsulation │ │ │ │ └── encapsulation.md │ │ │ │ ├── functional-programming │ │ │ │ └── functional-programming.md │ │ │ │ ├── inheritance │ │ │ │ └── inheritance.md │ │ │ │ ├── object-oriented-programming │ │ │ │ └── object-oriented-programming.md │ │ │ │ └── polymorphism │ │ │ │ └── polymorphism.md │ │ ├── progressive-web-application │ │ │ └── progressive-web-application.md │ │ ├── protocol │ │ │ └── protocol.md │ │ ├── proxy-server │ │ │ └── proxy-server.md │ │ ├── pseudocode │ │ │ └── pseudocode.md │ │ ├── ram │ │ │ └── ram.md │ │ ├── regular-expressions │ │ │ └── regular-expressions.md │ │ ├── relational-database │ │ │ └── relational-database.md │ │ ├── routing │ │ │ └── routing.md │ │ ├── runtime │ │ │ └── runtime.md │ │ ├── serialization │ │ │ └── serialization.md │ │ ├── server-side-rendering │ │ │ └── server-side-rendering.md │ │ ├── server │ │ │ └── server.md │ │ ├── socket-io │ │ │ └── socket-io.md │ │ ├── software-testing │ │ │ └── software-testing.md │ │ ├── ssl │ │ │ └── ssl.md │ │ ├── static-site-generators │ │ │ └── static-site-generators.md │ │ ├── string │ │ │ └── string.md │ │ ├── subroutine │ │ │ └── subroutine.md │ │ ├── svg │ │ │ └── svg.md │ │ ├── tech-stack │ │ │ └── tech-stack.md │ │ ├── tuple │ │ │ └── tuple.md │ │ ├── unicode │ │ │ └── unicode.md │ │ ├── unit-testing │ │ │ └── unit-testing.md │ │ ├── unix │ │ │ └── unix.md │ │ ├── uri │ │ │ └── uri.md │ │ ├── url │ │ │ └── url.md │ │ ├── urn │ │ │ └── urn.md │ │ ├── user-interface-design │ │ │ └── user-interface-design.md │ │ ├── uuid │ │ │ └── uuid.md │ │ ├── virtual-machines │ │ │ └── virtual-machines.md │ │ ├── virtual-reality │ │ │ └── virtual-reality.md │ │ ├── void │ │ │ └── void.md │ │ ├── webrtc │ │ │ └── webrtc.md │ │ ├── whitespace │ │ │ └── whitespace.md │ │ ├── wsdl │ │ │ └── wsdl.md │ │ └── xml │ │ │ ├── terms │ │ │ └── xpath │ │ │ │ └── xpath.md │ │ │ └── xml.md │ └── general.md ├── git │ ├── concepts │ │ ├── add │ │ │ └── add.md │ │ ├── branch │ │ │ └── branch.md │ │ ├── clone │ │ │ └── clone.md │ │ ├── commit │ │ │ └── commit.md │ │ ├── fetch │ │ │ └── fetch.md │ │ ├── init │ │ │ └── init.md │ │ ├── merge │ │ │ └── merge.md │ │ ├── pull-requests │ │ │ └── pull-requests.md │ │ ├── pull │ │ │ └── pull.md │ │ ├── push │ │ │ └── push.md │ │ ├── reset │ │ │ └── reset.md │ │ ├── status │ │ │ └── status.md │ │ └── tag │ │ │ └── tag.md │ └── git.md ├── go │ ├── concepts │ │ ├── arrays │ │ │ └── arrays.md │ │ ├── comments │ │ │ └── comments.md │ │ ├── conditionals │ │ │ └── conditionals.md │ │ ├── data-types │ │ │ └── data-types.md │ │ ├── goroutines │ │ │ └── goroutines.md │ │ ├── loops │ │ │ └── loops.md │ │ ├── map │ │ │ └── map.md │ │ ├── operators │ │ │ └── operators.md │ │ ├── slices │ │ │ └── slices.md │ │ ├── switch │ │ │ └── switch.md │ │ └── variables │ │ │ └── variables.md │ └── go.md ├── html │ ├── concepts │ │ ├── attributes │ │ │ └── attributes.md │ │ ├── classes │ │ │ └── classes.md │ │ ├── comments │ │ │ └── comments.md │ │ ├── elements │ │ │ ├── elements.md │ │ │ └── terms │ │ │ │ ├── a │ │ │ │ └── a.md │ │ │ │ ├── abbr │ │ │ │ └── abbr.md │ │ │ │ ├── acronym │ │ │ │ └── acronym.md │ │ │ │ ├── applet │ │ │ │ └── applet.md │ │ │ │ ├── audio │ │ │ │ └── audio.md │ │ │ │ ├── b │ │ │ │ └── b.md │ │ │ │ ├── basefont │ │ │ │ └── basefont.md │ │ │ │ ├── blink │ │ │ │ └── blink.md │ │ │ │ ├── blockquote │ │ │ │ └── blockquote.md │ │ │ │ ├── br │ │ │ │ └── br.md │ │ │ │ ├── button │ │ │ │ └── button.md │ │ │ │ ├── canvas │ │ │ │ └── canvas.md │ │ │ │ ├── center │ │ │ │ └── center.md │ │ │ │ ├── cite │ │ │ │ └── cite.md │ │ │ │ ├── code │ │ │ │ └── code.md │ │ │ │ ├── datalist │ │ │ │ └── datalist.md │ │ │ │ ├── dd │ │ │ │ └── dd.md │ │ │ │ ├── del │ │ │ │ └── del.md │ │ │ │ ├── div │ │ │ │ └── div.md │ │ │ │ ├── dl │ │ │ │ └── dl.md │ │ │ │ ├── dt │ │ │ │ └── dt.md │ │ │ │ ├── em │ │ │ │ └── em.md │ │ │ │ ├── embed │ │ │ │ └── embed.md │ │ │ │ ├── font │ │ │ │ └── font.md │ │ │ │ ├── form │ │ │ │ └── form.md │ │ │ │ ├── h1-h6 │ │ │ │ └── h1-h6.md │ │ │ │ ├── head │ │ │ │ └── head.md │ │ │ │ ├── hr │ │ │ │ └── hr.md │ │ │ │ ├── html │ │ │ │ └── html.md │ │ │ │ ├── i │ │ │ │ └── i.md │ │ │ │ ├── iframe │ │ │ │ └── iframe.md │ │ │ │ ├── img │ │ │ │ └── img.md │ │ │ │ ├── input │ │ │ │ └── input.md │ │ │ │ ├── kbd │ │ │ │ └── kbd.md │ │ │ │ ├── label │ │ │ │ └── label.md │ │ │ │ ├── li │ │ │ │ └── li.md │ │ │ │ ├── link │ │ │ │ └── link.md │ │ │ │ ├── menu │ │ │ │ └── menu.md │ │ │ │ ├── meta │ │ │ │ └── meta.md │ │ │ │ ├── noscript │ │ │ │ └── noscript.md │ │ │ │ ├── object │ │ │ │ └── object.md │ │ │ │ ├── ol │ │ │ │ └── ol.md │ │ │ │ ├── option │ │ │ │ └── option.md │ │ │ │ ├── output │ │ │ │ └── output.md │ │ │ │ ├── param │ │ │ │ └── param.md │ │ │ │ ├── picture │ │ │ │ └── picture.md │ │ │ │ ├── q │ │ │ │ └── q.md │ │ │ │ ├── s │ │ │ │ └── s.md │ │ │ │ ├── script │ │ │ │ └── script.md │ │ │ │ ├── select │ │ │ │ └── select.md │ │ │ │ ├── source │ │ │ │ └── source.md │ │ │ │ ├── span │ │ │ │ └── span.md │ │ │ │ ├── strong │ │ │ │ └── strong.md │ │ │ │ ├── style │ │ │ │ └── style.md │ │ │ │ ├── table │ │ │ │ └── table.md │ │ │ │ ├── textarea │ │ │ │ └── textarea.md │ │ │ │ ├── u │ │ │ │ └── u.md │ │ │ │ ├── ul │ │ │ │ └── ul.md │ │ │ │ └── video │ │ │ │ └── video.md │ │ ├── entities │ │ │ └── entities.md │ │ ├── favicon │ │ │ └── favicon.md │ │ ├── file-paths │ │ │ └── file-paths.md │ │ ├── forms │ │ │ └── forms.md │ │ ├── headings │ │ │ └── headings.md │ │ ├── iframes │ │ │ └── iframes.md │ │ ├── images │ │ │ └── images.md │ │ ├── links │ │ │ └── links.md │ │ ├── lists │ │ │ └── lists.md │ │ ├── paragraphs │ │ │ └── paragraphs.md │ │ ├── semantic-html │ │ │ ├── semantic-html.md │ │ │ └── terms │ │ │ │ ├── article │ │ │ │ └── article.md │ │ │ │ ├── aside │ │ │ │ └── aside.md │ │ │ │ ├── details │ │ │ │ └── details.md │ │ │ │ ├── figcaption │ │ │ │ └── figcaption.md │ │ │ │ ├── figure │ │ │ │ └── figure.md │ │ │ │ ├── footer │ │ │ │ └── footer.md │ │ │ │ ├── header │ │ │ │ └── header.md │ │ │ │ ├── main │ │ │ │ └── main.md │ │ │ │ ├── mark │ │ │ │ └── mark.md │ │ │ │ ├── nav │ │ │ │ └── nav.md │ │ │ │ ├── section │ │ │ │ └── section.md │ │ │ │ ├── summary │ │ │ │ └── summary.md │ │ │ │ └── time │ │ │ │ └── time.md │ │ ├── tables │ │ │ ├── tables.md │ │ │ └── terms │ │ │ │ ├── colspan │ │ │ │ └── colspan.md │ │ │ │ ├── rowspan │ │ │ │ └── rowspan.md │ │ │ │ ├── table │ │ │ │ └── table.md │ │ │ │ ├── tbody │ │ │ │ └── tbody.md │ │ │ │ ├── td │ │ │ │ └── td.md │ │ │ │ ├── tfoot │ │ │ │ └── tfoot.md │ │ │ │ ├── th │ │ │ │ └── th.md │ │ │ │ ├── thead │ │ │ │ └── thead.md │ │ │ │ └── tr │ │ │ │ └── tr.md │ │ ├── tags │ │ │ └── tags.md │ │ ├── text-formatting │ │ │ └── text-formatting.md │ │ └── videos │ │ │ └── videos.md │ └── html.md ├── java │ ├── concepts │ │ ├── array-list │ │ │ ├── array-list.md │ │ │ └── terms │ │ │ │ ├── add │ │ │ │ └── add.md │ │ │ │ ├── addAll │ │ │ │ └── addAll.md │ │ │ │ ├── get │ │ │ │ └── get.md │ │ │ │ ├── remove │ │ │ │ └── remove.md │ │ │ │ ├── set │ │ │ │ └── set.md │ │ │ │ └── size │ │ │ │ └── size.md │ │ ├── arrays │ │ │ ├── arrays.md │ │ │ └── terms │ │ │ │ ├── fill │ │ │ │ └── fill.md │ │ │ │ └── sort │ │ │ │ └── sort.md │ │ ├── classes │ │ │ └── classes.md │ │ ├── collection │ │ │ └── collection.md │ │ ├── collections │ │ │ ├── collections.md │ │ │ └── terms │ │ │ │ ├── max │ │ │ │ └── max.md │ │ │ │ ├── min │ │ │ │ └── min.md │ │ │ │ ├── reverse │ │ │ │ └── reverse.md │ │ │ │ ├── shuffle │ │ │ │ └── shuffle.md │ │ │ │ ├── sort │ │ │ │ └── sort.md │ │ │ │ └── swap │ │ │ │ └── swap.md │ │ ├── comments │ │ │ └── comments.md │ │ ├── comparable │ │ │ └── comparable.md │ │ ├── comparator │ │ │ └── comparator.md │ │ ├── compiler │ │ │ └── compiler.md │ │ ├── conditionals │ │ │ └── conditionals.md │ │ ├── constructors │ │ │ └── constructors.md │ │ ├── data-types │ │ │ └── data-types.md │ │ ├── enums │ │ │ └── enums.md │ │ ├── errors │ │ │ ├── errors.md │ │ │ └── terms │ │ │ │ ├── arrayindexoutofboundsexception │ │ │ │ └── arrayindexoutofboundsexception.md │ │ │ │ ├── classformaterror │ │ │ │ └── classformaterror.md │ │ │ │ ├── filenotfoundexception │ │ │ │ └── filenotfoundexception.md │ │ │ │ ├── incompatibleclasschangeerror │ │ │ │ └── incompatibleclasschangeerror.md │ │ │ │ ├── invalidclassexception │ │ │ │ └── invalidclassexception.md │ │ │ │ ├── noclassdeffounderror │ │ │ │ └── noclassdeffounderror.md │ │ │ │ ├── nullpointerexception │ │ │ │ └── nullpointerexception.md │ │ │ │ ├── numberformatexception │ │ │ │ └── numberformatexception.md │ │ │ │ └── stringindexoutofboundsexception │ │ │ │ └── stringindexoutofboundsexception.md │ │ ├── files │ │ │ └── files.md │ │ ├── generics │ │ │ └── generics.md │ │ ├── hashmap │ │ │ └── hashmap.md │ │ ├── hashset │ │ │ └── hashset.md │ │ ├── inheritance │ │ │ └── inheritance.md │ │ ├── interfaces │ │ │ └── interfaces.md │ │ ├── iterator │ │ │ ├── iterator.md │ │ │ └── terms │ │ │ │ ├── add │ │ │ │ └── add.md │ │ │ │ ├── hasNext │ │ │ │ └── hasNext.md │ │ │ │ ├── hasPrevious │ │ │ │ └── hasPrevious.md │ │ │ │ ├── next │ │ │ │ └── next.md │ │ │ │ ├── nextIndex │ │ │ │ └── nextIndex.md │ │ │ │ ├── previous │ │ │ │ └── previous.md │ │ │ │ ├── previousIndex │ │ │ │ └── previousIndex.md │ │ │ │ ├── remove │ │ │ │ └── remove.md │ │ │ │ └── set │ │ │ │ └── set.md │ │ ├── javabeans │ │ │ └── javabeans.md │ │ ├── loops │ │ │ └── loops.md │ │ ├── map │ │ │ └── map.md │ │ ├── math-methods │ │ │ ├── math-methods.md │ │ │ └── terms │ │ │ │ ├── abs │ │ │ │ └── abs.md │ │ │ │ ├── acos │ │ │ │ └── acos.md │ │ │ │ ├── addExact │ │ │ │ └── addExact.md │ │ │ │ ├── asin │ │ │ │ └── asin.md │ │ │ │ ├── atan │ │ │ │ └── atan.md │ │ │ │ ├── atan2 │ │ │ │ └── atan2.md │ │ │ │ ├── cbrt │ │ │ │ └── cbrt.md │ │ │ │ ├── ceil │ │ │ │ └── ceil.md │ │ │ │ ├── decrementExact │ │ │ │ └── decrementExact.md │ │ │ │ ├── floor │ │ │ │ └── floor.md │ │ │ │ ├── hypot │ │ │ │ └── hypot.md │ │ │ │ ├── incrementExact │ │ │ │ └── incrementExact.md │ │ │ │ ├── log │ │ │ │ └── log.md │ │ │ │ ├── log10 │ │ │ │ └── log10.md │ │ │ │ ├── log1p │ │ │ │ └── log1p.md │ │ │ │ ├── max │ │ │ │ └── max.md │ │ │ │ ├── min │ │ │ │ └── min.md │ │ │ │ ├── multiplyExact │ │ │ │ └── multiplyExact.md │ │ │ │ ├── negateExact │ │ │ │ └── negateExact.md │ │ │ │ ├── nextAfter │ │ │ │ └── nextAfter.md │ │ │ │ ├── nextDown │ │ │ │ └── nextDown.md │ │ │ │ ├── pow │ │ │ │ └── pow.md │ │ │ │ ├── random │ │ │ │ └── random.md │ │ │ │ ├── rint │ │ │ │ └── rint.md │ │ │ │ ├── round │ │ │ │ └── round.md │ │ │ │ ├── scalb │ │ │ │ └── scalb.md │ │ │ │ ├── signum │ │ │ │ └── signum.md │ │ │ │ ├── sin │ │ │ │ └── sin.md │ │ │ │ ├── sinh │ │ │ │ └── sinh.md │ │ │ │ ├── sqrt │ │ │ │ └── sqrt.md │ │ │ │ ├── tan │ │ │ │ └── tan.md │ │ │ │ ├── tanh │ │ │ │ └── tanh.md │ │ │ │ ├── toDegrees │ │ │ │ └── toDegrees.md │ │ │ │ ├── toIntExact │ │ │ │ └── toIntExact.md │ │ │ │ ├── toRadians │ │ │ │ └── toRadians.md │ │ │ │ └── ulp │ │ │ │ └── ulp.md │ │ ├── methods │ │ │ └── methods.md │ │ ├── operators │ │ │ └── operators.md │ │ ├── output │ │ │ ├── output.md │ │ │ └── terms │ │ │ │ ├── print │ │ │ │ └── print.md │ │ │ │ ├── printf │ │ │ │ └── printf.md │ │ │ │ └── println │ │ │ │ └── println.md │ │ ├── pojo │ │ │ └── pojo.md │ │ ├── priorityqueue │ │ │ └── priorityqueue.md │ │ ├── queue │ │ │ └── queue.md │ │ ├── random │ │ │ └── random.md │ │ ├── regular-expressions │ │ │ └── regular-expressions.md │ │ ├── set │ │ │ └── set.md │ │ ├── stack │ │ │ └── stack.md │ │ ├── stringbuilder │ │ │ ├── stringbuilder.md │ │ │ └── terms │ │ │ │ ├── append │ │ │ │ └── append.md │ │ │ │ ├── capacity │ │ │ │ └── capacity.md │ │ │ │ ├── delete │ │ │ │ └── delete.md │ │ │ │ ├── deleteCharAt │ │ │ │ └── deleteCharAt.md │ │ │ │ ├── indexOf │ │ │ │ └── indexOf.md │ │ │ │ ├── insert │ │ │ │ └── insert.md │ │ │ │ ├── lastIndexOf │ │ │ │ └── lastIndexOf.md │ │ │ │ ├── length │ │ │ │ └── length.md │ │ │ │ ├── replace │ │ │ │ └── replace.md │ │ │ │ ├── reverse │ │ │ │ └── reverse.md │ │ │ │ ├── substring │ │ │ │ └── substring.md │ │ │ │ └── toString │ │ ├── strings │ │ │ ├── strings.md │ │ │ └── terms │ │ │ │ ├── charAt │ │ │ │ └── charAt.md │ │ │ │ ├── codePointAt │ │ │ │ └── codePointAt.md │ │ │ │ ├── codePointBefore │ │ │ │ └── codePointBefore.md │ │ │ │ ├── codePointCount │ │ │ │ └── codePointCount.md │ │ │ │ ├── compareTo │ │ │ │ └── compareTo.md │ │ │ │ ├── compareToIgnoreCase │ │ │ │ └── compareToIgnoreCase.md │ │ │ │ ├── concat │ │ │ │ └── concat.md │ │ │ │ ├── contains │ │ │ │ └── contains.md │ │ │ │ ├── contentEquals │ │ │ │ └── contentEquals.md │ │ │ │ ├── copyValueOf │ │ │ │ └── copyValueOf.md │ │ │ │ ├── equals │ │ │ │ └── equals.md │ │ │ │ ├── format │ │ │ │ └── format.md │ │ │ │ ├── indexOf │ │ │ │ └── indexOf.md │ │ │ │ ├── length │ │ │ │ └── length.md │ │ │ │ ├── replace │ │ │ │ └── replace.md │ │ │ │ ├── split │ │ │ │ └── split.md │ │ │ │ └── valueOf │ │ ├── switch │ │ │ └── switch.md │ │ ├── threading │ │ │ └── threading.md │ │ ├── treemap │ │ │ └── treemap.md │ │ ├── type-conversion │ │ │ └── type-conversion.md │ │ ├── user-input │ │ │ └── user-input.md │ │ └── variables │ │ │ └── variables.md │ └── java.md ├── javascript │ ├── concepts │ │ ├── ajax │ │ │ └── ajax.md │ │ ├── arrays │ │ │ ├── arrays.md │ │ │ └── terms │ │ │ │ ├── concat │ │ │ │ └── concat.md │ │ │ │ ├── copyWithin │ │ │ │ └── copyWithin.md │ │ │ │ ├── filter │ │ │ │ └── filter.md │ │ │ │ ├── find │ │ │ │ └── find.md │ │ │ │ ├── findIndex │ │ │ │ └── findIndex.md │ │ │ │ ├── forEach │ │ │ │ └── forEach.md │ │ │ │ ├── includes │ │ │ │ └── includes.md │ │ │ │ ├── indexOf │ │ │ │ └── indexOf.md │ │ │ │ ├── isArray │ │ │ │ └── isArray.md │ │ │ │ ├── join │ │ │ │ └── join.md │ │ │ │ ├── lastIndexOf │ │ │ │ └── lastIndexOf.md │ │ │ │ ├── length │ │ │ │ └── length.md │ │ │ │ ├── map │ │ │ │ └── map.md │ │ │ │ ├── pop │ │ │ │ └── pop.md │ │ │ │ ├── push │ │ │ │ └── push.md │ │ │ │ ├── reduce │ │ │ │ └── reduce.md │ │ │ │ ├── reverse │ │ │ │ └── reverse.md │ │ │ │ ├── shift │ │ │ │ └── shift.md │ │ │ │ ├── slice │ │ │ │ └── slice.md │ │ │ │ ├── sort │ │ │ │ └── sort.md │ │ │ │ ├── splice │ │ │ │ └── splice.md │ │ │ │ ├── toString │ │ │ │ ├── unshift │ │ │ │ └── unshift.md │ │ │ │ └── valueOf │ │ ├── arrow-functions │ │ │ └── arrow-functions.md │ │ ├── bitwise-operators │ │ │ └── bitwise-operators.md │ │ ├── callbacks │ │ │ └── callbacks.md │ │ ├── closures │ │ │ └── closures.md │ │ ├── comments │ │ │ └── comments.md │ │ ├── conditionals │ │ │ └── conditionals.md │ │ ├── constructors │ │ │ └── constructors.md │ │ ├── data-types │ │ │ └── data-types.md │ │ ├── dates │ │ │ ├── dates.md │ │ │ └── terms │ │ │ │ ├── UTC │ │ │ │ └── UTC.md │ │ │ │ ├── getDate │ │ │ │ └── getDate.md │ │ │ │ ├── getDay │ │ │ │ └── getDay.md │ │ │ │ ├── getHours │ │ │ │ └── getHours.md │ │ │ │ ├── getMinutes │ │ │ │ └── getMinutes.md │ │ │ │ ├── getMonth │ │ │ │ └── getMonth.md │ │ │ │ ├── getSeconds │ │ │ │ └── getSeconds.md │ │ │ │ ├── now │ │ │ │ └── now.md │ │ │ │ ├── toISOString │ │ │ │ └── toISOString.md │ │ │ │ ├── toLocaleDateString │ │ │ │ └── toLocaleDateString.md │ │ │ │ ├── toString │ │ │ │ └── valueOf │ │ ├── enums │ │ │ └── enums.md │ │ ├── errors │ │ │ └── errors.md │ │ ├── events │ │ │ └── events.md │ │ ├── functions │ │ │ └── functions.md │ │ ├── hashtables │ │ │ └── hashtables.md │ │ ├── hoisting │ │ │ └── hoisting.md │ │ ├── iterators │ │ │ └── iterators.md │ │ ├── jquery │ │ │ ├── jquery.md │ │ │ └── terms │ │ │ │ ├── click │ │ │ │ └── click.md │ │ │ │ ├── dblclick │ │ │ │ └── dblclick.md │ │ │ │ ├── hide │ │ │ │ └── hide.md │ │ │ │ ├── html │ │ │ │ └── html.md │ │ │ │ ├── show │ │ │ │ └── show.md │ │ │ │ └── text │ │ │ │ └── text.md │ │ ├── json │ │ │ ├── json.md │ │ │ └── terms │ │ │ │ ├── parse │ │ │ │ └── parse.md │ │ │ │ └── stringify │ │ │ │ └── stringify.md │ │ ├── loops │ │ │ └── loops.md │ │ ├── map │ │ │ ├── map.md │ │ │ └── terms │ │ │ │ ├── delete │ │ │ │ └── delete.md │ │ │ │ ├── get │ │ │ │ └── get.md │ │ │ │ ├── has │ │ │ │ └── has.md │ │ │ │ ├── set │ │ │ │ └── set.md │ │ │ │ └── size │ │ │ │ └── size.md │ │ ├── memoization │ │ │ └── memoization.md │ │ ├── methods │ │ │ └── methods.md │ │ ├── modules │ │ │ └── modules.md │ │ ├── npm │ │ │ └── npm.md │ │ ├── number-methods │ │ │ ├── number-methods.md │ │ │ └── terms │ │ │ │ ├── isFinite │ │ │ │ └── isFinite.md │ │ │ │ ├── isInteger │ │ │ │ └── isInteger.md │ │ │ │ ├── isNaN │ │ │ │ └── isNaN.md │ │ │ │ ├── toExponential │ │ │ │ └── toExponential.md │ │ │ │ ├── toFixed │ │ │ │ └── toFixed.md │ │ │ │ ├── toLocaleString │ │ │ │ ├── toPrecision │ │ │ │ └── toPrecision.md │ │ │ │ └── toString │ │ ├── objects │ │ │ └── objects.md │ │ ├── operators │ │ │ └── operators.md │ │ ├── promise │ │ │ ├── promise.md │ │ │ └── terms │ │ │ │ ├── all │ │ │ │ └── all.md │ │ │ │ ├── allSettled │ │ │ │ └── allSettled.md │ │ │ │ ├── any │ │ │ │ └── any.md │ │ │ │ ├── catch │ │ │ │ └── catch.md │ │ │ │ ├── finally │ │ │ │ └── finally.md │ │ │ │ ├── race │ │ │ │ └── race.md │ │ │ │ ├── reject │ │ │ │ └── reject.md │ │ │ │ ├── resolve │ │ │ │ └── resolve.md │ │ │ │ └── then │ │ │ │ └── then.md │ │ ├── regexp │ │ │ └── regexp.md │ │ ├── requests │ │ │ └── requests.md │ │ ├── sets │ │ │ ├── sets.md │ │ │ └── terms │ │ │ │ ├── add │ │ │ │ └── add.md │ │ │ │ ├── clear │ │ │ │ └── clear.md │ │ │ │ ├── delete │ │ │ │ └── delete.md │ │ │ │ ├── has │ │ │ │ └── has.md │ │ │ │ └── size │ │ │ │ └── size.md │ │ ├── sort │ │ │ └── sort.md │ │ ├── strings │ │ │ ├── strings.md │ │ │ └── terms │ │ │ │ ├── charAt │ │ │ │ └── charAt.md │ │ │ │ ├── concat │ │ │ │ └── concat.md │ │ │ │ ├── includes │ │ │ │ └── includes.md │ │ │ │ ├── indexOf │ │ │ │ └── indexOf.md │ │ │ │ ├── length │ │ │ │ └── length.md │ │ │ │ ├── repeat │ │ │ │ └── repeat.md │ │ │ │ ├── replace │ │ │ │ └── replace.md │ │ │ │ ├── search │ │ │ │ └── search.md │ │ │ │ ├── slice │ │ │ │ └── slice.md │ │ │ │ ├── split │ │ │ │ └── split.md │ │ │ │ ├── startsWith │ │ │ │ └── startsWith.md │ │ │ │ ├── substring │ │ │ │ └── substring.md │ │ │ │ ├── toLowerCase │ │ │ │ └── toLowerCase.md │ │ │ │ ├── toString │ │ │ │ ├── toUpperCase │ │ │ │ └── toUpperCase.md │ │ │ │ ├── trim │ │ │ │ └── trim.md │ │ │ │ └── valueOf │ │ ├── substring │ │ │ └── substring.md │ │ ├── switch │ │ │ └── switch.md │ │ ├── this │ │ │ └── this.md │ │ ├── try-catch │ │ │ └── try-catch.md │ │ └── variables │ │ │ └── variables.md │ └── javascript.md ├── kotlin │ ├── concepts │ │ ├── arrays │ │ │ └── arrays.md │ │ ├── comments │ │ │ └── comments.md │ │ ├── data-types │ │ │ └── data-types.md │ │ ├── hashmap │ │ │ ├── hashmap.md │ │ │ └── terms │ │ │ │ ├── get │ │ │ │ └── get.md │ │ │ │ └── put │ │ │ │ └── put.md │ │ ├── loops │ │ │ └── loops.md │ │ ├── strings │ │ │ └── strings.md │ │ └── variables │ │ │ └── variables.md │ └── kotlin.md ├── markdown │ ├── concepts │ │ ├── blockquotes │ │ │ └── blockquotes.md │ │ ├── emphasis │ │ │ └── emphasis.md │ │ ├── headings │ │ │ └── headings.md │ │ ├── images │ │ │ └── images.md │ │ ├── links │ │ │ └── links.md │ │ ├── lists │ │ │ └── lists.md │ │ ├── paragraphs │ │ │ └── paragraphs.md │ │ └── tables │ │ │ └── tables.md │ └── markdown.md ├── matplotlib │ ├── concepts │ │ └── pyplot │ │ │ ├── pyplot.md │ │ │ └── terms │ │ │ └── legend │ │ │ └── legend.md │ └── matplotlib.md ├── numpy │ ├── concepts │ │ ├── built-in-functions │ │ │ ├── built-in-functions.md │ │ │ └── terms │ │ │ │ ├── append │ │ │ │ └── append.md │ │ │ │ ├── linspace │ │ │ │ └── linspace.md │ │ │ │ ├── log │ │ │ │ └── log.md │ │ │ │ ├── reshape │ │ │ │ └── reshape.md │ │ │ │ ├── sum │ │ │ │ └── sum.md │ │ │ │ └── transpose │ │ │ │ └── transpose.md │ │ └── ndarray │ │ │ ├── ndarray.md │ │ │ └── terms │ │ │ ├── reshape │ │ │ └── reshape.md │ │ │ └── transpose │ │ │ └── transpose.md │ └── numpy.md ├── open-source │ ├── concepts │ │ ├── angular │ │ │ └── angular.md │ │ ├── bootstrap │ │ │ └── bootstrap.md │ │ ├── express │ │ │ └── express.md │ │ ├── font-awesome │ │ │ ├── font-awesome.md │ │ │ └── terms │ │ │ │ ├── fa-Nx │ │ │ │ └── fa-Nx.md │ │ │ │ ├── fa-border │ │ │ │ └── fa-border.md │ │ │ │ ├── fa-flip │ │ │ │ └── fa-flip.md │ │ │ │ ├── fa-fw │ │ │ │ └── fa-fw.md │ │ │ │ ├── fa-li │ │ │ │ └── fa-li.md │ │ │ │ ├── fa-pull │ │ │ │ └── fa-pull.md │ │ │ │ ├── fa-pulse │ │ │ │ └── fa-pulse.md │ │ │ │ ├── fa-rotate │ │ │ │ └── fa-rotate.md │ │ │ │ ├── fa-spin │ │ │ │ └── fa-spin.md │ │ │ │ ├── fa-stack │ │ │ │ └── fa-stack.md │ │ │ │ └── fa-ul │ │ │ │ └── fa-ul.md │ │ ├── graphql │ │ │ └── graphql.md │ │ ├── linux-kernel │ │ │ └── linux-kernel.md │ │ ├── linux │ │ │ └── linux.md │ │ ├── next-js │ │ │ └── next-js.md │ │ ├── node-js │ │ │ └── node-js.md │ │ ├── open-source-software │ │ │ └── open-source-software.md │ │ └── webpack │ │ │ └── webpack.md │ └── open-source.md ├── pandas │ ├── concepts │ │ ├── built-in-functions │ │ │ ├── built-in-functions.md │ │ │ └── terms │ │ │ │ ├── read-csv │ │ │ │ └── read-csv.md │ │ │ │ └── read-excel │ │ │ │ └── read-excel.md │ │ ├── dataframe │ │ │ ├── dataframe.md │ │ │ └── terms │ │ │ │ ├── drop │ │ │ │ └── drop.md │ │ │ │ ├── dropna │ │ │ │ └── dropna.md │ │ │ │ ├── fillna │ │ │ │ └── fillna.md │ │ │ │ ├── groupby │ │ │ │ └── groupby.md │ │ │ │ ├── loc │ │ │ │ └── loc.md │ │ │ │ ├── replace │ │ │ │ └── replace.md │ │ │ │ └── shape │ │ │ │ └── shape.md │ │ └── groupby │ │ │ ├── groupby.md │ │ │ └── terms │ │ │ ├── count │ │ │ └── count.md │ │ │ ├── max │ │ │ └── max.md │ │ │ ├── mean │ │ │ └── mean.md │ │ │ ├── min │ │ │ └── min.md │ │ │ └── sum │ │ │ └── sum.md │ └── pandas.md ├── php │ ├── concepts │ │ ├── arrays │ │ │ └── arrays.md │ │ ├── classes │ │ │ └── classes.md │ │ ├── comments │ │ │ └── comments.md │ │ ├── conditionals │ │ │ └── conditionals.md │ │ ├── data-types │ │ │ └── data-types.md │ │ ├── date-functions │ │ │ ├── date-functions.md │ │ │ └── terms │ │ │ │ ├── date-create │ │ │ │ └── date-create.md │ │ │ │ ├── date-format │ │ │ │ └── date-format.md │ │ │ │ ├── date │ │ │ │ └── date.md │ │ │ │ ├── getdate │ │ │ │ └── getdate.md │ │ │ │ └── time │ │ │ │ └── time.md │ │ ├── functions │ │ │ └── functions.md │ │ ├── loops │ │ │ └── loops.md │ │ ├── operators │ │ │ └── operators.md │ │ ├── string-functions │ │ │ ├── string-functions.md │ │ │ └── terms │ │ │ │ ├── explode │ │ │ │ └── explode.md │ │ │ │ ├── sprintf │ │ │ │ └── sprintf.md │ │ │ │ ├── str-replace │ │ │ │ └── str-replace.md │ │ │ │ ├── strlen │ │ │ │ └── strlen.md │ │ │ │ └── substr │ │ │ │ └── substr.md │ │ └── variables │ │ │ └── variables.md │ └── php.md ├── python │ ├── concepts │ │ ├── assert │ │ │ └── assert.md │ │ ├── built-in-functions │ │ │ ├── built-in-functions.md │ │ │ └── terms │ │ │ │ ├── abs │ │ │ │ └── abs.md │ │ │ │ ├── all │ │ │ │ └── all.md │ │ │ │ ├── any │ │ │ │ └── any.md │ │ │ │ ├── ascii │ │ │ │ └── ascii.md │ │ │ │ ├── bin │ │ │ │ └── bin.md │ │ │ │ ├── bool │ │ │ │ └── bool.md │ │ │ │ ├── breakpoint │ │ │ │ └── breakpoint.md │ │ │ │ ├── bytearray │ │ │ │ └── bytearray.md │ │ │ │ ├── bytes │ │ │ │ └── bytes.md │ │ │ │ ├── callable │ │ │ │ └── callable.md │ │ │ │ ├── chr │ │ │ │ └── chr.md │ │ │ │ ├── classmethod │ │ │ │ └── classmethod.md │ │ │ │ ├── compile │ │ │ │ └── compile.md │ │ │ │ ├── complex │ │ │ │ └── complex.md │ │ │ │ ├── delattr │ │ │ │ └── delattr.md │ │ │ │ ├── dict │ │ │ │ └── dict.md │ │ │ │ ├── eval │ │ │ │ └── eval.md │ │ │ │ ├── filter │ │ │ │ └── filter.md │ │ │ │ ├── float │ │ │ │ └── float.md │ │ │ │ ├── frozenset │ │ │ │ └── frozenset.md │ │ │ │ ├── hasattr │ │ │ │ └── hasattr.md │ │ │ │ ├── help │ │ │ │ └── help.md │ │ │ │ ├── input │ │ │ │ └── input.md │ │ │ │ ├── int │ │ │ │ └── int.md │ │ │ │ ├── len │ │ │ │ └── len.md │ │ │ │ ├── list │ │ │ │ └── list.md │ │ │ │ ├── map │ │ │ │ └── map.md │ │ │ │ ├── max │ │ │ │ └── max.md │ │ │ │ ├── min │ │ │ │ └── min.md │ │ │ │ ├── next │ │ │ │ └── next.md │ │ │ │ ├── open │ │ │ │ └── open.md │ │ │ │ ├── pow │ │ │ │ └── pow.md │ │ │ │ ├── print │ │ │ │ └── print.md │ │ │ │ ├── range │ │ │ │ └── range.md │ │ │ │ ├── reversed │ │ │ │ └── reversed.md │ │ │ │ ├── round │ │ │ │ └── round.md │ │ │ │ ├── set │ │ │ │ └── set.md │ │ │ │ ├── sorted │ │ │ │ └── sorted.md │ │ │ │ ├── str │ │ │ │ └── str.md │ │ │ │ ├── super │ │ │ │ └── super.md │ │ │ │ ├── tuple │ │ │ │ └── tuple.md │ │ │ │ ├── type │ │ │ │ └── type.md │ │ │ │ └── zip │ │ │ │ └── zip.md │ │ ├── casting │ │ │ └── casting.md │ │ ├── classes │ │ │ └── classes.md │ │ ├── collections-module │ │ │ ├── collections-module.md │ │ │ └── terms │ │ │ │ ├── Counter │ │ │ │ └── Counter.md │ │ │ │ └── OrderedDict │ │ │ │ └── OrderedDict.md │ │ ├── command-line-arguments │ │ │ └── command-line-arguments.md │ │ ├── comments │ │ │ └── comments.md │ │ ├── conditionals │ │ │ └── conditionals.md │ │ ├── data-types │ │ │ └── data-types.md │ │ ├── dates │ │ │ ├── dates.md │ │ │ └── terms │ │ │ │ ├── date │ │ │ │ └── date.md │ │ │ │ ├── datetime │ │ │ │ └── datetime.md │ │ │ │ ├── now │ │ │ │ └── now.md │ │ │ │ ├── time │ │ │ │ └── time.md │ │ │ │ └── timedelta │ │ │ │ └── timedelta.md │ │ ├── decorators │ │ │ └── decorators.md │ │ ├── dictionaries │ │ │ ├── dictionaries.md │ │ │ └── terms │ │ │ │ ├── clear │ │ │ │ └── clear.md │ │ │ │ ├── copy │ │ │ │ └── copy.md │ │ │ │ ├── fromkeys │ │ │ │ └── fromkeys.md │ │ │ │ ├── get │ │ │ │ └── get.md │ │ │ │ ├── items │ │ │ │ └── items.md │ │ │ │ ├── keys │ │ │ │ └── keys.md │ │ │ │ ├── pop │ │ │ │ └── pop.md │ │ │ │ ├── popitem │ │ │ │ └── popitem.md │ │ │ │ ├── setdefault │ │ │ │ └── setdefault.md │ │ │ │ ├── update │ │ │ │ └── update.md │ │ │ │ └── values │ │ │ │ └── values.md │ │ ├── dunder-methods │ │ │ ├── dunder-methods.md │ │ │ └── terms │ │ │ │ ├── init │ │ │ │ └── init.md │ │ │ │ ├── repr │ │ │ │ └── repr.md │ │ │ │ └── str │ │ │ │ └── str.md │ │ ├── errors │ │ │ └── errors.md │ │ ├── files │ │ │ ├── files.md │ │ │ └── terms │ │ │ │ ├── close │ │ │ │ └── close.md │ │ │ │ ├── read │ │ │ │ └── read.md │ │ │ │ ├── readline │ │ │ │ └── readline.md │ │ │ │ ├── remove │ │ │ │ └── remove.md │ │ │ │ ├── rmdir │ │ │ │ └── rmdir.md │ │ │ │ ├── seek │ │ │ │ └── seek.md │ │ │ │ ├── truncate │ │ │ │ └── truncate.md │ │ │ │ ├── unlink │ │ │ │ └── unlink.md │ │ │ │ ├── writable │ │ │ │ └── writable.md │ │ │ │ └── write │ │ │ │ └── write.md │ │ ├── functions │ │ │ ├── functions.md │ │ │ └── terms │ │ │ │ ├── anonymous-functions │ │ │ │ └── anonymous-functions.md │ │ │ │ └── parameters-arguments │ │ │ │ └── parameters-arguments.md │ │ ├── functools-module │ │ │ ├── functools-module.md │ │ │ └── terms │ │ │ │ └── reduce │ │ │ │ └── reduce.md │ │ ├── generators │ │ │ └── generators.md │ │ ├── glob-module │ │ │ ├── glob-module.md │ │ │ └── terms │ │ │ │ ├── escape │ │ │ │ └── escape.md │ │ │ │ └── glob │ │ │ │ └── glob.md │ │ ├── idle │ │ │ └── idle.md │ │ ├── inheritance │ │ │ └── inheritance.md │ │ ├── iterators │ │ │ ├── iterators.md │ │ │ └── terms │ │ │ │ └── iter │ │ │ │ └── iter.md │ │ ├── json-module │ │ │ ├── json-module.md │ │ │ └── terms │ │ │ │ ├── dump │ │ │ │ └── dump.md │ │ │ │ └── load │ │ │ │ └── load.md │ │ ├── keywords │ │ │ ├── keywords.md │ │ │ └── terms │ │ │ │ ├── class │ │ │ │ └── class.md │ │ │ │ ├── del │ │ │ │ └── del.md │ │ │ │ ├── global │ │ │ │ └── global.md │ │ │ │ └── lambda │ │ │ │ └── lambda.md │ │ ├── lists │ │ │ ├── lists.md │ │ │ └── terms │ │ │ │ ├── append │ │ │ │ └── append.md │ │ │ │ ├── clear │ │ │ │ └── clear.md │ │ │ │ ├── copy │ │ │ │ └── copy.md │ │ │ │ ├── count │ │ │ │ └── count.md │ │ │ │ ├── extend │ │ │ │ └── extend.md │ │ │ │ ├── index │ │ │ │ └── index.md │ │ │ │ ├── insert │ │ │ │ └── insert.md │ │ │ │ ├── pop │ │ │ │ └── pop.md │ │ │ │ ├── remove │ │ │ │ └── remove.md │ │ │ │ ├── reverse │ │ │ │ └── reverse.md │ │ │ │ └── sort │ │ │ │ └── sort.md │ │ ├── loops │ │ │ └── loops.md │ │ ├── math-module │ │ │ ├── math-module.md │ │ │ └── terms │ │ │ │ ├── math-ceil │ │ │ │ └── math-ceil.md │ │ │ │ ├── math-cos │ │ │ │ └── math-cos.md │ │ │ │ ├── math-exp │ │ │ │ └── math-exp.md │ │ │ │ ├── math-log │ │ │ │ └── math-log.md │ │ │ │ ├── math-pow │ │ │ │ └── math-pow.md │ │ │ │ ├── math-sin │ │ │ │ └── math-sin.md │ │ │ │ ├── math-sqrt │ │ │ │ └── math-sqrt.md │ │ │ │ └── math-tan │ │ │ │ └── math-tan.md │ │ ├── memoization │ │ │ └── memoization.md │ │ ├── modules │ │ │ ├── modules.md │ │ │ └── terms │ │ │ │ ├── pyspark │ │ │ │ └── pyspark.md │ │ │ │ ├── pytorch │ │ │ │ └── pytorch.md │ │ │ │ └── tqdm │ │ │ │ └── tqdm.md │ │ ├── modulo │ │ │ └── modulo.md │ │ ├── operators │ │ │ └── operators.md │ │ ├── os-path-module │ │ │ ├── os-path-module.md │ │ │ └── terms │ │ │ │ ├── basename │ │ │ │ └── basename.md │ │ │ │ ├── dirname │ │ │ │ └── dirname.md │ │ │ │ ├── exists │ │ │ │ └── exists.md │ │ │ │ └── join │ │ │ │ └── join.md │ │ ├── pip │ │ │ └── pip.md │ │ ├── random-module │ │ │ ├── random-module.md │ │ │ └── terms │ │ │ │ ├── choice │ │ │ │ └── choice.md │ │ │ │ ├── randint │ │ │ │ └── randint.md │ │ │ │ ├── random │ │ │ │ └── random.md │ │ │ │ ├── randrange │ │ │ │ └── randrange.md │ │ │ │ ├── sample │ │ │ │ └── sample.md │ │ │ │ ├── seed │ │ │ │ └── seed.md │ │ │ │ ├── shuffle │ │ │ │ └── shuffle.md │ │ │ │ └── uniform │ │ │ │ └── uniform.md │ │ ├── recursion │ │ │ └── recursion.md │ │ ├── regex │ │ │ ├── regex.md │ │ │ └── terms │ │ │ │ ├── findall │ │ │ │ └── findall.md │ │ │ │ ├── match │ │ │ │ └── match.md │ │ │ │ ├── metacharacters │ │ │ │ └── metacharacters.md │ │ │ │ ├── search │ │ │ │ └── search.md │ │ │ │ ├── split │ │ │ │ └── split.md │ │ │ │ └── sub │ │ │ │ └── sub.md │ │ ├── requests-module │ │ │ ├── requests-module.md │ │ │ └── terms │ │ │ │ ├── delete │ │ │ │ └── delete.md │ │ │ │ ├── get │ │ │ │ └── get.md │ │ │ │ ├── head │ │ │ │ └── head.md │ │ │ │ ├── post │ │ │ │ └── post.md │ │ │ │ ├── put │ │ │ │ └── put.md │ │ │ │ └── request │ │ │ │ └── request.md │ │ ├── scope │ │ │ └── scope.md │ │ ├── sets │ │ │ ├── sets.md │ │ │ └── terms │ │ │ │ ├── difference │ │ │ │ └── difference.md │ │ │ │ ├── intersection │ │ │ │ └── intersection.md │ │ │ │ └── union │ │ │ │ └── union.md │ │ ├── strings │ │ │ ├── strings.md │ │ │ └── terms │ │ │ │ ├── capitalize │ │ │ │ └── capitalize.md │ │ │ │ ├── casefold │ │ │ │ └── casefold.md │ │ │ │ ├── count │ │ │ │ └── count.md │ │ │ │ ├── endswith │ │ │ │ └── endswith.md │ │ │ │ ├── find │ │ │ │ └── find.md │ │ │ │ ├── format │ │ │ │ └── format.md │ │ │ │ ├── index │ │ │ │ └── index.md │ │ │ │ ├── islower │ │ │ │ └── islower.md │ │ │ │ ├── isupper │ │ │ │ └── isupper.md │ │ │ │ ├── join │ │ │ │ └── join.md │ │ │ │ ├── lower │ │ │ │ └── lower.md │ │ │ │ ├── partition │ │ │ │ └── partition.md │ │ │ │ ├── replace │ │ │ │ └── replace.md │ │ │ │ ├── split │ │ │ │ └── split.md │ │ │ │ ├── startswith │ │ │ │ └── startswith.md │ │ │ │ ├── swapcase │ │ │ │ └── swapcase.md │ │ │ │ ├── title │ │ │ │ └── title.md │ │ │ │ └── upper │ │ │ │ └── upper.md │ │ ├── substrings │ │ │ └── substrings.md │ │ ├── threading │ │ │ ├── terms │ │ │ │ ├── is-alive │ │ │ │ │ └── is-alive.md │ │ │ │ ├── join │ │ │ │ │ └── join.md │ │ │ │ ├── local │ │ │ │ │ └── local.md │ │ │ │ ├── run │ │ │ │ │ └── run.md │ │ │ │ ├── start │ │ │ │ │ └── start.md │ │ │ │ └── thread │ │ │ │ │ └── thread.md │ │ │ └── threading.md │ │ ├── time-module │ │ │ ├── terms │ │ │ │ ├── ctime │ │ │ │ │ └── ctime.md │ │ │ │ ├── sleep │ │ │ │ │ └── sleep.md │ │ │ │ └── strftime │ │ │ │ │ └── strftime.md │ │ │ └── time-module.md │ │ ├── tuples │ │ │ ├── terms │ │ │ │ ├── count │ │ │ │ │ └── count.md │ │ │ │ └── index │ │ │ │ │ └── index.md │ │ │ └── tuples.md │ │ ├── unittest-module │ │ │ └── unittest-module.md │ │ └── variables │ │ │ └── variables.md │ └── python.md ├── r │ ├── concepts │ │ ├── built-in-functions │ │ │ ├── built-in-functions.md │ │ │ └── terms │ │ │ │ ├── getwd │ │ │ │ └── getwd.md │ │ │ │ ├── print │ │ │ │ └── print.md │ │ │ │ ├── setwd │ │ │ │ └── setwd.md │ │ │ │ └── str │ │ │ │ └── str.md │ │ ├── comments │ │ │ └── comments.md │ │ ├── csv-files │ │ │ └── csv-files.md │ │ ├── data-frames │ │ │ ├── data-frames.md │ │ │ └── terms │ │ │ │ ├── colnames │ │ │ │ └── colnames.md │ │ │ │ ├── ncol │ │ │ │ └── ncol.md │ │ │ │ ├── nrow │ │ │ │ └── nrow.md │ │ │ │ └── subset │ │ │ │ └── subset.md │ │ ├── data-types │ │ │ └── data-types.md │ │ ├── functions │ │ │ └── functions.md │ │ ├── loops │ │ │ └── loops.md │ │ ├── operators │ │ │ └── operators.md │ │ ├── variables │ │ │ └── variables.md │ │ └── vectors │ │ │ └── vectors.md │ └── r.md ├── react │ ├── concepts │ │ ├── components │ │ │ └── components.md │ │ ├── hooks │ │ │ ├── hooks.md │ │ │ └── terms │ │ │ │ ├── useEffect │ │ │ │ └── useEffect.md │ │ │ │ └── useState │ │ │ │ └── useState.md │ │ ├── jsx │ │ │ └── jsx.md │ │ ├── lifecycle-methods │ │ │ └── lifecycle-methods.md │ │ ├── props │ │ │ └── props.md │ │ ├── react-native │ │ │ ├── react-native.md │ │ │ └── terms │ │ │ │ └── components │ │ │ │ └── components.md │ │ ├── routing │ │ │ └── routing.md │ │ ├── state │ │ │ └── state.md │ │ └── virtual-dom │ │ │ └── virtual-dom.md │ └── react.md ├── ruby │ ├── concepts │ │ ├── arrays │ │ │ └── arrays.md │ │ ├── casting │ │ │ └── casting.md │ │ ├── classes │ │ │ └── classes.md │ │ ├── comments │ │ │ └── comments.md │ │ ├── conditionals │ │ │ └── conditionals.md │ │ ├── data-types │ │ │ └── data-types.md │ │ ├── dates │ │ │ └── dates.md │ │ ├── errors │ │ │ └── errors.md │ │ ├── files │ │ │ └── files.md │ │ ├── functions │ │ │ └── functions.md │ │ ├── gems │ │ │ └── gems.md │ │ ├── hashes │ │ │ └── hashes.md │ │ ├── inheritance │ │ │ └── inheritance.md │ │ ├── iterators │ │ │ └── iterators.md │ │ ├── lambda │ │ │ └── lambda.md │ │ ├── loops │ │ │ └── loops.md │ │ ├── modules │ │ │ └── modules.md │ │ ├── modulo │ │ │ └── modulo.md │ │ ├── operators │ │ │ └── operators.md │ │ ├── random │ │ │ └── random.md │ │ ├── regexp │ │ │ └── regexp.md │ │ ├── ruby-on-rails │ │ │ └── ruby-on-rails.md │ │ ├── scope │ │ │ └── scope.md │ │ ├── sets │ │ │ └── sets.md │ │ ├── strings │ │ │ ├── strings.md │ │ │ └── terms │ │ │ │ └── length │ │ │ │ └── length.md │ │ ├── user-input │ │ │ └── user-input.md │ │ └── variables │ │ │ └── variables.md │ └── ruby.md ├── seaborn │ ├── concepts │ │ └── built-in-functions │ │ │ ├── built-in-functions.md │ │ │ └── terms │ │ │ └── load-dataset │ │ │ └── load-dataset.md │ └── seaborn.md ├── sql │ ├── concepts │ │ ├── about-sql │ │ │ └── about-sql.md │ │ ├── aggregate-functions │ │ │ ├── aggregate-functions.md │ │ │ └── terms │ │ │ │ ├── avg │ │ │ │ └── avg.md │ │ │ │ ├── count │ │ │ │ └── count.md │ │ │ │ ├── max │ │ │ │ └── max.md │ │ │ │ ├── min │ │ │ │ └── min.md │ │ │ │ └── sum │ │ │ │ └── sum.md │ │ ├── commands │ │ │ ├── commands.md │ │ │ └── terms │ │ │ │ ├── alter-table │ │ │ │ └── alter-table.md │ │ │ │ ├── as │ │ │ │ └── as.md │ │ │ │ ├── case │ │ │ │ └── case.md │ │ │ │ ├── create-index │ │ │ │ └── create-index.md │ │ │ │ ├── create-table │ │ │ │ └── create-table.md │ │ │ │ ├── create-view │ │ │ │ └── create-view.md │ │ │ │ ├── delete │ │ │ │ └── delete.md │ │ │ │ ├── drop-table │ │ │ │ └── drop-table.md │ │ │ │ ├── full-outer-join │ │ │ │ └── full-outer-join.md │ │ │ │ ├── group-by │ │ │ │ └── group-by.md │ │ │ │ ├── having │ │ │ │ └── having.md │ │ │ │ ├── inner-join │ │ │ │ └── inner-join.md │ │ │ │ ├── insert-into │ │ │ │ └── insert-into.md │ │ │ │ ├── left-join │ │ │ │ └── left-join.md │ │ │ │ ├── limit │ │ │ │ └── limit.md │ │ │ │ ├── order-by │ │ │ │ └── order-by.md │ │ │ │ ├── right-join │ │ │ │ └── right-join.md │ │ │ │ ├── round │ │ │ │ └── round.md │ │ │ │ ├── select-distinct │ │ │ │ └── select-distinct.md │ │ │ │ ├── select-top │ │ │ │ └── select-top.md │ │ │ │ ├── select │ │ │ │ └── select.md │ │ │ │ ├── union │ │ │ │ └── union.md │ │ │ │ ├── update │ │ │ │ └── update.md │ │ │ │ ├── where │ │ │ │ └── where.md │ │ │ │ └── with │ │ │ │ └── with.md │ │ ├── comments │ │ │ └── comments.md │ │ ├── constraints │ │ │ └── constraints.md │ │ ├── data-types │ │ │ └── data-types.md │ │ ├── dates │ │ │ ├── dates.md │ │ │ └── terms │ │ │ │ ├── date │ │ │ │ └── date.md │ │ │ │ ├── dateadd │ │ │ │ └── dateadd.md │ │ │ │ ├── datediff │ │ │ │ └── datediff.md │ │ │ │ ├── datetime │ │ │ │ └── datetime.md │ │ │ │ ├── strftime │ │ │ │ └── strftime.md │ │ │ │ └── time │ │ │ │ └── time.md │ │ ├── indexes │ │ │ └── indexes.md │ │ ├── joins │ │ │ └── joins.md │ │ ├── operators │ │ │ ├── operators.md │ │ │ └── terms │ │ │ │ ├── and │ │ │ │ └── and.md │ │ │ │ ├── between │ │ │ │ └── between.md │ │ │ │ ├── exists │ │ │ │ └── exists.md │ │ │ │ ├── in │ │ │ │ └── in.md │ │ │ │ ├── is-not-null │ │ │ │ └── is-not-null.md │ │ │ │ ├── is-null │ │ │ │ └── is-null.md │ │ │ │ ├── like │ │ │ │ └── like.md │ │ │ │ ├── not │ │ │ │ └── not.md │ │ │ │ └── or │ │ │ │ └── or.md │ │ ├── primary-keys │ │ │ └── primary-keys.md │ │ ├── procedures │ │ │ └── procedures.md │ │ ├── sql-injections │ │ │ └── sql-injections.md │ │ ├── wildcards │ │ │ └── wildcards.md │ │ └── window-functions │ │ │ └── window-functions.md │ └── sql.md ├── swift │ ├── concepts │ │ ├── arrays │ │ │ ├── arrays.md │ │ │ └── terms │ │ │ │ ├── append │ │ │ │ └── append.md │ │ │ │ ├── contains │ │ │ │ └── contains.md │ │ │ │ ├── first │ │ │ │ └── first.md │ │ │ │ ├── forEach │ │ │ │ └── forEach.md │ │ │ │ ├── insert │ │ │ │ └── insert.md │ │ │ │ ├── map │ │ │ │ └── map.md │ │ │ │ ├── reduce │ │ │ │ └── reduce.md │ │ │ │ ├── remove │ │ │ │ └── remove.md │ │ │ │ ├── removeFirst │ │ │ │ └── removeFirst.md │ │ │ │ ├── removeLast │ │ │ │ └── removeLast.md │ │ │ │ ├── reverse │ │ │ │ └── reverse.md │ │ │ │ └── sort │ │ │ │ └── sort.md │ │ ├── classes │ │ │ └── classes.md │ │ ├── closures │ │ │ └── closures.md │ │ ├── comments │ │ │ └── comments.md │ │ ├── conditionals │ │ │ └── conditionals.md │ │ ├── data-types │ │ │ └── data-types.md │ │ ├── dictionaries │ │ │ ├── dictionaries.md │ │ │ └── terms │ │ │ │ ├── count │ │ │ │ └── count.md │ │ │ │ └── isEmpty │ │ │ │ └── isEmpty.md │ │ ├── enums │ │ │ └── enums.md │ │ ├── inheritance │ │ │ └── inheritance.md │ │ ├── loops │ │ │ └── loops.md │ │ ├── objective-c │ │ │ └── objective-c.md │ │ ├── operators │ │ │ ├── operators.md │ │ │ └── terms │ │ │ │ ├── advanced-operators │ │ │ │ └── advanced-operators.md │ │ │ │ └── basic-operators │ │ │ │ └── basic-operators.md │ │ ├── optionals │ │ │ └── optionals.md │ │ ├── protocols │ │ │ └── protocols.md │ │ ├── sets │ │ │ ├── sets.md │ │ │ └── terms │ │ │ │ ├── contains │ │ │ │ └── contains.md │ │ │ │ ├── insert │ │ │ │ └── insert.md │ │ │ │ ├── intersection │ │ │ │ └── intersection.md │ │ │ │ ├── isSubset │ │ │ │ └── isSubset.md │ │ │ │ ├── isSuperset │ │ │ │ └── isSuperset.md │ │ │ │ ├── remove │ │ │ │ └── remove.md │ │ │ │ ├── removeAll │ │ │ │ └── removeAll.md │ │ │ │ ├── subtracting │ │ │ │ └── subtracting.md │ │ │ │ ├── symmetricDifference │ │ │ │ └── symmetricDifference.md │ │ │ │ └── union │ │ │ │ └── union.md │ │ ├── structures │ │ │ └── structures.md │ │ ├── switch │ │ │ └── switch.md │ │ ├── tuples │ │ │ └── tuples.md │ │ └── variables │ │ │ └── variables.md │ └── swift.md ├── swiftui │ ├── concepts │ │ ├── viewmodifier │ │ │ ├── terms │ │ │ │ ├── bold │ │ │ │ │ └── bold.md │ │ │ │ ├── italic │ │ │ │ │ └── italic.md │ │ │ │ └── underline │ │ │ │ │ └── underline.md │ │ │ └── viewmodifier.md │ │ └── views │ │ │ ├── terms │ │ │ ├── button │ │ │ │ └── button.md │ │ │ ├── capsule │ │ │ │ └── capsule.md │ │ │ ├── circle │ │ │ │ └── circle.md │ │ │ ├── ellipse │ │ │ │ └── ellipse.md │ │ │ ├── form │ │ │ │ └── form.md │ │ │ ├── hstack │ │ │ │ └── hstack.md │ │ │ ├── image │ │ │ │ └── image.md │ │ │ ├── label │ │ │ │ └── label.md │ │ │ ├── lazyHStack │ │ │ │ └── lazyHStack.md │ │ │ ├── lazyVStack │ │ │ │ └── lazyVStack.md │ │ │ ├── list │ │ │ │ └── list.md │ │ │ ├── picker │ │ │ │ └── picker.md │ │ │ ├── rectangle │ │ │ │ └── rectangle.md │ │ │ ├── roundedrectangle │ │ │ │ └── roundedrectangle.md │ │ │ ├── scrollview │ │ │ │ └── scrollview.md │ │ │ ├── stepper │ │ │ │ └── stepper.md │ │ │ ├── text │ │ │ │ └── text.md │ │ │ ├── textfield │ │ │ │ └── textfield.md │ │ │ ├── toggle │ │ │ │ └── toggle.md │ │ │ ├── vstack │ │ │ │ └── vstack.md │ │ │ └── zstack │ │ │ │ └── zstack.md │ │ │ └── views.md │ └── swiftui.md ├── typescript │ ├── concepts │ │ ├── about-typescript │ │ │ └── about-typescript.md │ │ ├── arrays │ │ │ └── arrays.md │ │ ├── assignability │ │ │ └── assignability.md │ │ ├── classes │ │ │ └── classes.md │ │ ├── functions │ │ │ └── functions.md │ │ ├── generics │ │ │ └── generics.md │ │ ├── interfaces │ │ │ └── interfaces.md │ │ ├── narrowing │ │ │ └── narrowing.md │ │ ├── primitives │ │ │ └── primitives.md │ │ ├── tuples │ │ │ └── tuples.md │ │ ├── type-aliases │ │ │ └── type-aliases.md │ │ ├── type-annotations │ │ │ └── type-annotations.md │ │ ├── unions │ │ │ └── unions.md │ │ └── variables │ │ │ └── variables.md │ └── typescript.md └── uiux │ ├── concepts │ ├── accessibility │ │ └── accessibility.md │ ├── animation │ │ └── animation.md │ ├── annotations │ │ └── annotations.md │ ├── attitudinal-research │ │ └── attitudinal-research.md │ ├── behavioral-research │ │ └── behavioral-research.md │ ├── button │ │ └── button.md │ ├── color-picker │ │ └── color-picker.md │ ├── content-hierarchy │ │ └── content-hierarchy.md │ ├── context-of-use │ │ └── context-of-use.md │ ├── convergent-thinking │ │ └── convergent-thinking.md │ ├── corner-radius │ │ └── corner-radius.md │ ├── deliverables │ │ └── deliverables.md │ ├── design-methodologies │ │ └── design-methodologies.md │ ├── design-software │ │ └── design-software.md │ ├── design-thinking │ │ └── design-thinking.md │ ├── design │ │ └── design.md │ ├── diary-study │ │ └── diary-study.md │ ├── divergent-thinking │ │ └── divergent-thinking.md │ ├── double-diamond-diagram │ │ └── double-diamond-diagram.md │ ├── ethnography-field-studies │ │ └── ethnography-field-studies.md │ ├── fill │ │ └── fill.md │ ├── five-elements-of-ux-design │ │ └── five-elements-of-ux-design.md │ ├── focus-groups │ │ └── focus-groups.md │ ├── hero-image │ │ └── hero-image.md │ ├── heuristic-evaluation │ │ └── heuristic-evaluation.md │ ├── high-fidelity │ │ └── high-fidelity.md │ ├── homepage │ │ └── homepage.md │ ├── image │ │ └── image.md │ ├── inclusive-design │ │ └── inclusive-design.md │ ├── information-architecture │ │ └── information-architecture.md │ ├── interviews │ │ └── interviews.md │ ├── iterative-process │ │ └── iterative-process.md │ ├── logo │ │ └── logo.md │ ├── low-fidelity │ │ └── low-fidelity.md │ ├── navigation │ │ └── navigation.md │ ├── opacity │ │ └── opacity.md │ ├── persona │ │ └── persona.md │ ├── placeholders │ │ └── placeholders.md │ ├── product-development-life-cycle │ │ └── product-development-life-cycle.md │ ├── qualitative-research │ │ └── qualitative-research.md │ ├── quantitative-research │ │ └── quantitative-research.md │ ├── search-fields │ │ └── search-fields.md │ ├── site-map │ │ └── site-map.md │ ├── sketching │ │ └── sketching.md │ ├── stakeholder │ │ └── stakeholder.md │ ├── stroke │ │ └── stroke.md │ ├── surveys │ │ └── surveys.md │ ├── technical-capabilities │ │ └── technical-capabilities.md │ ├── text-properties │ │ └── text-properties.md │ ├── text │ │ └── text.md │ ├── ui-design │ │ └── ui-design.md │ ├── usability-heuristics │ │ └── usability-heuristics.md │ ├── user-and-end-user │ │ └── user-and-end-user.md │ ├── user-centered-design │ │ └── user-centered-design.md │ ├── user-research │ │ └── user-research.md │ ├── user-workflows │ │ └── user-workflows.md │ ├── ux-design │ │ └── ux-design.md │ ├── ux-honeycomb │ │ └── ux-honeycomb.md │ ├── video │ │ └── video.md │ ├── web-analytics │ │ └── web-analytics.md │ ├── wicked-problems │ │ └── wicked-problems.md │ ├── width-height │ │ └── width-height.md │ ├── wireframe-elements │ │ └── wireframe-elements.md │ ├── wireframe │ │ └── wireframe.md │ └── x-y-coordinates │ │ └── x-y-coordinates.md │ └── uiux.md ├── documentation ├── catalog-content.md ├── content-standards.md ├── entry-template.md ├── subjects.md ├── tags.md ├── term-entry-template.md └── topic-info-template.md ├── jest.config.js ├── media ├── Yukihiro_Matsumoto.png ├── aaron_swartz.png ├── abbr-example.png ├── abstract-factory-uml.png ├── abstract-syntax-tree.png ├── ada_lovelace.png ├── alan_turing.png ├── aws-console-home.png ├── basefont-tag-example.png ├── big-o-graph.png ├── binary-tree-labeled.png ├── bjarne_stroustrup.png ├── branch-up-to-date-1.png ├── branch-up-to-date-2.png ├── builder-uml.png ├── button.png ├── cc_logo.png ├── circle.png ├── create_pull_request_link.png ├── creational-design-pattern-structure.png ├── css-anatomy-1.png ├── css-anatomy-2.png ├── css-border-radius-1.png ├── css-border-radius-2.png ├── css-border-radius-3.png ├── css-box-model.svg ├── css-cursor-cell.png ├── css-cursor-context-menu.png ├── css-cursor-crosshair.png ├── css-cursor-default.png ├── css-cursor-help.png ├── css-cursor-pointer.png ├── css-cursor-progress.png ├── css-cursor-text.png ├── css-cursor-vertical-text.png ├── css-cursor-wait.png ├── css-disabled-example.png ├── css-hover-example.gif ├── css-position-example.png ├── css-z-index-black.png ├── css-z-index-gray.png ├── css_floats.png ├── dd-tag-example.png ├── del-tag-example.png ├── dennis_ritchie.png ├── dl-tag-example.png ├── dt-tag-example.png ├── em-tag-example.png ├── factory-uml.png ├── file-system-structure.png ├── font-awesome-border.png ├── font-awesome-check.png ├── font-awesome-code.png ├── font-awesome-fixed.png ├── font-awesome-flip.png ├── font-awesome-list.png ├── font-awesome-pull.png ├── font-awesome-pulse.gif ├── font-awesome-rotate.png ├── font-awesome-size.png ├── font-awesome-spin.gif ├── font-awesome-stack.png ├── font-tag-example.png ├── form-example.png ├── general-relational-database.png ├── grace_hopper.png ├── grace_hopper_bug.png ├── grid-template-area-example-1.png ├── grid-template-area-example-2.png ├── grid-template-area.png ├── heading-example.png ├── hstack.png ├── html-block-quote-tag.png ├── html-br-example.png ├── html-button-example.png ├── html-cite-example.png ├── html-colspan.png ├── html-comments-1.png ├── html-comments-2.png ├── html-details-tag-example.png ├── html-elements-textarea.png ├── html-paragraph-example.png ├── html-rowspan.png ├── html-summary-example.png ├── html-video-tag-example.mp4 ├── html-video-tag-example.vtt ├── i-frame-tag-example.png ├── image-example.png ├── indicate_fork_link.png ├── input-tag-example.png ├── john_carmack.png ├── kbd-tag-example-1.png ├── kbd-tag-example-2.png ├── ken_thompson.png ├── lazyHStack-gif.gif ├── lazyVStack-gif.gif ├── li-tag-example.png ├── linus_torvalds.png ├── mark-example.png ├── matplotlib-legend-1.png ├── nested-lists-example.png ├── no-script-tag-example.png ├── ol-tag-example.png ├── output-tag.gif ├── prototype-uml.png ├── pull-request-ui.png ├── python-built-in-functions-breakpoint-screenshot.png ├── python-idle.png ├── q.jpg ├── react-state-example.png ├── react_native_UI_Views.png ├── react_react_native_components.png ├── rectangle.png ├── rendered-anchor-tags.png ├── rendered-css-combinators.png ├── rendered-markdown-headings.png ├── s-element-example.png ├── singleton-uml.png ├── span-tag-image.png ├── strong-tag-example.png ├── swiftui-bold.png ├── swiftui-capsule.png ├── swiftui-ellipse.png ├── swiftui-form.png ├── swiftui-label.gif ├── swiftui-picker-open.png ├── swiftui-picker.png ├── swiftui-roundedrectangle.png ├── swiftui-scrollview-horizontal.gif ├── swiftui-scrollview-vertical.gif ├── swiftui-stepper.gif ├── swiftui-text.png ├── swiftui-textfield-fill.png ├── swiftui-textfield.png ├── swiftui-toggle-off.png ├── swiftui-toggle-on.png ├── swiftui-viewmodifier-italic.png ├── swiftui-viewmodifier-underline.png ├── swiftui-viewmodifier.png ├── tim_berners_lee.png ├── tqdm.gif ├── ul-tag-example.png ├── vim-gui.png ├── vim-terminal.png ├── vstack.png └── zstack.png ├── package.json ├── tsconfig.json └── yarn.lock /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["@codecademy/eslint-config"] 3 | } 4 | -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_reports.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/.github/ISSUE_TEMPLATE/bug_reports.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/entry_edit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/.github/ISSUE_TEMPLATE/entry_edit.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/entry_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/.github/ISSUE_TEMPLATE/entry_request.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/post-merge-survey.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/.github/workflows/post-merge-survey.yml -------------------------------------------------------------------------------- /.github/workflows/push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/.github/workflows/push.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | npx lint-staged --allow-empty 5 | -------------------------------------------------------------------------------- /.markdownlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/.markdownlint.yaml -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 16.13.1 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | yarn.lock 3 | -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@codecademy/prettier-config'); 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/README.md -------------------------------------------------------------------------------- /bin/concept-of-the-week.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/bin/concept-of-the-week.txt -------------------------------------------------------------------------------- /content.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content.test.ts -------------------------------------------------------------------------------- /content/c-sharp/c-sharp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/c-sharp/c-sharp.md -------------------------------------------------------------------------------- /content/c-sharp/concepts/arrays/arrays.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/c-sharp/concepts/arrays/arrays.md -------------------------------------------------------------------------------- /content/c-sharp/concepts/arrays/terms/clear/clear.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/c-sharp/concepts/arrays/terms/clear/clear.md -------------------------------------------------------------------------------- /content/c-sharp/concepts/comments/comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/c-sharp/concepts/comments/comments.md -------------------------------------------------------------------------------- /content/c-sharp/concepts/data-types/data-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/c-sharp/concepts/data-types/data-types.md -------------------------------------------------------------------------------- /content/c-sharp/concepts/methods/methods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/c-sharp/concepts/methods/methods.md -------------------------------------------------------------------------------- /content/c-sharp/concepts/operators/operators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/c-sharp/concepts/operators/operators.md -------------------------------------------------------------------------------- /content/c-sharp/concepts/variables/variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/c-sharp/concepts/variables/variables.md -------------------------------------------------------------------------------- /content/c/c.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/c/c.md -------------------------------------------------------------------------------- /content/c/concepts/arrays/arrays.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/c/concepts/arrays/arrays.md -------------------------------------------------------------------------------- /content/c/concepts/basic-output/basic-output.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/c/concepts/basic-output/basic-output.md -------------------------------------------------------------------------------- /content/c/concepts/basic-output/terms/puts/puts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/c/concepts/basic-output/terms/puts/puts.md -------------------------------------------------------------------------------- /content/c/concepts/comments/comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/c/concepts/comments/comments.md -------------------------------------------------------------------------------- /content/c/concepts/compiling/compiling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/c/concepts/compiling/compiling.md -------------------------------------------------------------------------------- /content/c/concepts/data-types/data-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/c/concepts/data-types/data-types.md -------------------------------------------------------------------------------- /content/c/concepts/functions/functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/c/concepts/functions/functions.md -------------------------------------------------------------------------------- /content/c/concepts/macros/macros.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/c/concepts/macros/macros.md -------------------------------------------------------------------------------- /content/c/concepts/operators/operators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/c/concepts/operators/operators.md -------------------------------------------------------------------------------- /content/c/concepts/pointers/pointers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/c/concepts/pointers/pointers.md -------------------------------------------------------------------------------- /content/c/concepts/preprocessors/preprocessors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/c/concepts/preprocessors/preprocessors.md -------------------------------------------------------------------------------- /content/c/concepts/strings/strings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/c/concepts/strings/strings.md -------------------------------------------------------------------------------- /content/c/concepts/strings/terms/strchr/strchr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/c/concepts/strings/terms/strchr/strchr.md -------------------------------------------------------------------------------- /content/c/concepts/strings/terms/strcmp/strcmp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/c/concepts/strings/terms/strcmp/strcmp.md -------------------------------------------------------------------------------- /content/c/concepts/strings/terms/strcpy/strcpy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/c/concepts/strings/terms/strcpy/strcpy.md -------------------------------------------------------------------------------- /content/c/concepts/strings/terms/strlen/strlen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/c/concepts/strings/terms/strlen/strlen.md -------------------------------------------------------------------------------- /content/c/concepts/strings/terms/strtok/strtok.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/c/concepts/strings/terms/strtok/strtok.md -------------------------------------------------------------------------------- /content/c/concepts/structures/structures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/c/concepts/structures/structures.md -------------------------------------------------------------------------------- /content/c/concepts/user-input/user-input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/c/concepts/user-input/user-input.md -------------------------------------------------------------------------------- /content/c/concepts/variables/variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/c/concepts/variables/variables.md -------------------------------------------------------------------------------- /content/cloud-computing/cloud-computing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/cloud-computing/cloud-computing.md -------------------------------------------------------------------------------- /content/cloud-computing/concepts/faas/faas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/cloud-computing/concepts/faas/faas.md -------------------------------------------------------------------------------- /content/cloud-computing/concepts/iaas/iaas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/cloud-computing/concepts/iaas/iaas.md -------------------------------------------------------------------------------- /content/cloud-computing/concepts/paas/paas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/cloud-computing/concepts/paas/paas.md -------------------------------------------------------------------------------- /content/cloud-computing/concepts/saas/saas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/cloud-computing/concepts/saas/saas.md -------------------------------------------------------------------------------- /content/command-line/command-line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/command-line/command-line.md -------------------------------------------------------------------------------- /content/command-line/concepts/bash/bash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/command-line/concepts/bash/bash.md -------------------------------------------------------------------------------- /content/command-line/concepts/terminal/terminal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/command-line/concepts/terminal/terminal.md -------------------------------------------------------------------------------- /content/command-line/concepts/vim/vim.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/command-line/concepts/vim/vim.md -------------------------------------------------------------------------------- /content/cpp/concepts/arrays/arrays.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/cpp/concepts/arrays/arrays.md -------------------------------------------------------------------------------- /content/cpp/concepts/classes/classes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/cpp/concepts/classes/classes.md -------------------------------------------------------------------------------- /content/cpp/concepts/comments/comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/cpp/concepts/comments/comments.md -------------------------------------------------------------------------------- /content/cpp/concepts/conditionals/conditionals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/cpp/concepts/conditionals/conditionals.md -------------------------------------------------------------------------------- /content/cpp/concepts/constructors/constructors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/cpp/concepts/constructors/constructors.md -------------------------------------------------------------------------------- /content/cpp/concepts/data-types/data-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/cpp/concepts/data-types/data-types.md -------------------------------------------------------------------------------- /content/cpp/concepts/encapsulation/encapsulation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/cpp/concepts/encapsulation/encapsulation.md -------------------------------------------------------------------------------- /content/cpp/concepts/enum/enum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/cpp/concepts/enum/enum.md -------------------------------------------------------------------------------- /content/cpp/concepts/errors/errors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/cpp/concepts/errors/errors.md -------------------------------------------------------------------------------- /content/cpp/concepts/exceptions/exceptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/cpp/concepts/exceptions/exceptions.md -------------------------------------------------------------------------------- /content/cpp/concepts/files/files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/cpp/concepts/files/files.md -------------------------------------------------------------------------------- /content/cpp/concepts/functions/functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/cpp/concepts/functions/functions.md -------------------------------------------------------------------------------- /content/cpp/concepts/inheritance/inheritance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/cpp/concepts/inheritance/inheritance.md -------------------------------------------------------------------------------- /content/cpp/concepts/loops/loops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/cpp/concepts/loops/loops.md -------------------------------------------------------------------------------- /content/cpp/concepts/macros/macros.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/cpp/concepts/macros/macros.md -------------------------------------------------------------------------------- /content/cpp/concepts/maps/maps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/cpp/concepts/maps/maps.md -------------------------------------------------------------------------------- /content/cpp/concepts/maps/terms/clear/clear.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/cpp/concepts/maps/terms/clear/clear.md -------------------------------------------------------------------------------- /content/cpp/concepts/maps/terms/erase/erase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/cpp/concepts/maps/terms/erase/erase.md -------------------------------------------------------------------------------- /content/cpp/concepts/maps/terms/insert/insert.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/cpp/concepts/maps/terms/insert/insert.md -------------------------------------------------------------------------------- /content/cpp/concepts/math-functions/terms/abs/abs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/cpp/concepts/math-functions/terms/abs/abs.md -------------------------------------------------------------------------------- /content/cpp/concepts/math-functions/terms/cos/cos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/cpp/concepts/math-functions/terms/cos/cos.md -------------------------------------------------------------------------------- /content/cpp/concepts/math-functions/terms/exp/exp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/cpp/concepts/math-functions/terms/exp/exp.md -------------------------------------------------------------------------------- /content/cpp/concepts/math-functions/terms/log/log.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/cpp/concepts/math-functions/terms/log/log.md -------------------------------------------------------------------------------- /content/cpp/concepts/math-functions/terms/nan/nan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/cpp/concepts/math-functions/terms/nan/nan.md -------------------------------------------------------------------------------- /content/cpp/concepts/math-functions/terms/pow/pow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/cpp/concepts/math-functions/terms/pow/pow.md -------------------------------------------------------------------------------- /content/cpp/concepts/math-functions/terms/sin/sin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/cpp/concepts/math-functions/terms/sin/sin.md -------------------------------------------------------------------------------- /content/cpp/concepts/math-functions/terms/tan/tan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/cpp/concepts/math-functions/terms/tan/tan.md -------------------------------------------------------------------------------- /content/cpp/concepts/methods/methods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/cpp/concepts/methods/methods.md -------------------------------------------------------------------------------- /content/cpp/concepts/objects/objects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/cpp/concepts/objects/objects.md -------------------------------------------------------------------------------- /content/cpp/concepts/operators/operators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/cpp/concepts/operators/operators.md -------------------------------------------------------------------------------- /content/cpp/concepts/pointers/pointers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/cpp/concepts/pointers/pointers.md -------------------------------------------------------------------------------- /content/cpp/concepts/polymorphism/polymorphism.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/cpp/concepts/polymorphism/polymorphism.md -------------------------------------------------------------------------------- /content/cpp/concepts/queues/queues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/cpp/concepts/queues/queues.md -------------------------------------------------------------------------------- /content/cpp/concepts/queues/terms/empty/empty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/cpp/concepts/queues/terms/empty/empty.md -------------------------------------------------------------------------------- /content/cpp/concepts/queues/terms/front/front.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/cpp/concepts/queues/terms/front/front.md -------------------------------------------------------------------------------- /content/cpp/concepts/queues/terms/pop/pop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/cpp/concepts/queues/terms/pop/pop.md -------------------------------------------------------------------------------- /content/cpp/concepts/queues/terms/push/push.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/cpp/concepts/queues/terms/push/push.md -------------------------------------------------------------------------------- /content/cpp/concepts/queues/terms/size/size.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/cpp/concepts/queues/terms/size/size.md -------------------------------------------------------------------------------- /content/cpp/concepts/random/random.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/cpp/concepts/random/random.md -------------------------------------------------------------------------------- /content/cpp/concepts/references/references.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/cpp/concepts/references/references.md -------------------------------------------------------------------------------- /content/cpp/concepts/sets/sets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/cpp/concepts/sets/sets.md -------------------------------------------------------------------------------- /content/cpp/concepts/sets/terms/clear/clear.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/cpp/concepts/sets/terms/clear/clear.md -------------------------------------------------------------------------------- /content/cpp/concepts/sets/terms/erase/erase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/cpp/concepts/sets/terms/erase/erase.md -------------------------------------------------------------------------------- /content/cpp/concepts/sets/terms/insert/insert.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/cpp/concepts/sets/terms/insert/insert.md -------------------------------------------------------------------------------- /content/cpp/concepts/stacks/stacks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/cpp/concepts/stacks/stacks.md -------------------------------------------------------------------------------- /content/cpp/concepts/stacks/terms/empty/empty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/cpp/concepts/stacks/terms/empty/empty.md -------------------------------------------------------------------------------- /content/cpp/concepts/stacks/terms/pop/pop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/cpp/concepts/stacks/terms/pop/pop.md -------------------------------------------------------------------------------- /content/cpp/concepts/stacks/terms/push/push.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/cpp/concepts/stacks/terms/push/push.md -------------------------------------------------------------------------------- /content/cpp/concepts/stacks/terms/size/size.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/cpp/concepts/stacks/terms/size/size.md -------------------------------------------------------------------------------- /content/cpp/concepts/stacks/terms/top/top.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/cpp/concepts/stacks/terms/top/top.md -------------------------------------------------------------------------------- /content/cpp/concepts/strings/strings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/cpp/concepts/strings/strings.md -------------------------------------------------------------------------------- /content/cpp/concepts/strings/terms/find/find.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/cpp/concepts/strings/terms/find/find.md -------------------------------------------------------------------------------- /content/cpp/concepts/strings/terms/length/length.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/cpp/concepts/strings/terms/length/length.md -------------------------------------------------------------------------------- /content/cpp/concepts/strings/terms/size/size.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/cpp/concepts/strings/terms/size/size.md -------------------------------------------------------------------------------- /content/cpp/concepts/strings/terms/strcmp/strcmp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/cpp/concepts/strings/terms/strcmp/strcmp.md -------------------------------------------------------------------------------- /content/cpp/concepts/strings/terms/strcpy/strcpy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/cpp/concepts/strings/terms/strcpy/strcpy.md -------------------------------------------------------------------------------- /content/cpp/concepts/strings/terms/strtok/strtok.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/cpp/concepts/strings/terms/strtok/strtok.md -------------------------------------------------------------------------------- /content/cpp/concepts/strings/terms/substr/substr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/cpp/concepts/strings/terms/substr/substr.md -------------------------------------------------------------------------------- /content/cpp/concepts/structure/structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/cpp/concepts/structure/structure.md -------------------------------------------------------------------------------- /content/cpp/concepts/switch/switch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/cpp/concepts/switch/switch.md -------------------------------------------------------------------------------- /content/cpp/concepts/templates/templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/cpp/concepts/templates/templates.md -------------------------------------------------------------------------------- /content/cpp/concepts/user-input/user-input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/cpp/concepts/user-input/user-input.md -------------------------------------------------------------------------------- /content/cpp/concepts/variables/variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/cpp/concepts/variables/variables.md -------------------------------------------------------------------------------- /content/cpp/concepts/vectors/vectors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/cpp/concepts/vectors/vectors.md -------------------------------------------------------------------------------- /content/cpp/cpp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/cpp/cpp.md -------------------------------------------------------------------------------- /content/css/concepts/anatomy/anatomy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/css/concepts/anatomy/anatomy.md -------------------------------------------------------------------------------- /content/css/concepts/animations/animations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/css/concepts/animations/animations.md -------------------------------------------------------------------------------- /content/css/concepts/background/background.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/css/concepts/background/background.md -------------------------------------------------------------------------------- /content/css/concepts/borders/borders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/css/concepts/borders/borders.md -------------------------------------------------------------------------------- /content/css/concepts/borders/terms/border/border.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/css/concepts/borders/terms/border/border.md -------------------------------------------------------------------------------- /content/css/concepts/box-model/box-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/css/concepts/box-model/box-model.md -------------------------------------------------------------------------------- /content/css/concepts/box-sizing/box-sizing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/css/concepts/box-sizing/box-sizing.md -------------------------------------------------------------------------------- /content/css/concepts/colors/colors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/css/concepts/colors/colors.md -------------------------------------------------------------------------------- /content/css/concepts/colors/terms/color/color.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/css/concepts/colors/terms/color/color.md -------------------------------------------------------------------------------- /content/css/concepts/colors/terms/hsl/hsl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/css/concepts/colors/terms/hsl/hsl.md -------------------------------------------------------------------------------- /content/css/concepts/colors/terms/hsla/hsla.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/css/concepts/colors/terms/hsla/hsla.md -------------------------------------------------------------------------------- /content/css/concepts/colors/terms/opacity/opacity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/css/concepts/colors/terms/opacity/opacity.md -------------------------------------------------------------------------------- /content/css/concepts/colors/terms/rgb/rgb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/css/concepts/colors/terms/rgb/rgb.md -------------------------------------------------------------------------------- /content/css/concepts/colors/terms/rgba/rgba.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/css/concepts/colors/terms/rgba/rgba.md -------------------------------------------------------------------------------- /content/css/concepts/combinators/combinators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/css/concepts/combinators/combinators.md -------------------------------------------------------------------------------- /content/css/concepts/comments/comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/css/concepts/comments/comments.md -------------------------------------------------------------------------------- /content/css/concepts/cursor/cursor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/css/concepts/cursor/cursor.md -------------------------------------------------------------------------------- /content/css/concepts/display/display.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/css/concepts/display/display.md -------------------------------------------------------------------------------- /content/css/concepts/display/terms/clear/clear.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/css/concepts/display/terms/clear/clear.md -------------------------------------------------------------------------------- /content/css/concepts/display/terms/float/float.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/css/concepts/display/terms/float/float.md -------------------------------------------------------------------------------- /content/css/concepts/flexbox/flexbox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/css/concepts/flexbox/flexbox.md -------------------------------------------------------------------------------- /content/css/concepts/flexbox/terms/flex/flex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/css/concepts/flexbox/terms/flex/flex.md -------------------------------------------------------------------------------- /content/css/concepts/floats/floats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/css/concepts/floats/floats.md -------------------------------------------------------------------------------- /content/css/concepts/grids/grids.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/css/concepts/grids/grids.md -------------------------------------------------------------------------------- /content/css/concepts/grids/terms/grid/grid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/css/concepts/grids/terms/grid/grid.md -------------------------------------------------------------------------------- /content/css/concepts/inheritance/inheritance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/css/concepts/inheritance/inheritance.md -------------------------------------------------------------------------------- /content/css/concepts/margins/margins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/css/concepts/margins/margins.md -------------------------------------------------------------------------------- /content/css/concepts/margins/terms/margin/margin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/css/concepts/margins/terms/margin/margin.md -------------------------------------------------------------------------------- /content/css/concepts/math-functions/terms/max/max.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/css/concepts/math-functions/terms/max/max.md -------------------------------------------------------------------------------- /content/css/concepts/math-functions/terms/min/min.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/css/concepts/math-functions/terms/min/min.md -------------------------------------------------------------------------------- /content/css/concepts/overflow/overflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/css/concepts/overflow/overflow.md -------------------------------------------------------------------------------- /content/css/concepts/padding/padding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/css/concepts/padding/padding.md -------------------------------------------------------------------------------- /content/css/concepts/position/position.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/css/concepts/position/position.md -------------------------------------------------------------------------------- /content/css/concepts/position/terms/bottom/bottom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/css/concepts/position/terms/bottom/bottom.md -------------------------------------------------------------------------------- /content/css/concepts/position/terms/left/left.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/css/concepts/position/terms/left/left.md -------------------------------------------------------------------------------- /content/css/concepts/position/terms/right/right.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/css/concepts/position/terms/right/right.md -------------------------------------------------------------------------------- /content/css/concepts/position/terms/top/top.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/css/concepts/position/terms/top/top.md -------------------------------------------------------------------------------- /content/css/concepts/selectors/selectors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/css/concepts/selectors/selectors.md -------------------------------------------------------------------------------- /content/css/concepts/sizing/sizing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/css/concepts/sizing/sizing.md -------------------------------------------------------------------------------- /content/css/concepts/sizing/terms/height/height.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/css/concepts/sizing/terms/height/height.md -------------------------------------------------------------------------------- /content/css/concepts/sizing/terms/width/width.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/css/concepts/sizing/terms/width/width.md -------------------------------------------------------------------------------- /content/css/concepts/transition/transition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/css/concepts/transition/transition.md -------------------------------------------------------------------------------- /content/css/concepts/typography/terms/font/font.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/css/concepts/typography/terms/font/font.md -------------------------------------------------------------------------------- /content/css/concepts/typography/typography.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/css/concepts/typography/typography.md -------------------------------------------------------------------------------- /content/css/concepts/units/units.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/css/concepts/units/units.md -------------------------------------------------------------------------------- /content/css/concepts/variables/variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/css/concepts/variables/variables.md -------------------------------------------------------------------------------- /content/css/concepts/visibility/visibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/css/concepts/visibility/visibility.md -------------------------------------------------------------------------------- /content/css/css.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/css/css.md -------------------------------------------------------------------------------- /content/cybersecurity/concepts/hacking/hacking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/cybersecurity/concepts/hacking/hacking.md -------------------------------------------------------------------------------- /content/cybersecurity/concepts/nmap/nmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/cybersecurity/concepts/nmap/nmap.md -------------------------------------------------------------------------------- /content/cybersecurity/cybersecurity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/cybersecurity/cybersecurity.md -------------------------------------------------------------------------------- /content/docs-community/concepts/entries/entries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/docs-community/concepts/entries/entries.md -------------------------------------------------------------------------------- /content/docs-community/docs-community.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/docs-community/docs-community.md -------------------------------------------------------------------------------- /content/emojicode/concepts/comments/comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/emojicode/concepts/comments/comments.md -------------------------------------------------------------------------------- /content/emojicode/concepts/for-in/for-in.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/emojicode/concepts/for-in/for-in.md -------------------------------------------------------------------------------- /content/emojicode/concepts/lists/lists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/emojicode/concepts/lists/lists.md -------------------------------------------------------------------------------- /content/emojicode/concepts/operators/operators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/emojicode/concepts/operators/operators.md -------------------------------------------------------------------------------- /content/emojicode/concepts/strings/strings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/emojicode/concepts/strings/strings.md -------------------------------------------------------------------------------- /content/emojicode/emojicode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/emojicode/emojicode.md -------------------------------------------------------------------------------- /content/general/concepts/algorithm/algorithm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/general/concepts/algorithm/algorithm.md -------------------------------------------------------------------------------- /content/general/concepts/api/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/general/concepts/api/api.md -------------------------------------------------------------------------------- /content/general/concepts/argument/argument.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/general/concepts/argument/argument.md -------------------------------------------------------------------------------- /content/general/concepts/array/array.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/general/concepts/array/array.md -------------------------------------------------------------------------------- /content/general/concepts/back-end/back-end.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/general/concepts/back-end/back-end.md -------------------------------------------------------------------------------- /content/general/concepts/big-data/big-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/general/concepts/big-data/big-data.md -------------------------------------------------------------------------------- /content/general/concepts/binary/binary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/general/concepts/binary/binary.md -------------------------------------------------------------------------------- /content/general/concepts/boolean/boolean.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/general/concepts/boolean/boolean.md -------------------------------------------------------------------------------- /content/general/concepts/bot/bot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/general/concepts/bot/bot.md -------------------------------------------------------------------------------- /content/general/concepts/cache/cache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/general/concepts/cache/cache.md -------------------------------------------------------------------------------- /content/general/concepts/cdn/cdn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/general/concepts/cdn/cdn.md -------------------------------------------------------------------------------- /content/general/concepts/class/class.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/general/concepts/class/class.md -------------------------------------------------------------------------------- /content/general/concepts/cms/cms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/general/concepts/cms/cms.md -------------------------------------------------------------------------------- /content/general/concepts/comment/comment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/general/concepts/comment/comment.md -------------------------------------------------------------------------------- /content/general/concepts/cors/cors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/general/concepts/cors/cors.md -------------------------------------------------------------------------------- /content/general/concepts/cpu/cpu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/general/concepts/cpu/cpu.md -------------------------------------------------------------------------------- /content/general/concepts/csv/csv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/general/concepts/csv/csv.md -------------------------------------------------------------------------------- /content/general/concepts/data-types/data-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/general/concepts/data-types/data-types.md -------------------------------------------------------------------------------- /content/general/concepts/database/database.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/general/concepts/database/database.md -------------------------------------------------------------------------------- /content/general/concepts/dictionary/dictionary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/general/concepts/dictionary/dictionary.md -------------------------------------------------------------------------------- /content/general/concepts/dns/dns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/general/concepts/dns/dns.md -------------------------------------------------------------------------------- /content/general/concepts/endianness/endianness.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/general/concepts/endianness/endianness.md -------------------------------------------------------------------------------- /content/general/concepts/error/error.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/general/concepts/error/error.md -------------------------------------------------------------------------------- /content/general/concepts/file-paths/file-paths.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/general/concepts/file-paths/file-paths.md -------------------------------------------------------------------------------- /content/general/concepts/firebase/firebase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/general/concepts/firebase/firebase.md -------------------------------------------------------------------------------- /content/general/concepts/framework/framework.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/general/concepts/framework/framework.md -------------------------------------------------------------------------------- /content/general/concepts/front-end/front-end.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/general/concepts/front-end/front-end.md -------------------------------------------------------------------------------- /content/general/concepts/full-stack/full-stack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/general/concepts/full-stack/full-stack.md -------------------------------------------------------------------------------- /content/general/concepts/function/function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/general/concepts/function/function.md -------------------------------------------------------------------------------- /content/general/concepts/github/github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/general/concepts/github/github.md -------------------------------------------------------------------------------- /content/general/concepts/hash-table/hash-table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/general/concepts/hash-table/hash-table.md -------------------------------------------------------------------------------- /content/general/concepts/http/http.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/general/concepts/http/http.md -------------------------------------------------------------------------------- /content/general/concepts/ide/ide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/general/concepts/ide/ide.md -------------------------------------------------------------------------------- /content/general/concepts/iot/iot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/general/concepts/iot/iot.md -------------------------------------------------------------------------------- /content/general/concepts/json/json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/general/concepts/json/json.md -------------------------------------------------------------------------------- /content/general/concepts/jsp/jsp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/general/concepts/jsp/jsp.md -------------------------------------------------------------------------------- /content/general/concepts/method/method.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/general/concepts/method/method.md -------------------------------------------------------------------------------- /content/general/concepts/middleware/middleware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/general/concepts/middleware/middleware.md -------------------------------------------------------------------------------- /content/general/concepts/modulo/modulo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/general/concepts/modulo/modulo.md -------------------------------------------------------------------------------- /content/general/concepts/nft/nft.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/general/concepts/nft/nft.md -------------------------------------------------------------------------------- /content/general/concepts/number/number.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/general/concepts/number/number.md -------------------------------------------------------------------------------- /content/general/concepts/object/object.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/general/concepts/object/object.md -------------------------------------------------------------------------------- /content/general/concepts/parameter/parameter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/general/concepts/parameter/parameter.md -------------------------------------------------------------------------------- /content/general/concepts/processor/processor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/general/concepts/processor/processor.md -------------------------------------------------------------------------------- /content/general/concepts/protocol/protocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/general/concepts/protocol/protocol.md -------------------------------------------------------------------------------- /content/general/concepts/pseudocode/pseudocode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/general/concepts/pseudocode/pseudocode.md -------------------------------------------------------------------------------- /content/general/concepts/ram/ram.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/general/concepts/ram/ram.md -------------------------------------------------------------------------------- /content/general/concepts/routing/routing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/general/concepts/routing/routing.md -------------------------------------------------------------------------------- /content/general/concepts/runtime/runtime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/general/concepts/runtime/runtime.md -------------------------------------------------------------------------------- /content/general/concepts/server/server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/general/concepts/server/server.md -------------------------------------------------------------------------------- /content/general/concepts/socket-io/socket-io.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/general/concepts/socket-io/socket-io.md -------------------------------------------------------------------------------- /content/general/concepts/ssl/ssl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/general/concepts/ssl/ssl.md -------------------------------------------------------------------------------- /content/general/concepts/string/string.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/general/concepts/string/string.md -------------------------------------------------------------------------------- /content/general/concepts/subroutine/subroutine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/general/concepts/subroutine/subroutine.md -------------------------------------------------------------------------------- /content/general/concepts/svg/svg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/general/concepts/svg/svg.md -------------------------------------------------------------------------------- /content/general/concepts/tech-stack/tech-stack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/general/concepts/tech-stack/tech-stack.md -------------------------------------------------------------------------------- /content/general/concepts/tuple/tuple.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/general/concepts/tuple/tuple.md -------------------------------------------------------------------------------- /content/general/concepts/unicode/unicode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/general/concepts/unicode/unicode.md -------------------------------------------------------------------------------- /content/general/concepts/unix/unix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/general/concepts/unix/unix.md -------------------------------------------------------------------------------- /content/general/concepts/uri/uri.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/general/concepts/uri/uri.md -------------------------------------------------------------------------------- /content/general/concepts/url/url.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/general/concepts/url/url.md -------------------------------------------------------------------------------- /content/general/concepts/urn/urn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/general/concepts/urn/urn.md -------------------------------------------------------------------------------- /content/general/concepts/uuid/uuid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/general/concepts/uuid/uuid.md -------------------------------------------------------------------------------- /content/general/concepts/void/void.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/general/concepts/void/void.md -------------------------------------------------------------------------------- /content/general/concepts/webrtc/webrtc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/general/concepts/webrtc/webrtc.md -------------------------------------------------------------------------------- /content/general/concepts/whitespace/whitespace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/general/concepts/whitespace/whitespace.md -------------------------------------------------------------------------------- /content/general/concepts/wsdl/wsdl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/general/concepts/wsdl/wsdl.md -------------------------------------------------------------------------------- /content/general/concepts/xml/terms/xpath/xpath.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/general/concepts/xml/terms/xpath/xpath.md -------------------------------------------------------------------------------- /content/general/concepts/xml/xml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/general/concepts/xml/xml.md -------------------------------------------------------------------------------- /content/general/general.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/general/general.md -------------------------------------------------------------------------------- /content/git/concepts/add/add.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/git/concepts/add/add.md -------------------------------------------------------------------------------- /content/git/concepts/branch/branch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/git/concepts/branch/branch.md -------------------------------------------------------------------------------- /content/git/concepts/clone/clone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/git/concepts/clone/clone.md -------------------------------------------------------------------------------- /content/git/concepts/commit/commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/git/concepts/commit/commit.md -------------------------------------------------------------------------------- /content/git/concepts/fetch/fetch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/git/concepts/fetch/fetch.md -------------------------------------------------------------------------------- /content/git/concepts/init/init.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/git/concepts/init/init.md -------------------------------------------------------------------------------- /content/git/concepts/merge/merge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/git/concepts/merge/merge.md -------------------------------------------------------------------------------- /content/git/concepts/pull/pull.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/git/concepts/pull/pull.md -------------------------------------------------------------------------------- /content/git/concepts/push/push.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/git/concepts/push/push.md -------------------------------------------------------------------------------- /content/git/concepts/reset/reset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/git/concepts/reset/reset.md -------------------------------------------------------------------------------- /content/git/concepts/status/status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/git/concepts/status/status.md -------------------------------------------------------------------------------- /content/git/concepts/tag/tag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/git/concepts/tag/tag.md -------------------------------------------------------------------------------- /content/git/git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/git/git.md -------------------------------------------------------------------------------- /content/go/concepts/arrays/arrays.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/go/concepts/arrays/arrays.md -------------------------------------------------------------------------------- /content/go/concepts/comments/comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/go/concepts/comments/comments.md -------------------------------------------------------------------------------- /content/go/concepts/conditionals/conditionals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/go/concepts/conditionals/conditionals.md -------------------------------------------------------------------------------- /content/go/concepts/data-types/data-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/go/concepts/data-types/data-types.md -------------------------------------------------------------------------------- /content/go/concepts/goroutines/goroutines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/go/concepts/goroutines/goroutines.md -------------------------------------------------------------------------------- /content/go/concepts/loops/loops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/go/concepts/loops/loops.md -------------------------------------------------------------------------------- /content/go/concepts/map/map.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/go/concepts/map/map.md -------------------------------------------------------------------------------- /content/go/concepts/operators/operators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/go/concepts/operators/operators.md -------------------------------------------------------------------------------- /content/go/concepts/slices/slices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/go/concepts/slices/slices.md -------------------------------------------------------------------------------- /content/go/concepts/switch/switch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/go/concepts/switch/switch.md -------------------------------------------------------------------------------- /content/go/concepts/variables/variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/go/concepts/variables/variables.md -------------------------------------------------------------------------------- /content/go/go.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/go/go.md -------------------------------------------------------------------------------- /content/html/concepts/attributes/attributes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/html/concepts/attributes/attributes.md -------------------------------------------------------------------------------- /content/html/concepts/classes/classes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/html/concepts/classes/classes.md -------------------------------------------------------------------------------- /content/html/concepts/comments/comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/html/concepts/comments/comments.md -------------------------------------------------------------------------------- /content/html/concepts/elements/elements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/html/concepts/elements/elements.md -------------------------------------------------------------------------------- /content/html/concepts/elements/terms/a/a.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/html/concepts/elements/terms/a/a.md -------------------------------------------------------------------------------- /content/html/concepts/elements/terms/abbr/abbr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/html/concepts/elements/terms/abbr/abbr.md -------------------------------------------------------------------------------- /content/html/concepts/elements/terms/b/b.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/html/concepts/elements/terms/b/b.md -------------------------------------------------------------------------------- /content/html/concepts/elements/terms/br/br.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/html/concepts/elements/terms/br/br.md -------------------------------------------------------------------------------- /content/html/concepts/elements/terms/cite/cite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/html/concepts/elements/terms/cite/cite.md -------------------------------------------------------------------------------- /content/html/concepts/elements/terms/code/code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/html/concepts/elements/terms/code/code.md -------------------------------------------------------------------------------- /content/html/concepts/elements/terms/dd/dd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/html/concepts/elements/terms/dd/dd.md -------------------------------------------------------------------------------- /content/html/concepts/elements/terms/del/del.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/html/concepts/elements/terms/del/del.md -------------------------------------------------------------------------------- /content/html/concepts/elements/terms/div/div.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/html/concepts/elements/terms/div/div.md -------------------------------------------------------------------------------- /content/html/concepts/elements/terms/dl/dl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/html/concepts/elements/terms/dl/dl.md -------------------------------------------------------------------------------- /content/html/concepts/elements/terms/dt/dt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/html/concepts/elements/terms/dt/dt.md -------------------------------------------------------------------------------- /content/html/concepts/elements/terms/em/em.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/html/concepts/elements/terms/em/em.md -------------------------------------------------------------------------------- /content/html/concepts/elements/terms/font/font.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/html/concepts/elements/terms/font/font.md -------------------------------------------------------------------------------- /content/html/concepts/elements/terms/form/form.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/html/concepts/elements/terms/form/form.md -------------------------------------------------------------------------------- /content/html/concepts/elements/terms/head/head.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/html/concepts/elements/terms/head/head.md -------------------------------------------------------------------------------- /content/html/concepts/elements/terms/hr/hr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/html/concepts/elements/terms/hr/hr.md -------------------------------------------------------------------------------- /content/html/concepts/elements/terms/html/html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/html/concepts/elements/terms/html/html.md -------------------------------------------------------------------------------- /content/html/concepts/elements/terms/i/i.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/html/concepts/elements/terms/i/i.md -------------------------------------------------------------------------------- /content/html/concepts/elements/terms/img/img.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/html/concepts/elements/terms/img/img.md -------------------------------------------------------------------------------- /content/html/concepts/elements/terms/kbd/kbd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/html/concepts/elements/terms/kbd/kbd.md -------------------------------------------------------------------------------- /content/html/concepts/elements/terms/li/li.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/html/concepts/elements/terms/li/li.md -------------------------------------------------------------------------------- /content/html/concepts/elements/terms/link/link.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/html/concepts/elements/terms/link/link.md -------------------------------------------------------------------------------- /content/html/concepts/elements/terms/menu/menu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/html/concepts/elements/terms/menu/menu.md -------------------------------------------------------------------------------- /content/html/concepts/elements/terms/meta/meta.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/html/concepts/elements/terms/meta/meta.md -------------------------------------------------------------------------------- /content/html/concepts/elements/terms/ol/ol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/html/concepts/elements/terms/ol/ol.md -------------------------------------------------------------------------------- /content/html/concepts/elements/terms/q/q.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/html/concepts/elements/terms/q/q.md -------------------------------------------------------------------------------- /content/html/concepts/elements/terms/s/s.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/html/concepts/elements/terms/s/s.md -------------------------------------------------------------------------------- /content/html/concepts/elements/terms/span/span.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/html/concepts/elements/terms/span/span.md -------------------------------------------------------------------------------- /content/html/concepts/elements/terms/u/u.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/html/concepts/elements/terms/u/u.md -------------------------------------------------------------------------------- /content/html/concepts/elements/terms/ul/ul.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/html/concepts/elements/terms/ul/ul.md -------------------------------------------------------------------------------- /content/html/concepts/entities/entities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/html/concepts/entities/entities.md -------------------------------------------------------------------------------- /content/html/concepts/favicon/favicon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/html/concepts/favicon/favicon.md -------------------------------------------------------------------------------- /content/html/concepts/file-paths/file-paths.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/html/concepts/file-paths/file-paths.md -------------------------------------------------------------------------------- /content/html/concepts/forms/forms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/html/concepts/forms/forms.md -------------------------------------------------------------------------------- /content/html/concepts/headings/headings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/html/concepts/headings/headings.md -------------------------------------------------------------------------------- /content/html/concepts/iframes/iframes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/html/concepts/iframes/iframes.md -------------------------------------------------------------------------------- /content/html/concepts/images/images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/html/concepts/images/images.md -------------------------------------------------------------------------------- /content/html/concepts/links/links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/html/concepts/links/links.md -------------------------------------------------------------------------------- /content/html/concepts/lists/lists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/html/concepts/lists/lists.md -------------------------------------------------------------------------------- /content/html/concepts/paragraphs/paragraphs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/html/concepts/paragraphs/paragraphs.md -------------------------------------------------------------------------------- /content/html/concepts/tables/tables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/html/concepts/tables/tables.md -------------------------------------------------------------------------------- /content/html/concepts/tables/terms/table/table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/html/concepts/tables/terms/table/table.md -------------------------------------------------------------------------------- /content/html/concepts/tables/terms/tbody/tbody.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/html/concepts/tables/terms/tbody/tbody.md -------------------------------------------------------------------------------- /content/html/concepts/tables/terms/td/td.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/html/concepts/tables/terms/td/td.md -------------------------------------------------------------------------------- /content/html/concepts/tables/terms/tfoot/tfoot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/html/concepts/tables/terms/tfoot/tfoot.md -------------------------------------------------------------------------------- /content/html/concepts/tables/terms/th/th.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/html/concepts/tables/terms/th/th.md -------------------------------------------------------------------------------- /content/html/concepts/tables/terms/thead/thead.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/html/concepts/tables/terms/thead/thead.md -------------------------------------------------------------------------------- /content/html/concepts/tables/terms/tr/tr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/html/concepts/tables/terms/tr/tr.md -------------------------------------------------------------------------------- /content/html/concepts/tags/tags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/html/concepts/tags/tags.md -------------------------------------------------------------------------------- /content/html/concepts/videos/videos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/html/concepts/videos/videos.md -------------------------------------------------------------------------------- /content/html/html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/html/html.md -------------------------------------------------------------------------------- /content/java/concepts/array-list/array-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/java/concepts/array-list/array-list.md -------------------------------------------------------------------------------- /content/java/concepts/array-list/terms/add/add.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/java/concepts/array-list/terms/add/add.md -------------------------------------------------------------------------------- /content/java/concepts/array-list/terms/get/get.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/java/concepts/array-list/terms/get/get.md -------------------------------------------------------------------------------- /content/java/concepts/array-list/terms/set/set.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/java/concepts/array-list/terms/set/set.md -------------------------------------------------------------------------------- /content/java/concepts/arrays/arrays.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/java/concepts/arrays/arrays.md -------------------------------------------------------------------------------- /content/java/concepts/arrays/terms/fill/fill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/java/concepts/arrays/terms/fill/fill.md -------------------------------------------------------------------------------- /content/java/concepts/arrays/terms/sort/sort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/java/concepts/arrays/terms/sort/sort.md -------------------------------------------------------------------------------- /content/java/concepts/classes/classes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/java/concepts/classes/classes.md -------------------------------------------------------------------------------- /content/java/concepts/collection/collection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/java/concepts/collection/collection.md -------------------------------------------------------------------------------- /content/java/concepts/collections/collections.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/java/concepts/collections/collections.md -------------------------------------------------------------------------------- /content/java/concepts/collections/terms/max/max.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/java/concepts/collections/terms/max/max.md -------------------------------------------------------------------------------- /content/java/concepts/collections/terms/min/min.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/java/concepts/collections/terms/min/min.md -------------------------------------------------------------------------------- /content/java/concepts/comments/comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/java/concepts/comments/comments.md -------------------------------------------------------------------------------- /content/java/concepts/comparable/comparable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/java/concepts/comparable/comparable.md -------------------------------------------------------------------------------- /content/java/concepts/comparator/comparator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/java/concepts/comparator/comparator.md -------------------------------------------------------------------------------- /content/java/concepts/compiler/compiler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/java/concepts/compiler/compiler.md -------------------------------------------------------------------------------- /content/java/concepts/conditionals/conditionals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/java/concepts/conditionals/conditionals.md -------------------------------------------------------------------------------- /content/java/concepts/constructors/constructors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/java/concepts/constructors/constructors.md -------------------------------------------------------------------------------- /content/java/concepts/data-types/data-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/java/concepts/data-types/data-types.md -------------------------------------------------------------------------------- /content/java/concepts/enums/enums.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/java/concepts/enums/enums.md -------------------------------------------------------------------------------- /content/java/concepts/errors/errors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/java/concepts/errors/errors.md -------------------------------------------------------------------------------- /content/java/concepts/files/files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/java/concepts/files/files.md -------------------------------------------------------------------------------- /content/java/concepts/generics/generics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/java/concepts/generics/generics.md -------------------------------------------------------------------------------- /content/java/concepts/hashmap/hashmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/java/concepts/hashmap/hashmap.md -------------------------------------------------------------------------------- /content/java/concepts/hashset/hashset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/java/concepts/hashset/hashset.md -------------------------------------------------------------------------------- /content/java/concepts/inheritance/inheritance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/java/concepts/inheritance/inheritance.md -------------------------------------------------------------------------------- /content/java/concepts/interfaces/interfaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/java/concepts/interfaces/interfaces.md -------------------------------------------------------------------------------- /content/java/concepts/iterator/iterator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/java/concepts/iterator/iterator.md -------------------------------------------------------------------------------- /content/java/concepts/iterator/terms/add/add.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/java/concepts/iterator/terms/add/add.md -------------------------------------------------------------------------------- /content/java/concepts/iterator/terms/next/next.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/java/concepts/iterator/terms/next/next.md -------------------------------------------------------------------------------- /content/java/concepts/iterator/terms/set/set.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/java/concepts/iterator/terms/set/set.md -------------------------------------------------------------------------------- /content/java/concepts/javabeans/javabeans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/java/concepts/javabeans/javabeans.md -------------------------------------------------------------------------------- /content/java/concepts/loops/loops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/java/concepts/loops/loops.md -------------------------------------------------------------------------------- /content/java/concepts/map/map.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/java/concepts/map/map.md -------------------------------------------------------------------------------- /content/java/concepts/math-methods/math-methods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/java/concepts/math-methods/math-methods.md -------------------------------------------------------------------------------- /content/java/concepts/methods/methods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/java/concepts/methods/methods.md -------------------------------------------------------------------------------- /content/java/concepts/operators/operators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/java/concepts/operators/operators.md -------------------------------------------------------------------------------- /content/java/concepts/output/output.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/java/concepts/output/output.md -------------------------------------------------------------------------------- /content/java/concepts/output/terms/print/print.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/java/concepts/output/terms/print/print.md -------------------------------------------------------------------------------- /content/java/concepts/pojo/pojo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/java/concepts/pojo/pojo.md -------------------------------------------------------------------------------- /content/java/concepts/queue/queue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/java/concepts/queue/queue.md -------------------------------------------------------------------------------- /content/java/concepts/random/random.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/java/concepts/random/random.md -------------------------------------------------------------------------------- /content/java/concepts/set/set.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/java/concepts/set/set.md -------------------------------------------------------------------------------- /content/java/concepts/stack/stack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/java/concepts/stack/stack.md -------------------------------------------------------------------------------- /content/java/concepts/strings/strings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/java/concepts/strings/strings.md -------------------------------------------------------------------------------- /content/java/concepts/strings/terms/split/split.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/java/concepts/strings/terms/split/split.md -------------------------------------------------------------------------------- /content/java/concepts/switch/switch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/java/concepts/switch/switch.md -------------------------------------------------------------------------------- /content/java/concepts/threading/threading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/java/concepts/threading/threading.md -------------------------------------------------------------------------------- /content/java/concepts/treemap/treemap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/java/concepts/treemap/treemap.md -------------------------------------------------------------------------------- /content/java/concepts/user-input/user-input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/java/concepts/user-input/user-input.md -------------------------------------------------------------------------------- /content/java/concepts/variables/variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/java/concepts/variables/variables.md -------------------------------------------------------------------------------- /content/java/java.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/java/java.md -------------------------------------------------------------------------------- /content/javascript/concepts/ajax/ajax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/javascript/concepts/ajax/ajax.md -------------------------------------------------------------------------------- /content/javascript/concepts/arrays/arrays.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/javascript/concepts/arrays/arrays.md -------------------------------------------------------------------------------- /content/javascript/concepts/callbacks/callbacks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/javascript/concepts/callbacks/callbacks.md -------------------------------------------------------------------------------- /content/javascript/concepts/closures/closures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/javascript/concepts/closures/closures.md -------------------------------------------------------------------------------- /content/javascript/concepts/comments/comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/javascript/concepts/comments/comments.md -------------------------------------------------------------------------------- /content/javascript/concepts/dates/dates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/javascript/concepts/dates/dates.md -------------------------------------------------------------------------------- /content/javascript/concepts/dates/terms/UTC/UTC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/javascript/concepts/dates/terms/UTC/UTC.md -------------------------------------------------------------------------------- /content/javascript/concepts/dates/terms/now/now.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/javascript/concepts/dates/terms/now/now.md -------------------------------------------------------------------------------- /content/javascript/concepts/enums/enums.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/javascript/concepts/enums/enums.md -------------------------------------------------------------------------------- /content/javascript/concepts/errors/errors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/javascript/concepts/errors/errors.md -------------------------------------------------------------------------------- /content/javascript/concepts/events/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/javascript/concepts/events/events.md -------------------------------------------------------------------------------- /content/javascript/concepts/functions/functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/javascript/concepts/functions/functions.md -------------------------------------------------------------------------------- /content/javascript/concepts/hoisting/hoisting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/javascript/concepts/hoisting/hoisting.md -------------------------------------------------------------------------------- /content/javascript/concepts/iterators/iterators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/javascript/concepts/iterators/iterators.md -------------------------------------------------------------------------------- /content/javascript/concepts/jquery/jquery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/javascript/concepts/jquery/jquery.md -------------------------------------------------------------------------------- /content/javascript/concepts/json/json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/javascript/concepts/json/json.md -------------------------------------------------------------------------------- /content/javascript/concepts/loops/loops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/javascript/concepts/loops/loops.md -------------------------------------------------------------------------------- /content/javascript/concepts/map/map.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/javascript/concepts/map/map.md -------------------------------------------------------------------------------- /content/javascript/concepts/map/terms/get/get.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/javascript/concepts/map/terms/get/get.md -------------------------------------------------------------------------------- /content/javascript/concepts/map/terms/has/has.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/javascript/concepts/map/terms/has/has.md -------------------------------------------------------------------------------- /content/javascript/concepts/map/terms/set/set.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/javascript/concepts/map/terms/set/set.md -------------------------------------------------------------------------------- /content/javascript/concepts/map/terms/size/size.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/javascript/concepts/map/terms/size/size.md -------------------------------------------------------------------------------- /content/javascript/concepts/methods/methods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/javascript/concepts/methods/methods.md -------------------------------------------------------------------------------- /content/javascript/concepts/modules/modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/javascript/concepts/modules/modules.md -------------------------------------------------------------------------------- /content/javascript/concepts/npm/npm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/javascript/concepts/npm/npm.md -------------------------------------------------------------------------------- /content/javascript/concepts/objects/objects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/javascript/concepts/objects/objects.md -------------------------------------------------------------------------------- /content/javascript/concepts/operators/operators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/javascript/concepts/operators/operators.md -------------------------------------------------------------------------------- /content/javascript/concepts/promise/promise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/javascript/concepts/promise/promise.md -------------------------------------------------------------------------------- /content/javascript/concepts/regexp/regexp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/javascript/concepts/regexp/regexp.md -------------------------------------------------------------------------------- /content/javascript/concepts/requests/requests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/javascript/concepts/requests/requests.md -------------------------------------------------------------------------------- /content/javascript/concepts/sets/sets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/javascript/concepts/sets/sets.md -------------------------------------------------------------------------------- /content/javascript/concepts/sets/terms/add/add.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/javascript/concepts/sets/terms/add/add.md -------------------------------------------------------------------------------- /content/javascript/concepts/sets/terms/has/has.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/javascript/concepts/sets/terms/has/has.md -------------------------------------------------------------------------------- /content/javascript/concepts/sort/sort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/javascript/concepts/sort/sort.md -------------------------------------------------------------------------------- /content/javascript/concepts/strings/strings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/javascript/concepts/strings/strings.md -------------------------------------------------------------------------------- /content/javascript/concepts/substring/substring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/javascript/concepts/substring/substring.md -------------------------------------------------------------------------------- /content/javascript/concepts/switch/switch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/javascript/concepts/switch/switch.md -------------------------------------------------------------------------------- /content/javascript/concepts/this/this.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/javascript/concepts/this/this.md -------------------------------------------------------------------------------- /content/javascript/concepts/try-catch/try-catch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/javascript/concepts/try-catch/try-catch.md -------------------------------------------------------------------------------- /content/javascript/concepts/variables/variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/javascript/concepts/variables/variables.md -------------------------------------------------------------------------------- /content/javascript/javascript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/javascript/javascript.md -------------------------------------------------------------------------------- /content/kotlin/concepts/arrays/arrays.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/kotlin/concepts/arrays/arrays.md -------------------------------------------------------------------------------- /content/kotlin/concepts/comments/comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/kotlin/concepts/comments/comments.md -------------------------------------------------------------------------------- /content/kotlin/concepts/data-types/data-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/kotlin/concepts/data-types/data-types.md -------------------------------------------------------------------------------- /content/kotlin/concepts/hashmap/hashmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/kotlin/concepts/hashmap/hashmap.md -------------------------------------------------------------------------------- /content/kotlin/concepts/hashmap/terms/get/get.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/kotlin/concepts/hashmap/terms/get/get.md -------------------------------------------------------------------------------- /content/kotlin/concepts/hashmap/terms/put/put.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/kotlin/concepts/hashmap/terms/put/put.md -------------------------------------------------------------------------------- /content/kotlin/concepts/loops/loops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/kotlin/concepts/loops/loops.md -------------------------------------------------------------------------------- /content/kotlin/concepts/strings/strings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/kotlin/concepts/strings/strings.md -------------------------------------------------------------------------------- /content/kotlin/concepts/variables/variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/kotlin/concepts/variables/variables.md -------------------------------------------------------------------------------- /content/kotlin/kotlin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/kotlin/kotlin.md -------------------------------------------------------------------------------- /content/markdown/concepts/emphasis/emphasis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/markdown/concepts/emphasis/emphasis.md -------------------------------------------------------------------------------- /content/markdown/concepts/headings/headings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/markdown/concepts/headings/headings.md -------------------------------------------------------------------------------- /content/markdown/concepts/images/images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/markdown/concepts/images/images.md -------------------------------------------------------------------------------- /content/markdown/concepts/links/links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/markdown/concepts/links/links.md -------------------------------------------------------------------------------- /content/markdown/concepts/lists/lists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/markdown/concepts/lists/lists.md -------------------------------------------------------------------------------- /content/markdown/concepts/paragraphs/paragraphs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/markdown/concepts/paragraphs/paragraphs.md -------------------------------------------------------------------------------- /content/markdown/concepts/tables/tables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/markdown/concepts/tables/tables.md -------------------------------------------------------------------------------- /content/markdown/markdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/markdown/markdown.md -------------------------------------------------------------------------------- /content/matplotlib/concepts/pyplot/pyplot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/matplotlib/concepts/pyplot/pyplot.md -------------------------------------------------------------------------------- /content/matplotlib/matplotlib.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/matplotlib/matplotlib.md -------------------------------------------------------------------------------- /content/numpy/concepts/ndarray/ndarray.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/numpy/concepts/ndarray/ndarray.md -------------------------------------------------------------------------------- /content/numpy/numpy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/numpy/numpy.md -------------------------------------------------------------------------------- /content/open-source/concepts/angular/angular.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/open-source/concepts/angular/angular.md -------------------------------------------------------------------------------- /content/open-source/concepts/express/express.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/open-source/concepts/express/express.md -------------------------------------------------------------------------------- /content/open-source/concepts/graphql/graphql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/open-source/concepts/graphql/graphql.md -------------------------------------------------------------------------------- /content/open-source/concepts/linux/linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/open-source/concepts/linux/linux.md -------------------------------------------------------------------------------- /content/open-source/concepts/next-js/next-js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/open-source/concepts/next-js/next-js.md -------------------------------------------------------------------------------- /content/open-source/concepts/node-js/node-js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/open-source/concepts/node-js/node-js.md -------------------------------------------------------------------------------- /content/open-source/concepts/webpack/webpack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/open-source/concepts/webpack/webpack.md -------------------------------------------------------------------------------- /content/open-source/open-source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/open-source/open-source.md -------------------------------------------------------------------------------- /content/pandas/concepts/dataframe/dataframe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/pandas/concepts/dataframe/dataframe.md -------------------------------------------------------------------------------- /content/pandas/concepts/dataframe/terms/loc/loc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/pandas/concepts/dataframe/terms/loc/loc.md -------------------------------------------------------------------------------- /content/pandas/concepts/groupby/groupby.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/pandas/concepts/groupby/groupby.md -------------------------------------------------------------------------------- /content/pandas/concepts/groupby/terms/max/max.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/pandas/concepts/groupby/terms/max/max.md -------------------------------------------------------------------------------- /content/pandas/concepts/groupby/terms/mean/mean.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/pandas/concepts/groupby/terms/mean/mean.md -------------------------------------------------------------------------------- /content/pandas/concepts/groupby/terms/min/min.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/pandas/concepts/groupby/terms/min/min.md -------------------------------------------------------------------------------- /content/pandas/concepts/groupby/terms/sum/sum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/pandas/concepts/groupby/terms/sum/sum.md -------------------------------------------------------------------------------- /content/pandas/pandas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/pandas/pandas.md -------------------------------------------------------------------------------- /content/php/concepts/arrays/arrays.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/php/concepts/arrays/arrays.md -------------------------------------------------------------------------------- /content/php/concepts/classes/classes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/php/concepts/classes/classes.md -------------------------------------------------------------------------------- /content/php/concepts/comments/comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/php/concepts/comments/comments.md -------------------------------------------------------------------------------- /content/php/concepts/conditionals/conditionals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/php/concepts/conditionals/conditionals.md -------------------------------------------------------------------------------- /content/php/concepts/data-types/data-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/php/concepts/data-types/data-types.md -------------------------------------------------------------------------------- /content/php/concepts/functions/functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/php/concepts/functions/functions.md -------------------------------------------------------------------------------- /content/php/concepts/loops/loops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/php/concepts/loops/loops.md -------------------------------------------------------------------------------- /content/php/concepts/operators/operators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/php/concepts/operators/operators.md -------------------------------------------------------------------------------- /content/php/concepts/variables/variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/php/concepts/variables/variables.md -------------------------------------------------------------------------------- /content/php/php.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/php/php.md -------------------------------------------------------------------------------- /content/python/concepts/assert/assert.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/python/concepts/assert/assert.md -------------------------------------------------------------------------------- /content/python/concepts/casting/casting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/python/concepts/casting/casting.md -------------------------------------------------------------------------------- /content/python/concepts/classes/classes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/python/concepts/classes/classes.md -------------------------------------------------------------------------------- /content/python/concepts/comments/comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/python/concepts/comments/comments.md -------------------------------------------------------------------------------- /content/python/concepts/data-types/data-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/python/concepts/data-types/data-types.md -------------------------------------------------------------------------------- /content/python/concepts/dates/dates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/python/concepts/dates/dates.md -------------------------------------------------------------------------------- /content/python/concepts/dates/terms/date/date.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/python/concepts/dates/terms/date/date.md -------------------------------------------------------------------------------- /content/python/concepts/dates/terms/now/now.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/python/concepts/dates/terms/now/now.md -------------------------------------------------------------------------------- /content/python/concepts/dates/terms/time/time.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/python/concepts/dates/terms/time/time.md -------------------------------------------------------------------------------- /content/python/concepts/decorators/decorators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/python/concepts/decorators/decorators.md -------------------------------------------------------------------------------- /content/python/concepts/errors/errors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/python/concepts/errors/errors.md -------------------------------------------------------------------------------- /content/python/concepts/files/files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/python/concepts/files/files.md -------------------------------------------------------------------------------- /content/python/concepts/files/terms/close/close.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/python/concepts/files/terms/close/close.md -------------------------------------------------------------------------------- /content/python/concepts/files/terms/read/read.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/python/concepts/files/terms/read/read.md -------------------------------------------------------------------------------- /content/python/concepts/files/terms/rmdir/rmdir.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/python/concepts/files/terms/rmdir/rmdir.md -------------------------------------------------------------------------------- /content/python/concepts/files/terms/seek/seek.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/python/concepts/files/terms/seek/seek.md -------------------------------------------------------------------------------- /content/python/concepts/files/terms/write/write.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/python/concepts/files/terms/write/write.md -------------------------------------------------------------------------------- /content/python/concepts/functions/functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/python/concepts/functions/functions.md -------------------------------------------------------------------------------- /content/python/concepts/generators/generators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/python/concepts/generators/generators.md -------------------------------------------------------------------------------- /content/python/concepts/glob-module/glob-module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/python/concepts/glob-module/glob-module.md -------------------------------------------------------------------------------- /content/python/concepts/idle/idle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/python/concepts/idle/idle.md -------------------------------------------------------------------------------- /content/python/concepts/inheritance/inheritance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/python/concepts/inheritance/inheritance.md -------------------------------------------------------------------------------- /content/python/concepts/iterators/iterators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/python/concepts/iterators/iterators.md -------------------------------------------------------------------------------- /content/python/concepts/json-module/json-module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/python/concepts/json-module/json-module.md -------------------------------------------------------------------------------- /content/python/concepts/keywords/keywords.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/python/concepts/keywords/keywords.md -------------------------------------------------------------------------------- /content/python/concepts/keywords/terms/del/del.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/python/concepts/keywords/terms/del/del.md -------------------------------------------------------------------------------- /content/python/concepts/lists/lists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/python/concepts/lists/lists.md -------------------------------------------------------------------------------- /content/python/concepts/lists/terms/clear/clear.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/python/concepts/lists/terms/clear/clear.md -------------------------------------------------------------------------------- /content/python/concepts/lists/terms/copy/copy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/python/concepts/lists/terms/copy/copy.md -------------------------------------------------------------------------------- /content/python/concepts/lists/terms/count/count.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/python/concepts/lists/terms/count/count.md -------------------------------------------------------------------------------- /content/python/concepts/lists/terms/index/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/python/concepts/lists/terms/index/index.md -------------------------------------------------------------------------------- /content/python/concepts/lists/terms/pop/pop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/python/concepts/lists/terms/pop/pop.md -------------------------------------------------------------------------------- /content/python/concepts/lists/terms/sort/sort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/python/concepts/lists/terms/sort/sort.md -------------------------------------------------------------------------------- /content/python/concepts/loops/loops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/python/concepts/loops/loops.md -------------------------------------------------------------------------------- /content/python/concepts/math-module/math-module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/python/concepts/math-module/math-module.md -------------------------------------------------------------------------------- /content/python/concepts/memoization/memoization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/python/concepts/memoization/memoization.md -------------------------------------------------------------------------------- /content/python/concepts/modules/modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/python/concepts/modules/modules.md -------------------------------------------------------------------------------- /content/python/concepts/modules/terms/tqdm/tqdm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/python/concepts/modules/terms/tqdm/tqdm.md -------------------------------------------------------------------------------- /content/python/concepts/modulo/modulo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/python/concepts/modulo/modulo.md -------------------------------------------------------------------------------- /content/python/concepts/operators/operators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/python/concepts/operators/operators.md -------------------------------------------------------------------------------- /content/python/concepts/pip/pip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/python/concepts/pip/pip.md -------------------------------------------------------------------------------- /content/python/concepts/recursion/recursion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/python/concepts/recursion/recursion.md -------------------------------------------------------------------------------- /content/python/concepts/regex/regex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/python/concepts/regex/regex.md -------------------------------------------------------------------------------- /content/python/concepts/regex/terms/match/match.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/python/concepts/regex/terms/match/match.md -------------------------------------------------------------------------------- /content/python/concepts/regex/terms/split/split.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/python/concepts/regex/terms/split/split.md -------------------------------------------------------------------------------- /content/python/concepts/regex/terms/sub/sub.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/python/concepts/regex/terms/sub/sub.md -------------------------------------------------------------------------------- /content/python/concepts/scope/scope.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/python/concepts/scope/scope.md -------------------------------------------------------------------------------- /content/python/concepts/sets/sets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/python/concepts/sets/sets.md -------------------------------------------------------------------------------- /content/python/concepts/sets/terms/union/union.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/python/concepts/sets/terms/union/union.md -------------------------------------------------------------------------------- /content/python/concepts/strings/strings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/python/concepts/strings/strings.md -------------------------------------------------------------------------------- /content/python/concepts/strings/terms/find/find.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/python/concepts/strings/terms/find/find.md -------------------------------------------------------------------------------- /content/python/concepts/strings/terms/join/join.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/python/concepts/strings/terms/join/join.md -------------------------------------------------------------------------------- /content/python/concepts/substrings/substrings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/python/concepts/substrings/substrings.md -------------------------------------------------------------------------------- /content/python/concepts/threading/terms/run/run.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/python/concepts/threading/terms/run/run.md -------------------------------------------------------------------------------- /content/python/concepts/threading/threading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/python/concepts/threading/threading.md -------------------------------------------------------------------------------- /content/python/concepts/time-module/time-module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/python/concepts/time-module/time-module.md -------------------------------------------------------------------------------- /content/python/concepts/tuples/tuples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/python/concepts/tuples/tuples.md -------------------------------------------------------------------------------- /content/python/concepts/variables/variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/python/concepts/variables/variables.md -------------------------------------------------------------------------------- /content/python/python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/python/python.md -------------------------------------------------------------------------------- /content/r/concepts/comments/comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/r/concepts/comments/comments.md -------------------------------------------------------------------------------- /content/r/concepts/csv-files/csv-files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/r/concepts/csv-files/csv-files.md -------------------------------------------------------------------------------- /content/r/concepts/data-frames/data-frames.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/r/concepts/data-frames/data-frames.md -------------------------------------------------------------------------------- /content/r/concepts/data-frames/terms/ncol/ncol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/r/concepts/data-frames/terms/ncol/ncol.md -------------------------------------------------------------------------------- /content/r/concepts/data-frames/terms/nrow/nrow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/r/concepts/data-frames/terms/nrow/nrow.md -------------------------------------------------------------------------------- /content/r/concepts/data-types/data-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/r/concepts/data-types/data-types.md -------------------------------------------------------------------------------- /content/r/concepts/functions/functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/r/concepts/functions/functions.md -------------------------------------------------------------------------------- /content/r/concepts/loops/loops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/r/concepts/loops/loops.md -------------------------------------------------------------------------------- /content/r/concepts/operators/operators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/r/concepts/operators/operators.md -------------------------------------------------------------------------------- /content/r/concepts/variables/variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/r/concepts/variables/variables.md -------------------------------------------------------------------------------- /content/r/concepts/vectors/vectors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/r/concepts/vectors/vectors.md -------------------------------------------------------------------------------- /content/r/r.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/r/r.md -------------------------------------------------------------------------------- /content/react/concepts/components/components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/react/concepts/components/components.md -------------------------------------------------------------------------------- /content/react/concepts/hooks/hooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/react/concepts/hooks/hooks.md -------------------------------------------------------------------------------- /content/react/concepts/jsx/jsx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/react/concepts/jsx/jsx.md -------------------------------------------------------------------------------- /content/react/concepts/props/props.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/react/concepts/props/props.md -------------------------------------------------------------------------------- /content/react/concepts/routing/routing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/react/concepts/routing/routing.md -------------------------------------------------------------------------------- /content/react/concepts/state/state.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/react/concepts/state/state.md -------------------------------------------------------------------------------- /content/react/concepts/virtual-dom/virtual-dom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/react/concepts/virtual-dom/virtual-dom.md -------------------------------------------------------------------------------- /content/react/react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/react/react.md -------------------------------------------------------------------------------- /content/ruby/concepts/arrays/arrays.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/ruby/concepts/arrays/arrays.md -------------------------------------------------------------------------------- /content/ruby/concepts/casting/casting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/ruby/concepts/casting/casting.md -------------------------------------------------------------------------------- /content/ruby/concepts/classes/classes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/ruby/concepts/classes/classes.md -------------------------------------------------------------------------------- /content/ruby/concepts/comments/comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/ruby/concepts/comments/comments.md -------------------------------------------------------------------------------- /content/ruby/concepts/conditionals/conditionals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/ruby/concepts/conditionals/conditionals.md -------------------------------------------------------------------------------- /content/ruby/concepts/data-types/data-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/ruby/concepts/data-types/data-types.md -------------------------------------------------------------------------------- /content/ruby/concepts/dates/dates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/ruby/concepts/dates/dates.md -------------------------------------------------------------------------------- /content/ruby/concepts/errors/errors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/ruby/concepts/errors/errors.md -------------------------------------------------------------------------------- /content/ruby/concepts/files/files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/ruby/concepts/files/files.md -------------------------------------------------------------------------------- /content/ruby/concepts/functions/functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/ruby/concepts/functions/functions.md -------------------------------------------------------------------------------- /content/ruby/concepts/gems/gems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/ruby/concepts/gems/gems.md -------------------------------------------------------------------------------- /content/ruby/concepts/hashes/hashes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/ruby/concepts/hashes/hashes.md -------------------------------------------------------------------------------- /content/ruby/concepts/inheritance/inheritance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/ruby/concepts/inheritance/inheritance.md -------------------------------------------------------------------------------- /content/ruby/concepts/iterators/iterators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/ruby/concepts/iterators/iterators.md -------------------------------------------------------------------------------- /content/ruby/concepts/lambda/lambda.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/ruby/concepts/lambda/lambda.md -------------------------------------------------------------------------------- /content/ruby/concepts/loops/loops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/ruby/concepts/loops/loops.md -------------------------------------------------------------------------------- /content/ruby/concepts/modules/modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/ruby/concepts/modules/modules.md -------------------------------------------------------------------------------- /content/ruby/concepts/modulo/modulo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/ruby/concepts/modulo/modulo.md -------------------------------------------------------------------------------- /content/ruby/concepts/operators/operators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/ruby/concepts/operators/operators.md -------------------------------------------------------------------------------- /content/ruby/concepts/random/random.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/ruby/concepts/random/random.md -------------------------------------------------------------------------------- /content/ruby/concepts/regexp/regexp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/ruby/concepts/regexp/regexp.md -------------------------------------------------------------------------------- /content/ruby/concepts/scope/scope.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/ruby/concepts/scope/scope.md -------------------------------------------------------------------------------- /content/ruby/concepts/sets/sets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/ruby/concepts/sets/sets.md -------------------------------------------------------------------------------- /content/ruby/concepts/strings/strings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/ruby/concepts/strings/strings.md -------------------------------------------------------------------------------- /content/ruby/concepts/user-input/user-input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/ruby/concepts/user-input/user-input.md -------------------------------------------------------------------------------- /content/ruby/concepts/variables/variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/ruby/concepts/variables/variables.md -------------------------------------------------------------------------------- /content/ruby/ruby.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/ruby/ruby.md -------------------------------------------------------------------------------- /content/seaborn/seaborn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/seaborn/seaborn.md -------------------------------------------------------------------------------- /content/sql/concepts/about-sql/about-sql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/sql/concepts/about-sql/about-sql.md -------------------------------------------------------------------------------- /content/sql/concepts/commands/commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/sql/concepts/commands/commands.md -------------------------------------------------------------------------------- /content/sql/concepts/commands/terms/as/as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/sql/concepts/commands/terms/as/as.md -------------------------------------------------------------------------------- /content/sql/concepts/commands/terms/case/case.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/sql/concepts/commands/terms/case/case.md -------------------------------------------------------------------------------- /content/sql/concepts/commands/terms/limit/limit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/sql/concepts/commands/terms/limit/limit.md -------------------------------------------------------------------------------- /content/sql/concepts/commands/terms/round/round.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/sql/concepts/commands/terms/round/round.md -------------------------------------------------------------------------------- /content/sql/concepts/commands/terms/union/union.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/sql/concepts/commands/terms/union/union.md -------------------------------------------------------------------------------- /content/sql/concepts/commands/terms/where/where.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/sql/concepts/commands/terms/where/where.md -------------------------------------------------------------------------------- /content/sql/concepts/commands/terms/with/with.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/sql/concepts/commands/terms/with/with.md -------------------------------------------------------------------------------- /content/sql/concepts/comments/comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/sql/concepts/comments/comments.md -------------------------------------------------------------------------------- /content/sql/concepts/constraints/constraints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/sql/concepts/constraints/constraints.md -------------------------------------------------------------------------------- /content/sql/concepts/data-types/data-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/sql/concepts/data-types/data-types.md -------------------------------------------------------------------------------- /content/sql/concepts/dates/dates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/sql/concepts/dates/dates.md -------------------------------------------------------------------------------- /content/sql/concepts/dates/terms/date/date.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/sql/concepts/dates/terms/date/date.md -------------------------------------------------------------------------------- /content/sql/concepts/dates/terms/time/time.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/sql/concepts/dates/terms/time/time.md -------------------------------------------------------------------------------- /content/sql/concepts/indexes/indexes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/sql/concepts/indexes/indexes.md -------------------------------------------------------------------------------- /content/sql/concepts/joins/joins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/sql/concepts/joins/joins.md -------------------------------------------------------------------------------- /content/sql/concepts/operators/operators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/sql/concepts/operators/operators.md -------------------------------------------------------------------------------- /content/sql/concepts/operators/terms/and/and.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/sql/concepts/operators/terms/and/and.md -------------------------------------------------------------------------------- /content/sql/concepts/operators/terms/in/in.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/sql/concepts/operators/terms/in/in.md -------------------------------------------------------------------------------- /content/sql/concepts/operators/terms/like/like.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/sql/concepts/operators/terms/like/like.md -------------------------------------------------------------------------------- /content/sql/concepts/operators/terms/not/not.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/sql/concepts/operators/terms/not/not.md -------------------------------------------------------------------------------- /content/sql/concepts/operators/terms/or/or.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/sql/concepts/operators/terms/or/or.md -------------------------------------------------------------------------------- /content/sql/concepts/primary-keys/primary-keys.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/sql/concepts/primary-keys/primary-keys.md -------------------------------------------------------------------------------- /content/sql/concepts/procedures/procedures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/sql/concepts/procedures/procedures.md -------------------------------------------------------------------------------- /content/sql/concepts/wildcards/wildcards.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/sql/concepts/wildcards/wildcards.md -------------------------------------------------------------------------------- /content/sql/sql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/sql/sql.md -------------------------------------------------------------------------------- /content/swift/concepts/arrays/arrays.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/swift/concepts/arrays/arrays.md -------------------------------------------------------------------------------- /content/swift/concepts/arrays/terms/first/first.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/swift/concepts/arrays/terms/first/first.md -------------------------------------------------------------------------------- /content/swift/concepts/arrays/terms/map/map.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/swift/concepts/arrays/terms/map/map.md -------------------------------------------------------------------------------- /content/swift/concepts/arrays/terms/sort/sort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/swift/concepts/arrays/terms/sort/sort.md -------------------------------------------------------------------------------- /content/swift/concepts/classes/classes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/swift/concepts/classes/classes.md -------------------------------------------------------------------------------- /content/swift/concepts/closures/closures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/swift/concepts/closures/closures.md -------------------------------------------------------------------------------- /content/swift/concepts/comments/comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/swift/concepts/comments/comments.md -------------------------------------------------------------------------------- /content/swift/concepts/data-types/data-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/swift/concepts/data-types/data-types.md -------------------------------------------------------------------------------- /content/swift/concepts/enums/enums.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/swift/concepts/enums/enums.md -------------------------------------------------------------------------------- /content/swift/concepts/inheritance/inheritance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/swift/concepts/inheritance/inheritance.md -------------------------------------------------------------------------------- /content/swift/concepts/loops/loops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/swift/concepts/loops/loops.md -------------------------------------------------------------------------------- /content/swift/concepts/objective-c/objective-c.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/swift/concepts/objective-c/objective-c.md -------------------------------------------------------------------------------- /content/swift/concepts/operators/operators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/swift/concepts/operators/operators.md -------------------------------------------------------------------------------- /content/swift/concepts/optionals/optionals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/swift/concepts/optionals/optionals.md -------------------------------------------------------------------------------- /content/swift/concepts/protocols/protocols.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/swift/concepts/protocols/protocols.md -------------------------------------------------------------------------------- /content/swift/concepts/sets/sets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/swift/concepts/sets/sets.md -------------------------------------------------------------------------------- /content/swift/concepts/sets/terms/insert/insert.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/swift/concepts/sets/terms/insert/insert.md -------------------------------------------------------------------------------- /content/swift/concepts/sets/terms/remove/remove.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/swift/concepts/sets/terms/remove/remove.md -------------------------------------------------------------------------------- /content/swift/concepts/sets/terms/union/union.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/swift/concepts/sets/terms/union/union.md -------------------------------------------------------------------------------- /content/swift/concepts/structures/structures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/swift/concepts/structures/structures.md -------------------------------------------------------------------------------- /content/swift/concepts/switch/switch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/swift/concepts/switch/switch.md -------------------------------------------------------------------------------- /content/swift/concepts/tuples/tuples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/swift/concepts/tuples/tuples.md -------------------------------------------------------------------------------- /content/swift/concepts/variables/variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/swift/concepts/variables/variables.md -------------------------------------------------------------------------------- /content/swift/swift.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/swift/swift.md -------------------------------------------------------------------------------- /content/swiftui/concepts/views/terms/form/form.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/swiftui/concepts/views/terms/form/form.md -------------------------------------------------------------------------------- /content/swiftui/concepts/views/terms/list/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/swiftui/concepts/views/terms/list/list.md -------------------------------------------------------------------------------- /content/swiftui/concepts/views/terms/text/text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/swiftui/concepts/views/terms/text/text.md -------------------------------------------------------------------------------- /content/swiftui/concepts/views/views.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/swiftui/concepts/views/views.md -------------------------------------------------------------------------------- /content/swiftui/swiftui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/swiftui/swiftui.md -------------------------------------------------------------------------------- /content/typescript/concepts/arrays/arrays.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/typescript/concepts/arrays/arrays.md -------------------------------------------------------------------------------- /content/typescript/concepts/classes/classes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/typescript/concepts/classes/classes.md -------------------------------------------------------------------------------- /content/typescript/concepts/functions/functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/typescript/concepts/functions/functions.md -------------------------------------------------------------------------------- /content/typescript/concepts/generics/generics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/typescript/concepts/generics/generics.md -------------------------------------------------------------------------------- /content/typescript/concepts/narrowing/narrowing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/typescript/concepts/narrowing/narrowing.md -------------------------------------------------------------------------------- /content/typescript/concepts/tuples/tuples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/typescript/concepts/tuples/tuples.md -------------------------------------------------------------------------------- /content/typescript/concepts/unions/unions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/typescript/concepts/unions/unions.md -------------------------------------------------------------------------------- /content/typescript/concepts/variables/variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/typescript/concepts/variables/variables.md -------------------------------------------------------------------------------- /content/typescript/typescript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/typescript/typescript.md -------------------------------------------------------------------------------- /content/uiux/concepts/animation/animation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/uiux/concepts/animation/animation.md -------------------------------------------------------------------------------- /content/uiux/concepts/annotations/annotations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/uiux/concepts/annotations/annotations.md -------------------------------------------------------------------------------- /content/uiux/concepts/button/button.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/uiux/concepts/button/button.md -------------------------------------------------------------------------------- /content/uiux/concepts/color-picker/color-picker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/uiux/concepts/color-picker/color-picker.md -------------------------------------------------------------------------------- /content/uiux/concepts/deliverables/deliverables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/uiux/concepts/deliverables/deliverables.md -------------------------------------------------------------------------------- /content/uiux/concepts/design/design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/uiux/concepts/design/design.md -------------------------------------------------------------------------------- /content/uiux/concepts/diary-study/diary-study.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/uiux/concepts/diary-study/diary-study.md -------------------------------------------------------------------------------- /content/uiux/concepts/fill/fill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/uiux/concepts/fill/fill.md -------------------------------------------------------------------------------- /content/uiux/concepts/focus-groups/focus-groups.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/uiux/concepts/focus-groups/focus-groups.md -------------------------------------------------------------------------------- /content/uiux/concepts/hero-image/hero-image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/uiux/concepts/hero-image/hero-image.md -------------------------------------------------------------------------------- /content/uiux/concepts/homepage/homepage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/uiux/concepts/homepage/homepage.md -------------------------------------------------------------------------------- /content/uiux/concepts/image/image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/uiux/concepts/image/image.md -------------------------------------------------------------------------------- /content/uiux/concepts/interviews/interviews.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/uiux/concepts/interviews/interviews.md -------------------------------------------------------------------------------- /content/uiux/concepts/logo/logo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/uiux/concepts/logo/logo.md -------------------------------------------------------------------------------- /content/uiux/concepts/low-fidelity/low-fidelity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/uiux/concepts/low-fidelity/low-fidelity.md -------------------------------------------------------------------------------- /content/uiux/concepts/navigation/navigation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/uiux/concepts/navigation/navigation.md -------------------------------------------------------------------------------- /content/uiux/concepts/opacity/opacity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/uiux/concepts/opacity/opacity.md -------------------------------------------------------------------------------- /content/uiux/concepts/persona/persona.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/uiux/concepts/persona/persona.md -------------------------------------------------------------------------------- /content/uiux/concepts/placeholders/placeholders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/uiux/concepts/placeholders/placeholders.md -------------------------------------------------------------------------------- /content/uiux/concepts/site-map/site-map.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/uiux/concepts/site-map/site-map.md -------------------------------------------------------------------------------- /content/uiux/concepts/sketching/sketching.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/uiux/concepts/sketching/sketching.md -------------------------------------------------------------------------------- /content/uiux/concepts/stakeholder/stakeholder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/uiux/concepts/stakeholder/stakeholder.md -------------------------------------------------------------------------------- /content/uiux/concepts/stroke/stroke.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/uiux/concepts/stroke/stroke.md -------------------------------------------------------------------------------- /content/uiux/concepts/surveys/surveys.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/uiux/concepts/surveys/surveys.md -------------------------------------------------------------------------------- /content/uiux/concepts/text/text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/uiux/concepts/text/text.md -------------------------------------------------------------------------------- /content/uiux/concepts/ui-design/ui-design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/uiux/concepts/ui-design/ui-design.md -------------------------------------------------------------------------------- /content/uiux/concepts/ux-design/ux-design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/uiux/concepts/ux-design/ux-design.md -------------------------------------------------------------------------------- /content/uiux/concepts/ux-honeycomb/ux-honeycomb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/uiux/concepts/ux-honeycomb/ux-honeycomb.md -------------------------------------------------------------------------------- /content/uiux/concepts/video/video.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/uiux/concepts/video/video.md -------------------------------------------------------------------------------- /content/uiux/concepts/width-height/width-height.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/uiux/concepts/width-height/width-height.md -------------------------------------------------------------------------------- /content/uiux/concepts/wireframe/wireframe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/uiux/concepts/wireframe/wireframe.md -------------------------------------------------------------------------------- /content/uiux/uiux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/content/uiux/uiux.md -------------------------------------------------------------------------------- /documentation/catalog-content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/documentation/catalog-content.md -------------------------------------------------------------------------------- /documentation/content-standards.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/documentation/content-standards.md -------------------------------------------------------------------------------- /documentation/entry-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/documentation/entry-template.md -------------------------------------------------------------------------------- /documentation/subjects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/documentation/subjects.md -------------------------------------------------------------------------------- /documentation/tags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/documentation/tags.md -------------------------------------------------------------------------------- /documentation/term-entry-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/documentation/term-entry-template.md -------------------------------------------------------------------------------- /documentation/topic-info-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/documentation/topic-info-template.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/jest.config.js -------------------------------------------------------------------------------- /media/Yukihiro_Matsumoto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/Yukihiro_Matsumoto.png -------------------------------------------------------------------------------- /media/aaron_swartz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/aaron_swartz.png -------------------------------------------------------------------------------- /media/abbr-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/abbr-example.png -------------------------------------------------------------------------------- /media/abstract-factory-uml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/abstract-factory-uml.png -------------------------------------------------------------------------------- /media/abstract-syntax-tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/abstract-syntax-tree.png -------------------------------------------------------------------------------- /media/ada_lovelace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/ada_lovelace.png -------------------------------------------------------------------------------- /media/alan_turing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/alan_turing.png -------------------------------------------------------------------------------- /media/aws-console-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/aws-console-home.png -------------------------------------------------------------------------------- /media/basefont-tag-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/basefont-tag-example.png -------------------------------------------------------------------------------- /media/big-o-graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/big-o-graph.png -------------------------------------------------------------------------------- /media/binary-tree-labeled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/binary-tree-labeled.png -------------------------------------------------------------------------------- /media/bjarne_stroustrup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/bjarne_stroustrup.png -------------------------------------------------------------------------------- /media/branch-up-to-date-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/branch-up-to-date-1.png -------------------------------------------------------------------------------- /media/branch-up-to-date-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/branch-up-to-date-2.png -------------------------------------------------------------------------------- /media/builder-uml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/builder-uml.png -------------------------------------------------------------------------------- /media/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/button.png -------------------------------------------------------------------------------- /media/cc_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/cc_logo.png -------------------------------------------------------------------------------- /media/circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/circle.png -------------------------------------------------------------------------------- /media/create_pull_request_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/create_pull_request_link.png -------------------------------------------------------------------------------- /media/creational-design-pattern-structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/creational-design-pattern-structure.png -------------------------------------------------------------------------------- /media/css-anatomy-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/css-anatomy-1.png -------------------------------------------------------------------------------- /media/css-anatomy-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/css-anatomy-2.png -------------------------------------------------------------------------------- /media/css-border-radius-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/css-border-radius-1.png -------------------------------------------------------------------------------- /media/css-border-radius-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/css-border-radius-2.png -------------------------------------------------------------------------------- /media/css-border-radius-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/css-border-radius-3.png -------------------------------------------------------------------------------- /media/css-box-model.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/css-box-model.svg -------------------------------------------------------------------------------- /media/css-cursor-cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/css-cursor-cell.png -------------------------------------------------------------------------------- /media/css-cursor-context-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/css-cursor-context-menu.png -------------------------------------------------------------------------------- /media/css-cursor-crosshair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/css-cursor-crosshair.png -------------------------------------------------------------------------------- /media/css-cursor-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/css-cursor-default.png -------------------------------------------------------------------------------- /media/css-cursor-help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/css-cursor-help.png -------------------------------------------------------------------------------- /media/css-cursor-pointer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/css-cursor-pointer.png -------------------------------------------------------------------------------- /media/css-cursor-progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/css-cursor-progress.png -------------------------------------------------------------------------------- /media/css-cursor-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/css-cursor-text.png -------------------------------------------------------------------------------- /media/css-cursor-vertical-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/css-cursor-vertical-text.png -------------------------------------------------------------------------------- /media/css-cursor-wait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/css-cursor-wait.png -------------------------------------------------------------------------------- /media/css-disabled-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/css-disabled-example.png -------------------------------------------------------------------------------- /media/css-hover-example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/css-hover-example.gif -------------------------------------------------------------------------------- /media/css-position-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/css-position-example.png -------------------------------------------------------------------------------- /media/css-z-index-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/css-z-index-black.png -------------------------------------------------------------------------------- /media/css-z-index-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/css-z-index-gray.png -------------------------------------------------------------------------------- /media/css_floats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/css_floats.png -------------------------------------------------------------------------------- /media/dd-tag-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/dd-tag-example.png -------------------------------------------------------------------------------- /media/del-tag-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/del-tag-example.png -------------------------------------------------------------------------------- /media/dennis_ritchie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/dennis_ritchie.png -------------------------------------------------------------------------------- /media/dl-tag-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/dl-tag-example.png -------------------------------------------------------------------------------- /media/dt-tag-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/dt-tag-example.png -------------------------------------------------------------------------------- /media/em-tag-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/em-tag-example.png -------------------------------------------------------------------------------- /media/factory-uml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/factory-uml.png -------------------------------------------------------------------------------- /media/file-system-structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/file-system-structure.png -------------------------------------------------------------------------------- /media/font-awesome-border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/font-awesome-border.png -------------------------------------------------------------------------------- /media/font-awesome-check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/font-awesome-check.png -------------------------------------------------------------------------------- /media/font-awesome-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/font-awesome-code.png -------------------------------------------------------------------------------- /media/font-awesome-fixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/font-awesome-fixed.png -------------------------------------------------------------------------------- /media/font-awesome-flip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/font-awesome-flip.png -------------------------------------------------------------------------------- /media/font-awesome-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/font-awesome-list.png -------------------------------------------------------------------------------- /media/font-awesome-pull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/font-awesome-pull.png -------------------------------------------------------------------------------- /media/font-awesome-pulse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/font-awesome-pulse.gif -------------------------------------------------------------------------------- /media/font-awesome-rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/font-awesome-rotate.png -------------------------------------------------------------------------------- /media/font-awesome-size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/font-awesome-size.png -------------------------------------------------------------------------------- /media/font-awesome-spin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/font-awesome-spin.gif -------------------------------------------------------------------------------- /media/font-awesome-stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/font-awesome-stack.png -------------------------------------------------------------------------------- /media/font-tag-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/font-tag-example.png -------------------------------------------------------------------------------- /media/form-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/form-example.png -------------------------------------------------------------------------------- /media/general-relational-database.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/general-relational-database.png -------------------------------------------------------------------------------- /media/grace_hopper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/grace_hopper.png -------------------------------------------------------------------------------- /media/grace_hopper_bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/grace_hopper_bug.png -------------------------------------------------------------------------------- /media/grid-template-area-example-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/grid-template-area-example-1.png -------------------------------------------------------------------------------- /media/grid-template-area-example-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/grid-template-area-example-2.png -------------------------------------------------------------------------------- /media/grid-template-area.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/grid-template-area.png -------------------------------------------------------------------------------- /media/heading-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/heading-example.png -------------------------------------------------------------------------------- /media/hstack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/hstack.png -------------------------------------------------------------------------------- /media/html-block-quote-tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/html-block-quote-tag.png -------------------------------------------------------------------------------- /media/html-br-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/html-br-example.png -------------------------------------------------------------------------------- /media/html-button-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/html-button-example.png -------------------------------------------------------------------------------- /media/html-cite-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/html-cite-example.png -------------------------------------------------------------------------------- /media/html-colspan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/html-colspan.png -------------------------------------------------------------------------------- /media/html-comments-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/html-comments-1.png -------------------------------------------------------------------------------- /media/html-comments-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/html-comments-2.png -------------------------------------------------------------------------------- /media/html-details-tag-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/html-details-tag-example.png -------------------------------------------------------------------------------- /media/html-elements-textarea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/html-elements-textarea.png -------------------------------------------------------------------------------- /media/html-paragraph-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/html-paragraph-example.png -------------------------------------------------------------------------------- /media/html-rowspan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/html-rowspan.png -------------------------------------------------------------------------------- /media/html-summary-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/html-summary-example.png -------------------------------------------------------------------------------- /media/html-video-tag-example.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/html-video-tag-example.mp4 -------------------------------------------------------------------------------- /media/html-video-tag-example.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/html-video-tag-example.vtt -------------------------------------------------------------------------------- /media/i-frame-tag-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/i-frame-tag-example.png -------------------------------------------------------------------------------- /media/image-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/image-example.png -------------------------------------------------------------------------------- /media/indicate_fork_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/indicate_fork_link.png -------------------------------------------------------------------------------- /media/input-tag-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/input-tag-example.png -------------------------------------------------------------------------------- /media/john_carmack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/john_carmack.png -------------------------------------------------------------------------------- /media/kbd-tag-example-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/kbd-tag-example-1.png -------------------------------------------------------------------------------- /media/kbd-tag-example-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/kbd-tag-example-2.png -------------------------------------------------------------------------------- /media/ken_thompson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/ken_thompson.png -------------------------------------------------------------------------------- /media/lazyHStack-gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/lazyHStack-gif.gif -------------------------------------------------------------------------------- /media/lazyVStack-gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/lazyVStack-gif.gif -------------------------------------------------------------------------------- /media/li-tag-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/li-tag-example.png -------------------------------------------------------------------------------- /media/linus_torvalds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/linus_torvalds.png -------------------------------------------------------------------------------- /media/mark-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/mark-example.png -------------------------------------------------------------------------------- /media/matplotlib-legend-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/matplotlib-legend-1.png -------------------------------------------------------------------------------- /media/nested-lists-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/nested-lists-example.png -------------------------------------------------------------------------------- /media/no-script-tag-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/no-script-tag-example.png -------------------------------------------------------------------------------- /media/ol-tag-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/ol-tag-example.png -------------------------------------------------------------------------------- /media/output-tag.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/output-tag.gif -------------------------------------------------------------------------------- /media/prototype-uml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/prototype-uml.png -------------------------------------------------------------------------------- /media/pull-request-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/pull-request-ui.png -------------------------------------------------------------------------------- /media/python-idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/python-idle.png -------------------------------------------------------------------------------- /media/q.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/q.jpg -------------------------------------------------------------------------------- /media/react-state-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/react-state-example.png -------------------------------------------------------------------------------- /media/react_native_UI_Views.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/react_native_UI_Views.png -------------------------------------------------------------------------------- /media/react_react_native_components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/react_react_native_components.png -------------------------------------------------------------------------------- /media/rectangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/rectangle.png -------------------------------------------------------------------------------- /media/rendered-anchor-tags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/rendered-anchor-tags.png -------------------------------------------------------------------------------- /media/rendered-css-combinators.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/rendered-css-combinators.png -------------------------------------------------------------------------------- /media/rendered-markdown-headings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/rendered-markdown-headings.png -------------------------------------------------------------------------------- /media/s-element-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/s-element-example.png -------------------------------------------------------------------------------- /media/singleton-uml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/singleton-uml.png -------------------------------------------------------------------------------- /media/span-tag-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/span-tag-image.png -------------------------------------------------------------------------------- /media/strong-tag-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/strong-tag-example.png -------------------------------------------------------------------------------- /media/swiftui-bold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/swiftui-bold.png -------------------------------------------------------------------------------- /media/swiftui-capsule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/swiftui-capsule.png -------------------------------------------------------------------------------- /media/swiftui-ellipse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/swiftui-ellipse.png -------------------------------------------------------------------------------- /media/swiftui-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/swiftui-form.png -------------------------------------------------------------------------------- /media/swiftui-label.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/swiftui-label.gif -------------------------------------------------------------------------------- /media/swiftui-picker-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/swiftui-picker-open.png -------------------------------------------------------------------------------- /media/swiftui-picker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/swiftui-picker.png -------------------------------------------------------------------------------- /media/swiftui-roundedrectangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/swiftui-roundedrectangle.png -------------------------------------------------------------------------------- /media/swiftui-scrollview-horizontal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/swiftui-scrollview-horizontal.gif -------------------------------------------------------------------------------- /media/swiftui-scrollview-vertical.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/swiftui-scrollview-vertical.gif -------------------------------------------------------------------------------- /media/swiftui-stepper.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/swiftui-stepper.gif -------------------------------------------------------------------------------- /media/swiftui-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/swiftui-text.png -------------------------------------------------------------------------------- /media/swiftui-textfield-fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/swiftui-textfield-fill.png -------------------------------------------------------------------------------- /media/swiftui-textfield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/swiftui-textfield.png -------------------------------------------------------------------------------- /media/swiftui-toggle-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/swiftui-toggle-off.png -------------------------------------------------------------------------------- /media/swiftui-toggle-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/swiftui-toggle-on.png -------------------------------------------------------------------------------- /media/swiftui-viewmodifier-italic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/swiftui-viewmodifier-italic.png -------------------------------------------------------------------------------- /media/swiftui-viewmodifier-underline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/swiftui-viewmodifier-underline.png -------------------------------------------------------------------------------- /media/swiftui-viewmodifier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/swiftui-viewmodifier.png -------------------------------------------------------------------------------- /media/tim_berners_lee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/tim_berners_lee.png -------------------------------------------------------------------------------- /media/tqdm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/tqdm.gif -------------------------------------------------------------------------------- /media/ul-tag-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/ul-tag-example.png -------------------------------------------------------------------------------- /media/vim-gui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/vim-gui.png -------------------------------------------------------------------------------- /media/vim-terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/vim-terminal.png -------------------------------------------------------------------------------- /media/vstack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/vstack.png -------------------------------------------------------------------------------- /media/zstack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/media/zstack.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymendn/docs/HEAD/yarn.lock --------------------------------------------------------------------------------