Skip to content

Commit

Permalink
notes/giscus/css
Browse files Browse the repository at this point in the history
  • Loading branch information
asboyer committed Jun 19, 2024
1 parent 67dfc9e commit 7028942
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 2 deletions.
1 change: 1 addition & 0 deletions _includes/giscus.liquid
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
'data-lang': 'en',
crossorigin: 'anonymous',
async: '',
'data-loading': 'lazy',
};
let giscusScript = document.createElement('script');
Object.entries(giscusAttributes).forEach(([key, value]) => giscusScript.setAttribute(key, value));
Expand Down
38 changes: 36 additions & 2 deletions _notes/2024-06-18-sql-course.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
layout: post
date: 2024-06-18 05:00:00
time: 9:44pm
date: 2024-06-19 05:00:00
time: 9:10pm
location: Lisbon, Portugal
inline: false
related_posts: false
Expand All @@ -10,6 +10,9 @@ giscus_comments: true
unfinished: true
notebook: true
---

<span id="dt"><i class="fa-solid fa-pen fa-sm"></i> 6/18/24 • 9:44pm</span>

---
Notes from [SQL Tutorial - Full Database Course for Beginners](https://www.youtube.com/watch?v=HXV3zeQKqGY)

Expand Down Expand Up @@ -119,4 +122,35 @@ ie: two columns uniquely defining a row to make a primary key

---

<span id="dt"><i class="fa-solid fa-pen fa-sm"></i> 6/19/24 • 9:10pm</span>

### SQL Basics
Not technically a programming language
Language used for interacting with relational database management systems

SQL
: structured query language

There are different "flavors" SQL \
Sometimes different depending on the management system

#### 4 aspects
Data Query language (DQL)
: used to get data already stored

Data definition language (DDL)
: define layout, schema

Data control language (DCL)
: used for controlling access to the data in the database

Data manipulation language (DML)
: used for inserting, updating, deleting data from the databases

#### Queries
Goal is to only get the data you need \
Often hidden in a complex schema

---

[^1]: two or more events happening at the same time
6 changes: 6 additions & 0 deletions _sass/_base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -1460,3 +1460,9 @@ ninja-keys::part(ninja-input-wrapper) {
margin-bottom: 30px;
}
}

#dt {
color: var(--global-text-color-light);
font-size: 1.1em;
font-weight: 100;
}

0 comments on commit 7028942

Please sign in to comment.