Fri 12 Apr 2013
I always forget how to make a poster using ghostscript.
the command is ‘poster’
sample usage:
poster -v -mletter -c5% -s1 input.ps -o output.ps
This will enlarge the original and put crop marks on the resulting pages.
Fri 12 Apr 2013
I always forget how to make a poster using ghostscript.
the command is ‘poster’
sample usage:
poster -v -mletter -c5% -s1 input.ps -o output.ps
This will enlarge the original and put crop marks on the resulting pages.
Mon 18 Mar 2013
I created a LibreOffice cheat sheet to help me quickly learn and recall the syntax.
It covers some very useful things:
Getting the Sheet
Getting A Cell
Iterate over a range of cells:
Getting Form Elements
Set a Cell to current timestamp
HTTP Method GET call and store data
Reading And Writing A File
Mon 18 Mar 2013
Trying out a new category: Snippets
These will be tiny shell scripts or pieces of code.
The first one is how to have linux convert GPS NMEA text files to kml format.
#!/bin/sh
gpsbabel -i NMEA -f $1 -o openoffice -F test.csv
gpsbabel -i openoffice -f ./test.csv -o kml -F test.kml
Im sure there is a better way…but this one works and gives a .csv file as an intermediate.
Wed 26 Dec 2012
Now that we live in he age of the Internet-of-Things (IOT), I find that these ‘things’ have to communicate to a normal web server at some point.
The problem of course is how best to send data to the server and make sure what was sent is what was received. My preferred method is to use ‘Method GET’ which means that the data is encoded in the URL. It is easy to implement on just about any platform from Arduino UNOs to Arm Cortex processors. Every platform that supports 802.11 or 802.3 will have an example of using ‘Method GET’ to fetch a URL. Which means that the opportunity to send data is as easy as getting a URL.
The next problem is how to send binary data. Since the URL schema has special characters like, ‘”/?& that have meaning you cant just send binary data in the url. To be completely safe in a 7bit ASCII world, one needs to encode that data into some format.
For example if you wanted to send a number of 0x31EAA5 via a URL you could do http://127.0.0.1/?q=3271333 easily enough. That would be converting the number to a integer represented by ASCII characters. This method becomes cumbersome when there are multiple values to send: ?q1=555&q2=444&q3=333&q2=222
My preferred method of late is to send the data as a byte stream. Doing this requires some sort of ASCII armor, such as BASE64 or UUENCODING. Originally I started using base64 which creates GET URLs like: ?q=SSBhbSBEQVRBCg== which decoded on the receiving server would be ‘I am DATA’. But for whatever reason the encoding uses special characters for some data. Namely / and + characters. So a few variants of base64 have sprung up to change these characters to more friendly to URL or other standards.
Not wanting to deal with the hassles of base64. I decided to give base 16 a try as the encoding. This has worked out rather well. Base16 encoding is easy to implement in any language. And many have built in encoders/decoders.
So in the above example of the data being ‘I am DATA’ it would render as
?q=4920616D2044415441
It uses exactly twice as many bytes as the original data, but is perfectly safe to transport binary data. So the sacrifice is size vs safety and ease of implementation. I will almost always chose ease of implementation over any other factor.
On to the code:
Full Examples
Arduino code snippet
char base16[16]={ '0','1','2','3','4', '5','6','7','8', '9','A','B','C', 'D','E','F' };
// this expects byte theData[len] and byte theEncodedData[len*2]
void base16encode()
{
char b1,b2; // bytes 1 and 2 of the encoded data
byte ev; // the value to encode
for (int lop=0; lop<theDataLength; lop++)
{
ev=theData[lop];
b1=base16[( (ev>>4) & 0x0F)];
b2=base16[( (ev) & 0x0F)];
theEncodedData[(lop*2)]=b1;
theEncodedData[(lop*2)+1]=b2;
}
}
PHP snippet
function base16decode($data)
{
$retv="";
$base16str="0123456789ABCDEF";
for ($lop=0; $lop<strlen($data); $lop+=2)
{
$oneByte=$data[$lop];
$twoByte=$data[$lop+1];
$v1=strpos($base16str,$oneByte);
$v2=strpos($base16str,$twoByte);
$theValue=($v1*16)+$v2;
$av=chr($theValue);
//echo "ob[$oneByte]tb[$twoByte] v1[$v1]v2[$v2] tv[$theValue] av[$av]| \n";
$retv.=$av;
}
return $retv;
}
These code examples are written with the goal of being easy to read and understand rather than being examples of a good coding style.
Sun 11 Sep 2011
Over the last few days I have been Tweeting photos with location but I am unhappy with how the maps are displayed. So I made a bookmarklet to extract the map links.
Grab the GPSCoords bookmarklet by following the link then dragging and dropping it from there.
Tue 9 Mar 2010
Today I wanted to see all the URLs I had visited in Firefox. I tell it keep my history for a very long time. I grow tired of bookmarking and managing those bookmars. I want to be able to do something like say: “What was that site I visited a few days ago that sold Widget X”.
Firefox3 stores its history in a file called places.sqlite which is in sqlite3 format. So with sqlite3 installed this is the command I used to export my history to a text file.
echo "SELECT datetime(moz_historyvisits.visit_date/1000000,'unixepoch'), moz_places.url,moz_places.title,moz_places.visit_count FROM moz_places, moz_historyvisits WHERE moz_places.id = moz_historyvisits.place_id ORDER by moz_historyvisits.visit_date; " | sqlite3 ./places.sqlite
Now I can add a grep to the end of that and find what I was looking for.
Why not just use the built in search for finding stuff? Well the simple reason is that I can add more complex searches easily using regex.
Plus I wanted to be able to export and save my history to a file where I can search it later. Without having to install some firefox extension.
If you wanted to get really adventurous you could do some php like this:
<table>
<?
$todo=”SELECT datetime(moz_historyvisits.visit_date/1000000,’unixepoch’), moz_places.url,moz_places.title,moz_places.visit_count FROM moz_places, moz_historyvisits WHERE moz_places.id = moz_historyvisits.place_id ORDER by moz_historyvisits.visit_date;”;
$dbh = new PDO(‘sqlite:places.sqlite’);
foreach ($dbh->query($todo) as $row)
{
//print_r($row);
echo “<tr>\n”;
echo “<td>”.$row[0].”</td>\n”;
echo “<td><a href=\”".$row['url'].”\”>”.$row['title'].”</a></td>\n”;
echo “</tr>\n”;
}
?>
</table>
Wed 3 Dec 2008
Since most of the projects I work on with Atmel are USB based the first thing I do is load AVRUSBBoot on a chip. Once the bootloader is on the chip you can re-program it by setting a jumper on your circuit and using the avrusbboot command line interface. (Example: avrusbboot ./filename.hex)
But how to get the bootloader on the chip in the first place? Easy. Buy a AVRISPMkII from an Atmel distributor. It comes with the necessary hardware and software to program chips. Then the question becomes: If I have a programmer why would I need a bootloader? I guess the answer is: convenience. Once a circuit is built with usb support, which is only 4 wires, it is easy enough to put a jumper on and use the bootloader. When I order a new batch of chips I could put them all on the programmer and load the bootloader all at once.
The downside to the usb bootloader is that it requires a 12Mhz crystal to be attached to the chip. (I primarily use Atmega8 chips.)
Although I have never used one there is a possibility of using a serial port or parallel port programmer built out of very few, cheap components.
There is a good overview of all the methods of programming an avr at ladyada.net.
One of the greatest beginning tutorials I have found for Atmel programming is the I Make Projects article called “A Quickstart Tutorial for ATMEL AVR Microcontrollers.” If you are just starting buy a couple Attiny45 chips and follow that.
Warning: To get a bootloader to work with usb you have to change fuse settings. It is easy to “brick” a chip if you give it the wrong fuse settings. Especially changing the clock and re-assigning the reset line. (Reset is needed to activate the In Circuit Programming.) Read, re-read, and triple read before reprogramming fuses. Look at RSTDISBL, SPIEN, and CKSEL.
When I prep an Atmega8 for use with the avrusbboot program I use Hight fuse @ C0 Low Fuse @ 9F and locks set to EF. As soon as you hit the button to program these fuses it will absoulutely need that 12Mhz crystal on pins 9 and 10 with the 27pf capacitors. Or you wont be able to talk to the chip again.
An online fuse calculator for avr chips.
Sun 23 Nov 2008
Now that I have my quick protoboard together it allows me to take other people’s projects and put them together really quickly. Today I built the USB-LED-Fader. Since the hard parts were already done it took about 5 minutes to add the 4 resistors and LEDs to a breadboard. Then another 5 minutes to compile and upload the firmware using the bootloader.
Then I spent about an hour playing with the different LED patterns. This is a really fun project. I can see tons of potential for different status lights. Tie a cpu meter to one of the lights… the faster it flashes the more cpu is being used. One LED for email status. One for network traffic. And finally one for server status.
(The photo from the atmega8 development board shows this project on the breadboard.)
Sun 23 Nov 2008
Last night I stared building a atmega8 development board. Tonight I finished it.
I got tired of building the same circuit over and over; so I made a generic board that I could slap onto a breadboard and quickly try out projects. It also allows me to rapidly prototype something new.
I based the board on AVRUSBBoot. The only thing I changed was the programming pin. I moved it to PD7. This allowed me to put PB* and PC* on the plug side of the board.
On the right hand side of the board I brought all the PortC and PortB pins as well as + and GND to a row of header pins.
The important thing about this board to me is that it is USB powered and based. I don’t need to hook up a programmer, I just use the bootloader and usb to update the software on the chip.
Thu 20 Nov 2008
Introducing the Unfocused Brain Hallucination Generation device. A Trance Machine based on visual stimulation.
In ancient times people used what is known as the Psychomantium to talk with the spirits. Nostradamus used one to tell the future. In the 1960′s Brian Gysin and Ian Sommerville created the Dreammachine. Recently pioneer Mitch Altman gave us the Brain Machine in Make: Volume 10.
All of these devices try to bring us to a heightened state of consciousness where we can achieve our full potential commune with the universe and see the future.
My device does one thing and one thing only. Makes you see trippy stuff.
I’ve built a Psychomantium. I built the Brain Machine. What I learned was that playing with your visual processing can make you see stuff.
The Brain Machine makes you see really neat stuff. Stuff like I used to see in the old days staring into a Circle K cup held over a strobe light. I tried the Brain Machine without the sound and it seemed to make me have hallucinations as well as with the sound. Plus certain transitions, like from theta to delta, made really neat visuals.
Getting bored quickly and wanting to just have the transition visual effects I made my own. This one has buttons. It allows you to switch from one state to another at will. It allowed me to find out what worked best for me.
This is just the start of my path down the visual stimulator trance machine path. I plan on making one that I can tune to which ever frequencies in each range work best for me. Then I plan on making one where I can easily store programs of different patterns and play them back. Possibly as a USB device. I have even thought about making one that will fill a whole room with light so that the patterns can be given to me while sleeping.
This is going to be fun. 8)