Afficher/masquer le menu
Liens Ecyseo
  • Tags cloud
  • Daily
  • Pictures wall
  • Search
  • Display options
    • Links per page :
    • 20 links
    • 50 links
    • 100 links
  • RSS Feed
  • Login

J'ai besoin d'intimité. Non pas parce que mes actions sont douteuses, mais parce que votre jugement et vos intentions le sont.

5174 links 

page 60 / 259

Liste des liens

The Native File System API: Simplifying access to local files
2020-01-11 0:10 - permalink -

Accéder aux fichiers locaux via un navigateur

internet navigateur
- https://web.dev/native-file-system/
PRENDRE LE GOUVERNEMENT A CONTRE-PIED - Cerveaux Non Disponibles
2020-01-10 0:51 - permalink -

Voici un texte reçu aujourd'hui qui questionne notre rapport à cette grève et à ses revendications

On aura été des milliers de personnes à manifester pour ne pas travaillez plus longtemps et pour une allocation retraite digne. Mais, quelle est cette frontière magique qui retient cette grève à mettre en ...

politique société
- https://cerveauxnondisponibles.net/2019/12/20/prendre-le-gouvernement-a-contre-pied/
Macron, start-up fasciste - Cerveaux Non Disponibles
2020-01-10 0:28 - permalink -

Les mots sont importants. Dans une période où les termes sont dévoyés, où plus rien ne semble vrai ou faux, il nous est toujours apparu important de tenter de laisser chaque mot à sa place et de les utiliser avec la plus grande attention. Aussi, alors qu'Emmanuel Macron arrive à la moitié de son mandat de P ...

politique société
- https://cerveauxnondisponibles.net/2020/01/06/macron-start-up-fasciste/
Grumpy Website
2020-01-9 11:16 - permalink -

Si ce n'est pas un fake, c'est énorme le niveau de connerie de l'entreprise à l'origine d'une telle notice...

bullshit
- https://grumpy.website/post/0T1A5A-qO
Setting up Pi Zero OTG - The quick way (No USB keyboard, mouse, HDMI monitor needed)
2020-01-9 3:17 - permalink -

More details - http://blog.gbaman.info/?p=791

For this method, alongside your Pi Zero, MicroUSB cable and MicroSD card, only an additional computer is required, which can be running Windows (with Bonjour, iTunes or Quicktime installed), Mac OS or Linux (with Avahi Daemon installed, for example Ubuntu has it built in).

  1. Flash Raspbian Jessie full or Raspbian Jessie Lite onto the SD card.
  2. Once Raspbian is flashed, open up the boot partition (in Windows Explorer, Finder etc) and add to the bottom of the config.txt file dtoverlay=dwc2 on a new line, then save the file.
  3. If using a recent release of Jessie (Dec 2016 onwards), then create a new file simply called ssh in the SD card as well. By default SSH is now disabled so this is required to enable it. Remember - Make sure your file doesn't have an extension (like .txt etc)!
  4. Finally, open up the cmdline.txt. Be careful with this file, it is very picky with its formatting! Each parameter is seperated by a single space (it does not use newlines). Insert modules-load=dwc2,g_ether after rootwait. To compare, an edited version of the cmdline.txt file at the time of writing, can be found here.
  5. That's it, eject the SD card from your computer, put it in your Raspberry Pi Zero and connect it via USB to your computer. It will take up to 90s to boot up (shorter on subsequent boots). It should then appear as a USB Ethernet device. You can SSH into it using raspberrypi.local as the address.
Raspberry raspian
- https://gist.github.com/gbaman/975e2db164b3ca2b51ae11e45e8fd40a
Mounting Fan SHIM on your Raspberry Pi
2020-01-9 3:11 - permalink -

Make sure that get the Fan SHIM on the correct pins and that you don't accidentally shift them over one pin to the left or one row down, or you're highly likely to damage your Fan SHIM and possibly your Pi.

If you're not using a case, the push your Fan SHIM all the way down onto the GPIO pins. If you're using Fan SHIM in one of our Pibow Coupé 4 cases, then you can just push it down part way onto the GPIO pins so that you can still access the right-angle tactile switch.

If you're happy that the Fan SHIM is mounted properly, then plug in your power supply and boot up your Pi now.
Installing the Fan SHIM software

