Processing is an open source programming language (processing.org) and environment for people who want to create images, animations, and interactions. This is how to install it on your Raspberry PI: install the java 6 sdk sudo apt-get install librxtx-java openjdk-6-jdk download and unzip the Linux (x86) version of Processing 1.5.1 to the /home/pi directory http://processing.googlecode.com/files/processing-1.5.1-linux.tgz … Continue reading How to configure Processing to run on Raspberry Pi?
Processing
Processing.js – convert Java into JavaScript
Processing.js Quick Start - Processing Developer Edition Introduction This quick start guide is written from the standpoint of a Processing developer. No HTML or JavaScript knowledge is assumed, and only basic Processing knowledge is necessary. Index For the Impatient Why Processing.js? The Web: from Java to JavaScript Processing.js uses Modern Web Standards Writing a Processing.js … Continue reading Processing.js – convert Java into JavaScript
How to get a permanent access token for your facebook Page?
Personal note: I've tried this. It seems that if you follow EVERY step, you will be able to get a "never expiring" page access token. However, it doesn't seem that making a post to the page is possible? Let me take a closer look into this... Having found that it is possible to generate a … Continue reading How to get a permanent access token for your facebook Page?
A simple Java code to use HTTP GET in Processing
import java.io.*; import java.net.*; String web_url = "https://www.google.com"; public class Web_access { public String getHTML(String urlToRead) { URL url; HttpURLConnection conn; BufferedReader rd; String line; String result = ""; try { url = new URL(urlToRead); conn = (HttpURLConnection) url.openConnection(); conn.setRequestMethod("GET"); rd = new BufferedReader(new … Continue reading A simple Java code to use HTTP GET in Processing