Skip to content

Instantly share code, notes, and snippets.

View jpdenford's full-sized avatar

JP Denford jpdenford

  • Wellington NZ
View GitHub Profile
@probonopd
probonopd / F1E200.md
Last active July 20, 2023 12:01
Allwinner F1E200 electronic postcard with USB Device ID 1f3a:1000

USB Device ID 1f3a:1000 Allwinner F1E200 electronic postcard

I received a promotional folder that plays a video with sound when opening the folder. This contains a rechargeable LiPo battery, a TFT display, a speaker, a power switch, a push button, 256 MB flash memory, RAM, and a CPU.

All of this for watching one 1-minute video.

What a waste! Certainly not environmentally friedndly. Until repurposed creatively!

On the back it says that the product can be sent back to the manufacturer for free recycling. Still I was wondering if I could do more with it.

@PurpleBooth
PurpleBooth / README-Template.md
Last active April 29, 2024 02:38
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

@b-studios
b-studios / Processing.scala
Created January 22, 2014 13:54
To use processing with scala: You have to download the processing `core.jar` available at http://processing.org/download/?processingand save it to your `lib/` directory. This gist just illustrates the basic setup necessary to run a processing application.
import processing.core.PApplet
class ProcessingTest extends PApplet {
override def setup() {
size(1024, 768)
background(255)
}
override def draw() {