1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
const projects = [
{
id: 'bin2dec',
name: 'Bin2Dec',
description: 'Convert a binary string to a decimal number.',
path: './projects/js-small-apps/bin2dec/index.html',
repo: [
{
name: 'Github',
url: 'https://github.com/ArmandPhilippot/js-small-apps/tree/main/bin2dec',
},
],
technologies: ['Vanilla Javascript'],
},
{
id: 'budget-app',
name: 'Budget App',
description:
'By selecting a language in the initialization form, only the currency is converted (the app is not translated). Also, no data is saved on reload.',
path: './projects/js-small-apps/budget-app/index.html',
repo: [
{
name: 'Github',
url: 'https://github.com/ArmandPhilippot/js-small-apps/tree/main/budget-app',
},
],
technologies: ['Vanilla Javascript'],
},
{
id: 'calculator',
name: 'Calculator',
description: 'A basic calculator.',
path: './projects/js-small-apps/calculator/index.html',
repo: [
{
name: 'Github',
url: 'https://github.com/ArmandPhilippot/js-small-apps/tree/main/calculator',
},
],
technologies: ['Vanilla Javascript'],
},
{
id: 'clock',
name: 'Clock',
description:
'What time is it? You can have the current hour in three formats: an analogic clock, a numeric display or a text.',
path: './projects/js-small-apps/clock/index.html',
repo: [
{
name: 'Github',
url: 'https://github.com/ArmandPhilippot/js-small-apps/tree/main/clock',
},
],
technologies: ['Vanilla Javascript', 'SVG'],
},
{
id: 'css-border-previewer',
name: 'CSS Border Previewer',
description:
'Play with CSS borders (style, width, border-radius). Then, you can copy the generated code if the preview suits you.',
path: './projects/js-small-apps/css-border-previewer/index.html',
repo: [
{
name: 'Github',
url: 'https://github.com/ArmandPhilippot/js-small-apps/tree/main/css-border-previewer',
},
],
technologies: ['Vanilla Javascript'],
},
{
id: 'rps-game',
name: 'Rock Paper Scissors',
description:
'A basic implementation of the game. Try to beat your friend or the computer.',
path: './projects/js-small-apps/rock-paper-scissors/index.html',
repo: [
{
name: 'Github',
url: 'https://github.com/ArmandPhilippot/js-small-apps/tree/main/rock-paper-scissors',
},
],
technologies: ['Vanilla Javascript'],
},
];
export default projects;
|