January 2009
6 posts
dnuos - creates lists of music collections based...
dnuos can work on any os with python, here is Mac/Linux guide based on dnuos-1.0.9.tar.gz. See http://bitheap.org/dnuos/ for more info and the latest version.
1. Download, extract and install
curl http://bitheap.org/dnuos/files/dnuos-1.0.9.tar.gz | tar xz && cd dnuos-1.0.9 && sudo python setup.py install
2. If on Mac OS X 10.4 or earlier - it may get installed to:...
R4 Revolution - couldn't find _DS_MENU.DAT
1. Download R4 System Files (http://r4ds.us/)
http://www.digimartz.com/r4-ds-revolution-r4ds-microsdtf-slot1-solution-adapter-p-68.html
2. Extract and copy all files into the root of the card.
Make ISO from VOB/IFO on a Mac with Terminal
hdiutil makehybrid -udf -udf-volume-name DVD_NAME -o FILE_NAME.iso /path/to/VIDEO_TS/parent/folder
Installing aspell on Mac OS X
1. Download, configure, build and install Aspell
curl ftp://ftp.gnu.org/gnu/aspell/aspell-0.60.6.tar.gz | tar xz && cd aspell-0.60.6 && ./configure && make && sudo make install
2. Download, configure, build and install a dictionary [en]
curl ftp://ftp.gnu.org/gnu/aspell/dict/en/aspell6-en-6.0-0.tar.bz2 | tar xj && cd aspell6-en-6.0-0 &&...
json_encode doesn't work - Running PHP < 5.2.0 and...
Checks if the json_encode function exists and replaces if it doesn’t with a user function which replicates returning a string containing the JSON representation of value.
<?php
if (!function_exists('json_encode'))
{
function json_encode($a=false)
{
if (is_null($a)) return 'null';
if ($a === false) return 'false';
if ($a === true) return 'true';
if (is_scalar($a))
...
IE error - opening file before saving. (There was...
The problem is to do with the IE cache system. This can be solved in PHP by including this line with the force download headers.
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
http://discuss.joyent.com/viewtopic.php?id=8720