PROJET AUTOBLOG


shaarli-Links

Site original : shaarli-Links

⇐ retour index

PrivacyTests.org: open-source tests of web browser privacy

lundi 11 avril 2022 à 16:43

Ecrire un module kernel sous Linux (3)

lundi 11 avril 2022 à 11:56

Note: présidentielle 2022

dimanche 10 avril 2022 à 23:49

Monde de merde T_T
Permalink

Martin Heinz | Python f-strings Are More Powerful Than You Might Think

samedi 9 avril 2022 à 18:34
import datetime
today = datetime.datetime.today()
print(f"{today:%Y-%m-%d}")
number = 254.3463
print(f"_{f'{number:.3f}':<10s}_")
print(f"{x = }, {y = }")
print(f"{x = :.3f}")
print(f"{text:^15}") # centré

via https://nicolas-delsaux.hd.free.fr/Shaarli/?z74c1w
Permalink

www.interieur.gouv.fr parti aux USA

samedi 9 avril 2022 à 12:32

WTF !?

$ dig www.interieur.gouv.fr
;; ANSWER SECTION:
www.interieur.gouv.fr.  82  IN  CNAME   cs1635.wpc.omicroncdn.net.
cs1635.wpc.omicroncdn.net. 480  IN  A   152.199.23.71

$ whois 152.199.23.71
CIDR:           152.192.0.0/13, 152.176.0.0/12
NetName:        UU-152-176
NetHandle:      NET-152-176-0-0-1
Parent:         NET152 (NET-152-0-0-0-0)
NetType:        Direct Allocation
OriginAS:       AS1321, AS701
Organization:   ANS Communications, Inc (ANS)
RegDate:        1992-04-01
Updated:        2016-08-18
Comment:        Addresses within this block are non-portable.
Ref:            https://rdap.arin.net/registry/ip/152.176.0.0

OrgName:        ANS Communications, Inc
OrgId:          ANS
Address:        22001 Loudoun County Parkway
City:           Ashburn
StateProv:      VA
PostalCode:     20147
Country:        US
RegDate:        1991-07-12
Updated:        2009-12-07
Ref:            https://rdap.arin.net/registry/entity/ANS

Permalink

Un dispositif de surveillance audio retrouvé à la bibliothèque anarchiste Libertad à Paris (France) | Ears and eyes

jeudi 7 avril 2022 à 17:01

Utilisation d'un RB800 de Innova.
via https://sebsauvage.net/links/?dqlxKw
Permalink

Using Windows after 15 years on Linux · duncanlock.net

jeudi 7 avril 2022 à 16:33

Je partage le même avis.
Windows, c'est vraiment de la merde.
Permalink

Buster: Captcha Solver for Humans – Get this Extension for 🦊 Firefox (en-US)

jeudi 7 avril 2022 à 09:54

MNT Research GmbH

mardi 5 avril 2022 à 21:23

PC portable libre à faire soit même
Permalink

Framework | Framework Laptop DIY Edition - Now in Stock!

mardi 5 avril 2022 à 21:23

PC en DIY
Permalink

GitHub - alephsecurity/firehorse: Research & Exploitation framework for Qualcomm EDL Firehose programmers

lundi 4 avril 2022 à 17:08

mode EDL (Emergency DownLoad)
Permalink

GitHub - brenw0rth/pync: arbitrary TCP and UDP connections and listens (Netcat for Python).

mercredi 30 mars 2022 à 11:38

▶︎ First Step | Red Red Panda

lundi 28 mars 2022 à 20:14

Un PCB universel pour réaliser ses montages en électronique de puissance - YouTube

lundi 28 mars 2022 à 12:44

DBAD by philsturgeon

dimanche 27 mars 2022 à 22:38

Intéressant comme licence.

 DON'T BE A DICK PUBLIC LICENSE

> Version 1.1, December 2016

> Copyright (C) [year] [fullname]

Everyone is permitted to copy and distribute verbatim or modified
copies of this license document.

> DON'T BE A DICK PUBLIC LICENSE
> TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION

1. Do whatever you like with the original work, just don't be a dick.

   Being a dick includes - but is not limited to - the following instances:

 1a. Outright copyright infringement - Don't just copy this and change the name.
 1b. Selling the unmodified original with no work done what-so-ever, that's REALLY being a dick.
 1c. Modifying the original work to contain hidden harmful content. That would make you a PROPER dick.

2. If you become rich through modifications, related works/services, or supporting the original work,
share the love. Only a dick would make loads off this work and not buy the original work's
creator(s) a pint.

3. Code is provided with no warranty. Using somebody else's code and bitching when it goes wrong makes
you a DONKEY dick. Fix the problem yourself. A non-dick would submit the fix back.

via https://nicolas-delsaux.hd.free.fr/Shaarli/?X31NQQ
Permalink

Bibliogram

samedi 26 mars 2022 à 20:24

Génial !
Ce site permet de consulter instagram sans avoir de compte.

via https://warriordudimanche.net/article1656/623ef1993a08d
Permalink

Reading and writing Microsoft Word docx files with Python | Virantha Namal Ekanayake

lundi 14 mars 2022 à 09:56

Extraction et modification d'un docx avec python :

import zipfile
import os
import shutil

input_filename='exemple.docx'
output_filename='exemple-output.docx'

# Extraction du .docx
sourceFile = zipfile.ZipFile(input_filename)
tmp_dir="tmp-docx"
os.mkdir(tmp_dir)
sourceFile.extractall(tmp_dir)

##
# ici l'on modifie 'word/document.xml'
##

# Création du .docx
filenames = sourceFile.namelist()
with zipfile.ZipFile(output_filename, "w", compression=zipfile.ZIP_DEFLATED) as docx:
    for filename in filenames:
        docx.write(os.path.join(tmp_dir,filename), filename)

shutil.rmtree(tmp_dir)

Permalink

GitHub - ssh-mitm/ssh-mitm: ssh mitm server for security audits supporting public key authentication, session hijacking and file manipulation

dimanche 13 mars 2022 à 10:07

Solar Panels Built From Waste Crops Can Make Energy Without Direct Light

samedi 12 mars 2022 à 09:50

<video> : c'est du <track> cas ! HELP [EDIT 2h après] [Merci Bill2] - Warrior du Dimanche

vendredi 11 mars 2022 à 14:36

Il manque un «s» à «subtitles» !

<track kind="subtitles" ....

https://developer.mozilla.org/en-US/docs/Web/HTML/Element/track
Permalink