Explore >> Select a destination


You are here

yasoob.me
| | keepsimple.dev
2.0 parsecs away

Travel
| | Learn how to build a board list page for your Trello clone! This tutorial covers creating boards, using Alpine.js for interactivity.
| | bartlomiejmika.com
0.7 parsecs away

Travel
| | Forget Axios or any other third-party JavaScript library pertaining to API calling, the purpose of this article is to explain how to utilize the basic XmlHttpRequest with your Django project.
| | geoff.tuxpup.com
1.5 parsecs away

Travel
| | How I Start: Django, Tailwind, HTMX (part 1) I wanted to try out some "modern" front-end development for a while, and I did. FastAPI is great. So is Svelte. But even though I found creating APIs that way to be a breeze, building a whole site that way felt much slower and heavier than using traditional server rendering. So I decided to give django a fair shake for a while, and I'm glad I did.
| | vxlabs.com
20.0 parsecs away

Travel
| In order to add a GiST index on a Postgres database that could be used to accelerate trigram matches using the pg_trgm module and the special gist_trgm_ops operator, I had to code up a special Django Index Django will hopefully soon support custom index operators, but if you need the functionality right now, this example will do the trick. The special GiST index class looks like this: from django.contrib.postgres.indexes import GistIndex class GistIndexTrgrmOps(GistIndex): def create_sql(self, model, sch...