I hereby claim:
- I am miek on github.
- I am miek (https://keybase.io/miek) on keybase.
- I have a public key whose fingerprint is 274E 9CCA E552 031E CB6A 6F1B FF5B 385B 97B0 0656
To claim this, I am signing this object:
from pyaudio import PyAudio | |
import math | |
import random | |
frequency = 700 | |
sample_rate = 22050 | |
volume = 0.5 | |
wpm = 30 | |
element_length = int((sample_rate * 60) / (50 * wpm)) |
37-DISCOVERY-TxAdd-1-RxAdd-0-AdvA-010203040501-LOCAL_NAME09-spam | |
37-DISCOVERY-TxAdd-1-RxAdd-0-AdvA-010203040502-LOCAL_NAME09-spam | |
37-DISCOVERY-TxAdd-1-RxAdd-0-AdvA-010203040503-LOCAL_NAME09-spam | |
37-DISCOVERY-TxAdd-1-RxAdd-0-AdvA-010203040504-LOCAL_NAME09-spam | |
37-DISCOVERY-TxAdd-1-RxAdd-0-AdvA-010203040505-LOCAL_NAME09-spam | |
37-DISCOVERY-TxAdd-1-RxAdd-0-AdvA-010203040506-LOCAL_NAME09-spam | |
37-DISCOVERY-TxAdd-1-RxAdd-0-AdvA-010203040507-LOCAL_NAME09-spam | |
37-DISCOVERY-TxAdd-1-RxAdd-0-AdvA-010203040508-LOCAL_NAME09-spam | |
37-DISCOVERY-TxAdd-1-RxAdd-0-AdvA-010203040509-LOCAL_NAME09-spam | |
r40 |
import weechat | |
import re | |
SCRIPT_NAME = "slack-gw" | |
SCRIPT_AUTHOR = "Mike Walters <[email protected]>" | |
SCRIPT_VERSION = "1.0" | |
SCRIPT_LICENSE = "BSD" | |
SCRIPT_DESC = "Fix up messages coming from slack gateway" | |
settings = { |
from PIL import Image | |
import struct | |
import sys | |
imgsize = 128 | |
img = Image.new('L', (imgsize, imgsize)) | |
with open("lily.cfile", "rb") as f: | |
while True: |
#include "stm32f4xx.h" | |
int main (void) | |
{ | |
RCC->AHB1RSTR |= RCC_AHB1RSTR_GPIOARST; // Reset GPIOA | |
RCC->AHB1RSTR = 0; // Exit reset state | |
RCC->AHB1ENR |= RCC_AHB1ENR_GPIOAEN; // Enable GPIOA clock | |
GPIOA->MODER |= GPIO_MODER_MODER5_0; // Enable Output on D13 | |
#include "retarget.h" | |
#include "simple_uart.h" | |
int _write(int fd, char * str, int len) | |
{ | |
for (int i = 0; i < len; i++) | |
{ | |
simple_uart_put(str[i]); | |
} |
I hereby claim:
To claim this, I am signing this object:
/* | |
* | |
* BlinkM connections to Arduino | |
* PWR - -- gnd -- black -- Gnd | |
* PWR + -- +5V -- red -- 5V | |
* I2C d -- SDA -- green -- Analog In 4 | |
* I2C c -- SCK -- blue -- Analog In 5 | |
* | |
* There are 27 BlinkMs are addressed from 10..36. | |
*/ |
# | |
# Print hilighted messages & private messages to window named "hilight" for | |
# irssi 0.7.99 by Timo Sirainen | |
# | |
# Modded a tiny bit by znx to stop private messages entering the hilighted | |
# window (can be toggled) and to put up a timestamp. | |
# | |
use Irssi; | |
use vars qw($VERSION %IRSSI); |