Skip to content

Commit f756de1

Browse files
committed
digital product
1 parent d342a87 commit f756de1

File tree

8 files changed

+71
-0
lines changed

8 files changed

+71
-0
lines changed

Readme.md

+1
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,4 @@ Here you can find:
1515
- [High Performance Computation](./hpc)
1616
- [Git and GitHub](./git)
1717
- [Database Management Systems](./dbms)
18+
- [Digital Product](./digital_product)

dbms/concepts.md

+2
Original file line numberDiff line numberDiff line change
@@ -320,6 +320,8 @@ A **clustered index** determines the physical order of data in a table. It sorts
320320

321321
A **non-clustered index**, on the other hand, does not alter the physical order of the rows. It creates a separate structure within the table which holds the values of the indexed columns and pointers to the corresponding rows. A table can have multiple non-clustered indexes.
322322

323+
Both can store either values or pointers.
324+
323325
## Left-Deep Plans / Right-Deep Plans
324326

325327
In a **left-deep join** tree, the left child of each join node is always a base table, not another join. This allows for the possibility of using nested loops joins efficiently, where the left table can be kept in memory while the right table is scanned multiple times. It is advantageous in scenarios where indexes are available on the inner tables.

digital_product/cheatsheet.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Cheat Sheets

digital_product/concepts.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Key Concepts

digital_product/learn.md

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
# 🧭 Learn Digital Product Together
2+
3+
Awesome list of high-quality study materials for learning Digital Product.
4+
5+
[:arrow_down: Tags legend](#tags-legend) at the end of the page.
6+
7+
<!-- - []() by []() :movie_camera: -->
8+
<!-- - []() by []() :movie_camera: :mortar_board: -->
9+
10+
## Problem Solving
11+
12+
- [Root cause analysis](https://www.youtube.com/playlist?list=PLxENun6kHfaB4vJsQAO4zXgDbXZ-1i8l_) by [skilltecs](https://www.youtube.com/@skilltecs) :movie_camera: :mortar_board:
13+
14+
## Tags legend
15+
16+
##### Kind of Resource
17+
18+
- :movie_camera: - video material to watch
19+
- :page_facing_up: - reading
20+
- :book: - a book
21+
- :mortar_board: - online course with or without feedback
22+
- :chart_with_upwards_trend: - cheat sheets
23+
- :card_file_box: - reference or manual or a standard
24+
- :open_file_folder: - collections of collections
25+
- :pirate_flag: - non-english
26+
- :page_facing_up: - either single article or single video-tutorial
27+
- :building_construction: - ideas for inspiration of mini-projects to add to your portfolio
28+
- :moneybag: - paid
29+
- ( _certificate_ ) - certification
30+
- 🔽 - download
31+
- ⚡ - practice, it is possible to interact and get feedback from the system
32+
- ( _official_ ) - official material
33+
- ( _blog_ ) - blogs
34+
- ( _example_ ) - code sample that can be executed
35+
- ( _short_ ) - short overview
36+
- ( _tool_ ) - a tool
37+
- ( _subjects_ ) - people and organizations
38+
- ( _skill_ ) - not a theory, but practices oriented
39+
40+
##### Level of Expertise
41+
42+
- ( _level_0_ ) - very basic and trivial, every professional should know no matter which specialization
43+
- ( _level_1_ ) - basic but not trivial, every professional should know no matter which specialization
44+
- ( _level_2_ ) - medium proficiency, most professional should know no matter which specialization
45+
- ( _level_3_ ) - advanced, not recommended unless it fits specialization
46+
47+
##### Other Categories
48+
49+
- ( _Digital Product_ ) - database manageement systems

digital_product/questions.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Questions for interview

digital_product/readme.md

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# 🧭 Learn Digital Product Together
2+
3+
Awesome collection of learning materials to master modern Digital Product.
4+
5+
![SQL Join](./cheatsheet/sql_join.jpg)
6+
7+
## What is this about?
8+
9+
This repostory contains dozen curated collections: learning materials, toolboxes, newspapers, working groups, collection of other collections. Everything you will find useful if you are interested in Digital Product.
10+
11+
Here you can find:
12+
13+
- __:mortar_board:__ [Learn](./learn.md) : collection of materials to master Digital Product.
14+
- __:old_key:__ [Comprehend](./concepts.md) : key concepts and dichotomies of Digital Product.
15+
- __:chart_with_upwards_trend:__ [Systemize](./cheatsheets.md) : cheatsheets on Digital Product.

digital_product/skills.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Key skills/competences

0 commit comments

Comments
 (0)