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
page 2 / 3
54 results tagged 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
10 Things You Will Eventually Learn About JavaScript Projects https://blog.usejournal.com/10-things-you-will-eventually-learn-about-javascript-projects-efd7646b958a
21/08/2018 10:11:50

Quelques bonnes pratiques si vous débutez en Javascript.

JavaScript good-practice
Oh Man, Look at Your API! – Pixel Point – Medium https://medium.com/pixelpoint/oh-man-look-at-your-api-22f330ab80d5
24/04/2018 15:17:37

Quelques bonnes pratiques pour la création d'APIs.

API good-practice
List Rendering and Vue’s v-for Directive | CSS-Tricks https://css-tricks.com/list-rendering-and-vues-v-for-directive/
19/04/2018 15:11:25

Un article intéressant sur l'utilisation correcte de la directive v-for de Vue.js. Il aborde notamment l'utilisation très conseillée de :key et les risques encourus si elle est absente.

VueJS loop good-practice
page 2 / 3
4141 links, including 129 private
Shaarli - The personal, minimalist, super fast, database-free, bookmarking service by the Shaarli community - Theme by kalvn