Explore >> Select a destination


You are here

mtlynch.io
| | github.com
8.7 parsecs away

Travel
| | Manage a user environment using Nix [maintainer=@rycee] - GitHub - nix-community/home-manager: Manage a user environment using Nix [maintainer=@rycee]
| | drakerossman.com
13.1 parsecs away

Travel
| | Home Manager is a tool to manage user-specific configuration on nix-enabled systems. By the end of this article you should have the understanding of why you should use it, as well as a system with Home Manager enabled.
| | davi.sh
21.2 parsecs away

Travel
| | Package management on macOS with nix-darwin
| | vxlabs.com
35.4 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...