Skip to main content

Posts

100 keyboard shortcuts

100 keyboard shortcuts CTRL+C (Copy) CTRL+X (Cut) CTRL+V (Paste) CTRL+Z (Undo) DELETE (Delete) SHIFT+DELETE (Delete the selected item permanently without placing the item in the Recycle Bin) CTRL while dragging an item (Copy the selected item) CTRL+SHIFT while dragging an item (Create a shortcut to the selected item) F2 key (Rename the selected item) CTRL+RIGHT ARROW (Move the insertion point to the beginning of the next word) CTRL+LEFT ARROW (Move the insertion point to the beginning of the previous word) CTRL+DOWN ARROW (Move the insertion point to the beginning of the next paragraph) CTRL+UP ARROW (Move the insertion point to the beginning of the previous paragraph) CTRL+SHIFT with any of the arrow keys (Highlight a block of text) SHIFT with any of the arrow keys (Select more than one item in a window or on the desktop, or select text in a document) CTRL+A (Select all) F3 key (Search for a file or a folder) ALT+ENTER (View the properties for the selected item) ALT+F4 (Close the acti

Recent posts

Wowza media server

Wowza Media Server Pro is the only industrial strength Flash streaming server software delivered by a company solely focused on media servers. With Wowza Pro you get it all : High Performance - the only solution for scaleable, true 24x7 live streaming Protected - SecureToken anti-ripping technology and encrypted streaming for content protection Innovative - exclusive support for non-Flash live encoders and SHOUTcast re-streaming Interactive - two-way streaming audio , streaming video , shared object support and server side programming Economical - 75% less than Adobe Flash Media Interactive Server There are some examples for video recording, video streaming, video chats and many more in the example section included with the package. For more details please visit: http://www.wowzamedia.com/support.html http://www.wowzamedia.com/forums -

SalesForce Single Sign On With Symfony

Introduction Single Sign-On is a process that allows network users to access all authorized network resources without having to separately log in to each resource. Single Sign-On also gives your organization the ability to integrate with an external identity management system or perform web based single sign on to Force.com. How Single Sign-On Works The high-level process for authenticating users via Single Sign-On is as follows: 1. When a user tries to log in—either online or using the API—Salesforce validates the username and checks the user’s profile settings. 2. If the user’s profile has the "Uses Single Sign-on" user permission, then Salesforce does not authenticate the username with the password. Instead, a Web Services call is made to the user’s single sign-on service, asking it to validate the username and password. 3. The Web Services call passes the username, password, and sourceIp to a Web Service defined for your organization. (sourceIp is the IP address that ori

Install Symfony1.1 in Windows with WAMP

Install Symfony1.1 in Windows with WAMP Part 1 - Installing WAMP -------------------------------- WAMP is a self-installing, all-in-the-box package with Apach, MySQL and PHP 5. 1.Download WampServer2.0c.exe from http://www.wampserver.com/en/ if local copy is not there. 2.Double click WampServer2.0c.exe. 3.Symfony needs PHP-XSL and Apache URL Rewrite Module to function normally. a. To activate the Rewrite module - left click on WAMP’s tray icon and then in Apache >> Apache Modules menu select rewrite_module (Server will automatically reboot) b. To enable XSL for php - left click on WAMP’s tray icon and then in PHP >> PHP Extension menu look for php_xsl and click it. Open C:\wamp\bin\php\php5.2.6\php.ini and remove “;” from the line: ;extension=php_xsl.dll c. Save and close the file. 4.Add environment variables to have access to PHP & MySQL under the command line. Right-click on My Computer, then Properties. Switch to Advanced tab

BITSONTHERUN - Hassle-free video hosting

Bits on the Run is a clear and powerful system for converting, managing and streaming video on your site. http://www.bitsontherun.com/ These features highlight why Bits on the Run is a full-fledged yet easy to work with videohosting solution. Find out why we are easier to set up, more flexible, cheaper and better to integrate than competing products. High-Quality Video Custom Video Players Flexible Playlists Hands-on support Easy Workflow Extensive API Effective Advertising Clear Pricing

PhpUnderControl Framework For Symfony Projects

Introduction phpUnderControl is an extension for Cruise Control that integrates several PHP development tools, such as PHPUnit Which contains a rich set of features like Unit Testing and Functional Testing, Code Coverage, Project Mess Detection and Software Metrics etc, PHP_Code Sniffer For static code analysis PHPDocumentor For API documentation generation. It comes with a powerful command-line tool that can, among other things, automatically create Cruise Control’s XML configuration files for your project. To know more about PhpUnderControl please visit the blog posted by my friend Anoop: http://anoosphpundercontrol.wordpress.com/2008/07/29/phpundercontrol-framework-for-symfony-projects

Symfony Coding Standards

The golden rule: Imitate the existing symfony code [1] Never use tabulations in the code. Indentation is done by steps of 4 blanks. For yml files 2 blanks should be used. [2] Don't put spaces after an opening parenthesis and before a closing one. if ($reqvalue == _getRequestValue($name)) correct if ( $reqvalue == _getRequestValue($name) ) incorrect [3] Use camelCase, not underscores, for variable, function and method names. [4] Use underscores for helper functions name (only for symfony 1.0 stuff). [5] Use underscores for option/argument/parameter names. [6] Braces always go on their own line. [7] Use braces for indicating control structure body regardless of number of statements it contains. [8] Don't end library files with the usual ?> closing tag. This is because it is not really needed, and because it can create problems in the output if you ever have white space after this tag. [9] In a function body, return stateme