Skip to content

Instantly share code, notes, and snippets.

@konradko
konradko / sqs_notes.md
Created September 7, 2016 14:09 — forked from bramswenson/sqs_notes.md
Amazon SQS Notes
@konradko
konradko / golang_on_rpi.md
Last active April 12, 2020 17:36
Install Golang 1.7 on Raspberry Pi
wget https://storage.googleapis.com/golang/go1.7.linux-armv6l.tar.gz
tar -C /usr/local -xzf go1.7.linux-armv6l.tar.gz
export PATH=$PATH:/usr/local/go/bin
@konradko
konradko / iBeacon-JINOU-BEC05.md
Last active August 29, 2018 19:32
Updating iBeacon JINOU BLE JO-BEC05 JO-BEC03 CC2540/CC2541 advertisement data

PIN code: 000000

Set them up using an iOS app:

  1. Install Lightblue Explorer from App store
  2. Connect to 'JinouBeacon'
  3. Enter the PIN 000000 to pair the device
  4. Editable values are in UUID:F350 section
  5. Covert strings / numbers to HEX before writing
@konradko
konradko / post.go
Last active August 27, 2016 14:40
Sending HTTP requests concurrently with Go
package main
import (
"flag"
"fmt"
"io"
"io/ioutil"
"net/http"
"strings"
"time"