I hereby claim:
- I am slayton on github.
- I am stuartlayton (https://keybase.io/stuartlayton) on keybase.
- I have a public key whose fingerprint is 1978 A8AD 1E41 AD0D 411F B357 C4E4 6928 013D 26B8
To claim this, I am signing this object:
import asyncio | |
from faststream import FastStream, Logger | |
from faststream.redis import RedisBroker, StreamSub | |
broker = RedisBroker("redis://localhost:6379") | |
app = FastStream(broker, logger=None) | |
chan = "chan" |
import asyncio | |
from faststream import FastStream, Logger | |
from faststream.redis import RedisBroker, StreamSub | |
broker = RedisBroker("redis://localhost:6379") | |
app = FastStream(broker, logger=None) | |
chan = "chan" |
function onEdit(e) { | |
var row = e.range.getRow(); | |
var col = e.range.getColumn(); | |
if (col>=2 && col<=13 && row < 3 && e.source.getActiveSheet().getName() === "Temperature") { | |
e.source.getActiveSheet().getRange(row,14).setValue(new Date()); | |
if (e.source.getActiveSheet().getRange(row,1).getValue() == "") { | |
e.source.getActiveSheet().getRange(row,1).setValue(new Date()); | |
} |
I hereby claim:
To claim this, I am signing this object:
char *lookUpSpikeTs(int i){ | |
char x[20]; | |
sprintf(x, 'hello world:%d', i); | |
return x; | |
} | |
char *getTsForSpike(int i){ | |
return lookUpSpikeTs(i); | |
} |
#!/usr/bin/python | |
from subprocess import Popen, PIPE | |
import smtplib | |
from socket import gaierror | |
import string | |
# This script attepts to retrieve the IP address of a specified interface. | |
# If successful it then emails the retrieved IP to a specified email address | |
# FILL OUT THE VALUES BETWEEN THE COMMENT BLOCKS |
<html> | |
<style media="screen" type="text/css"> #map { height: 480px; width:680px; }</style> | |
<div id="map"></div> | |
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.4/leaflet.css" /> | |
<script src="http://cdn.leafletjs.com/leaflet-0.4/leaflet.js"></script> | |
<script> |