Tuesday, 3 January 2017

Are you looking for vendors to take care of your projects ?

Hello Entrepreneurs / HR professionals,
Are you looking for vendors to take care of your projects ??

We are here to help you !
We are an young & energetic team dealing the below services:
* Web Development & D­­­­­esign
* Mobile Application­­­­­ Development
* Software Development
* Product Development
* IoT Solutions
* Staffing Solution­
* Payroll Management
* Graphic Design­­­­
* BPO ( Voice & Non ­­­­­Voice campaigns )


I assure you for the quality services :)Kindly reach us if any need arises to you.


Cheers !
Sreenatha Reddy
Whatsapp / Mobile: +91 9164659791
Skype: live:Sreenatha.kr
Mail: krsreenatha@gmail.com

Thursday, 15 December 2016

Tangent TechnoLabs

We are Tangent TechnoLabs expertise in Automotive embedded systems, and IoT Product Development. Feel free to reach us.

Here is a presentation to give you a  brief about IoT landscape at Tangent TechnoLabs



Sunday, 11 August 2013

What is MongoDB Monitoring Service (MMS) ?

MongoDB Monitoring Service (MMS) is a free cloud-based service provided by 10gen for monitoring MongoDB deployments in real time. MMS ensures that you have visibility into the right metrics to manage and optimize applications during development and in production.

Thursday, 7 February 2013

Understanding OOPs in JavaScript


/firsy thing the most generally you can do
function Weapon(name, damage){
var wName = name; //use var instead of this so it will be private
this.setName = function(text){
//validate the data
if(typeof text === "string"){
wName = text ;
}//end of if
};
this.getName = function(){
return wName;
};
var wDamage = damage;
this.setDamage = function(aDamage){
//validate the data
if(typeof aDamage === "number" && aDamage < 200){
wDamage =aDamage ;
}//end of if
};//end of method
this.getDamage = function(){
return wDamage;
}; //end of method
} //end of contructor
//then you can inherit from Weapon and extend like this
function Gun( range, magazine){
var wName = "Gun" ; //overwrite the name so it will be named gun
//you write de set and get
var wDamage = 150 ; //The same--you can change this of course
var wRange = range ;
//write sets and gets
var wMagazine = magazine;
}//end of contructor

Sunday, 22 April 2012

What is the difference between an argument and a parameter?


While defining method, variables passed in the method are called parameters. While using those methods, values passed to those variables are called arguments.