Skip to main content

My articles on LinkedIn about IoT

This is a list of all my posts about the Internet of Things (IoT) on LinkedIn:
  1. Digitisation – the ‘power’ of IoT (27 views)
  2. The 6 myths of the Internet of Mystical Things (27 views)
  3. Reference for the Internet of Things (IoT) (21 views)
  4. Where legacy operations management comes up short (18 views)
  5. Monitoring of perishable goods in a retail environment (14 views)
  6. The Pareto of Things (12 view)
  7. Improving the cost effectiveness of operating ATMs (11 views)
  8. Onboard PowaINFRA gateway deployment (11 views)
  9. The role IoT plays in network causation (11 views)
  10. Powatag: the IoT bicycle lock for your assets (11 views)
  11. Powatherm 30 day buffer offline mode (10 views)
  12. How to make IoT sensors secure (9 views)
  13. Deploying IoT in short term insurance (9 views)
  14. IoT in medical deployments (7 views)
  15. Powapresence: leveraging passive infrared sensors in an IoT ecosystem (7 views)
  16. The use of IoT in data centres (7 views)
  17. Powacontact+: the swiss army knife of IoT (5 views)
  18. Creating digital buildings (4 views)
  19. Fork-lifting legacy monitoring systems (3 views)
  20. Idea: Powaprobe (out of band ping) (3 views)
  21. Powatag - the asset management IoT solution (2 views)
  22. The use of IoT devices in data centres (2 views)
  23. Meeting the certificate requirements of the Medical Control Council (1 views)
Please leave a comment on any ideas for an Internet of Things (IoT) article.

Comments

Popular posts from this blog

LDWin: Link Discovery for Windows

LDWin supports the following methods of link discovery: CDP - Cisco Discovery Protocol LLDP - Link Layer Discovery Protocol Download LDWin from here.

easywall - Web interface for easy use of the IPTables firewall on Linux systems written in Python3.

Firewalls are becoming increasingly important in today’s world. Hackers and automated scripts are constantly trying to invade your system and use it for Bitcoin mining, botnets or other things. To prevent these attacks, you can use a firewall on your system. IPTables is the strongest firewall in Linux because it can filter packets in the kernel before they reach the application. Using IPTables is not very easy for Linux beginners. We have created easywall - the simple IPTables web interface . The focus of the software is on easy installation and use. Access this neat software over on github: easywall

Latest: updatethreatblock.sh

#!/bin/bash # # usage updatethreatblock.sh <configuration file> # eg: updatethreatblock.sh /etc/ipset-threatblock/ipset-threatblock.conf # function exists() { command -v "$1" >/dev/null 2>&1 ; } if [[ -z "$1" ]]; then   echo "Error: please specify a configuration file, e.g. $0 /etc/ipset-threatblock/ipset-threatblock.conf"   exit 1 fi # shellcheck source=ipset-threatblock.conf if ! source "$1"; then   echo "Error: can't load configuration file $1"   exit 1 fi if ! exists curl && exists egrep && exists grep && exists ipset && exists iptables && exists sed && exists sort && exists wc ; then   echo >&2 "Error: searching PATH fails to find executables among: curl egrep grep ipset iptables sed sort wc"   exit 1 fi DO_OPTIMIZE_CIDR=no if exists iprange && [[ ${OPTIMIZE_CIDR:-yes} != no ]]; then   DO_OPTIMIZE_CIDR=yes fi if [[ ! -d $(dirname &q