Monthly Shaarli

All links of one month in a single page.

September, 2022

Help … le premier VAE d’Origine Cycles

#origine sort un vélo à assistance équipe d’un moteur+batterie de 3,2kg (la moitié des derniers couples Bosch), pour une autonomie approchant les 100km.

Define 7 — Fractal Design

Là il y a de la place pour les disques durs! #fractal #case

Zotero | Your personal research assistant

Faut que j’essaye #zotero pour mes bibliographies 🙃

Humble Tech Book Bundle: Linux by No Starch Press (payez ce que vous voulez et aidez les œuvres caritatives)
thumbnail

We’ve teamed up with No Starch Press for our newest bundle. Get books like How Linux Works & The Linux Programming Interface. Plus, pay what you want & support charity!

https://youtu.be/BIhNsAtPbPI

Le méchant, c’est M. Robot ! 😃

Chess robot grabs and breaks finger of seven-year-old opponent | Chess | The Guardian
thumbnail

Moscow incident occurred because child ‘violated’ safety rules by taking turn too quickly.

Ouais, en fait, le robot était un peu mauvais joueur aussi. #chess

Nokia T10 : une tablette petit budget qui frôle la perfection - Geeko

Si Nokia peine à revenir sur le marché des smartphones, la marque finlandaise, désormais propriété de HMD Global, est parvenue à joliment diversifier ses activités et propose désormais une gamme complète de produits qui s’étend des tablettes aux ordinateurs portables et wearables. Sur le marché des tablettes, elle est parvenue à montrer un réel potentiel...

Ask HN: Why is Microsoft Teams still so bad? | Hacker News

Plein d’idées et raisons pour lesquelles Microsoft s’en balek que Teams soit aussi mauvais (et le reste). #ms #microsoft #teams

AlphaGo - The Movie

Il parait que le film est bien. Il semble être disponible (gratuitement...) sur YouTube.

A code-completion engine for Vim

De la complétion multi langages pour Vim (avec un petit moteur de recherche floue). A essayer. #vim #text #code

Fastmail s'associe à BitWarden pour créer des alias aléatoires à la volée, une fonction encore rare

Fast mail s’associe à bitwarden pour plein de nouvelles fonctionnalités qui ont l’air très, très sympas 😉

Vim sans plugins

Long story short:

$ cat .vimrc
syntax on
set autoindent
set smartindent
set number
set mouse=a
set background=dark
colorscheme onedark

(+ https://vimcolorschemes.com/joshdick/onedark.vim)

The officiel MS Teams app will be retired in december (2022)

Roh mais non >_<

Geometric Bubbles
Chieftec CI-02B-OP unité centrale Cube Noir, Cas de cube Noir, Cube, PC, Noir, micro ATX, Mini-ITX, SPCC, maison/bureau

Idée à pas trop cher #nas #case

Cases | Cooler Master France

Roh la quantité de tours, rien que chez CoolerMaster … 😶

This is not your grandfather's Perl - Stack Overflow Blog

Des fois qu'il y ait encore des gens qui bossent en #perl #justSaying

Overview - Material UI
thumbnail

Material UI is a library of React UI components that implements Google's Material Design. #react #mui #js

Première version « grand public » de TrSync

J’aimerais bien essayer Tracim…

Debian GNU/Linux 11.5 “Bullseye” Released with 53 Security Updates and 58 Bug Fixes
Vim sans plugins (²)

Long story short:

$ mkdir -p ~/.vim ~/.vim/autoload ~/.vim/backup ~/.vim/colors ~/.vim/plugged

" Disable compatibility with vi which can cause unexpected issues.
set nocompatible

" Enable type file detection. Vim will be able to try to detect the type of file in use.
filetype on

" Enable plugins and load plugin for the detected file type.
filetype plugin on

" Load an indent file for the detected file type.
filetype indent on

" Turn syntax highlighting on.
syntax on

" Add numbers to each line on the left-hand side.
set number

" Highlight cursor line underneath the cursor horizontally.
set cursorline

" Highlight cursor line underneath the cursor vertically.
set cursorcolumn

" Set shift width to 4 spaces.
set shiftwidth=4

" Set tab width to 4 columns.
set tabstop=4

" Use space characters instead of tabs.
set expandtab

" Do not save backup files.
set nobackup

" Do not let cursor scroll below or above N number of lines when scrolling.
set scrolloff=10

" Do not wrap lines. Allow long lines to extend as far as the line goes.
set nowrap

" While searching though a file incrementally highlight matching characters as you type.
set incsearch

" Ignore capital letters during search.
set ignorecase

" Override the ignorecase option if searching for capital letters.
" This will allow you to search specifically for capital letters.
set smartcase

" Show partial command you type in the last line of the screen.
set showcmd

" Show the mode you are on the last line.
set showmode

" Show matching words during a search.
set showmatch

" Use highlighting when doing a search.
set hlsearch

" Set the commands to save in history default number is 20.
set history=1000