Thursday, July 5, 2012

Brushless motors information


hacker Style Brushless Outrunner 20-26MPropThrust
Kv (rpm/v)11309x 4.7500-600 g
Weight (g)43
Max Current (A)15
Resistance (mh)0
Max Voltage (V)11
Power(W)0
Shaft A (mm)-
Length B (mm)28
Diameter C (mm)28
Can Length D (mm)13
Total Length E (mm)43



FC 28-05 Brushless OutrunnerPropThrust
Kv (rpm/v)28406x4413g
Weight (g)267x4381g
Max Current (A)14.4
Resistance (mh)0
Max Voltage (V)7
Power(W)0
Shaft A (mm)-
Length B (mm)26
Diameter C (mm)29
Can Length D (mm)9
Total Length E (mm)37




FC 28-12 Brushless OutrunnerPropThrust
Kv (rpm/v)15347x6730g
Weight (g)397x4580g
Max Current (A)15.5
Resistance (mh)0
Max Voltage (V)14
Power(W)0
Shaft A (mm)-
Length B (mm)31
Diameter C (mm)29
Can Length D (mm)13
Total Length E (mm)47



FC 28-22 Brushless OutrunnerPropThrust
Kv (rpm/v)120010x5710g
Weight (g)3910x4.7 sf745g
Max Current (A)14.5
Resistance (mh)0
Max Voltage (V)11
Power(W)0
Shaft A (mm)-
Length B (mm)31
Diameter C (mm)29
Can Length D (mm)12
Total Length E (mm)48


Wednesday, July 4, 2012

Turnigy 9x Custom firmware

Copying / Moving SharePoint Designer Workflow

Sharepoint version : 2007

I was looking for simple way to copy my Sharepoint designer workflow from one environment to other.

Scenario :

After complete development of application on development server I wanted to move it to staging environment. Since it was not complete new development and staging already had lots of data in it , I couldn't simply backup and restore application. So I moved list and document libraries using STP and Sharepoint designer workflows using Sharepoint designer inbuilt Import/Export utility.

Considering all site structure , list  and library structure and naming same on both environment we can achive it by following below steps.

Export:

# Open site in sharepoint designer
# Go to file menu select Export -> Personal web package
# Expand workflow folder select workflow you want to copy
# Provide package name *.fwp name
# save.

Import :


# Open site in sharepoint designer
# Go to file menu select Import -> Personal web package
# Provide package name *.fwp name you recently saved.
# provide destination as workflow folder
# Import.
# This will create folder workflow under wokflow
# you can easily dragdrop copied workflow to parent workflow folder if require.

 

Monday, July 2, 2012

Hide New Item and Action item menu of Sharepoint list

<script type='text/javascript'>//hide the new item menu and Action item menu._spBodyOnLoadFunctionNames.push(
_spBodyOnLoadFunctionNames.push(
"HideNewItem");"HideActionsItems");function
{





{

{

newElem.parentElement.parentElement.style.display
newElem.parentElement.parentElement.nextSibling.style.display
}
}
}

}
HideNewItem()try{var tables = document.getElementsByTagName("table");for(var i=0; i< tables.length; i++)if( tables[i].id.indexOf("NewMenu") > 0 )var newElem = tables[i];="none";="none";catch(e){}function
{
HideActionsItems()try



{

{


divs[i].style.display
}
}
}

}
{var divs = document.getElementsByTagName("div");for(var i=0; i< divs.length; i++)if( divs[i].id.indexOf("ActionsMenu") > 0 )var newElem = divs[i];="none";catch(e){} </script>