Skip to content

Instantly share code, notes, and snippets.

View alexanderturner's full-sized avatar

Alexander Turner alexanderturner

View GitHub Profile
@alexanderturner
alexanderturner / keybase.md
Created April 7, 2015 10:56
Keybase is magical

Keybase proof

I hereby claim:

  • I am alexanderturner on github.
  • I am alexturner (https://keybase.io/alexturner) on keybase.
  • I have a public key whose fingerprint is 1461 63EC A9DC CFAF 4B1B 2245 84B6 399C 28E3 41CD

To claim this, I am signing this object:

git clone https://github.com/aws/amazon-freertos.git
cd amazon-freertos/tools/aws_config_quick_start/
vi configure.json
{
"afr_source_dir":"../..",
"thing_name":"github_test",
"wifi_ssid":"myssid",
"wifi_password":"password",
"wifi_security":"eWiFiSecurityWPA2"
@alexanderturner
alexanderturner / bulkdeletecf.go
Created May 3, 2022 00:30
Cloudflare Bulk Delete Records
package main
import (
"context"
"fmt"
"log"
"github.com/cloudflare/cloudflare-go"
)
@alexanderturner
alexanderturner / cbradio.c
Created June 3, 2023 05:02
HackRF One SDR FFT
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <math.h>
#include <libhackrf/hackrf.h>
#include <fftw3.h>
#include <sys/time.h> // Added for gettimeofday
#define SAMPLE_RATE 20000000 // Sample rate in Hz
#define DEFAULT_BASEBAND_FILTER_BANDWIDTH (12500)