Skip to content
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
2 changes: 1 addition & 1 deletion frontend/angular/components-signals.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ The `@Input()` decorator operates outside the Signals reactivity system. Changes
title = input<string>('');
```

### Structural Comparison: Signals vs RxJS
### ⚖️ Structural Comparison: Signals vs RxJS

| Feature | Signals (`signal`, `computed`) | RxJS (`BehaviorSubject`, `Observable`) |
| :--- | :--- | :--- |
Expand Down
2 changes: 1 addition & 1 deletion frontend/javascript/testing.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ test('update user', () => {
});
```

### Structural Comparison: Unit Testing vs Integration Testing vs E2E
### ⚖️ Structural Comparison: Unit Testing vs Integration Testing vs E2E

| Feature | Unit Testing | Integration Testing | End-to-End (E2E) Testing |
| :--- | :--- | :--- | :--- |
Expand Down
2 changes: 1 addition & 1 deletion frontend/react/performance.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ function UserList({ users }) {
}
```

### Structural Comparison: Manual Memoization vs React Compiler
### ⚖️ Structural Comparison: Manual Memoization vs React Compiler

| Feature | Manual Memoization (`useMemo`, `useCallback`) | React Compiler |
| :--- | :--- | :--- |
Expand Down
2 changes: 1 addition & 1 deletion frontend/typescript/objects-functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ abstract class BaseService {
}
```

### Structural Comparison: Abstract Classes vs Interfaces
### ⚖️ Structural Comparison: Abstract Classes vs Interfaces

| Feature | Abstract Classes | Interfaces |
| :--- | :--- | :--- |
Expand Down
Loading