Skip to content

Commit

Permalink
Quartz sync: Sep 14, 2024, 2:17 PM
Browse files Browse the repository at this point in the history
  • Loading branch information
nitaking committed Sep 14, 2024
1 parent dd3efd8 commit cb3f5fe
Show file tree
Hide file tree
Showing 3 changed files with 67 additions and 0 deletions.
2 changes: 2 additions & 0 deletions content/Digital Garden.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- [Networked Thought](https://jzhao.xyz/posts/networked-thought)
-
10 changes: 10 additions & 0 deletions content/git.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
## Refresh change to .gitignore

```zsh
git rm -r --cached .
git add .
```

### Refs
- [How to refresh gitignore – Sigala's Blog](https://sigalambigha.home.blog/2020/03/11/how-to-refresh-gitignore/)
-
55 changes: 55 additions & 0 deletions content/mise.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
# Migrate `asdf` to mise

Read [Getting Started | mise-en-place](https://mise.jdx.dev/getting-started.html)

1) Install `mise` by Homebrew: [Getting Started | mise-en-place](https://mise.jdx.dev/getting-started.html#homebrew)
```shell
brew install mise
```

2) Activate for zsh
Activate according to the docs.
```zsh
echo 'eval "$(~/.local/bin/mise activate zsh)"' >> ~/.zshrc
```

3) mise install
```zsh
mise install
```

```
$ mise use --global node@20 $ node -v v20.x.x
```

## Note: check asdf list

```
# asdf list
go-sdk
No versions installed
golang
1.18.4
*1.20
java
corretto-21.0.1.12.1
*zulu-jre-javafx-11.56.19
nodejs
14.18.1
14.19.2
16.10.0
16.15.1
16.17.1
18.1.0
18.18.2
python
No versions installed
ruby
No versions installed
rust
1.50.0
1.60.0
1.64.0
yarn
No versions installed
```

0 comments on commit cb3f5fe

Please sign in to comment.