Posts

Showing posts with the label cut

Nix cut and paste.

Image

Edit tools.

Image

Arduino music.

Image
Notice: this article is for linux based users. see also: http://computoman.blogspot.com/2015/05/arduino-music-starter-update.html The Arduino is one of the neatest microcontrollers.  For something so simple, it can do an amazing amount of projects. One such project that interested me was the Digital melody project. If you have one the the Arduinos where the Atmel chip can be removed, you can make your own project without the board once the programming is done. For this project, all you will need is the Arduino, usb cable (for programming), computer, some wires, optional 100 ohm resistor, and an old eight ohm speaker. Usually the back of speakers on the magnet have what resistance they are. So grab the old dead radio or the like that has a speaker and see what it has. Old personal computers are likely to have one too that you can borrow for a minute. Now you need to build the circuit. It is minimal and you should be able to set it up quickly. Resistor adds safety for pr...

Extracting data to a table.

Image
More than one way to skin a cat. # just a thought IFS=’%’ line=” [173]Virginia                          3-5 5-7 310 289 5-2 0-5 Lost 1″ a=`echo $line | cut -c8-28` b=`echo $line | cut -c29-31` c=`echo $line | cut -c33-35` d=`echo $line | cut -c38-40` e=`echo $line | cut -c42-44` f=`echo $line | cut -c46-48` g=`echo $line | cut -c51-53` h=`echo $line | cut -c56-61` echo “<html>”> somefile.html echo “<body>”>> somefile.html echo “<table border=1>”>> somefile.html  echo "<tr><td>School</td><td>W-L</td><td>W-L</td><td>PF</td><td>PA</td><td>Home</td><td>Away</td><td>Current streak</td></tr>" >> somefile.html echo “<tr><td>$a</td><td>$b</td><td>$c</td><td...

Cutting cable the cord - additional options.

Image
If you were lucky enough to get the free coupons for the free dtv converters, you could still use your analog TV for watching television. In fact, we use the dtv converter with a dvd player in the man-cave. ( http://www.instructables.com/id/Extra-TV-setup/ ) We get about sixty stations, but only use about twenty of them. You will get the traditional major TV networks for free. Ironically, more and more cable is coming back to over the air TV in one form or another. See your favorite Food TV chefs on "The Chew". Also cut the cord, but we went in a different direction. We use OTA (Over-the-air) HDTV. (Works best in large metropolitan areas). Actually, most television stations still transmit the old fashion way. You can not use the old fashion tv tuner, but again you can use the dtv converter with an old fashion TV antenna. You do not need to use a special HDTV antenna. Marketing hype for an existing TV antenna. You can also make your own for almost free. You can find s...