Explore >> Select a destination


You are here

nalanj.dev
| | willhaley.com
11.2 parsecs away

Travel
| | This article outlines a process for loading a custom git configuration when in a specific directory tree. This sets up a sort of local git configuration per-directory without needing to alter the global .gitconfig file or any other global git or ssh configurations. See here an example .envrc file. This file would be used by direnv to set per-directory env variables with the direnv shell helper. PATH=$PATH:$(pwd)/bin export GIT_AUTHOR_EMAIL="Email to use for this organization" export GIT_AUTHOR_NAME="Name to use for this organization" export GIT_COMMITTER_EMAIL="Email to use for this organization" export GIT_COMMITTER_NAME="Name to use for this organization" export GIT_SSH="my-special-ssh-command-for-this-organization.sh" Setting GIT_SSH allows for customizing the ssh command and identity used for this directory.
| | mmazzarolo.com
5.0 parsecs away

Travel
| | A robots.txt file tells search engine crawlers which pages or files the crawler can or can't request from your site. Next.js does not generate a robots.txt out-of-the-box, so here are a couple of options on how to create it.
| | www.binovarghese.com
7.0 parsecs away

Travel
| | A module is a file, to make import/export work, browsers need
| | apeatling.com
54.6 parsecs away

Travel
| This post is the first of five parts of: A simple guide to local LLM fine-tuning on a Mac with MLX. If you're starting on this journey from scratch, you'll...