Boys & Toys

Just another WordPress weblog

INSERT ON DUPLICATE KEY UPDATE

No Comments »

September 13th, 2011 Posted 4:11 pm

http://www.mysqlperformanceblog.com/2006/05/29/insert-on-duplicate-key-update-and-summary-counters/

Posted in Uncategorized

How to become an Flash developer

No Comments »

August 11th, 2011 Posted 10:33 pm

How to become an Flash developer?

Posted in How To

How to become an Iphone developer

No Comments »

August 11th, 2011 Posted 10:33 pm

How to become an Iphone developer?

 

Some readings in the internet.

http://appsamuck.com/day2.html

Posted in How To

How to become an Android developer

No Comments »

August 11th, 2011 Posted 10:26 pm

How to become and android developer?

Posted in How To

Red5 java.net.BindException: Address already in use

No Comments »

July 5th, 2011 Posted 2:31 pm

When I stop my red5 server and start it again I got this error.

Solution:

Change the stop script:

From:
su -s /bin/bash -c “killall -q -u red5 java“ red5
To:
su -s /bin/bash -c “killall -q -u red5 java.bin” red5

 

Error found in Suse.

Posted in Red5

Red5 Admin

No Comments »

July 5th, 2011 Posted 2:23 pm

I lost so many hours to try to run the red5 admin panel.

Step by Step instlalation of admin panel for Red5 server.

Step 1:

soon

Posted in Java, Red5

rm | Argument list too long

No Comments »

November 13th, 2010 Posted 2:56 pm

Having problems deleting a lot of files in my case 100k + recors

-jailshell-3.2$ rm *.jpg
-jailshell: /bin/rm: Argument list too long

Solution:

ls | xargs rm

Posted in Linux

Update table from another table

No Comments »

September 15th, 2010 Posted 4:26 pm

UPDATE users_ships AS t1, ships AS t2
SET
t1.shipLife = t2.shipLife
WHERE t1.shipId = t2.shipId

Posted in SQL

Red5 README

No Comments »

July 29th, 2010 Posted 8:47 am

http://gregoire.org/category/red5/

Migration from FMS to Red5 http://www.joachim-bauch.de/tutorials/red5/migration-guide/

A complete red5 setup and tutorials http://red5.electroteque.org/dev/doc/html/MigrationGuide.html

Setting up Red5 Remoting Gateway at http://flashvisions.com/java/red5-remoting/2/

Posted in Red5

Java READ

No Comments »

July 27th, 2010 Posted 2:25 pm

http://leepoint.net/notes-java/index.html

Posted in Java