Skip to main content

Privacy Policy


Privacy Policy for Coder Blocks

At Coder Blocks, accessible from https://coderblocks1.blogspot.com/, one of our main priorities is the privacy of our visitors. This Privacy Policy document contains types of information that is collected and recorded by Coder Blocks and how we use it.

If you have additional questions or require more information about our Privacy Policy, do not hesitate to contact us.

This Privacy Policy applies only to our online activities and is valid for visitors to our website with regard to the information that they shared and/or collect in Coder Blocks. This policy is not applicable to any information collected offline or via channels other than this website. Our Privacy Policy was created with the help of the Free Privacy Policy Generator.

Consent

By using our website, you hereby consent to our Privacy Policy and agree to its terms.

Information we collect

The personal information that you are asked to provide, and the reasons why you are asked to provide it, will be made clear to you at the point we ask you to provide your personal information.

If you contact us directly, we may receive additional information about you such as your name, email address, phone number, the contents of the message and/or attachments you may send us, and any other information you may choose to provide.

When you register for an Account, we may ask for your contact information, including items such as name, company name, address, email address, and telephone number.

How we use your information

We use the information we collect in various ways, including:

  • Provide, operate, and maintain our website
  • Improve, personalize, and expand our website
  • Understand and analyze how you use our website
  • Develop new products, services, features, and functionality
  • Communicate with you, either directly or through one of our partners, including for customer service, to provide you with updates and other information relating to the website, and for marketing and promotional purposes
  • Send you emails
  • Find and prevent fraud

Log Files

Coder Blocks follows a standard procedure of using log files. These files log visitors when they visit websites. All hosting companies do this and are a part of hosting services' analytics. The information collected by log files includes internet protocol (IP) addresses, browser type, Internet Service Provider (ISP), date and time stamp, referring/exit pages, and possibly the number of clicks. These are not linked to any information that is personally identifiable. The purpose of the information is for analyzing trends, administering the site, tracking users' movement on the website, and gathering demographic information.

Cookies and Web Beacons

Like any other website, Coder Blocks uses 'cookies'. These cookies are used to store information including visitors' preferences, and the pages on the website that the visitor accessed or visited. The information is used to optimize the users' experience by customizing our web page content based on visitors browser type and/or other information.

Google DoubleClick DART Cookie

Google is one of the third-party vendors on our site. It also uses cookies, known as DART cookies, to serve ads to our site visitors based upon their visit to www.website.com and other sites on the internet. However, visitors may choose to decline the use of DART cookies by visiting the Google ad and content network Privacy Policy at the following URL – https://policies.google.com/technologies/ads

Advertising Partners Privacy Policies

You may consult this list to find the Privacy Policy for each of the advertising partners of Coder Blocks.

Third-party ad servers or ad networks uses technologies like cookies, JavaScript, or Web Beacons that are used in their respective advertisements and links that appear on Coder Blocks, which are sent directly to users' browser. They automatically receive your IP address when this occurs. These technologies are used to measure the effectiveness of their advertising campaigns and/or to personalize the advertising content that you see on websites that you visit.

Note that Coder Blocks has no access to or control over these cookies that are used by third-party advertisers.

Third-Party Privacy Policies

Coder Blocks's Privacy Policy does not apply to other advertisers or websites. Thus, we are advising you to consult the respective Privacy Policies of these third-party ad servers for more detailed information. It may include their practices and instructions about how to opt out of certain options.

You can choose to disable cookies through your individual browser options. To know more detailed information about cookie management with specific web browsers, it can be found on the browsers' respective websites.

CCPA Privacy Rights (Do Not Sell My Personal Information)

Under the CCPA, among other rights, California consumers have the right to:

Request that a business that collects a consumer's personal data disclose the categories and specific pieces of personal data that a business has collected about consumers.

Request that a business deletes any personal data about the consumer that a business has collected.

Request that a business that sells a consumer's personal data, not sell the consumer's personal data.

If you make a request, we have one month to respond to you. If you would like to exercise any of these rights, please contact us.

GDPR Data Protection Rights

We would like to make sure you are fully aware of all of your data protection rights. Every user is entitled to the following:

The right to access – You have the right to request copies of your personal data. We may charge you a small fee for this service.

The right to rectification – You have the right to request that we correct any information you believe is inaccurate. You also have the right to request that we complete the information you believe is incomplete.

The right to erasure – You have the right to request that we erase your personal data, under certain conditions.

The right to restrict processing – You have the right to request that we restrict the processing of your personal data, under certain conditions.

The right to object to processing – You have the right to object to our processing of your personal data, under certain conditions.

The right to data portability – You have the right to request that we transfer the data that we have collected to another organization, or directly to you, under certain conditions.

If you make a request, we have one month to respond to you. If you would like to exercise any of these rights, please contact us.

Children's Information

Another part of our priority is adding protection for children while using the internet. We encourage parents and guardians to observe, participate in, and/or monitor and guide their online activity.

Coder Blocks does not knowingly collect any Personal Identifiable Information from children under the age of 13. If you think that your child provided this kind of information on our website, we strongly encourage you to contact us immediately and we will do our best efforts to promptly remove such information from our records.

Comments

Popular posts from this blog

Programming Languages

     A programming language is a formal language that is used to communicate instructions to a computer. It is a set of rules, syntax, and structures that programmers use to create software, scripts, and other forms of computer programs. Different programming languages are designed for different purposes, such as web development, mobile app development, game development, artificial intelligence, and more. Some popular programming languages include: Python Java C++ JavaScript C# Ruby Swift Go Kotlin Each programming language has its own set of features and capabilities, and some are better suited to certain types of tasks than others. For example, Python is a popular language for scientific computing, data analysis, and machine learning. JavaScript is mainly used for creating interactive web applications. C++ is commonly used for developing large and complex systems, or for performance-critical applications like video games. As new technologies emerge, new programming lang...

JAVA FULL NOTES

  JAVA Written By G. Ravi Kumar Sarma where we use java Java is a versatile programming language that can be used in a variety of different contexts and for a wide range of applications. Some common areas where Java is used include: Web development: Java is a popular choice for developing web applications, both on the server side (using technologies such as Java Servlets and JavaServer Faces) and on the client side (using technologies such as Java applets and JavaFX). Enterprise applications: Java is widely used for developing enterprise-level applications, such as business systems and e-commerce platforms. The Java Enterprise Edition (Java EE) provides a set of libraries and components for building such applications. Mobile development: Java is the primary language used for developing Android mobile applications. The Java Micro Edition (Java ME) can be used for developing applications for other mobile platforms as well. Embedded systems: Java can be used for developing application...

Digital Clock JAVA script

const hourEl = document.getElementById("hour") const minuteEl = document.getElementById("minutes") const secondEl = document.getElementById("seconds") const ampmEl = document.getElementById("ampm") function updateClock(){     let h = new Date().getHours()     let m = new Date().getMinutes()     let s = new Date().getSeconds()     let ampm = "AMPM"     if(h > 12){         h = h- 12         ampm = "PM"     }     h = h<10 ? "0" + h : h;     m = m<10 ? "0" + m : m;     s = s<10 ? "0" + s : s;     hourEl.innerText = h;     minuteEl.innerText = m;     secondEl.innerText = s;     ampmEl, (innerText = ampm);     setTimeout(()=> {         updateClock()     }, 1000) } updateClock();