1172 links
  • odea's Shaarli
  • Home
  • Login
  • RSS Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
◄Older
page 4 / 59
Newer►
  • GPS/GSM Vehicle Tracker/Recorder – Viktor’s DIY Blog
    Tue Jul 26 15:28:46 2022 - permalink -
    - - https://diy.viktak.com/2020/11/gps-gsm-vehicle-tracker-recorder.html
    arduino
  • GitHub - noisetorch/NoiseTorch: Real-time microphone noise suppression on Linux.
    Sat Jul 2 22:18:53 2022 - permalink -
    - - https://github.com/noisetorch/NoiseTorch
    tech
  • https://n0namen0.github.io/WAB_Ansi_Logo_Maker/
    ANSI logo maker
    Fri Jun 17 09:30:48 2022 - permalink -
    - - https://n0namen0.github.io/WAB_Ansi_Logo_Maker/
    geek
  • Installation - guizero
    python gui
    Sat May 7 10:37:43 2022 - permalink -
    - - https://lawsie.github.io/guizero/
    tech
  • Mechanical Watch – Bartosz Ciechanowski
    Thu May 5 14:19:43 2022 - permalink -
    - - https://ciechanow.ski/mechanical-watch/
  • SIM900 GSM GPRS board with Arduino | Acoptex.Com
    Sat Feb 5 18:38:17 2022 - permalink -
    - - https://acoptex.com/wp/sim900-gsm-gprs-board-arduino/
    arduino
  • Utiliser les conditions pour des scripts Bash efficaces – Buzut
    bash if
    Fri Feb 4 20:52:40 2022 - permalink -
    - - https://buzut.net/maitriser-les-conditions-en-bash/#comments-section
    tech
  • Vegan Restaurants in Paris, France
    Tue Nov 2 18:57:13 2021 - permalink -
    - - https://www.happycow.net/europe/france/paris/?filters=vegan&sort=newest
  • Reuben Wu
    wallpapers
    Sun Oct 31 17:32:59 2021 - permalink -
    - - https://reubenwu.com/projects
  • 𝔟𝔩𝔞𝔠𝔨 𝔭𝔯𝔦𝔫𝔱𝔦𝔫𝔤
    black metal printing
    Sun Oct 31 17:30:50 2021 - permalink -
    - - https://blackprinting.tumblr.com/
  • Fine Art Landscape Photography by Jan Erik Waider | Northlandscapes
    iceland wallpapers
    Sun Oct 31 17:29:11 2021 - permalink -
    - - https://www.northlandscapes.com/
  • In-Depth: Send Receive SMS & Call with SIM800L GSM Module & Arduino
    Thu Jul 1 20:20:57 2021 - permalink -
    - - https://lastminuteengineers.com/sim800l-gsm-module-arduino-tutorial/
    tech
  • YouTube thumbnail
    Comment faire soi-même un déodorant écologique ? - YouTube
    2 cc huile de coco
    1 cc fécule de mais
    1 cc bicarbonate de soude alimentaire
    mélanger
    1 cc beurre de karité
    2 gouttes HE de lavande
    2 gouttes HE de palmarosa
    mélanger
    Thu Jun 24 17:37:20 2021 - permalink -
    - - https://www.youtube.com/watch?v=lEQ5IHMHVzE
  • networking - Citrix receiver 13.10 on Ubuntu 18.04.1 - Ask Ubuntu
    citrix ica
    $ cd /opt/Citrix/ICAClient/keystore/
    $ sudo rm -r cacerts
    $ sudo ln -s /etc/ssl/certs cacerts
    Thu Jun 17 11:20:10 2021 - permalink -
    - - https://askubuntu.com/questions/1064452/citrix-receiver-13-10-on-ubuntu-18-04-1/1069929#1069929
    tech
  • I2C Liquid Crystal Displays - Arduino Project Hub
    Thu Jun 3 18:22:55 2021 - permalink -
    - - https://create.arduino.cc/projecthub/arduino_uno_guy/i2c-liquid-crystal-displays-5b806c
    arduino tech
  • How to Use a Photoresistor (or Photocell) - Arduino Tutorial : 4 Steps (with Pictures) - Instructables
    Thu Jun 3 18:21:14 2021 - permalink -
    - - https://www.instructables.com/How-to-use-a-photoresistor-or-photocell-Arduino-Tu/
    arduino tech
  • Make an Arduino Temperature Sensor (Thermistor Tutorial)
    Thu Jun 3 18:20:30 2021 - permalink -
    - - https://www.circuitbasics.com/arduino-thermistor-temperature-sensor-tutorial/
    arduino tech
  • Vehicle Tracking System Based on GPS and GSM - Arduino Project Hub
    Thu Jun 3 18:15:04 2021 - permalink -
    - - https://create.arduino.cc/projecthub/muchika/vehicle-tracking-system-based-on-gps-and-gsm-57b814
    arduino tech
  • How to build a Raspberry Pi GPS Tracker | by onehitwonder | Medium
    Sun May 23 22:45:20 2021 - permalink -
    - - https://medium.com/@onehitwonder/how-to-build-a-raspberry-pi-gps-tracker-c5e63d456c84
    tech
  • Ubuntu 16.04 and ISPConfig 3.1 - stopping ClamAV
    lamAV requires quite a bit of resources to run in the background and this usually slows down the mail delivery. In the ISPConfig 3 (Under Perfect Server setup), clamAV is run within Amavis. Therefore, typical removal of clamAV commands will not remove it.

    When RAM is really low, Linux kills amavis and this will cause mail not being delivered. Therefore, if we run amavis to manage anti-virus and spam, consider a minimum of 2G or 4G RAM VM/Cloud servers.

    The steps to disable clamav and amavisd are:

    (1) edit postfix conf - note amavis uses a special port 10024 and 10026. Therefore, if you are not using these ports, consider closing them in your firewall settings.

    nano /etc/postfix/main.cf


    # content_filter = amavis:[127.0.0.1]:10024
    # receive_override_options = no_address_mappings

    (2) Under ISPConfig 3.1, comment additional 2 lines

    nano /etc/postfix/tag_as_foreign.re
    #/^/ FILTER amavis:[127.0.0.1]:10024
    nano /etc/postfix/tag_as_originating.re
    #/^/ FILTER amavis:[127.0.0.1]:10026

    Save changes and restart postfix


    /etc/init.d/postfix restart

    (3) stop and disable the services

    /etc/init.d/clamav-daemon stop
    /etc/init.d/clamav-freshclam stop
    /etc/init.d/amavis stop

    update-rc.d -f clamav-daemon remove
    update-rc.d -f clamav-freshclam remove
    update-rc.d -f amavis remove

    To restore the changes, do:

    update-rc.d clamav-daemon defaults
    update-rc.d clamav-freshclam defaults
    update-rc.d amavis defaults

    The services shall start in the next reboot

    (4) Under Ubuntu 16.04 and ISPConfig 3.1, also execute the following commands:

    systemctl disable clamav-daemon.socket
    systemctl disable clamav-daemon.service
    systemctl disable clamav-freshclam.service

    Note - The changes in postfix main.cf will get overwitten by an ispconfig software update when you select to "re-configure" services during update, so you should comment out the lines again after you install a ispconfig update.
    Thu Apr 22 23:17:49 2021 - permalink -
    - - https://kentechnote.blogspot.com/2017/01/ubuntu-1604-and-ispconfig-31-stopping.html
    tech
Links per page: 20 50 100
◄Older
page 4 / 59
Newer►
Shaarli - The personal, minimalist, super-fast, no-database delicious clone by the Shaarli community - Help/documentation