mirror of
https://github.com/ArthurDanjou/artsite.git
synced 2026-01-18 00:09:23 +01:00
Add: 'maths' tag
This commit is contained in:
@@ -7,6 +7,7 @@ readingTime: 4
|
||||
tags:
|
||||
- project
|
||||
- python
|
||||
- maths
|
||||
---
|
||||
|
||||
This is the French version of the report for the Schelling Segregation Model project. The project was done as part of the course `Projet Numérique` at the Paris-Saclay University. The goal was to implement the Schelling Segregation Model in Python and analyze the results using statistics and data visualization.
|
||||
|
||||
@@ -7,6 +7,7 @@ publishedAt: 2024/11/26
|
||||
tags:
|
||||
- article
|
||||
- ml
|
||||
- maths
|
||||
---
|
||||
|
||||
## Introduction
|
||||
|
||||
9
types.ts
9
types.ts
@@ -54,7 +54,7 @@ export interface Tag {
|
||||
color: BadgeColor
|
||||
}
|
||||
|
||||
export const TAGS = [
|
||||
export const TAGS: Array<Tag> = [
|
||||
{
|
||||
label: 'Article',
|
||||
icon: 'i-ph-pencil-line-duotone',
|
||||
@@ -90,4 +90,9 @@ export const TAGS = [
|
||||
icon: 'i-vscode-icons-file-type-python',
|
||||
color: 'amber',
|
||||
},
|
||||
].sort((a, b) => a.label.localeCompare(b.label))
|
||||
{
|
||||
label: 'Maths',
|
||||
icon: 'i-ph-calculator-duotone',
|
||||
color: 'rose',
|
||||
},
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user