Loading...
According to the guide, what is the command to create a Python virtual environment named `venv`?
Tutorial: 01-creating-a-project-base
Difficulty:
Easy
Tags:
python
django
virtual-environment
setup
commands
ID: django-easy-venv-creation
When you type a URL (like `www.example.com`) into your web browser and press Enter, what is the browser essentially doing first?
Tutorial: 01-creating-a-project-base
Difficulty:
Foundational
Tags:
web-basics
browser
http
url
pre-assessment
ID: django-pre-assessment-url-request-action
Considering commands for undoing changes like `git reset --hard <commit>` and `git revert <commit>`, what is a critical difference in how they affect project history, especially when dealing with commits already pushed and shared with others?
Tutorial: 01-first-contribution
Difficulty:
Hard
Tags:
git
commands
reset
revert
history
shared-branches
safety
ID: git-commands-reset-hard-vs-revert-history-safety
When calling a reusable workflow in GitHub Actions (`uses: ./.github/workflows/reusable.yml`), if the reusable workflow (`reusable.yml`) defines a matrix strategy, and the caller workflow *also* defines a matrix strategy, how do these strategies interact for the jobs within the reusable workflow?
Tutorial: 01-first-contribution
Difficulty:
Impossible
Tags:
github-actions
reusable-workflows
matrix-strategy
ci-cd
advanced-workflow
yaml
ID: github-actions-reusable-workflow-matrix-strategy-inheritance
In the context of a GitHub Pull Request, what is a key benefit of linking your PR to an existing issue (e.g., using 'Closes #123' in the PR description)?
Tutorial: 01-first-contribution
Difficulty:
Medium
Tags:
github
pull-request
issues
workflow
collaboration
automation
ID: github-workflow-purpose-of-linking-pr-to-issue