You may buy it by this affiliate link on aliexpress store.
http://oss.digirati.com.br/f3/
f3 - Fight Flash Fraud
| #!/bin/bash | |
| # NAS IP: 192.168.1.10 in this example | |
| # DHCP scope reservation for macvlan: 192.168.1.210/28 (Details below) | |
| ## Network: 192.168.1.210/28 | |
| ## HostMin: 192.168.1.211 | |
| ## HostMax: 192.168.1.224 | |
| ## Hosts/Net: 14 | |
| # Create a Synology macvlan0 bridge network attached to the physical eth0, and add the ip range scope (sudo) |
You may buy it by this affiliate link on aliexpress store.
http://oss.digirati.com.br/f3/
f3 - Fight Flash Fraud
| # from : https://forum.libreelec.tv/thread/5074-wifi-issues-on-rpi-3-poor-speed-and-latency-solution/#codeLine_1_3e8919 | |
| # first install the 'network tools' add-on from the kodi repository then create a /storage/.config/autostart.sh file with | |
| # this as the contents. | |
| # then reboot the pi. runnning 'iwconfig' should now show the power-management as being off. | |
| /storage/.kodi/addons/virtual.network-tools/bin/iw wlan0 set power_save off |
| #!/bin/sh | |
| # SPDX-FileCopyrightText: 2017-2024 SanderTheDragon <sanderthedragon@zoho.com> | |
| # | |
| # SPDX-License-Identifier: MIT | |
| arch=$(dpkg --print-architecture) | |
| echo "Detected architecture: $arch" | |
| case "$arch" in |
| import boto3 | |
| ec2 = boto3.resource('ec2') | |
| def lambda_handler(event, context): | |
| # create filter for instances in running state | |
| filters = [ | |
| { | |
| 'Name': 'instance-state-name', | |
| 'Values': ['running'] |
| import boto3 | |
| from termcolor import colored | |
| ec2 = boto3.resource('ec2') | |
| for i in ec2.instances.all(): | |
| print("Id: {0}\tState: {1}\tLaunched: {2}\tRoot Device Name: {3}".format( | |
| colored(i.id, 'cyan'), | |
| colored(i.state['Name'], 'green'), |
| #!/bin/bash | |
| # | |
| # Author: Patrick Hieber - github.com/phieber | |
| # | |
| # This work is licensed under a GNU General Public License (GPLv3) Version 3.0 http://www.gnu.org/licenses/gpl-3.0.html | |
| cleanup() { | |
| rm -rf /tmp/Gentoo* /tmp/root.tar.xz /tmp/boot.tar.xz /tmp/*.json /tmp/partition_setup.sh /tmp/rpi* | |
| find /var/www/de/trickhieber/pa/rpi/htdocs/geNtOOBS* -mtime +1 -exec rm {} \; |
| {{$guid}} | |
| the above variable will generate UUID in Postman Rest Client | |
| Sample request is below | |
| ======================== | |
| { | |
| "user":{ | |
| "id":"{{$guid}}" | |
| } | |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <project name="Rsync On Save" basedir="." default="rsync"> | |
| <description>Builder for eclipse to rsync on save for OSX.</description> | |
| <!-- local source directory for rsync (read from this directory) --> | |
| <property name="rsync.source.dir" value="${basedir}"/> | |
| <!-- remote rsync host --> | |
| <property name="rsync.destination.host" value="remote.example.com"/> | |
| pm list packages -f |