891 links
  • Links Lounge
  • Home
  • Login
  • RSS Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
◄Older
page 17 / 45
Newer►
  • C++ Policies/Binary Compatibility Examples - KDE Community Wiki
    Mon May 15 10:57:41 2017 - permalink -
    - - - https://community.kde.org/Policies/Binary_Compatibility_Examples
    C++ Library
  • Vendre ou donner son véhicule | service-public.fr
    Mon May 15 10:55:36 2017 - permalink -
    - - - https://www.service-public.fr/particuliers/vosdroits/F1707
    Admin
  • Note: Configuration Raspbian

    Configuration carte SD

    • Configuration du fichier "/boot/config.txt" pour que l'écran s'affiche sur le touchscreen Waveshare. Cela peut aussi se faire plus tard mais uniquement via un écran plus standard ou via SSH, puisque rien ne s'affiche sur l'écran Waveshare sans cette modification.

      ## Parameters for Waveshare touchscreen
      max_usb_current=1
      hdmi_group=2
      hdmi_mode=1
      hdmi_mode=87
      hdmi_cvt=1024 600 60 6 0 0 0
    • Configuration du fichier "/boot/config.txt" pour activer une sonde température DS18B20 (il y aura d'autres commandes à activer par la suite)

      ## Parameters for temperature sensor DS18B20
      dtoverlay=w1-gpio
    • Activation du serveur SSH : créer un fichier vide nommé "/boot/ssh" pour activer le serveur SSH de Raspbian. Cela peut se faire plus tard via l'IHM ou en ligne de commande.
    • Configuration du WiFi : modifier le fichier "/etc/wpa_supplicant/wpa_supplicant.conf" pour configurer un (ou plusieurs) point d'accès WiFi par défaut. Cela peut aussi se faire plus tard via l'IHM ou en ligne de commande.
      network={
      ssid="Access Point SSID"
      psk="Your_wifi_password"
      }

      A installer / désinstaller

    apt install vim tmux
    apt install xscreensaver
    
    # Virtual keyboard, azerty, http://www.framboise314.fr/florence-un-autre-clavier-virtuel-pour-le-raspberry-pi/
    apt install florence at-spi2-core && setxkbmap fr
    
    # Install hubiC and configure DBus
    wget http://mir7.ovh.net/ovh-applications/hubic/hubiC-Linux/2.1.0/hubiC-Linux-2.1.0.53-linux.deb -O hubic.deb
    sudo dpkg -i hubic.deb
    sudo apt install -f
    dbus-launch --sh-syntax
    export DBUS_SESSION_BUS_ADDRESS='unix:abstract=/tmp/dbus-xxxx,guid=xxxx' # Copy/paste the bus data address and export the settings (change ‘xxxx’ with your own data from the previous command output)
    # Configuration hubiC and connect the account
    mkdir /home/pi/hubic
    hubic login login@domain.tld /home/pi/hubic
    Fri May 12 09:02:43 2017 - permalink -
    - - - https://links.la-bnbox.fr/?nqPxxg
    Linux RaspberryPi Raspbian
  • Raspbian : Tout un Tas de Trucs... - Framboise 314, le Raspberry Pi à la sauce française....
    Thu May 4 09:36:10 2017 - permalink -
    - - - http://www.framboise314.fr/raspbian-tout-un-tas-de-trucs/
    RaspberryPi
  • Raspberry Pi • View topic - Howto: Disable Screen Saver In Raspbian

    J'ai acheté un super touchscreen Wawestone de 7' pour mon RaspberryPi et je découvre que par défaut sous Raspbian, l'écran s'éteint au bout de 10 minutes. Ah. Aucune configuration du bureau ne permet de changer cela...

    Cette discussion retrace différente solutions possibles. Voir aussi Effacement de l'écran chez framboise314.

    Je vais tenter d'installer "xscreensaver" voir si ça change la donne.

    Thu May 4 09:29:40 2017 - permalink -
    - - - https://www.raspberrypi.org/forums/viewtopic.php?t=57552
    RaspberryPi ScreenSaver
  • HubiC on Raspberry pi – something somewhere

    Je vais tester d'installer hubiC sur mon RaspberryPi 3 (je pense que le 2 souffrirait un peu trop).

    Thu May 4 09:28:38 2017 - permalink -
    - - - http://www.somethingsomewhere.net/hubic-on-raspberry-pi/
    hubiC RaspberryPi
  • hubiC OVH - Linux

    hubiC (le "Dropbox" d'OVH) fonctionne bien sous Windows et Linux, ce n'est pas aussi finalisé que Dropbox, mais ça fait le job.

    Sous Linux, je trouve qu'il consomme souvent trop de CPU, donc je fais ceci pour le limiter à 10% :

    ps aux | grep hubic
    cpulimit -p <PID hubiC> -l 10 &

    Au passage, mon code parainnage hubiC est "TJHNOY". ça fait 5go de stockage en plus pour vous (soit 30go au lieu de 25go) et 5go de stockage en plus pour moi. Enjoy!

    Thu May 4 09:23:57 2017 - permalink -
    - - - http://mir7.ovh.net/ovh-applications/hubic/hubiC-Linux/2.1.0/
    hubiC Linux
  • Florence un [autre] clavier virtuel pour le Raspberry Pi - Framboise 314, le Raspberry Pi à la sauce française....

    Le clavier "florence" est à privilégier. Il semble que le clavier Matchbox consomme 25% de CPU en permanence ><

    Thu May 4 09:22:37 2017 - permalink -
    - - - http://www.framboise314.fr/florence-un-autre-clavier-virtuel-pour-le-raspberry-pi/
    Clavier RaspberryPi
  • 3 Tips for Introducing Continuous Workflows to Your Development Process | GitLab

    Adopt DevOps (https://about.gitlab.com/2017/03/06/introduce-continuous-workflows)!L'idée c'est d'améliorer la productivité et la qualité d'une équipe de développement en améliorant la communication au sein de l'équipe. Donc :

    • Continuous Integration (via GitLab, ...) pour savoir quand le code plante et en discuter (via Rocket.chat, ...). Plus on a de tests unitaires représentant la spécification, plus on est sûr que chacun à implémenter la spécification de la bonne manière.
    • Tous les développeurs peuvent pousser leur code sur la branche de dev en cours sans autorisation préalable, afin de pouvoir en discuter
    • Continuous Delivery (via GitLab, ...) et livraisons intermédiaires fréquentes (au client ou en interne) pour avoir le plus de feedback possible

    Le dernier point rejoint cet article : https://about.gitlab.com/2017/04/27/why-code-is-released-too-early

    Fri Apr 28 12:47:05 2017 - permalink -
    - - - https://about.gitlab.com/2017/03/06/introduce-continuous-workflows/
    Dev
  • SEI CERT C++ Coding Standard - SEI CERT C++ Coding Standard - CERT Secure Coding Standards
    Fri Apr 14 15:22:24 2017 - permalink -
    - - - https://www.securecoding.cert.org/confluence/pages/viewpage.action?pageId=637
    C++
  • On the merits of comment-driven development | Maya's Programming & Electronics Blog
    Mon Apr 10 10:43:05 2017 - permalink -
    - - - https://mayaposch.wordpress.com/2017/04/09/on-the-merits-of-comment-driven-development/
    CDD Dev Development
  • Slow down your internet with tc - Julia Evans
    Tue Apr 4 13:07:11 2017 - permalink -
    - - - https://jvns.ca/blog/2017/04/01/slow-down-your-internet-with-tc/
    CommandLine Linux Network Réseau tc
  • Big-O Algorithm Complexity Cheat Sheet
    Fri Mar 31 08:58:45 2017 - permalink -
    - - - http://bigocheatsheet.com/
    Complexity
  • DevOps and Continuous Integration challenges in C/C++ projects

    Super article !

    Wed Mar 15 09:32:08 2017 - permalink -
    - - - http://blog.conan.io/2017/03/14/Devops-and-Continouous-Integration-Challenges-in-C-C++-Projects.html
    C C++ Conan ContinuousIntegration Qompoter Qt
  • Les compteurs connectés surestiment la consommation d'électricité · Seb Sauvage Link

    L'article original (ici : https://www.utwente.nl/en/news/!/2017/3/313543/electronic-energy-meters-false-readings-almost-six-times-higher-than-actual-energy-consumption) ne parle pas que des compteurs dits "intelligents", mais des compteurs électroniques dont les compteurs "intelligents" font partis.
    L'article de Silicon.fr laisse entendre que cela ne touche que les compteurs intelligents. C'est probable qu'ils soient impactés, mais a priori, l'étude a été réalisée sur des compteurs "non-intelligents" de fabrication entre 2004 et 2014. La photo ne présente aucun compteur Linky (et pour finir avec le manque d'information de l'article de Silicon.fr, depuis l'an dernier ERDF s'appelle Enedis).

    L'étude montre que c'est l'apparition de nouveaux modes de consommation de l’électricité qui n'ont pas été pris en compte dans les normes, et donc dans l'implémentation de ces nouveaux modes de mesures :

    The inaccurate readings are attributed to the energy meter’s design, together with the increasing use of modern (often energy-efficient) switching devices. Here, the electricity being consumed no longer has a perfect waveform, instead it acquires an erratic pattern. The designers of modern energy meters have not made sufficient allowance for switching devices of this kind.

    Voilà qui me laisse pantois... C'est compliqué l’électricité.

    Mon Mar 13 14:58:37 2017 - permalink -
    - - - http://www.silicon.fr/les-compteurs-intelligents-saffolent-avec-les-ampoules-et-les-led-170077.html
    Metering
  • TDD the RITE Way – JavaScript Scene – Medium

    Tests:

    • Readable (i.e. simple, car plus facile à maintenir)
    • Isolated OR Integrated
    • Thorough (testé aux limites)
    • Explicit (un test contient tout ce qu'il faut pour tourner tout seul)
    Fri Mar 3 09:57:57 2017 - permalink -
    - - - https://medium.com/javascript-scene/tdd-the-rite-way-53c9b46f45e3#.yumdmt9dy
    Javascript Test
  • Let's Look at 50+ Interesting CSS Properties & Values | CSS-Tricks

    Pfff, le CSS a tellement évolué et je n'ai pas suivi...

    Fri Mar 3 09:53:39 2017 - permalink -
    - - - https://css-tricks.com/lets-look-50-interesting-css-properties-values/
    CSS Web
  • [Solved] Swap two columns (View topic) • Apache OpenOffice Community Forum
    • Select column B
    • Click anywhere in the highlighted area and drag the column. The mouse pointer should change to show the drag operation.
    • Before you release the mouse button, also press the Alt key. When the mouse pointer is at the left side of column A, release the mouse button.
    • Column B should be moved to the left of column A so that A and B are switched.
    Wed Mar 1 16:24:37 2017 - permalink -
    - - - https://forum.openoffice.org/en/forum/viewtopic.php?f=9&t=61692
    Calc Excel LibreOffice
  • Tour d’horizon sur HTTPS et les en-têtes de sécurité - Alsacreations

    Très bon tour d'horizon (bien complet) autour d'HTTPS.

    Fri Feb 17 10:28:24 2017 - permalink -
    - - - https://www.alsacreations.com/article/lire/1723-tour-horizon-https-et-en-tetes-de-securite.html
    HTTPS Web
  • Best Practices — Ansible Documentation
    Tue Feb 7 10:51:28 2017 - permalink -
    - - - https://docs.ansible.com/ansible/playbooks_best_practices.html
    Ansible Déploiement
Links per page: 20 50 100
◄Older
page 17 / 45
Newer►
Shaarli - The personal, minimalist, super-fast, no-database delicious clone by the Shaarli community - Help/documentation