Skip to content
View aelias-eu's full-sized avatar
  • Slovakia
Block or Report

Block or report aelias-eu

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. hewalex-geco-protocol hewalex-geco-protocol Public

    Protocol reverse engineering and simple communication tool for GECO G-422 range of solar pump controllers, used also (but not only) in the Hewalex ZPS-18e

    Python 8 7

  2. vent-axia-remote vent-axia-remote Public

    Vent-Axia wired remote protocol analysis & reverse engineering

    14 2

  3. vent-axia-esp32 vent-axia-esp32 Public

    Connect ESP32 as Vent-Axia MVHR remote unit

    C++ 2

  4. open-pool-control-module open-pool-control-module Public

    Open-hardware pool control module

  5. Live push tcpdump data from remote m... Live push tcpdump data from remote machine to local wireshark
    1
    requires sudo without password on the remote machine - at least for the "tcpdump command
    2
    ```
    3
    ssh {HOST} sudo tcpdump -U -s0 -w - -i eth0 'not port 22' | wireshark -k -i -
    4
    ```
    5
    e.g. for monitoring traffic on the router
  6. Linux - Find/delete old files Linux - Find/delete old files
    1
    Find & print files older than 60 days
    2
    # find PATH_TO_BASE_DIR -mtime +60 -print
    3
      
    4
    # find . -mtime +60 -print
    5