Posts

Showing posts with the label useful

Some Useful Mouse Tips And Tricks

Image
Some Useful Mouse Tips And Tricks      Hi friends today I will share some useful mouse tips and tricks.     1. In Windows Open Windows Explorer - If you want to open windows explorer by mouse then   you just go to your taskbar and click     the scroll botton on file explorer. 2.In Windows Copy and paste - Just right click and hold down then drag and drop the folder or file. 3.When Your Keyboard Is Broken - In windows just use On-Screen Keyboard, or there are a free alternetive that is free virtual keyboard http://freevirtualkeyboard.com/ this is a freeware. If you want to paid some money you can use a nice app call comfort On-Screen Keyboard - http://www.comfort-software.com/on-screen-keyboard.html or another app is hot virtual keyboard - http://hot-virtual-keyboard.com/.. download file now

Some Useful Terminologies

Some Useful Terminologies CAM (Camera): A cam is a theater rip usually done with a digital video camera. A mini tripod is sometimes used, but a lot of the time this wont be possible, so the camera make shake. Also seating placement isnt always idle, and it might be filmed from an angle. If cropped properly, this is hard to tell unless theres text on the screen, but a lot of times these are left with triangular borders on the top and bottom of the screen. Sound is taken from the onboard microphone of the camera, and especially in comedies, laughter can often be heard during the film. Due to these factors picture and sound quality are usually quite poor, but sometimes were lucky, and the theater will be fairly empty and a fairly clear signal will be heard. TS (Telesync): A telesync is the same spec as a CAM except it uses an external audio source (most likely an audio jack in the chair for hard of hearing people). A direct audio source does not ensure a good quality audio source, as a lo...

Some useful HTML elements in Yii

Some useful HTML elements in Yii Create Html Link in Yii The code below creates a html link to user view which has id = 23 <?php echo CHtml::link(CHtml::encode(View User with ID = 23), array(user/view, id=>23)); ?> The code below creates a html link to the html form for creating a user <?php echo CHtml::link(CHtml::encode(Create User), array(user/create)); ?> Create Html Label in Yii The code below creates a html label <?php echo CHtml::label(CHtml::encode(Some Text), Some Text); ?> Create Html ComboBox in Yii The code below creates a html combobox <?php echo $form->dropDownList($model, field_name, array(1=>test1, 2=>test2));?> The code belows creates a html combobox with list data populating dropdown from database values <?php echo $form->dropDownList($model,node_types_id, CHtml::listData(NodeTypes::model()->findAll(array(order => name)),id,name));?> download file now

Some useful tips using the find linux command to search for text

Some useful tips using the find linux command to search for text Searching for texts into projects source code is a common task when you are developing. I think the best aproach is to go to shell and run the commands bellow: Search for xml files containing the text "org.alfresco.util.CronTriggerBean" find . -type f -name "*.xml" -print | xargs grep "org.alfresco.util.CronTriggerBean" Look for javascript files containing the text "renderPickerHTML" find . -type f -name "*" -print | xargs grep "renderPickerHTML" But there are some projects that have lots of "minimized" files, and those files are not that useful when you are searching for sample code. In these cases, its better to filter the results, ignoring the minized ones. To do this, you just need to include one parameter to your command, like this find . -type f -not -iwholename *-min.js -name "*" -print | xargs grep "renderPickerHTML" The only...