GitHub

Original file line numberDiff line numberDiff line change

@@ -1,6 +1,6 @@

11

baseURL: 'https://not-a-number.io/'

22

languageCode: en-us

3-

title: Not A Number

3+

title: Not a Number

44

theme:

55

- hugo-theme-bootstrap4-blog

66

paginate: 10

@@ -17,6 +17,9 @@ menu:

1717

- name: About

1818

url: /about

1919
20+

- name: Bookshelf

21+

url: /bookshelf

22+
2023

author:

2124

name: "Pol Dellaiera"

2225

@@ -30,8 +33,8 @@ params:

3033

wordCount: true

3134

hideAuthor: true

3235

description: >-

33-

Welcome to my repository of non-convergent suite of random letters.Here, you

34-

may contemplate the variation of 26 letters and some other weird characters.

36+

Welcome to my repository of non-convergent suite of random letters.

37+

Here, you may contemplate the variation of 26 letters and some other weird characters.

3538

header_visible: true

3639

date_format: '02 Jan 2006 @ 15:04 MST'

3740

sharingicons: true

Original file line numberDiff line numberDiff line change

@@ -0,0 +1,7 @@

1+

---

2+

title: "Bookshelf"

3+

description: In this part of the site, you will find the list of my favorite books from my bookshelf.

4+

date: 2020-04-08T09:52:21+02:00

5+

draft: false

6+

layout: bookshelf

7+

---

Original file line numberDiff line numberDiff line change

@@ -0,0 +1,108 @@

1+

- title: Structure and Interpretation of Computer Programs

2+

isbn: "0262510871"

3+

tags:

4+

- functional programming

5+

- lisp

6+

- logic

7+

- programming

8+

- title: Types and programming languages

9+

isbn: "0262162091"

10+

purchase: 2020

11+

tags:

12+

- functional programming

13+

- logic

14+

- mathematics

15+

- title: How to mock a mockingbird

16+

isbn: "0192801422"

17+

purchase: 2019

18+

tags:

19+

- logic

20+

- puzzle

21+

- title: Infinite powers

22+

isbn: "1328879984"

23+

purchase: 2019

24+

tags:

25+

- mathematics

26+

- title: Théorie des graphes

27+

isbn: "9782842251895"

28+

purchase: 2018

29+

tags:

30+

- graph theory

31+

- title: Théorème vivant

32+

isbn: 9782246798828

33+

purchase: 2014

34+

tags:

35+

- biography

36+

- mathematics

37+

- title: Le gorille invisible

38+

isbn: "0307459667"

39+

purchase: 2016

40+

tags:

41+

- perception

42+

- thought and thinking

43+

- memory

44+

- title: Thinking, Fast and Slow

45+

isbn: "9780141033570"

46+

purchase: 2016

47+

tags:

48+

- intuition

49+

- thought and thinking

50+

- reasoning

51+

- title: Les objects fractals

52+

isbn: 2081246171

53+

purchase: 2015

54+

tags:

55+

- geometry

56+

- fractals

57+

- title: Le choix du meilleur urinoir

58+

isbn: "270119766X"

59+

purchase: 2016

60+

tags:

61+

- mathematics

62+

- title: La formule du savoir

63+

isbn: "2759822605"

64+

purchase: 2018

65+

tags:

66+

- statistics

67+

- mathematics

68+

- title: Nonlinear Dynamics and Chaos

69+

isbn: "0813350840"

70+

purchase: 2016

71+

tags:

72+

- mathematics

73+

- title: The First Six Books of the Elements of Euclid

74+

isbn: "3836544717"

75+

purchase: 2017

76+

- title: Calcul differentiel integral

77+

isbn: "2729893407"

78+

purchase: 2014

79+

- title: Calcul differentiel integral

80+

isbn: "2729893415"

81+

purchase: 2014

82+

- title: "How not to be wrong: The Power of Mathematical Thinking"

83+

isbn: "0143127535"

84+

purchase: 2017

85+

- title: "Calculus: A complete course"

86+

isbn: "0321549287"

87+

purchase: 2014

88+

- title: 17 équations qui ont changé le monde

89+

isbn: "9782221133347"

90+

purchase: 2014

91+

- title: Dieu joue-t-il aux dés?

92+

isbn: "2082112004"

93+

purchase: 2014

94+

- title: Le nombre d'or

95+

isbn: "2020259168"

96+

purchase: 2014

97+

- title: Y a t-il un grand architecte dans l'Univers?

98+

isbn: "2738131964"

99+

purchase: 2014

100+

- title: La relativité

101+

isbn: "2228882542"

102+

purchase: 2014

103+

- title: Histoire des codes secrets

104+

isbn: "2253150975"

105+

purchase: 2014

106+

- title: Einstein à la plage

107+

isbn: "2100722239"

108+

purchase: 2015

Original file line numberDiff line numberDiff line change

@@ -0,0 +1,13 @@

1+

{{ define "main" }}

2+

<article>

3+

<header class="text-justify">

4+

<h1 itemprop="name headline">{{ .Title | markdownify }}</h1>

5+

<p class="text-muted mb-2"><em>{{ .Params.description | markdownify }}</em></p>

6+

</header>

7+
8+

{{ partial "books.html" . }}

9+
10+

</article>

11+

{{ end }}

12+
13+
Original file line numberDiff line numberDiff line change

@@ -0,0 +1,29 @@

1+

<div class="card mb-3">

2+

<div class="row no-gutters">

3+

<div class="col-sm-4">

4+

<img src="https://covers.openlibrary.org/b/isbn/{{ .isbn }}-M.jpg" alt="{{ .title }}" class="img-fluid"/>

5+

</div>

6+

<div class="col-sm-8">

7+

<div class="card-body">

8+

<div class="card-title"><h3>{{ .title }}</h3></div>

9+

<dl class="row">

10+

<dt class="col-sm-4">ISBN</dt>

11+

<dd class="col-sm-8"><code>{{ .isbn }}</code></dd>

12+

{{ if .purchase }}

13+

<dt class="col-sm-4">Purchase date</dt>

14+

<dd class="col-sm-8">{{ .purchase }}</dd>

15+

{{ end }}

16+

{{ if .tags }}

17+

<dt class="col-sm-4">Tags</dt>

18+

<dd class="col-sm-8">{{ delimit .tags ", " }}</dd>

19+

{{ end }}

20+

<dt class="col-sm-4">Link</dt>

21+

<dd class="col-sm-8"><a href="https://openlibrary.org/search?q={{ .isbn }}">Link to OpenLibrary</a></dd>

22+

</dl>

23+

{{ if .description }}

24+

<p>{{ .description | markdownify }}</p>

25+

{{ end }}

26+

</div>

27+

</div>

28+

</div>

29+

</div>

Original file line numberDiff line numberDiff line change

@@ -0,0 +1,3 @@

1+

{{ range $.Site.Data.books }}

2+

{{ partial "book.html" . }}

3+

{{ end }}

Read the original on github.com ↗