File tree Expand file tree Collapse file tree 3 files changed +25
-3
lines changed
routes/blog/articles/numworks-programming Expand file tree Collapse file tree 3 files changed +25
-3
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,16 @@ export type Book = {
55} ;
66
77export 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' ,
Original file line number Diff line number Diff 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
1718export 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 } )`
Original file line number Diff line number Diff line change 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 }>
You can’t perform that action at this time.
0 commit comments