Skip to content

mySkillsWinter2025 #245

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions Skills/Architecture.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
## Architecture

- Application structure
- Modularity
- Modularity h
- Components
- Directories
- Directories
- GRASP
- SOLID
- GoF patterns
- CQS
- Leaking abstractions
- Multiparadigm code
- Multiparadigm code h
- Contract programming
- Platform-agnostic
- Transport-agnostic
Expand All @@ -25,7 +25,7 @@
- Law of Demeter (LoD)
- Application architecture
- Isolation between layer
- Domain-specific language (DSL)
- Domain-specific language (DSL)
- System vs applied code
- Multilayer approach
- Hexagonal architecture
Expand Down Expand Up @@ -61,7 +61,7 @@
- Vendor lock-in
- Bus factor
- Solution architecture
- A software requirements specification (SRS)
- A software requirements specification (SRS) h
- Solution visions
- Solution capabilities
- System design
Expand Down
4 changes: 2 additions & 2 deletions Skills/Async.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
## Asynchronous programming

- Theory
- Theory h
- Event loop
- `try..catch`
- `try..catch`
- Non-blocking
- Async I/O
- Thread pool
Expand Down
82 changes: 41 additions & 41 deletions Skills/JavaScript.md
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
## JavaScript

- Language
- `Object`
- `Function`
- `Boolean`
- `Number`
- `BigInt`
- `String`
- `Symbol`
- `Infinity`
- `NaN`
- `undefined`
- `null`
- `this`
- `Object` u
- `Function` u
- `Boolean` u
- `Number` u
- `BigInt` h
- `String` u
- `Symbol` u
- `Infinity` k
- `NaN` k
- `undefined` u
- `null` k
- `this`
- `instanceof`
- `...spread`
- `...rest`
- `typeof`
- `typeof` u
- Destructuring
- Generators
- Iterators
Expand All @@ -33,10 +33,10 @@
- `__proto__`
- `prototype`
- Equality operators
- Logical operators
- Logical operators k
- Logical Assignment
- Bitwise operators
- Ternary operator
- Ternary operator u
- `void`
- `yield`
- `await`
Expand All @@ -48,8 +48,8 @@
- `super`
- `eval`
- `static`
- `Number.parseInt`
- `Number.parseFloat`
- `Number.parseInt`
- `Number.parseFloat`
- Property descriptors
- Sealing properties
- Freezing properties
Expand All @@ -59,16 +59,16 @@
- Private class fields
- Private class methods
- Statements
- `if`
- `while`
- `do..while`
- `for`
- `for..in`
- `for..of`
- `if` u
- `while` u
- `do..while` u
- `for` u
- `for..in` k
- `for..of` u
- `for await`
- `throw`
- `break`
- `continue`
- `throw` k
- `break` h
- `continue` h
- `import`
- `export`
- `label`
Expand All @@ -79,20 +79,20 @@
- `with`
- `new`
- Functions
- Arrow function
- Async function
- Function declaration
- Arrow function u
- Async function
- Function declaration h
- Function expression
- Default parameters
- Functional object
- `Function.prototype.call`
- `Function.prototype.bind`
- `Function.prototype.apply`
- `return`
- Data structures
- `Array`
- `Map`
- `Set`
- `return` u
- Data structures h
- `Array` k
- `Map` k
- `Set` k
- `WeakMap`
- `WeakSet`
- Typed arrays
Expand All @@ -104,19 +104,19 @@
- `Date`
- `Math`
- `Reflect`
- `Error`
- `Error` h
- `Atomics`
- `JSON`
- `JSON` h
- `WeakRef`
- `FinalizationRegistry`
- `Intl`
- `Promise`
- `console`
- Timers
- Timers h
- Infrastructure
- V8
- Node.js
- npm
- V8 h
- Node.js h
- npm h
- prettier
- MDN
- MDN u
- TC39
22 changes: 11 additions & 11 deletions Skills/Paradigms.md
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
## Multi-paradigm programming

- Theory
- Procedural programming
- Imperative programming
- Structured programming
- Non-structured programming
- Functional programming
- Prototype-based programming
- Object-oriented programming
- Theory h
- Procedural programming h
- Imperative programming h
- Structured programming h
- Non-structured programming
- Functional programming h
- Prototype-based programming
- Object-oriented programming h
- Object-based programming
- Generic programming
- Concurrent computing
- Asynchronous programming
- Asynchronous programming
- Parallel programming
- Reactive programming
- Reactive programming h
- Functional-reactive (FRP)
- Automata-based programming
- Domain-specific languages
- Multi-paradigm programming
- Multi-paradigm programming h
- Metaprogramming
- Actor model
- Lambda calculus
Expand Down
Loading