Tuesday, July 24, 2012
Using android sensors
Very good article on using android sensors.
http://www.ibm.com/developerworks/opensource/library/os-android-sensor/index.html
http://www.ibm.com/developerworks/opensource/library/os-android-sensor/index.html
Monday, July 23, 2012
Friday, July 20, 2012
Monday, July 16, 2012
Thursday, July 12, 2012
Thursday, July 5, 2012
Brushless motors information
hacker Style Brushless Outrunner 20-26M | Prop | Thrust | |
Kv (rpm/v) | 1130 | 9x 4.7 | 500-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 Outrunner | Prop | Thrust | |
Kv (rpm/v) | 2840 | 6x4 | 413g |
Weight (g) | 26 | 7x4 | 381g |
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 Outrunner | Prop | Thrust | |
Kv (rpm/v) | 1534 | 7x6 | 730g |
Weight (g) | 39 | 7x4 | 580g |
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 Outrunner | Prop | Thrust | |
Kv (rpm/v) | 1200 | 10x5 | 710g |
Weight (g) | 39 | 10x4.7 sf | 745g |
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
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.
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>
_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>
Subscribe to:
Posts (Atom)