Compare commits

..

7 Commits

Author SHA1 Message Date
dependabot[bot]
8c70a3d159 Bump next from 15.5.14 to 15.5.15
Bumps [next](https://github.com/vercel/next.js) from 15.5.14 to 15.5.15.
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](https://github.com/vercel/next.js/compare/v15.5.14...v15.5.15)

---
updated-dependencies:
- dependency-name: next
  dependency-version: 15.5.15
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-04-14 00:05:27 +00:00
558d2c3e30 update deps & add cleanup of local brnaches 2026-04-05 11:14:53 +02:00
fc5e57305e Merge pull request #8 from cupcakearmy/dependabot/npm_and_yarn/mdast-util-to-hast-13.2.1
Bump mdast-util-to-hast from 13.2.0 to 13.2.1
2025-12-07 02:05:35 +01:00
2ef7a55e0c Merge pull request #9 from cupcakearmy/dependabot/npm_and_yarn/next-15.5.7
Bump next from 15.5.2 to 15.5.7
2025-12-07 02:05:25 +01:00
dependabot[bot]
c92d6bdd49 Bump next from 15.5.2 to 15.5.7
Bumps [next](https://github.com/vercel/next.js) from 15.5.2 to 15.5.7.
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](https://github.com/vercel/next.js/compare/v15.5.2...v15.5.7)

---
updated-dependencies:
- dependency-name: next
  dependency-version: 15.5.7
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-12-03 19:11:58 +00:00
dependabot[bot]
8df5ecc303 Bump mdast-util-to-hast from 13.2.0 to 13.2.1
Bumps [mdast-util-to-hast](https://github.com/syntax-tree/mdast-util-to-hast) from 13.2.0 to 13.2.1.
- [Release notes](https://github.com/syntax-tree/mdast-util-to-hast/releases)
- [Commits](https://github.com/syntax-tree/mdast-util-to-hast/compare/13.2.0...13.2.1)

---
updated-dependencies:
- dependency-name: mdast-util-to-hast
  dependency-version: 13.2.1
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-12-02 03:50:41 +00:00
b91dc261d1 remove pdf passsowrd 2025-10-06 10:28:08 +02:00
5 changed files with 815 additions and 868 deletions

View File

@@ -0,0 +1,17 @@
---
tags:
- cli
- qpdf
- pdf
- decrypt
---
# Remove password from PDFs
```bash
# Install qpdf
nix-shell -p qpdf
# Remove password
qpdf --password=YOUR_PASSWORD --decrypt input.pdf output.pdf
```

View File

@@ -0,0 +1,28 @@
---
tags:
- git
- branch
- clean
- delete
---
# Clean up local branches
## Delete all local branches that are already merged.
This command is useful if you have a buch of local branches that you don't need anymore.
```bash
git branch --merged | grep -v \* | xargs git branch -D
```
[Original SO Link](https://stackoverflow.com/a/10610669)
## Delete all other local branches
This command will delete all local branches except the one you are currently on.
```bash
git branch | grep -v "$(git rev-parse --abbrev-ref HEAD)" | xargs git branch -D
```
[Source](https://dev.to/vineethtrv/how-to-delete-all-local-git-branches-except-the-current-one-5dcb)

View File

@@ -1,20 +0,0 @@
---
tags:
- git
- branch
- clean
- delete
---
# Delete all local branches that are already merged.
This command is useful if you have a buch of local branches that you don't need anymore.
```bash
git branch --merged | grep -v \* | xargs git branch -D
```
[Original SO Link](https://stackoverflow.com/a/10610669)

View File

@@ -6,11 +6,11 @@
"postbuild": "pagefind --site .next/server/app --output-path public/_pagefind"
},
"dependencies": {
"next": "^15.5.2",
"nextra": "^4.4.0",
"nextra-theme-docs": "^4.4.0",
"react": "^19.1.1",
"react-dom": "^19.1.1"
"next": "^15.5.15",
"nextra": "^4.6.1",
"nextra-theme-docs": "^4.6.1",
"react": "^19.2.4",
"react-dom": "^19.2.4"
},
"packageManager": "pnpm@10.15.1",
"devDependencies": {

1608
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff