Pages

Thursday, January 6, 2011

Split/Combine files on Mac/Windows:

Mac Terminal Command to split a large file:

split –b2047m <inputfilename>

(could not find split equivalent on windows)

This will generate smaller filenames starting with the letter x and two appended sorted characters, eg: xaa, xab, xac, etc. The original file is left intact.

Command to combine 2 or more files:

To put the files back together on Mac simply type the following command in the Mac terminal.
cat x* > newfilename

To put the files back together on Windows simply type the following command in the DOS command prompt.

copy /b x* one.txt

copy /b 1.txt +2.txt +3.txt one.txt

Wednesday, May 5, 2010

Microsoft Excel VLOOKUP Function

 VLOOKUP Function in Excel:

JavaScript Replace

JavaScript String Replace All

The JavaScript function for String Replace replaces the first occurrence in the string. The function is similar to the php function str_replace and takes two simple parameters. The first parameter is the pattern to find and the second parameter is the string to replace the pattern with when found. The javascript function does not Replace All...
str = str.replace("find","replace");
To ReplaceAll you have to do it a little differently. To replace all occurrences in the string, use the g modifier like this:
str = str.replace(/find/g,"replace");
 
 

Saturday, April 10, 2010

Boomi On Demand Introduction

Boomi On Demand Introduction

WAMP Installation

WAMP Installation




Different way of WAMP Installation:
Install Apache, PHP, MySQL on Windows



Loading