Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View mcginty's full-sized avatar
🖤
strange sensation to feel alive

Jake McGinty mcginty

🖤
strange sensation to feel alive
  • in between kate bush albums
View GitHub Profile
Showing LDR /Users/kaonashi/git/op1-fw-packer/op1_076/te-boot.ldr ...
LDR block 1: [off:0x00000000] [header(0x10): 0650b5ad 0000a0ff 00000000 1c0d0000] [data(0x00000000)]
LDR block 2: [off:0x00000010] [header(0x10): 060038ad 004080ff ac000000 00000000] [data(0x000000ac)]
LDR block 3: [off:0x000000cc] [header(0x10): 0600d0ad 0000a0ff 2c080000 00000000] [data(0x0000082c)]
LDR block 4: [off:0x00000908] [header(0x10): 0600f5ad 0000a1ff 04040000 00000000] [data(0x00000404)]
LDR block 5: [off:0x00000d1c] [header(0x10): 0608fcad 0000a0ff 00000000 00000000] [data(0x00000000)]
LDR block 6: [off:0x00000d2c] [header(0x10): 065087ad 0000a0ff 00000000 80a00300] [data(0x00000000)]
LDR block 7: [off:0x00000d3c] [header(0x10): 060016ad 04000000 f04b0200 00000000] [data(0x00024bf0)]
LDR block 8: [off:0x0002593c] [header(0x10): 06015bad 00000001 0000f000 00000000] [data(0x00f00000)]
LDR block 9: [off:0x0002594c] [header(0x10): 060063ad 0000f001 38010000 00000000] [data(0x00000138)]
Showing LDR /Users/kaonashi/git/op1-fw-packer/op1_076/OP1_vdk.ldr ...
LDR block 1: [off:0x00000000] [header(0x10): 065040ad 0000a0ff 00000000 e4000000] [data(0x00000000)]
LDR block 2: [off:0x00000010] [header(0x10): 062414ad 0000a0ff c4000000 00000000] [data(0x000000c4)]
LDR block 3: [off:0x000000e4] [header(0x10): 0608fcad 0000a0ff 00000000 00000000] [data(0x00000000)]
LDR block 4: [off:0x000000f4] [header(0x10): 065087ad 0000a0ff 00000000 54572000] [data(0x00000000)]
LDR block 5: [off:0x00000104] [header(0x10): 0600aead 00000001 00040000 00000000] [data(0x00000400)]
LDR block 6: [off:0x00000514] [header(0x10): 060056ad 00040001 f0080000 00000000] [data(0x000008f0)]
LDR block 7: [off:0x00000e14] [header(0x10): 0601afad f00c0001 f8000000 00000000] [data(0x000000f8)]
LDR block 8: [off:0x00000e24] [header(0x10): 0600b7ad e80d0001 f8000000 00000000] [data(0x000000f8)]
LDR block 9: [off:0x00000f2c] [header(0x10): 06015aad e00e0001 c0000000 d8060001] [data(0x000000c0)]
-28.5 dbfs
-25.5 dbfs
-22.5 dbfs
-19.5 dbfs
-16.5 dbfs
-13.5 dbfs
-10.5 dbfs
constant gain
-76.5 dbfs
-73.5 dbfs
\'<(
%s %x:%x
value: %s
value: %i
-34.5 db
-33 db
-31.5 db
-30 db
-28.5 db
-27 db
$ lunch omni_d5110-eng
$ make clean
============================================
PLATFORM_VERSION_CODENAME=REL
PLATFORM_VERSION=6.0.1
TARGET_PRODUCT=omni_d5110
TARGET_BUILD_VARIANT=eng
TARGET_BUILD_TYPE=release
TARGET_BUILD_APPS=
TARGET_ARCH=arm
@mcginty
mcginty / lapsify
Last active June 17, 2016 09:27
Simple time-lapse script using ffmpeg. Put all your pictures in a single folder, run lapsify in that folder. That's it.
#!/bin/bash
set -e
mkdir -p tmp_lapse_container
find . -iname '*.jpg' \
| awk 'BEGIN{ a=0 }{ printf "cp \"%s\" tmp_lapse_container/%04d.jpg\n", $0, a++ }' \
| bash
ffmpeg -y -i "tmp_lapse_container/%04d.jpg" -framerate 30 -r 30 -c:v prores_ks -s:v 1920x1080 lapse.mov
#!/bin/bash
find . -name '*.jpg' \
| awk 'BEGIN{ a=0 }{ printf "mv \"%s\" %04d.jpg\n", $0, a++ }' \
| bash
ffmpeg -y -i "%04d.jpg" -framerate 30 -r 30 -c:v prores_ks -s:v 1920x1080 lapse.mov
#!/bin/bash
find . -name '*.jpg' \
| awk 'BEGIN{ a=0 }{ printf "mv \"%s\" %04d.jpg\n", $0, a++ }' \
| bash
ffmpeg -y -i "%04d.jpg" -framerate 30 -r 30 -c:v prores_ks -b:v 15M -s:v 1920x1080 lapse.mov
#include "FastSPI_LED2.h"
#include <avr/pgmspace.h>
///////////////////////////////////////////////////////////////////////////////////////////
//
// Move a white dot along the strip of leds. This program simply shows how to configure the leds,
// and then how to turn a single pixel white and then off, moving down the line of pixels.
//
// How many leds are in the strip?
#define NUM_LEDS 40
From 0038bcf8357699fc20e73ed8abaa2079d138e638 Mon Sep 17 00:00:00 2001
From: Jake McGinty <me@jake.su>
Date: Fri, 18 Dec 2015 15:00:35 -0800
Subject: [PATCH] blahblah
---
AndroidManifest.xml | 8 ++++----
build.gradle | 2 ++
2 files changed, 6 insertions(+), 4 deletions(-)