Skip to main content

Privacy Policy

Privacy Policy
This privacy policy has been compiled to better serve those who are concerned with how their
 'Personally Identifiable Information' (PII) is being used online. PII, as described in US privacy law
 and information security, is information that can be used on its own or with other information to
 identify, contact, or locate a single person, or to identify an individual in context. Please read
 our privacy policy carefully to get a clear understanding of how we collect, use, protect or otherwise
 handle your Personally Identifiable Information in accordance with our website.

What personal information do we collect from the people that visit our blog, website or app?

When ordering or registering on our site, as appropriate, you may be asked to enter your or other
 details to help you with your experience.

When do we collect information?

We collect information from you when you or enter information on our site.


How do we use your information?

We may use the information we collect from you when you register, make a purchase, sign up
 for our newsletter, respond to a survey or marketing communication, surf the website, or use certain
 other site features in the following ways:

How do we protect your information?

Our website is scanned on a regular basis for security holes and known vulnerabilities in order to
 make your visit to our site as safe as possible.
An external PCI compliant payment gateway handles all CC transactions.
We use regular Malware Scanning.
Your personal information is contained behind secured networks and is only accessible by a
 limited number of persons who have special access rights to such systems, and are required
 to keep the information confidential. In addition, all sensitive/credit information you supply
 is encrypted via Secure Socket Layer (SSL) technology.

We implement a variety of security measures when a user enters, submits, or accesses their
 information to maintain the safety of your personal information.

All transactions are processed through a gateway provider and are not stored or processed
 on our servers.

Do we use 'cookies'?

We do not use cookies for tracking purposes

You can choose to have your computer warn you each time a cookie is being sent, or you
can choose to turn off all cookies. You do this through your browser settings. Since browser
 is a little different, look at your browser's Help Menu to learn the correct way to modify your cookies.

If you turn cookies off .

Third-party disclosure

We do not sell, trade, or otherwise transfer to outside parties your Personally Identifiable Information.

Third-party links

Occasionally, at our discretion, we may include or offer third-party products or services on our website.
 These third-party sites have separate and independent privacy policies. We therefore have no
 responsibility or liability for the content and activities of these linked sites. Nonetheless, we seek
 to protect the integrity of our site and welcome any feedback about these sites.

Google

Google's advertising requirements can be summed up by Google's Advertising Principles. They are
 put in place to provide a positive experience for users
. https://support.google.com/adwordspolicy/answer/1316548?hl=en
We have not enabled Google AdSense on our site but we may do so in the future.

California Online Privacy Protection Act

CalOPPA is the first state law in the nation to require commercial websites and online services
to post a privacy policy. The law's reach stretches well beyond California to require any person
 or company in the United States (and conceivably the world) that operates websites collecting
Personally Identifiable Information from California consumers to post a conspicuous privacy
 policy on its website stating exactly the information being collected and those individuals
 or companies with whom it is being
 shared. - See more at:
 http://consumercal.org/california-online-privacy-protection-act-caloppa/#sthash.0FdRbT51.dpuf

According to CalOPPA, we agree to the following:
Users can visit our site anonymously.
Once this privacy policy is created, we will add a link to it on our home page or as a minimum,
 on the first significant page after entering our website.
Our Privacy Policy link includes the word 'Privacy' and can easily be found on the page specified above.

You will be notified of any Privacy Policy changes:
       On our Privacy Policy Page
Can change your personal information:
       By chatting with us or by sending us a support ticket

How does our site handle Do Not Track signals?
We honor Do Not Track signals and Do Not Track, plant cookies, or use advertising when
 a Do Not Track (DNT) browser mechanism is in place.

Does our site allow third-party behavioral tracking?
It's also important to note that we allow third-party behavioral tracking

COPPA (Children Online Privacy Protection Act)

When it comes to the collection of personal information from children under the age of 13 years old,
 the Children's Online Privacy Protection Act (COPPA) puts parents in control. The Federal Trade
 Commission, United States' consumer protection agency, enforces the COPPA Rule, which spells
 out what operators of websites and online services must do to protect children's privacy and safety online.
We market to
We do not collect information from children under 13
children under 13.
No

In order to remove your child's information please contact the following personnel:

We adhere to the following COPPA tenants:
       Parents can review, delete, manage or refuse with whom their child's information is shared
 through contacting us directly.
or contacting us directly.


Fair Information Practices

The Fair Information Practices Principles form the backbone of privacy law in th
e United States and the concepts they include have played a significant role in the development of data protection laws around the globe. Understanding the Fair Information Practice Principles and how they should be implemented is critical to comply with the various privacy laws that protect personal information.

In order to be in line with Fair Information Practices we will take the following responsive action, should a data breach occur:

We will notify the users via in-site notification
       Within 7 business days

We also agree to the Individual Redress Principle which requires that individuals have
the right to legally pursue enforceable rights against data collectors and processors who
 fail to adhere to the law. This principle requires not only that individuals have enforceable rights against data users, but also that individuals have recourse to courts or government agencies to investigate and/or prosecute non-compliance by data processors.

CAN SPAM Act

The CAN-SPAM Act is a law that sets the rules for commercial email, establishes
 requirements for commercial messages, gives recipients the right to have emails
stopped from being sent to them, and spells out tough penalties for violations.
We collect your email address in order to:


To be in accordance with CANSPAM, we agree to the following:

If at any time you would like to unsubscribe from receiving future emails, you can email us at
and we will promptly remove you from ALL correspondence.

Contacting Us

If there are any questions regarding this privacy policy, you may contact us using the information below.
Comment in our Blog
7000308757
or
You can use Our Contact Us Page

Comments

Popular posts from this blog

Decision Making || Python Programming tutorial 4

Welcome So today here you are going to learn decision making in python ( if, elif, if-else, nested if statements in python).  Decision-making statements in programming languages decides the direction of the flow of program execution. Decision-making statements available in python are  if, elif, if-else, nested if. Decision making in python if Statement if statement is the most simple decision-making statement. It is used to decide whether a certain statement or block of statements will be executed or not i.e if a certain condition is true then a block of statement is executed otherwise not. Syntax :     if   condition:             #Statements to execute  Here, conditions after evaluation will be either true or false. if statement accepts boolean values – if the value is true then it will execute the block of statements below it otherwise not. We can use  condition  with bracket ‘( )’ also. Flowchart:  Below we have given a small illustration

Taking input in Python || Comments in Python || Python programming tutorial 3

Welcome So today here you are going to learn how to take input from user in python. Taking input in Python Taking input in Python Developers often have a need to interact with users, either to get data or to provide some sort of result. Nowadays mostly programs use a dialog box as a way of taking input from users. While Python provides us with an inbuilt function to read the input from the keyboard. Note: Here we are talking about methods used in python 3.x input(): This function is used to take input from the users in python 3.x. When input() function executes program flow will be stopped until the user has given input.  The important thing which you have to keep in mind is, Whatever you enter as input, input() function convert it into a string . Even if you enter an integer value still input() function converts it into a string. You need to explicitly convert it into an integer in your code using typecasting. Run the program below and try it yourself.

Python Programming Tutorial 1 || Learn How To Download Python and Your First Hello World Program

Welcome So today here you are going to learn how to download python 3.x and Run your very first python program.