Skip to content

Instantly share code, notes, and snippets.

@Naedri
Naedri / A100_Octave.md
Last active July 25, 2022 10:42 — forked from mlhoutel/A100_Octave.md
Cours de l'IMT Atlantique sur les Méthodes Numériques

Méthodes Numériques avec Octave

@Naedri
Naedri / PlacesToSee-Nantes.md
Last active July 25, 2022 10:36
Places In Nantes that I consider to be worth the detour.

Places to see in Nantes

If rain is coming

  • Jardin des plantes (serres)
  • Château des ducs (musée)
  • Musée des arts
  • Passage Pommeraye
@Naedri
Naedri / PlacesToSee-Paris.md
Created July 25, 2022 10:35
Places In Paris that I consider to be worth the detour.
@Naedri
Naedri / A100_Internationalization.md
Last active July 25, 2022 12:35
Internationalization with react-i18next

Internationalization

This app aims to support internationalization, thanks to i18next. A crash course is available on YouTube.

const Logger = {
info: (className: string, message: string, functionName?: string): void => {
console.log(
`${FgWhite}${getDate()} ${FgGreen}LOG ${FgYellow}[${className}]${
functionName ? `(${functionName})` : ''
} ${FgGreen}${message}${Reset}`
);
},
warn: (className: string, message: string, functionName?: string): void => {
console.warn(
@Naedri
Naedri / A100_Describe_Error.md
Last active July 25, 2022 11:58
To describe error from Client and Server with internationalization support

Error description in TS

@Naedri
Naedri / Python-vs-Bash.md
Last active July 25, 2022 12:13
To find and replace string in a text.

String operations comparison in Python and Bash

@Naedri
Naedri / DesignPattern-Modularity-Typing.md
Last active September 12, 2023 12:02
Patrons de conception par modularité et typage.
@Naedri
Naedri / Awesome-IT.md
Last active February 20, 2024 10:31
To bookmark online knowledge resources and trendy new technologies in the field of computer science.
@Naedri
Naedri / Install-Config.md
Last active July 2, 2024 21:12
Just to save configuration of a functional environment to develop web applications.

Install-Config

Windows

For windows, you can use the following bash script with PowerShell.exe to quickly install the above softwares with chocolatey (a software management for windows). You can look for other softwares at this page.