Posted on 25 June 2009. Tags: action script, as2, as3, Flash
Social bookmarking in flash!!!
Now you can , place a “bookmark button” directly inside flash for sharing with the most popular online services!.
This little utility can enable you to SUBMIT to most popular informational, news and bookmarking services on internet (Digg ,del.icio.us … etc.) It will help you drive more traffic to your site.
AS3
http://www.adobe.com/cfusion/exchange/index.cfm?event=extensionDetail&extid=1599018#
AS2
http://flashden.net/item/social-sharing-and-bookmarking-from-flash-class/31755
Posted in Flash
Posted on 25 June 2009.
Setting up a SOAP web service with php used to seem pretty intimidating to me, until I finally decided that I would hunker down and build my own WSDL. Now that I’ve successfully gone through the process of building a SOAP web service with php5, I would say that it really isn’t all that bad. I was actually quite surprised at how easy it was in the end.
To get started, I recommend the PHP Soap Extension article found on the Zend Developer Zone website. Before going through the tutorial you’ll need to make sure that you are running on php 5 with the soap extension installed. If you’re not sure if you are on version 5 or if the SOAP extension is indeed installed, create a script with the following code: Continue Reading
Posted in PHP
Posted on 25 June 2009.
The other thing is that when you update the .deb files go in /var/cache/apt/archive. To clean it up use:
Code:
apt-get clean
or
Code:
apt-get autoclean
from the man page:
Quote:
clean
clean clears out the local repository of retrieved package files. It removes everything but the lock file from /var/cache/apt/archives/ and /var/cache/apt/archives/partial/. When APT is used as a dselect( method, clean is run automatically. Those who do not use dselect will likely want to run apt-get clean from time to time to free up disk space.
autoclean
Like clean, autoclean clears out the local repository of retrieved package files. The difference is that it only removes package files that can no longer be downloaded, and are largely useless. This allows a cache to be maintained over a long period without it growing out of control. The configuration option APT::Clean-Installed will prevent installed packages from being erased if it is set to off.
Posted in Linux
Posted on 25 June 2009.
I have used mysql server on my laptop with gutsy on xfs file system. I have tested on hardy version and have same output as following
Quote:
sudo /etc/init.d/mysql start
* Starting MySQL database server mysqld [ OK ]
* Checking for corrupt, not cleanly closed and upgrade needing tables.
I google and couldn’t find a clean solution. I have already do
Quote:
myisamchk *.MYI
myisamchk –recover *.MYI
myisamchk –safe-recover *.MYI
But unfortunately problem still there. I need your help about why and how this can be solved. Thank a lot for your help.
Posted in MySQL