Skip to content

Commit 763dc10

Browse files
committed
Update books and piano pieces
1 parent 08d56f7 commit 763dc10

File tree

3 files changed

+25
-3
lines changed

3 files changed

+25
-3
lines changed

src/lib/constants/books.ts

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,16 @@ export type Book = {
55
};
66

77
export const books: Book[] = [
8+
{
9+
name: 'Civilization and Its Discontents',
10+
author: 'Sigmund Freud',
11+
rating: 3.5
12+
},
13+
{
14+
name: '1984',
15+
author: 'George Orwell',
16+
rating: 4.75
17+
},
818
{
919
name: "Man's Search for Meaning",
1020
author: 'Viktor Frankl',
@@ -43,7 +53,7 @@ export const books: Book[] = [
4353
{
4454
name: 'The Magic of Thinking Big',
4555
author: 'David J. Schwartz',
46-
rating: 4
56+
rating: 3.75
4757
},
4858
{
4959
name: 'Ethics',

src/lib/constants/piano-pieces.ts

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ export enum Composer {
1111
Tchaikovsky = 'Pyotr Ilyich Tchaikovsky',
1212
Napier = 'Kenneth Napier',
1313
Cosma = 'Vladimir Cosma',
14-
Clayderman = 'Richard Clayderman'
14+
Clayderman = 'Richard Clayderman',
15+
Schumann = 'Robert Schumann'
1516
}
1617

1718
export const pieces: Piece[] = [
@@ -95,10 +96,22 @@ export const pieces: Piece[] = [
9596
name: 'Nocturne Op. 32 No. 2',
9697
composer: Composer.Chopin
9798
},
99+
{
100+
name: 'Mazurka Op. 63 No. 3',
101+
composer: Composer.Chopin
102+
},
98103
{
99104
name: 'Étude Op. 25 No. 9',
100105
composer: Composer.Chopin
101106
},
107+
{
108+
name: 'Carnaval Op. 9 No. 11 "Chiarina"',
109+
composer: Composer.Schumann
110+
},
111+
{
112+
name: 'Carnaval Op. 9 No. 12 "Chopin"',
113+
composer: Composer.Schumann
114+
},
102115
{
103116
name: 'Swan Lake',
104117
composer: `${Composer.Tchaikovsky} (arr. ${Composer.Napier})`

src/routes/blog/articles/numworks-programming/+page.svelte

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
import Code from '@/components/shared/Code.svelte';
55
import Collapsible from '@/components/shared/Collapsible.svelte';
66
import * as TableOfContents from '$lib/components/shared/table-of-contents/index.js';
7-
import type { TOC } from '@/lib/table-of-contents';
87
</script>
98

109
<Article article={NUMWORKS_PROGRAMMING}>

0 commit comments

Comments
 (0)