Sunday, April 29, 2012

Intelliji Idea: Find and Replace in Path for multiple file masks


File name filterIn this area, specify additional settings to narrow down the search scope.
  • File mask - select this check box to narrow down the search scope through file masks. In the drop-down list, select the desired mask or specify a new one using wildcards. Wildcard can include * to substitute a set of any characters, and ? to substitute a single character. Note that you can specify multiple file masks, delimited with comma (for example, *.xml,*.sql,*.html).

Friday, April 27, 2012

quick way to search by date in google

http://www.faganfinder.com/date/

Ext.apply VS Ext.applyIf

var source = new Array();

            source[0] = '1';
            source[1] = '2';
            source[2] = '3';


var destination = new Array();

            destination[0] = '4';
            destination[1] = '5';
            destination[2] = '6';
            destination[3] = '7';
            destination[4] = '8';
            destination[5] = '9';



// Ext.apply(obj1,obj2) copy all properties of obj2 to obj1 any way,replaceing
// the ones that obj1 has already defined

 Ext.apply(destination,source);
document.write(destination + '<br/>'); // 1,2,3,7,8,9

// Ext.applyIf(obj1,obj2) copy all properties of obj2 to obj1 only if
// they don't already exist

 Ext.applyIf(destination,source);
document.write(destination + '<br/>'); // 4,5,6,7,8,9

Google Chrome js console multiline


press Shift-Enter 

Wednesday, February 29, 2012

Compiling the Apache Flex SDK with IntelliJ

very useful blog from quetwo , he even made a video for it, check it outLink

Tuesday, February 28, 2012

Eclipse slow responding while refreshing external folders

today, my Eclipse is very slow when refreshing external folder
i found this blog from Filip Galabov's Homepage.
might be useful, check here

Tuesday, February 14, 2012

Flash Builder 4.6 plugin install for Eclipse

see : http://kb2.adobe.com/cps/921/cpsid_92180.html

Flash Builder 4.6 supports installation as a plugin to an existing Eclipse instance. To do so:
  1. Complete the installation process as described above.
  2. Navigate to the installed Flash Builder installation location and open the utilities folder.
  3. Run the executable Adobe Flash Builder 4.6 Plug-in Utility.exe.
  4. Select the language and click on OK.
  5. Select the Flash Builder installation location if prompted.
  6. Select the Eclipse folder into which you want Flash Builder 4.6 to be plugged into and click Next. (Note: Your copy of Eclipse must be version 3.6/3.6.1/3.6.2/3.7, 32-bit and must contain a folder named “dropins”)
  7. Review the pre-Installation summary and click on Install
  8. Following installation, it is recommended that you edit the eclipse.ini file for your Eclipse instance, so that it includes the following settings:

-vmargs -Xms256m -Xmx512m -XX:MaxPermSize=256m -XX:PermSize=64m