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 42 / 189
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
Monitoring d'un compteur Linky avec Grafana et InfluxDB https://wiki.abyssproject.net/fr/debian/linky/monitoring-linky-grafana
18/10/2022 09:49:46

Original mais utile :)

monitoring raspberrypi électrique
Privacy first steps https://sethforprivacy.com/posts/privacy-first-steps/
15/10/2022 13:35:01

Vos premiers pas dans un monde de recpect de la vie privée.

privacy
GitHub - Akryum/vue-virtual-scroller: ⚡️ Blazing fast scrolling for any amount of data https://github.com/Akryum/vue-virtual-scroller
15/10/2022 13:33:07

Un outil qui permet de scroller un très grand nombre de données efficacement dans une app Vue.

vuejs optimisation
page 42 / 189
3901 links, including 129 private
Shaarli - The personal, minimalist, super fast, database-free, bookmarking service by the Shaarli community - Theme by kalvn