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 59 / 206
unocss/unocss: The instant on-demand atomic CSS engine. https://github.com/unocss/unocss
19/11/2022 23:14:45

J'ai beaucoup de mal avec les framework CSS dit utility-first type Tailwind et consorts. Le HTML est souvent surchargé de classes cryptiques et devient donc difficile à lire. Sans parler du risque de ne pas "nettoyer" correctement le CSS final et donc d'embarquer des méga octets de CSS inutile.

Mais je dois admettre que l'approche proposée par UnoCSS est séduisante. Le nettoyage est fait à la volée et il fonctionne par "presets". On peut donc importer les règles que l'on veut, et créer nos propres règles facilement.

À essayer...

CSS framework
Les aides au préchargement de ressources - Alsacreations https://www.alsacreations.com/article/lire/1877-les-aides-au-prechargement-des-ressources.html
19/11/2022 23:07:20

Très bon article en français qui explique de manière concise le fonctionnement des attributs async, defer, rel=preload/preconnect/dns-prefetch, fetchpriority et loading.

optimisation HTML
Facebook a-t-il votre numéro de téléphone ? Vérifiez et supprimez - Numerama https://www.numerama.com/tech/1170104-facebook-a-t-il-votre-numero-de-telephone-verifiez-et-supprimez.html
19/11/2022 22:30:45

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

privacy facebook
github/mona-sans: Mona Sans, a variable font from GitHub https://github.com/github/mona-sans
19/11/2022 22:26:17

Une police d'écriture variable. Un seul fichier woff2 et pas mal de variations possibles.

font
Fan Control - Fan Control https://getfancontrol.com/
14/11/2022 22:22:04

Une app pour gérer les ventilos de votre PC Windows.

Via https://korben.info/controlez-ventilos-pc.html

app hardware Windows
Enfin un Alt Tab digne de ce nom sous macOS ! https://korben.info/alt-tab-alternative-macos.html
14/11/2022 22:12:39

Il faut avouer que le Alt+Tab sur MacOS est vraiment tout pourri.

MacOS
Wi-Fi Mesh ou CPL : comment améliorer sa connexion Internet ? https://www.frandroid.com/guide-dachat/641573_repeteur-wi-fi-mesh-cpl-le-guide-ultime-pour-bien-capter-internet-chez-vous
14/11/2022 22:08:49
wifi cpl comparatif hardware
Outils gratuits en ligne de traitement d'image automatique (et de video et de son) MAJ - Warrior du Dimanche https://warriordudimanche.net/article1586/outils-traitement-image-automatique
13/11/2022 17:23:13

Quelques outils pour travailler les images.

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

images outil
kd2org/karadav: Lightweight NextCloud compatible WebDAV server https://github.com/kd2org/karadav/
13/11/2022 17:22:35

Un serveur WebDAV ultra léger.

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

WebDAV
akrabat/slim-api-starter: Slim API Starter https://github.com/akrabat/slim-api-starter
06/11/2022 22:22:33

Un starter simple et solide pour créer une API avec le SlimFramework.

slimframework PHP
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
How to Properly Set Up Express With TypeScript | by Albin Groen | Level Up Coding https://levelup.gitconnected.com/how-to-properly-set-up-express-with-typescript-1b52570677c9
27/10/2022 17:34:22
expressjs TypeScript
Home | The Component Gallery https://component.gallery/
27/10/2022 17:28:33

Designed to be a reference for anyone building component-based user interfaces, The Component Gallery is an up-to-date repository of interface components based on examples from the world of design systems.

composant widget UI
What is CORS? | SimpleLocalize https://simplelocalize.io/blog/posts/what-is-cors/
26/10/2022 16:10:05

Plein d'info sur CORS.

HTTP
When life gives you lemons, write better error messages | by Jenni Nadler | Sep, 2022 | Wix UX https://wix-ux.com/when-life-gives-you-lemons-write-better-error-messages-46c5223e1a2f
26/10/2022 16:08:16

Essayer d'aider l'utilisateur autant que possible lorsque vous générez des messages d'erreur.

erreur UX
Note: Running SSH Agent when starting Git Bash on Windows /shaare/OUk-hw
21/10/2022 13:55:53

Sous Windows, petit script à coller dans ~/.bashrc pour que l'agent SSH démarre lors de votre premier lancement de Git Bash et soit conservé d'un terminal à l'autre.

env=~/.ssh/agent.env

agent_load_env () { test -f "$env" && . "$env" >| /dev/null ; }

agent_start () {
    (umask 077; ssh-agent >| "$env")
    . "$env" >| /dev/null ; }

agent_load_env

# agent_run_state: 0=agent running w/ key; 1=agent w/o key; 2= agent not running
agent_run_state=$(ssh-add -l >| /dev/null 2>&1; echo $?)

if [ ! "$SSH_AUTH_SOCK" ] || [ $agent_run_state = 2 ]; then
    agent_start
    ssh-add
elif [ "$SSH_AUTH_SOCK" ] && [ $agent_run_state = 1 ]; then
    ssh-add
fi

unset env

Source

Git bash ssh snippet
dkrivoruchko/ScreenStream: Screen Stream Android app https://github.com/dkrivoruchko/ScreenStream
20/10/2022 21:52:23

Diffuser très simplement l'écran de son téléphone sur un réseau local, accessible ensuite par un navigateur.

Via https://sebsauvage.net/links/?3oLDGA

Android app streaming
Openly Licensed Images, Audio and More | Openverse https://wordpress.org/openverse/
20/10/2022 21:51:12
libre images
Note: Customisation du look de Git Bash /shaare/lggohA
18/10/2022 17:54:29

Voici ma config pour lui donner un air de Cmder.

Le fichier est à mettre dans ~/.config/git/git-prompt.sh.

PS1='\[\033]0;\w\007\]' # set window title
PS1="$PS1"'\n'                 # new line
PS1="$PS1"'\[\033[38;5;112m\]'       # change to green 256 bits
PS1="$PS1"'\w'                 # current working directory
if test -z "$WINELOADERNOEXEC"
then
    GIT_EXEC_PATH="$(git --exec-path 2>/dev/null)"
    COMPLETION_PATH="${GIT_EXEC_PATH%/libexec/git-core}"
    COMPLETION_PATH="${COMPLETION_PATH%/lib/git-core}"
    COMPLETION_PATH="$COMPLETION_PATH/share/git/completion"
    if test -f "$COMPLETION_PATH/git-prompt.sh"
    then
        . "$COMPLETION_PATH/git-completion.bash"
        . "$COMPLETION_PATH/git-prompt.sh"
        PS1="$PS1"'\[\033[36m\]'  # change color to cyan
        PS1="$PS1"'`__git_ps1`'   # bash function
    fi
fi
PS1="$PS1"'\[\033[0m\]'        # change color
PS1="$PS1"'\n'                 # new line
PS1="$PS1"'λ '                 # prompt
Git bash
How To Customize GitBash For Windows | Automation Dojos https://www.automationdojos.com/how-to-customize-gitbash-for-windows/
18/10/2022 13:21:58

Comment customiser GitBash (le titre de la fenêtre, les couleurs et infos qui apparaissent avant le curseur, etc.).

Git bash customisation
page 59 / 206
4244 links, including 129 private
Shaarli - The personal, minimalist, super fast, database-free, bookmarking service by the Shaarli community - Theme by kalvn