Skip to content

Commit a9cc2c5

Browse files
committed
docs: Add new journal entry for February 4, 2026, covering GitHub Codespaces and repository access management
1 parent 1daf732 commit a9cc2c5

File tree

2 files changed

+26
-1
lines changed

2 files changed

+26
-1
lines changed

journals/2026_02_04.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,18 @@
1-
- Downloaded [[OpenAI/Codex/Desktop/MacOS]]. I was having trouble with both it and [[OpenAI/Codex/IDE/Extension]] not being able to log in. Just a spinning circle.
1+
- Downloaded [[OpenAI/Codex/Desktop/MacOS]]. I was having trouble with both it and [[OpenAI/Codex/IDE/Extension]] not being able to log in. Just a spinning circle.
2+
- [[GitHub/Codespace]]s
3+
- [Managing access to other repositories within your codespace - GitHub Docs](https://docs.github.com/en/codespaces/managing-your-codespaces/managing-repository-access-for-your-codespaces#setting-additional-repository-permissions)
4+
- the [[tldr]] is that putting something like this in will let you read the repo. this is useful if you want to allow access to a [[Claude Code/Plugin/Marketplace]] inside a codespace.
5+
- ```json
6+
{
7+
"customizations": {
8+
"codespaces": {
9+
"repositories": {
10+
"my_org/my_repo": {
11+
"permissions": { "contents": "read" }
12+
}
13+
}
14+
}
15+
}
16+
}
17+
18+
```
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
- # How can I put a thick border around the focused pane in [[tmux]]?
2+
- It's difficult to figure out which pane has focus.
3+
- ## Answer
4+
-
5+
- ## My Notes
6+
-
7+
- ## Related
8+
-

0 commit comments

Comments
 (0)