(Serial port or com port? - Serial ports are often refered as COM ports. It is the same to be short. You can read abut it in the Wiki article )
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- See http://www.sublimetext.com/docs/snippets for more information --> | |
<snippet> | |
<content><![CDATA[\$($1)]]></content> | |
<!-- Optional: Tab trigger to activate the snippet --> | |
<tabTrigger>sub</tabTrigger> | |
<!-- Optional: Scope the tab trigger will be active in --> | |
<scope>source.powershell</scope> | |
</snippet> |
Automatically deletes old emails that match the specified label.
- Create a new Google Apps Script at https://script.google.com
- Overwrite the placeholder with the javascript below
- Update the following constants:
LABEL_TO_DELETE
: the label that should be have old messages deleted
- usbipd.service (server/physical device)
- usbip.service (client/HASS host)
- udev rules file for client host -- maps USB device to
/dev/zwave
(add to/etc/udev/rules.d/
) - Client Manager Script
See the original instructions here: https://community.home-assistant.io/t/rpi-as-z-wave-zigbee-over-ip-server-for-hass/23006 also see the notes below in each file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import json | |
import requests | |
import urllib3 | |
urllib3.disable_warnings() | |
cookie = open("cookie.txt").readline().strip() | |
csrf_token = [x.split("=") for x in cookie.split(";") if "csrf" in x][0][1] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright: (c) 2024, Jordan Borean (@jborean93) <[email protected]> | |
# MIT License (see LICENSE or https://opensource.org/licenses/MIT) | |
"""POC for running exe's over RDP | |
This is a very rough attempt at trying to run an exe using a headless RDP | |
connection. It aims to be able to provide an interactive console session as | |
well as a headless one. | |
Requires aardwolf - https://github.com/skelsec/aardwolf as a Python dependency. |