Skip to content

Instantly share code, notes, and snippets.

View bogdanscarwash's full-sized avatar
🎯
Focusing

Percy R. bogdanscarwash

🎯
Focusing
  • Kansas
View GitHub Profile
# The name of the pipeline, including the date and a revision number
name: copa_$(Date:yyyyMMdd)_$(Rev:r)
# This pipeline is not triggered automatically by any event
trigger: none
# This pipeline is not triggered automatically by any pull request
pr: none
# Parameters for the pipeline
@mattirish
mattirish / conda_symlink.md
Last active June 24, 2025 12:13
Easily move a conda environment to a different drive on Windows without touching with conda
@gitaarik
gitaarik / git_submodules.md
Last active July 3, 2025 14:25
Git Submodules basic explanation

Git Submodules basic explanation

Why submodules?

In Git you can add a submodule to a repository. This is basically a repository embedded in your main repository. This can be very useful. A couple of usecases of submodules:

  • Separate big codebases into multiple repositories.