For this part of the tutorial, you'll need a micro-SD card that's been set up with the Raspbian operating system, and to be connected to Wi-Fi. It's also really handy to have a display, keyboard, and mouse connected to your Pi for these next bits.

Open a terminal (press control-alt-t or find it in the Raspberry Pi menu) and then type the following to install the Fan SHIM Python library:

git clone h ttps://github.com/pimoroni/fanshim-python
cd fanshim-python
sudo ./install.sh

That installs the Python library itself, but we've put together a nice Python script that sets temperature thresholds (along with a couple of other options) and then turns the fan on automatically when it reaches a threshold and back off when it drops back below a second threshold.

The installer accepts three values, the first for the on threshold temperature at which the fan kicks in, the second for the off threshold temperature at which the fan stops again, and the third for the delay between each temperature reading.

In our testing, an on threshold of 65°C, an off threshold of 55°C, and a delay of 2 work pretty well. Type the following in the terminal to run the installer for the automatic script:

cd examples
sudo ./install-service.sh --on-threshold 65 --off-threshold 55 --delay 2

This installer will run the automatic script in the background, and it should even start running again if you shutdown and boot up again, or reboot.

The LED indicates the CPU temperature, with green being cooler and red being hotter. A long press on the button put the fan into manual mode and then a short press will stop or start the fan. Long pressing again will re-enable automatic mode.

If you ever need to stop the script running in the background, you can type in the terminal:

sudo systemctl stop pimoroni-fanshim.service

If you want to change the thresholds, e.g to change the on temperature to 75, the off temperature to 60, and the delay to 5 seconds, then you can type the following in the terminal:

sudo systemctl stop pimoroni-fanshim.service
sudo ./install-service.sh --on-threshold 75 --off-threshold 60 --delay 5

If you want to permanently disable the background script, you can type in the terminal:

sudo systemctl stop pimoroni-fanshim.service
sudo systemctl disable pimoroni-fanshim.service

Or to re-enable it:

sudo systemctl enable pimoroni-fanshim.service
sudo systemctl start pimoroni-fanshim.service

More examples

We've provided a few other examples that demonstrate the functionality of the Fan SHIM Python library, i.e. the RGB LED, and the tactile switch/button.

You can find the examples here, along with short descriptions of what each one does: https://github.com/pimoroni/fanshim-python/tree/master/examples.

The script supports these arguments:

    --on-threshold N the temperature at which to turn the fan on, in degrees C (default 65)
    --off-threshold N the temperature at which to turn the fan off, in degrees C (default 55)
    --delay N the delay between subsequent temperature readings, in seconds (default 2)
    --preempt preemptively kick in the fan when the CPU frequency is raised (default off)
    --brightness the brightness (value of HSV) of the LED (0-255, default 255)

Deprecated arguments

    --threshold N the temperature at which the fan should turn on, in degrees C (default 55)
    --hysteresis N the change in temperature needed to trigger a fan state change, in degrees C (default 5)

You can use systemd or crontab to run this example as a fan controller service on your Pi.

To use systemd, just run:

sudo ./install-service.sh

You can then stop the fan service with:

sudo systemctl stop pimoroni-fanshim.service

If you need to change the threshold, hysteresis or delay you can add them as arguments to the installer:

sudo ./install-service.sh --on-threshold 65 --off-threshold 55 --delay 2

To enable CPU-frequency based control:

sudo ./install-service.sh --on-threshold 65 --off-threshold 55 --delay 2 --preempt

You can also add --noled to disable LED control and/or --nobutton to disable button input.

Si jamais les commandes ci-dessus ne fonctionnent pas, il faut ajouter l'utilisateur courant au groupe gpio (groupe à créer s'il n'existe pas) :

sudo usermod -a -G gpio YourUserName

Ensuite, il faut relancer les services :

sudo systemctl daemon-reload
sudo systemctl stop pimoroni-fanshim
sudo systemctl start pimoroni-fanshim
Raspberry tutoriels
- https://learn.pimoroni.com/tutorial/sandyj/getting-started-with-fan-shim
REPORTING PM2.5 PM10 MICRO PARTICLE DUST SENSOR BY USING ARDUINO AND LORAWAN ATIM ACW-DUINO SHIELD
2020-01-8 12:25 - permalink -
arduino Raspberry
- https://www.thethingsnetwork.org/labs/story/reporting-pm25-pm10-micro-particle-dust-sensor-by-using-arduino-and-lorawan-atim-acw-duino-shield/step/sketch
How (Not) To Kill Your Pi’s SD Card – Howard Durdle
2020-01-8 11:17 - permalink -

Un peu extrême je trouve mais à creuser.

Raspberry raspian
- https://durdle.com/2017/01/04/how-not-to-kill-your-pis-sd-card/
[ROM][UNOFFICIAL][P][F500,LS991,H81x,US991,V… | LG G4
2020-01-8 10:49 - permalink -

A tester.

android LineageOS
- https://forum.xda-developers.com/g4/development/rom-lineageos-16-0-t3929082
API Java : Google avertit qu'une victoire judiciaire d'Oracle pourrait "bouleverser" le développement de logiciels, et plaide en faveur de l'interopérabilité des logiciels
2020-01-7 19:31 - permalink -

Kent Walker, directeur juridique chez Google, a publié dans un article de blog un aperçu du mémoire d'ouverture à la Cour suprême de la société pour la suite de l’affaire API Java qui oppose le géant de la recherche à Oracle depuis dix ans. Dans le document déposé mardi matin (heure d’Australie), Google a prévenu que les pratiques de développement de logiciels dans le monde entier pourraient être "bouleversées" si Oracle remporte la victoire, alors que le procès entre dans sa dernière ...

copyreicht developpement logiciel procès
- https://java.developpez.com/actu/289725/API-Java-Google-avertit-qu-une-victoire-judiciaire-d-Oracle-pourrait-bouleverser-le-developpement-de-logiciels-et-plaide-en-faveur-de-l-interoperabilite-des-logiciels/
MOOC
2020-01-7 12:22 - permalink -

Heureux l'étudiant qui, comme la rivière, suit son cours sans sortir de son lit.

mooc
- https://bookmarks.ecyseo.net/?CKb5Kg
YODABLOG » Episode 575 : Top Chef (a tribute to Philippe Etchebest)
2020-01-7 11:26 - permalink -
Humour
- http://www.yodablog.net/?p=3628&cpage=1#comment-182639
YODABLOG » Episode 574 : Year Happy New
2020-01-7 11:24 - permalink -

Ça aurait pu être pire et que l'on soit en 2020 ! :D

Humour
- http://www.yodablog.net/?p=3624
imgur.com thumbnail
Imgur: The magic of the Internet
2020-01-7 1:58 - permalink -

LES TA - RÉS...

whaoo
- https://imgur.com/uWWB3Aj
Precious Plastic
2020-01-6 16:9 - permalink -

Recycler le plastique...

écologie
- https://preciousplastic.com/
GitHub - kornrunner/php-blurhash: Pure PHP implementation of Blurhash (https://github.com/woltapp/blurhash)
2020-01-6 10:41 - permalink -
image librairie optimisation php
- https://github.com/kornrunner/php-blurhash
lol - Lucky Luke et Billy le Kid, version originale de 1962 vs réédition de 2020 sans ... - Arfy'z tranche du Net
2020-01-6 10:37 - permalink -
société
- https://www.arfy.fr/dotclear/index.php?post%2F2020%2F01%2F04%2Flol-Lucky-Luke-et-Billy-le-Kid--version-originale-de-1962-vs-reedition-de-2020-sans----
Votre style de frappe sur clavier serait aussi unique que votre ADN
2020-01-6 10:33 - permalink -

Et quand on tombera malade ou qu'on aura un bras dans le plâtre, on pourra toujours s'identifier ?

vie-privée
- https://www.presse-citron.net/votre-style-de-frappe-sur-clavier-serait-aussi-unique-que-votre-adn/
Top 20 OpenSSH Server Best Security Practices - nixCraft
2020-01-6 10:29 - permalink -
paramètrage ssh sécurité tutoriels
- https://www.cyberciti.biz/tips/linux-unix-bsd-openssh-server-best-practices.html
GitHub - rudderlabs/rudder-server: Privacy and Security focused Segment-alternative, in Golang and React - Liens en vrac de sebsauvage
2020-01-6 9:12 - permalink -

Merci Seb !

conscience shaarli vie-privée éthique
- https://sebsauvage.net/links/?da2yGQ
page 60 / 259


Tags


  • shaarli
  • wikipedia

Tags cloud

Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation
Affiches "loi aviva" créées par Geoffrey Dorne le 13 Mai, 2020 - Mastodon 1 - Mastodon 2