Minggu, 27 Juli 2008

icecast on linux

try this:

- opensuse 11,
- icecast 2 server,
- darkice and darksnow,

all you can download in http://software.opensuses.org
to install icecast 2 just click in 1click install in the opensuse software search web.
to install darkice an darksnow just find in the opensuse web,
just make sure, you have liblame, libflac, libvorbis and any other library related to the mp3/mtp things installed.

and the results, you have the internet radio on your linux.
happy linux.

Rabu, 07 Mei 2008

Aptana --- Jaxer

apache-jaxer-aptana-extjs what a cool combination. this is the jaxer homepage. server side ajax call ? cool.

Jumat, 11 April 2008

icecast

i found that icecast was very cool, under opensource license. just install icecast, oddcast and winamp, we can have our own ip based radio. cool.....

here's the link

Selasa, 15 Januari 2008

SQL SERVER QUERY FROM 2 DATABASE

this sql query should return records from tables in 2 or more database. it's quite simple just put the database name in front of the table you want to display/query.

SELECT <db1>.<table1>.*, <db2>.<table2> FROM

<db1> LEFT OUTER JOIN <db2>

ON <db1>.<table1>.<key1> = <db2>.<table2>.<key2>

it's easy

Sabtu, 16 Juni 2007

Limit Pop3 in domino to download only certain email

this will avoid to download all email from your inbox with the domino server.

modify the ($POP3) view and put this into View Selection:

DEFAULT DeliveredDate := "";
SELECT DeliveredDate > @Adjust(@Now;0;0;-3;0;0;0);

this, will return sets of email delivered in the last 2 days based on formula.
or you can modify the DeliveredDate with @Adjust formula to match with your requirement.

easy. but it works and help us to download only today / range of date.