Skip to content

Instantly share code, notes, and snippets.

@rturk
rturk / useCrisp.js
Created July 8, 2020 16:38
useCrisp - Load Crisp Chat with React App
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);
@rturk
rturk / failover.sh
Last active November 29, 2023 10:48 — forked from Apsu/failover.sh
An example failover script for dual WAN, using a ping healthcheck and managing default routes appropriately
#!/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"