What has happened this month? In the meantime, to read the previous report, go here. Projects https://daniele.tech/2025/09/how-to-create-a-tracking-click-rest-endpoint-in-django/ https://github.com/Mte90/double-turbo – Django boilerplate for SaaS Kernel Nuggets! We published various issues for https://kernelnuggets.com/. […]
Category: Python
How to create a Tracking Click Rest endpoint in Django
I found django-clickify but had some issues for my needs and after doing a PR I said, well it’s the case to implement on my own for Django Rest Framework. Explanation A url example: http://localhost:8000/track/?slug=CheckoutClick&id=23&value=notmandatory The value field is not mandatory, the slug is checked against the list in the view. For any request, it […]
My free software and open source activities of April 2025
Questo articolo è stato scritto oltre 1 years, il contenuto potrebbe essere datato.What has happened this month? In the meantime, to read the previous report, go here. Projects CodeAtCode/paypal-subscription-lib 0.1.2 – 2025/04/15 https://daniele.tech/2025/04/how-to-center-the-mouse-between-monitors-in-wayland/ Wedding Yes I am getting married in June so it is a busy period. […]
A tiny library in Python for Paypal Subscriptions
Questo articolo è stato scritto oltre 1 years, il contenuto potrebbe essere datato.As the blog post tile says yes now there is a library for that! https://github.com/CodeAtCode/paypal-subscription-lib/ For a customer I developed it as there wasn’t anything for that and we decide to open source it, as we are using and improving as we are […]
How to import Fixture in Django with Sqlite with Foreign Key disabled
Questo articolo è stato scritto oltre 1 years, il contenuto potrebbe essere datato.You have various fixtures but maybe they are referenced between each other so they in the import don’t exists. This is a pain but with a custom django command to put in `your-app/management/commands` you can disable that check in Sqlite and proceed! This […]
My free software and open source activities of January 2024
New year usual opensource stuff
NeoVim LSP and DAP for Python (and Django)
It’s time for a step by step tutorial on NeoVim and Python!
My free software and open source activities of October 2023
Questo articolo è stato scritto oltre 1 years, il contenuto potrebbe essere datato.What has happened this month? In the meantime, to read the previous report, go here. My projects https://github.com/Mte90/GH-License/releases/tag/0.3.0 https://daniele.tech/2023/10/how-to-redirect-wordpress-images-to-a-different-domain/ https://daniele.tech/2023/10/django-packages-that-you-cant-live-without-from-reddit/ Italian Linux Society Introduced https://forum.linux.it/t/locandina-quando-cucino/1083/ and organized the new Linux Day (we are uploading the video online). […]
Django packages that you can’t live without it (from Reddit)
A clickable list with some info of various packages that now you will want to use it!
How to do a Django cache decorator that exclude by URL parameters
Questo articolo è stato scritto oltre 1 years, il contenuto potrebbe essere datato.After asking on Reddit, I started digging on internet looking other projects with custom cache decorator and mixing various I was able to achieve this. “””Custom cache decorator.””” from django.http import HttpResponse from django.views.decorators.cache import cache_page as original_cache_page from datetime import datetime from […]