Hotfix release available: 2026-07-14b "Mort".
upgrade now! [57.2] (what's this?)
onny:notizen
Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| onny:notizen [2026/08/11 11:13] – [debian] fdc9:281f:4d7:9ee9::1 | onny:notizen [2026/08/31 15:04] (current) – [date] fdc9:281f:4d7:9ee9::1 | ||
|---|---|---|---|
| Line 141: | Line 141: | ||
| < | < | ||
| fd . | xargs -I {} rm " | fd . | xargs -I {} rm " | ||
| + | </ | ||
| + | ===== date ===== | ||
| + | |||
| + | convert date to unix timestamp | ||
| + | |||
| + | <code bash> | ||
| + | date -d " | ||
| + | </ | ||
| + | |||
| + | convert unix timestamp to datetime | ||
| + | |||
| + | <code bash> | ||
| + | date -d @1254330900 ' | ||
| </ | </ | ||
| ===== rsync ===== | ===== rsync ===== | ||
| Line 578: | Line 591: | ||
| git rebase upstream/ | git rebase upstream/ | ||
| </ | </ | ||
| + | |||
| squash commits | squash commits | ||
| + | |||
| <code bash> | <code bash> | ||
| git rebase -i upstream/ | git rebase -i upstream/ | ||
| # < choose squash for all of your commits, except the first one > | # < choose squash for all of your commits, except the first one > | ||
| # < Edit the commit message to make sense, and describe all your changes > | # < Edit the commit message to make sense, and describe all your changes > | ||
| - | git push origin omgpull -f | + | # or |
| - | </ | + | |
| - | alternatively | + | |
| - | <code bash> | + | |
| git rebase -i HEAD~3 | git rebase -i HEAD~3 | ||
| - | </ | + | # or (replace main with origin branch) |
| - | alternatively | + | git rebase -i $(git merge-base HEAD main) |
| - | <code bash> | + | # or |
| git merge --squash apple-a9 | git merge --squash apple-a9 | ||
| </ | </ | ||
| + | |||
| rerun tests with empty commit | rerun tests with empty commit | ||
| <code bash> | <code bash> | ||
| Line 719: | Line 732: | ||
| DONE | DONE | ||
| </ | </ | ||
| - | ===== Android ===== | + | |
| - | installed apps | + | |
| - | < | + | |
| - | antennapod davx5 dbnavigator fdroid fennec icsx5 jellyfin keepassdx libreoffice vlc nextcloud quicklyric radiodroid signal soundhound spotify tasks documentviewer fdroid-privilegedextension | + | |
| - | </ | + | |
| - | configurations | + | |
| - | * antennpod subscriptions | + | |
| - | * fdroid pi repo | + | |
| - | * davx calendar & contacts | + | |
| - | * jellyfin config | + | |
| - | * nextcloud config | + | |
| - | * signal backup | + | |
| - | * radiodroid station list | + | |
| - | * spotify config | + | |
| - | flash recovery | + | |
| - | <code bash> | + | |
| - | heimdall flash --RECOVERY twrp-3.2.1-1-serranoltexx.img | + | |
| - | </ | + | |
| - | anbox | + | |
| - | <code bash> | + | |
| - | pacman -S anbox-git anbox-image anbox-modules-dkms-git | + | |
| - | modprobe binder_linux ashmem_linux | + | |
| - | systemctl restart anbox-container-manager | + | |
| - | systemctl --user restart anbox-session-manager | + | |
| - | anbox launch --package=org.anbox.appmgr --component=org.anbox.appmgr.AppViewActivity | + | |
| - | wget " | + | |
| - | adb install FDroid.apk | + | |
| - | </ | + | |
| ====== davdroid ====== | ====== davdroid ====== | ||
| < | < | ||
| Line 885: | Line 871: | ||
| # Takes away the ability to create or manage any kind of namespace | # Takes away the ability to create or manage any kind of namespace | ||
| RestrictNamespaces=true | RestrictNamespaces=true | ||
| + | </ | ||
| + | ===== nix ===== | ||
| + | |||
| + | nix repl usage | ||
| + | |||
| + | <code bash> | ||
| + | nix repl --expr 'let eval = import < | ||
| + | :p options.services.nextcloud.settings | ||
| + | </ | ||
| + | |||
| + | < | ||
| + | nix repl nixpkgs | ||
| + | > legacyPackages.x86_64-linux.hello | ||
| + | </ | ||
| + | |||
| + | run tests interactive | ||
| + | |||
| + | <code bash> | ||
| + | nix build -L .# | ||
| + | ./ | ||
| + | start_all() | ||
| </ | </ | ||
| ===== nixos ===== | ===== nixos ===== | ||
| Line 1044: | Line 1051: | ||
| <code bash> | <code bash> | ||
| - | git clone https:// | ||
| - | cd nixpkgs | ||
| nixpkgs-review pr 98044 | nixpkgs-review pr 98044 | ||
| + | nixpkgs-review wip --build-args=" | ||
| </ | </ | ||
| Line 1076: | Line 1082: | ||
| ''; | ''; | ||
| }); | }); | ||
| + | </ | ||
| + | |||
| + | override only source hash | ||
| + | |||
| + | < | ||
| + | django-oauth-toolkit = super.django-oauth-toolkit.overrideAttrs (old: { | ||
| + | version = " | ||
| + | |||
| + | src = old.src.override { | ||
| + | hash = " | ||
| + | }; | ||
| + | }); | ||
| </ | </ | ||
| Line 1123: | Line 1141: | ||
| nix-update gelly | nix-update gelly | ||
| nix-update stamp --version=branch=main | nix-update stamp --version=branch=main | ||
| + | nix-update --use-update-script python3Packages.django-filingcabinet | ||
| </ | </ | ||
| ==== packaging package ==== | ==== packaging package ==== | ||
| Line 1222: | Line 1241: | ||
| </ | </ | ||
| + | ===== python ===== | ||
| + | |||
| + | python relax dependency | ||
| + | |||
| + | < | ||
| + | pythonRelaxDeps = [ " | ||
| + | </ | ||
| ==== packaging module ==== | ==== packaging module ==== | ||
| Line 1975: | Line 2001: | ||
| md5sum -t recovery.tar >> recovery.tar | md5sum -t recovery.tar >> recovery.tar | ||
| mv recovery.tar recovery.tar.md5 | mv recovery.tar recovery.tar.md5 | ||
| + | </ | ||
| + | |||
| + | apk list installed files | ||
| + | |||
| + | < | ||
| + | apk info -L calls-systemd | ||
| </ | </ | ||
| ===== parted ===== | ===== parted ===== | ||
| Line 2137: | Line 2169: | ||
| < | < | ||
| % | % | ||
| + | </ | ||
| + | |||
| + | buffer close | ||
| + | |||
| + | < | ||
| + | :bc | ||
| </ | </ | ||
| ===== traceroute ===== | ===== traceroute ===== | ||
onny/notizen.1786446802.txt.gz · Last modified: by fdc9:281f:4d7:9ee9::1
