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
import { useEffect, useRef } from 'react'; | |
import { useScript } from './useScript'; | |
//This will generate a new number every hour | |
//Crisp has a terrible CDN handeling process, this forces to load last version every hour | |
const getDateSeconds = () => { | |
const date = new Date(); | |
const time = date.getTime(); | |
return Math.floor(time / 3600000); |
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
#!/bin/bash | |
# Set defaults if not provided by environment | |
CHECK_DELAY=${CHECK_DELAY:-5} | |
CHECK_IP=${CHECK_IP:-1.1.1.1} | |
PRIMARY_IF=${PRIMARY_IF:-eno8303} | |
PRIMARY_GW=${PRIMARY_GW:-192.168.15.1} | |
# Cycle healthcheck continuously with specified delay | |
while sleep "$CHECK_DELAY" |
OlderNewer