Jeroen Peters

I'm a developer from The Netherlands. I work mainly with PHP (native, but also Laravel and WordPress) and Python (native and Django). I also like JavaScript and CSS.

Privacy Policy

View IP address extension

We respect the privacy of all users of our extension and comply with the User Data Privacy policy for the Browser Extensions Store. By using View IP address or our other extensions for Chrome, you consent to this privacy policy.

How do we process data?

DO WE COLLECT PERSONAL OR SENSITIVE DATA?

No. We do not collect and do not store your personal or sensitive data, including personally identifiable information, browsing history, cookies, cached items, form data, web browsing activity, financial and payment information, health information, authentication information, website content and resources, etc.

DO WE TRANSMIT PERSONAL OR SENSITIVE DATA VIA INSECURE NETWORKS?

No. We do not transmit personal or sensitive data (including personally identifiable information, browsing history, cookies, cached items, form data, web browsing activity, financial and payment information, health information, authentication information, website content and resources, etc.) to our servers or to 3rd parties via secure or insecure network. We do not transmit such information at all.

DO WE DISCLOSE PERSONAL OR SENSITIVE DATA TO THIRD PARTIES?

No. We do not sell, trade, collect, store, transmit or otherwise transfer to 3rd parties your personal or sensitive data, including personally identifiable information, browsing history, cookies, cached items, form data, web browsing activity, financial and payment information, health information, authentication information, website content and resources, etc. Your personal or sensitive data remains confidential.

The only data you will see is your IP address, based on your public IP address, this is identified by a webservice.

DO WE COLLECT NON-PERSONALLY IDENTIFIABLE INFORMATION?

No. We do not collect any non-personally identifiable information.

CHANGES TO OUR PRIVACY POLICY

If we decide to change our privacy policy, we will update the Privacy Policy modification date below.

This policy was last modified on August 31, 2020

CONTACT US

If there are any questions regarding this privacy policy you may contact us by using this form.

Run your Selenium tests in the cloud with Bitbucket Pipelines

Bitbucket was known for it’s great Mercurial support. They’re dropping it as I write, but they are also great for having “free” pipelines (50 minutes a month).

Pipelines are a great way to automate things after you push your code. One of these example is to automatically run unit-test, code analysers and/or unit tests.

A great way to also test the behaviour and functionality of a webapplication is by testing it with Selenium. Selenium is a framework which executes tasks you would normally do yourself. Open the site, navigate, fill in a form, click the submit button, check if the confirmation message is shown, make sure the images are not broken, etc… This is done with the Selenium Webdriver.

Continue reading…