Skip to content

Commit 67f8cb6

Browse files
committed
Small content update
1 parent 5846022 commit 67f8cb6

3 files changed

Lines changed: 26 additions & 6 deletions

File tree

package-lock.json

Lines changed: 11 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/routes/articles/notes-linux/+page.svx

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,20 @@ export EDITOR=micro
2929
alias ai="aichat -e"
3030
alias l="ls -la"
3131
alias e="micro"
32+
fixperms() {
33+
dir="$1"
34+
user="$2"
35+
group="$3"
36+
37+
[ -d "$dir" ] || {
38+
echo "usage: fixperms <dir> <user> <group>" >&2
39+
return 1
40+
}
41+
42+
chown -R "$user" "$dir" &&
43+
chgrp -R "$group" "$dir" &&
44+
chmod -R u+rwx,g+rwx,o-rwx "$dir"
45+
}
3246
EOF
3347
mkdir -p ~/.config/aichat/
3448
cat << EOF > ~/.config/aichat/config.yaml

src/routes/resume/profiles/a.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"experience": {
33
"cves": [4,5,6,7,8],
4-
"impetus": [3,4],
4+
"impetus": [0,3,4,5],
55
"lcatdb": [2,3,6],
66
"vrc": [4],
77
"nx": null,

0 commit comments

Comments
 (0)