https://www.ces.clemson.edu/linux/signal_quality.shtml (dead link)
Bill Moss February 26, 2006
The purpose of this note is to examine a new model for ipw2200 wireless signal quality and a conversion from signal quality to signal strength bars.
| // ==UserScript== | |
| // @name Teams Presence Keeper | |
| // @namespace Teams Presence Keeper | |
| // @description Teams Presence Keeper | |
| // @version 2.1 | |
| // @grant none | |
| // @match *://*.teams.microsoft.com/* | |
| // @match *://teams.microsoft.com/* | |
| // @noframes | |
| // @run-at document-idle |
| #!/usr/bin/env python3 | |
| import grp | |
| import os | |
| import pwd | |
| import socket | |
| import sys | |
| import subprocess | |
| import struct | |
| import typing |
https://www.ces.clemson.edu/linux/signal_quality.shtml (dead link)
Bill Moss February 26, 2006
The purpose of this note is to examine a new model for ipw2200 wireless signal quality and a conversion from signal quality to signal strength bars.
In Response to comment: https://www.intuitibits.com/2016/03/23/dbm-to-percent-conversion/#comment-9 regarding the quadratic formula used by WiFi Explorer (based on ipw2200 driver logic) for which a dBm to Percent table is provided.
Some quick PHP based on the ipw2200 code and a table generating function:
function signal_quality_perc_quad($rssi, $perfect_rssi=-20, $worst_rssi=-85) {
$nominal_rssi=($perfect_rssi – $worst_rssi);
| #!/bin/bash | |
| # Cloudflare as Dynamic DNS | |
| # From: https://letswp.io/cloudflare-as-dynamic-dns-raspberry-pi/ | |
| # Based on: https://gist.github.com/benkulbertis/fff10759c2391b6618dd/ | |
| # Original non-RPi article: https://phillymesh.net/2016/02/23/setting-up-dynamic-dns-for-your-registered-domain-through-cloudflare/ | |
| # Fixed and documented version by Christian Gambardella (https://gambo.io) | |
| # 1. Create a cloudflare account | |
| # 2. Create a zone and a record with any ip address. | |
| # It will be updated by the script. |
| #!/bin/sh | |
| set -eu -o pipefail | |
| CONTAINER_NAME="eap_proxy" | |
| IMAGE_NAME="pbrah/eap_proxy-udmpro" | |
| IMAGE_TAG="v1.1" | |
| container_exists() { | |
| podman container inspect "${1}" &>/dev/null |
| #!/bin/bash | |
| while getopts ":h:t:n:p:s" opt; do | |
| case $opt in | |
| h) OPT_H="${OPTARG}" | |
| ;; | |
| t) OPT_T=${OPTARG} | |
| ;; | |
| n) OPT_N=${OPTARG} | |
| ;; |
| This current configuration is based of at least Server Version 1.16.5.1488 and Web Version: 3.108.2. | |
| This updated config file allows the playing of trailers and TV Show theme music where as the previous one did not. | |
| ## Requirements | |
| 1. Apache version > 2.4 | |
| 2. A bunch of mod's enabled (proxy, ssl, proxy_wstunnel, http, dir, env, headers, proxy_balancer, proxy_http, rewrite) | |
| 3. Protocols h2 http/1.1 needs apachectl -V 2.4.17 and higher... | |
| ## Apache .conf file |
This page is no longer maintained, go to https://help.vivaldi.com/article/html5-proprietary-media-on-linux/ for help
| #!/bin/sh | |
| # Firefox Developer Edition install | |
| # No need to download this script, just run it on your terminal: | |
| # $ curl -L git.io/firefoxdev | sh | |
| # When you need to update Firefox Developer Edition, run this script again. | |
| START_CMD="firefox-dev" | |
| INSTALLATION_DIR="/opt/${START_CMD}" |