In the first part, we created a project and connected Django-Rest-Framework, all the code can be viewed here. In the second part I will write how to I watch how endpoints work. For example, let's take the endpoint for creating a user profile. # gcode_server/users/urls.py path('v1/registration', Registration.as_view(), n...
Read More →In this article I will explain how to create an application with Django-Rest-Framework and Vue.js. I will not describe step by step, but will outline only the main points that you need to know about. You can see the entire project code here. Django application will include a user app with a custom user model. Create a Django project...
Read More →Intel® has released a new platform for heterogeneous programming, that called OneAPI: https://spec.oneapi.com/versions/latest/introduction.html Using this platform, it's possible perform calculations on both CPU and GPU or FPGA. To be able to use the platform, need to install open source Intel® compute-runtime: https://...
Read More →