320 links
  • Sbgodin
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
◄Older
page 1 / 4
76 results tagged en x
  • YouTube thumbnail
    TIMELAPSE OF THE ENTIRE UNIVERSE - YouTube
    « Sur une échelle de temps cosmique, l'histoire humaine est aussi brève qu'un clin d'œil. En comprimant les 13,8 milliards d'années du temps sur une durée de 10 minutes, cette vidéo montre à quel point nous sommes jeunes, et à quel point notre univers est ancien et vaste. Commençant par le Big Bang et culminant avec l'apparition de l'homo sapiens, cette expérience suit l'écoulement du temps à raison de 22 millions d'années par seconde, en adhérant étroitement à la compréhension scientifique actuelle. »
    Tue 20 Apr 2021 09:53:47 PM CEST - permalink -
    QRCode
    - https://www.youtube.com/watch?v=TBikbn5XJhg
    en science
  • The Rust book in EPUB format for offline reading
    Rust official epub 2018-12-01
    Tue 30 Jul 2019 12:05:08 AM CEST - permalink -
    QRCode
    - https://www.jyotirmoy.net/posts/2018-12-01-rust-book.html
    en info
  • BIP39 / Bitcoin : seed command line | graines ligne de commande
    EN: For #bitcoin seed paranoid (including #coldcard users), type this on your computer to get random seed of your own.
    FR: Pour les paranos du #bitcoin (y compris #coldcard), tapez ceci dans votre ordi pour obtenir un graine aléatoire à vous.

    echo "12 15 18 21 24? ";read N && echo "import mnemonic as m;print(m.Mnemonic('english').generate($N*32//3))"|python3
    Sun 17 Feb 2019 11:40:26 AM CET * - permalink -
    QRCode
    - https://shaarli.sbgodin.fr/?EWf_GA
    bitcoin en fr hack info
  • Sbgodin : "Here is Xit v1.0, a small cryptographic project u…" - Mastodon
    Here is Xit v1.0, a small cryptographic project using exclusively the xor function. Feel free to use, modify and comment it. License: AGPL-3.0. Linux. Command line.
    Thu 06 Dec 2018 10:57:12 PM CET - permalink -
    QRCode
    - https://mastodon.social/web/statuses/101196279086858780
    crypto en xor
  • Linux script to emulate the Yubikey hmac-sha1
    The challenge-response mode of the Yubikey transforms a password into another one using the hmac-sha1 algorithm, with a (secret) key stored inside.
    This is the command line way, using openssl. The result is the same as that of yubikey-personalization-gui.

    #!/bin/sh
    echo -n "challenge: " ; read challenge
    echo -n "hexkey: " ; read hexkey
    echo
    echo $challenge
    echo -n "$challenge" | openssl dgst -sha1 -mac HMAC -macopt hexkey:$(echo "$hexkey" | tr -d ' ') | sed 's#^(stdin)= ##'
    Thu 08 Nov 2018 04:39:42 PM CET - permalink -
    QRCode
    - https://shaarli.sbgodin.fr/?E68-Rw
    en hack info yubikey
  • XOR has good properties, is it the only one? - Sbgodin
    Je me suis demandé s'il existait une fonction binaire autre que XOR pour faire de la cryptographie. XOR est utilisée dans de nombreux cryptosystèmes du fait de ses propriétés intéressantes. Un programme Python m'a fourni la réponse : le XNOR marche également, et c'est tout.
    Tue 19 Dec 2017 11:46:42 PM CET - permalink -
    QRCode
    - https://blog.sbgodin.fr/article8/xor-has-good-properties-is-it-the-only-one
    en fr info maths
  • Asus Router - Hide SSID - Guest Networks? | SmallNetBuilder Forums
    To hide SSID broadcast on an Asus router. This setting is available on the main wifi network but not on the guest ones.

    Example, for wl0.1, the guest network 1 at 2.4 Ghz:
    nvram set wl0.1_closed=1
    nvram commit

    2.4 Ghz Radio
    wl0.1 ---> Guest Network 1
    wl0.2 ---> Guest Network 2
    wl0.3 ---> Guest Network 3

    5 Ghz Radio
    wl1.1 ---> Guest Network 1
    wl1.2 ---> Guest Network 2
    wl1.3 ---> Guest Network 3
    Fri 13 Oct 2017 09:17:34 PM CEST * - permalink -
    QRCode
    - https://www.snbforums.com/threads/hide-ssid-guest-networks.10704/
    en hack
  • htaccess: HTTP --> HTTPS + acme (Let's encrypt)
    # HTTP --> HTTPS
    RewriteEngine On
    RewriteCond %{HTTPS} off
    RewriteCond %{REQUEST_URI} !^/\.well-known/acme-challenge.*
    RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}

    (EN) The .well-known/acme-challenge directory is used by ACME to ask for a Let's encrypt certificate. This won't work if the website redirects the directory into HTTPS.
    (FR) Le répertoire .well-known/acme-challenge est utilisé par ACME pour demander un certificat Let's encrypt. Ça ne marchera pas si le site web redirige le répertoire vers HTTPS.
    (EO) La dosierujo .well-known/acme-challenge uzantas de ACME por demandi atestilon Let's encrypt. Tio ne funkcios se la retejo alidirektas la dosierujon al HTTPS.
    Mon 27 Mar 2017 01:42:37 PM CEST - permalink -
    QRCode
    - https://shaarli.sbgodin.fr/?ojbKcQ
    en eo fr hack info
  • GitHub - Sbgodin/freeMobileSms: Sends SMS using a Free Mobile feature
    Sends SMS using a Free Mobile feature. It uses URL like this one:
    wget -O- 'https://smsapi.free-mobile.fr/sendmsg?user=USER&pass=PASS&msg=ping
    Tue 07 Mar 2017 01:54:43 PM CET * - permalink -
    QRCode
    - https://github.com/Sbgodin/freeMobileSms
    en hack python
  • Convert a Mercurial Repository to Git - Stack Overflow
    To convert a Mercurial repository to git:

    mkdir myrepo
    cd myrepo
    git clone https://github.com/frej/fast-export .
    rm -rf .git .gitignore git init
    ./hg-fast-export.sh -r ../path/to/local/hg/repo
    git clean -f # remove fast-export files
    Tue 07 Mar 2017 10:45:16 AM CET * - permalink -
    QRCode
    - http://stackoverflow.com/questions/1389307/convert-a-mercurial-repository-to-git
    en git hack hg
  • PHP Warning: mysqli::mysqli(): Headers and client library minor version mismatch
    For Debian, replace 'php5-mysql' by 'php5-mysqlnd'. Restart the web server.
    Mon 23 Jan 2017 11:37:02 PM CET - permalink -
    QRCode
    - https://shaarli.sbgodin.fr/?vGTbRg
    en hack info
  • Community Radio Station Board
    Écouter plein de radios.
    Listen to many radios.
    Aŭskulti multe da radioj.
    Tue 17 Jan 2017 12:30:21 AM CET - permalink -
    QRCode
    - http://www.radio-browser.info/
    en eo fr radio
  • 14.04 - Why can't Firefox run local .swf files? - Ask Ubuntu
    (...) it's just a problem with Firefox not properly supporting a certain mime-type.

    Edit /usr/share/mime/packages/freedesktop.org.xml as root and replace the following:

    <mime-type type="application/vnd.adobe.flash.movie">

    With:

    <mime-type type="application/x-shockwave-flash">

    And then run:

    sudo update-mime-database /usr/share/mime
    Tue 01 Nov 2016 09:44:13 PM CET - permalink -
    QRCode
    - https://askubuntu.com/questions/478169/why-cant-firefox-run-local-swf-files
    en hack info
  • 32 vs 64 bit - How do I remove all i386 architecture packages from my Debian installation? - Super User
    Useful to get rid of all :i386 packets in aptitude.

    ~# apt-get purge ".*:i386"
    ~# dpkg --remove-architecture i386
    Fri 29 Jul 2016 07:02:24 PM CEST - permalink -
    QRCode
    - https://superuser.com/questions/714391/how-do-i-remove-all-i386-architecture-packages-from-my-debian-installation
    en hack info
  • Anki, ImportError: No module named QtWebKit
    Under Debian, try downgrading python-qt4 to 4.11.2+dfsg-1 and hold it. The problem started at dfsg-2.
    Mon 06 Jun 2016 10:03:15 AM CEST - permalink -
    QRCode
    - https://www.mail-archive.com/search?l=debian-bugs-dist@lists.debian.org&q=subject:%22Bug%23784612\%3A+\[anki\]+Qt4%27s+WebKit+removal%22&o=newest&f=1
    debian en hack info
  • Firefox with Tabtree extension : layer turned to black
    On about:config, turn this to false: layers.acceleration.force-enabled
    Wed 11 May 2016 10:04:30 PM CEST - permalink -
    QRCode
    - https://shaarli.sbgodin.fr/?FiMUvw
    en hack
  • Python: create any empty variable of the same type as a known variable
    knownVar = ['value']
    newVar = type(knownVar)()
    type(newVar) # --> <class 'list'>
    type(knownVar) # --> <class 'list'>
    not knownVar # --> False
    not newVar # --> True
    Thu 14 Jan 2016 08:58:14 AM CET - permalink -
    QRCode
    - https://shaarli.sbgodin.fr/?GBFZeg
    en hack info python
  • Keep history between terminals
    $ tail -n 2 ~/.bashrc
    shopt -s histappend
    PROMPT_COMMAND="history -a;history -c;history -r;$PROMPT_COMMAND"
    Sun 10 Jan 2016 01:30:39 PM CET - permalink -
    QRCode
    - https://shaarli.sbgodin.fr/?VsXczg
    en hack info
  • Apollo 17 in Real-time
    "The Last Mission to the Moon
    A real-time journey through the Apollo 17 mission.
    Over 300 hours of audio | Over 22 hours of video | Over 4,200 photos
    Relive every moment as it occurred in 1972."
    Mon 14 Dec 2015 10:51:03 AM CET - permalink -
    QRCode
    - http://apollo17.org/
    en science
  • YouTube thumbnail
    Minimanimo
    TINY-G 's first single title 'TINY-G' was a song that introduced them to people, and this single title song' MINIANIMO' is a song that can show the true colors of TINY-G.

    It is a stray about a girl who is breaking up in a rather cool manner but actually is very sad in the inside. It talks about how she thinks even the phone battery is not worthy for him but she loves him too much at the same time to forget about him.
    Thu 12 Feb 2015 07:13:15 PM CET - permalink -
    QRCode
    - https://www.youtube.com/watch?v=r-MXLmNnarQ
    en music
Links per page: 20 50 100
◄Older
page 1 / 4
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation