How to Keep Chrome Browser Open When Using Selenium
With Selenium, we can automate the tests of our web applications. We prepare a test case to test our web application. This test scenario can take several steps. While conducting our tests, the test may not be able to pass
10 Websites That Web Developers Should Know
In this post, I introduce websites that will make the life of software developers easier. bitnami.com Bitnami is a website where we can easily and smoothly download open source applications to our computer. ninite.com When we format our computer, the
How to Add a Virtual Environment to Jupyter Notebook or Jupyter Lab?
Jupyter Notebook uses the IPython kernel developed for jupyter. If we want to add the virtual environment we created on our computer to the Jupyter notebook, we need to do extra operations for this. First we need to activate our
Load Testing Web Applications and Web Services with LOCUST
In this post, I will explain LOCUST, a very useful python library. When we have website or web service, we want the best user experience. For this, we want our website and services to have low response times and not
Fetch Api Usage in Javascript
The Fetch API interface allows web browser to make HTTP requests to web servers. It works asynchronously. JQuery.ajax() and XMLHttpRequest can be used instead of the Fetch API. But fetch api is both easier to use and comes with window object. If
Data Visualisation on Top of Choropleth Map Using Python Folium
While analyzing data, we can enrich our visuals by using Maps along with our charts. We will see how we can visualize our data on Top of Choropleth Map using the Folium package in Python. The Folium package uses the
Adding Extra Fields to the Django User Model Using a One-to-One Relationship
In the ready-made model structure that comes in the Django Framework, if new fields are needed in the User model, we can solve it in two ways. One of them is extending the AbstractBaseUser model. The second is to create
Copy the Content from the Original Post When Using WordPress Polylang Plugin
If we have a website built with WordPress and we want to add multi-language support to it, one of the best free plugins we can use in WordPress is Polyang. When using the free version of the Polylang plugin, we
Angular DataTables Installation
We will integrate DataTables to our Angular project. I will explain about how we can integrate it into our project easily and without difficulty. Documentation website of DataTables, which we will integrate; https://l-lin.github.io/angular-datatables/#/welcome Due to some lack of the documentation
HOW IS DASH PLOTLY DATA VISUALIZATION FRAMEWORK USED IN DJANGO?
Dash is open source web application framework to create interactive web-based visualizations. It was developed based on Flask, Plotly.js, and React.js libraries. We may also want to use the power of this web framework in Django projects. I will explain