Today's Question:  What does your personal desk look like?        GIVE A SHOUT

 ALL


  Debunking the Google Interview Myth

Years ago, rumors used to circulate about Microsoft interviews.  They were the hot, new company that everyone wanted to work.  With envy came the urban myths.  These rumors have since been transfered to Google, and will surely be transfered to some new company in due time.Bloggers – always desperate for links and traffic – have capitalized on this, with scary articles about their “nightmare interview” and “crazy questions“.  Let’s just stop this right now, shall we?Google’s interview process is really no different from its...

2,783 0       GOOGLE MICROSOFT BUSINESS INSIDER INTERV


  Cron Job in cPanel with PHP

Running PHP scripts automatically can have some big benefits. You can wait to have things get done when there is less traffic on your server, or you can ensure daily tasks get done on time.cPanel Simple CronEven if you do not know anything about cron jobs, and have never run a cron job before - you can get started with the simple cron tool built into cPanel. The url for it is:https://www.yoursite.com:2083/frontend/x/cron/simplecron.html?A few things you'll need is the path to php and the path to the script that you'll be running. You will need the full path to do this. If your path to PHP diff...

5,723 0       PHP CRON AUTONOMOUS JOB CPANEL LINUX


  Windows Control panel mail icon

The exact location depends on your version of Windows and your layout settings of Control Panel.If your Control Panel is in the classic layout, you should see the Mail applet directly in the list of icons. For a 64-bit version of Windows Vista, the icon would be listed in the “View 32-bit Control Panel Items” section.If your Control Panel is in category view you can find the Mail applet in;Windows XP: User Accounts Windows Vista: User Accounts Windows Vista 64-bit: Additional Options-> View 32-bit Control Panel Items Windows 7: User Accounts and Family Safety For Windows Vista a...

4,579 0       WINDOWS CONTROL PANEL MAIL ICON OUTLOOK


  Send email from Ubuntu command line

First install exim4 and exim4-config using the package manager then install mailxsudo apt-get install mailutilsand follow the promptsonce this is set up use the command “mail” to check your mail.if you would like to send mail type “mail” followed by the email address to mail it to egmail me@examplecomenter the subject and pressenter the body and keep pressing enter as many times as you need to, when your body is finished, press “Ctrl” and “D" together this will prompt you for a cc etc and finally the mail will be sent.If you want to setup mail client, ...

5,114 0       EMAIL UBUNTU COMMAND LINE MAILUTILS


  Install flash plugin in Ubuntu

Step 1 : Get the libflashplayer.so file from Adobe offical websiteStep 2 : Extract the libflashplayer.so file to a folder Step 3 : Go tp the folder which sores the libflashplayer.so fileStep 4 : Run the following command in terminal             sudo ln -s libflashplayer.so /etc/alternatives/libflashplayer.soStep 5 : Start the Firefox and now can watch flash...

5,240 0       UBUNTU INSTALL FLASH PROCEDURES PLUGIN


  Ajax file upload tutorial

Step 1 - AJAX file uploadAJAX file upload tutorialFirst of all I have to say that to create a pure AJAX file upload system is not possible because of security limitations of JavaScript. All of the Ajax upload systems I know use some third party tool/package or only mimics the AJAX feeling. Even so it makes file upload process a bit nicer. In the next section I will present you a solution which imitates the AJAX process, but uses a normal upload process and iFrames.The concept: Create a simple HTML form for file uploadSet the target to an iFrame which is on the actual page but not visibleC...

6,700 0       AJAX FILE UPLOAD PHP TUTORIAL IFRAME


  Audio API in Android development

Mobile devices of the first generation were not capable of playing any sounds except monophonic ringtones. Today any smartphone platform supports playback, record and to some extent manipulation of digital sound, often up to CD quality.Android is no exception to that. Even older 1.5 devices can do a lot of things with digital audio. However, due to lack of guidance, a developer who is doing his first audio feature might miss some of the available API facilities, or might choose the approach that is not optimal to her use case. This article is supposed to clarify the three major APIs for workin...

5,485 0       ANDROID AUDIO MEDIAPLAYER AUDIOTRACK SOU


  Create trigger in MySQL

To create trigger in MySQL, the syntax is :CREATE [DEFINER = { user | CURRENT_USER }] TRIGGER trigger_name trigger_time trigger_event ON tbl_name FOR EACH ROW trigger_bodyOne example is :DELIMITER %%DROP TRIGGER IF EXISTS delete_commentCREATE TRIGGER delete_comment AFTER DELETE ON file_generate_infoFOR EACH ROW BEGIN DELETE FROM article_comment WHERE article_id=OLD.article_id;END%%The whole create trigger statement should be complete statement but not many separate commands. So we use %% as the statement delimiter. You can choose other symbols as delimiter as well....

2,227 0       MYSQL TRIGGER DILIMITER PHPMYADMIN