kalvn's links
Tag cloud
Picture wall
Daily
RSS Feed
  • RSS Feed
  • Daily Feed
  • Weekly Feed
  • Monthly Feed
Filters

Links per page

  • 20 links
  • 50 links
  • 100 links

Filters

Untagged links
21-40 of 4222
57 results tagged good-practice  ✕
Inheritance and the prototype chain - JavaScript | MDN https://developer.mozilla.org/en-US/docs/Web/JavaScript/Inheritance_and_the_prototype_chain
09/12/2023 23:53:27

Une explication détaillée et claire de la façon dont le système de prototype de JavaScript fonctionne. Lecture requise si vous développez en JS, que ce soit dans le navigateur ou avec Node et consorts.

JavaScript good-practice
Node.js Reference Architecture | Node.JS Reference Architecture https://nodeshift.dev/nodejs-reference-architecture/
13/09/2023 17:51:27

Un regroupement de bonnes pratiques pour Node.js. Tout n'est évidemment pas à suivre aveuglément, mais si vous débutez c'est une bonne base.

NodeJS good-practice JavaScript
GitHub - goldbergyoni/nodebestpractices: :white_check_mark: The Node.js best practices list (July 2023) https://github.com/goldbergyoni/nodebestpractices
21/08/2023 11:31:47

Une gigantesque liste de bonne pratiques pour Node.js. Tout n'est pas à prendre aveuglément mais il y a de très bons points. Une saine lecture donc.

NodeJS good-practice
XML is the future - by Nobody has time for Python https://www.bitecode.dev/p/hype-cycles
27/06/2023 00:02:37

Un article très intéressant sur les effets de mode dans le développement informatique. J'ai d'ailleurs decouvert un nouvel acronyme très parlant : YAGNI

Via https://sebsauvage.net/links/?V0_WEg

dev good-practice
How To README · Matthias Ott – User Experience Designer https://matthiasott.com/notes/how-to-readme
25/04/2023 22:12:54

Quelques règles basiques mais qu'il est toujours bon de rappeler pour vos README.md. La grande majorité est totalement adaptée aux projets internes à une entreprise.

good-practice
Clever Code Considered Harmful https://www.joshwcomeau.com/career/clever-code-considered-harmful/
08/02/2023 22:17:00

Écrire du code de manière inutilement savante cause bien plus de problème qui n'en résout.

The key is to weigh the cost of an abstraction against its benefit.

good-practice
Tao of Node - Design, Architecture & Best Practices | Alex Kondov - Software Engineer https://alexkondov.com/tao-of-node/
05/02/2023 20:29:01

Des bonnes pratiques pour développer avec Node.js. Très instructif :)

good-practice NodeJS
Shell Script Best Practices — The Sharat's https://sharats.me/posts/shell-script-best-practices/
03/11/2022 08:31:38

Quelques règles intéressantes à connaître pour tout script Shell que vous écrivez.

#!/usr/bin/env bash

set -o errexit
set -o nounset
set -o pipefail
if [[ "${TRACE-0}" == "1" ]]; then
    set -o xtrace
fi

if [[ "${1-}" =~ ^-*h(elp)?$ ]]; then
    echo 'Usage: ./script.sh arg-one arg-two

This is an awesome bash script to make your life better.

'
    exit
fi

cd "$(dirname "$0")"

main() {
    echo do awesome stuff
}

main "$@"
shell script good-practice
backups [Wiki de sebsauvage.net] https://sebsauvage.net/wiki/doku.php?id=backups
31/03/2021 16:07:22

Bonne pratiques de backup de Sebsauvage.

sebsauvage backup good-practice
Geri Reid - Forms best practice https://gerireid.com/forms.html
21/09/2020 20:47:22

Quelques bonnes pratiques pour les formulaires.

form good-practice UX
10 Good Practices for Building Large Vue.js Projects https://www.telerik.com/blogs/10-good-practices-building-maintaining-large-vuejs-projects
16/12/2019 21:13:54

Sous le coude.

VueJS good-practice
What is linting and how can it save you time? https://www.freecodecamp.org/news/what-is-linting-and-how-can-it-save-you-time/
16/10/2019 09:04:17

Une introduction au linting.

Originally published at https://www.colbyfayock.com/2019/10/what-is-linting-and-how-can-it-save-you-time

dev linter good-practice
10 Things You Should Know Before Writing Your Next Vue.js Component https://levelup.gitconnected.com/10-things-you-should-know-before-writing-your-next-vuejs-component-4f97964611f4
27/06/2019 16:23:25
VueJS good-practice
How to Section Your HTML | CSS-Tricks https://css-tricks.com/how-to-section-your-html/
19/06/2019 09:54:17

Comment utiliser les éléments HTML <nav>, <aside>, <article> correctement.

HTML good-practice
Shipping code at N26 | Hugo Giraudel, web developer in Berlin https://hugogiraudel.com/2019/01/28/shipping-code-at-n26/
05/06/2019 14:29:07

Ce qui se passe pour le code depuis la machine du développeur jusqu'au serveur de prod chez N26.

showcase number26 good-practice dev web
Self-Host Your Static Assets – CSS Wizardry – CSS Architecture, Web Performance Optimisation, and more, by Harry Roberts https://csswizardry.com/2019/05/self-host-your-static-assets/
05/06/2019 09:26:38

Pourquoi il est important d'héberger vos ressources (CSS, JavaScript, frameworks, etc.) vous-même.

selfhosted resource good-practice
The Thinking Behind Simplifying Event Handlers | CSS-Tricks https://css-tricks.com/the-thinking-behind-simplifying-event-handlers/
20/05/2019 10:11:38

Un bon aperçu de l'utilisation du phénomène de propagation des évènements JavaScript pour simplifier votre code.

JavaScript good-practice astuce
The junior developer’s guide to writing super clean and readable code https://medium.freecodecamp.org/the-junior-developers-guide-to-writing-super-clean-and-readable-code-cd2568e08aae
16/04/2019 15:15:17
  • Use consistent formatting & indentation
  • Use clear variable and method names
  • Use comments where necessary
  • Use the DRY principle (Don’t Repeat Yourself)
code conseil good-practice
Writing clearer error messages – UX Collective https://uxdesign.cc/writing-clearer-error-messages-d57d6f388140
08/04/2019 11:49:33
erreur UX good-practice
OlivierToussaint/clean-code-php: Clean Code concepts adapted for PHP https://github.com/OlivierToussaint/clean-code-php
02/02/2019 15:37:20

Pas mal de bonnes pratiques PHP.

php good-practice
21-40 of 4222
Shaarli - The personal, minimalist, super fast, database-free, bookmarking service by the Shaarli community - Theme by kalvn