PROJET AUTOBLOG


shaarli-Links

Site original : shaarli-Links

⇐ retour index

Etherpad

2019-12-30T16:55:17+01:00
https://github.com/ether/etherpad-lite#installation
Permalink

media.ccc.de -Hamnet – introduction into a wireless backbone

2019-12-30T15:10:03+01:00
Réseau internet des radioamateurs
Permalink

media.ccc.de -36C3 Resource Exhaustion

2019-12-30T10:28:12+01:00
36ème Chaos Communication Congress
Permalink

TOY RESCUE

2019-12-29T21:28:59+01:00
Pièces à imprimer pour réparer des jeux.
Permalink

GitHub - Oros42/dropWindowsPwd: Drop Windows passords

2019-12-23T18:27:30+01:00
Si vous voulez rapidement faire sauter un mot de passe Windows, ce script est pour vous :-)
Permalink

Capturing USB Serial data using wireshark – Dave's Stuff – Dave's Random Thoughts and Musings

2019-12-20T11:32:34+01:00
via https://fabienm.eu/shaarli/?RKfR1w
Permalink

Opinion | Twelve Million Phones, One Dataset, Zero Privacy - The New York Times

2019-12-20T10:34:38+01:00
Pour info, en France les données de connexion et donc position des téléphones sont conservés au moins 1 an par les opérateurs téléphonique.
Donc désactiver le GPS, bluetooth, NFS et Wifi, c'est bien mais pas suffisant pour ne plus être localisé.
via https://sebsauvage.net/links/?MiIr3g
Permalink

L’option ControlMaster de ssh_config – Blog Libre

2019-12-20T10:11:43+01:00
Dans ~/.ssh/config.
```
Host *
    ControlMaster auto
    ControlPath ~/.ssh/sockets/socket-%r@%h:%p
    ControlPersist 5m
```
mkdir -p ~/.ssh/sockets; chmod 700 ~/.ssh/sockets
Permalink

Source Code Pro

2019-12-20T10:03:51+01:00
https://github.com/adobe-fonts/source-code-pro
Permalink

GitHub - IBM/plex: The package of IBM’s typeface, IBM Plex.

2019-12-20T09:33:58+01:00

Permalink

GitHub - tonsky/FiraCode: Monospaced font with programming ligatures

2019-12-20T09:32:05+01:00

Permalink

Mosh: the mobile shell

2019-12-20T09:29:51+01:00
«
Remote terminal application that allows roaming, supports intermittent connectivity, and provides intelligent local echo and line editing of user keystrokes.

Mosh is a replacement for interactive SSH terminals. It's more robust and responsive, especially over Wi-Fi, cellular, and long-distance links.
»
Permalink

Samba Optimization and Speed Tuning @ Calomel.org

2019-12-19T17:04:42+01:00
# /etc/samba/smb.conf
read raw = Yes
write raw = Yes
socket options = TCP_NODELAY IPTOS_LOWDELAY SO_RCVBUF=131072 SO_SNDBUF=131072
#socket options = TCP_NODELAY IPTOS_LOWDELAY SO_RCVBUF=65536 SO_SNDBUF=65536
min receivefile size = 16384
use sendfile = Yes
aio read size = 16384
aio write size = 16384
strict locking = no
Permalink

Linux Mint 19.3 “Tricia” MATE released! – The Linux Mint Blog

2019-12-19T09:54:47+01:00
https://www.linuxmint.com/download.php
Permalink

Lutris - Open Gaming Platform

2019-12-16T11:10:57+01:00
Pour jouer à des jeux Windows sous Gnu/Linux.
Permalink

ProtonDB | Gaming reports for Linux using Proton and Steam Play

2019-12-16T11:07:29+01:00
Pour jouer à des jeux Windows sous Gnu/Linux
À tester, .... un jour...
Permalink

Wireguard - Debian Wiki

2019-12-15T18:22:00+01:00
https://angristan.xyz/how-to-setup-vpn-server-wireguard-nat-ipv6/
https://wiki.debian.org/Wireguard
https://www.wireguard.com/install/
Permalink

Cracking LUKS/dm-crypt passphrases – Diverto – Information Security Warriors

2019-12-14T22:26:06+01:00
dd if=/dev/sdb3 of=hashcat.luks bs=512 count=4097
hashcat -a 0 -m 14600 hashcat.luks wordlist.txt

http://www.incredigeek.com/home/downloads/grond.sh
https://github.com/glv2/bruteforce-luks
Permalink

Données Publiques de Météo-France - Accueil

2019-12-12T11:40:05+01:00
via https://linuxfr.org/news/troisieme-mise-en-demeure-pour-l-association-linuxfr
Permalink

Disséquer un APK pour trouver une API de météo - LinuxFr.org

2019-12-12T11:36:13+01:00
# pour avoir la météo
curl -s -S 'http://ws.meteofrance.com/ws/getLieux/rennes.json' | jq -rc '.result.france[]|[.indicatif, .nom]|@csv'
curl -s -S 'http://ws.meteofrance.com/ws/getDetail/france/352380.json' | jq -rc '.result.previsions48h|.[]|[.moment, .description]|@csv'

Sinon il y a ça :
curl -4 http://wttr.in/Rennes
Permalink