Archive for April 2010


Search with jQuery

April 15th, 2010 — 3:31pm

You can use AJAX through jQuery to search your MySQL database. It’s as simple as setting up a php file to handle the search input, creating the input, and a space for the results to be returned.

First, you’ll need to set up the input box and the return data div.

Continue reading »

FacebookTwitterRedditDeliciousDiggMixxStumbleUponShare

Comments Off | Programming

Split APE images into ogg files and add tags from CUE

April 8th, 2010 — 7:13pm

Turning your APE whole disc into single ogg files with ID3 tags is easy and takes only a few steps.

You’ll need the following programs to complete this tutorial: cuetools, shntool, vorbis-tools.

aptitude install cuetools shntool vorbis-tools

First, move into the folder with the APE disc.

Second, split the disc into tracks.

cuebreakpoints *.cue | shnsplit -o wav *.ape

Continue reading »

FacebookTwitterRedditDeliciousDiggMixxStumbleUponShare

6 comments » | Linux

Back to top