Explore >> Select a destination


You are here

jinyuz.dev
| | vxlabs.com
6.8 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...
| | www.kencochrane.com
6.8 parsecs away

Travel
| |
| | www.laceyhenschel.com
4.6 parsecs away

Travel
| | This week I needed to manipulate the privacy of a Wagtail page programmatically. The Wagtail docs show you how to edit page privacy in the admin UI, but it doesn't peek behind the curtain to show you the code. The example here is a result of my Google searching.
| | keepsimple.dev
50.3 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.