How do I dropdown?
This is how you dropdown.
<details> <summary>How do I dropdown?</summary> <br> This is how you dropdown.
# related issue/fix | |
https://github.com/oracle/visualvm/issues/152 | |
https://stackoverflow.com/questions/76523553/how-to-make-usr-libexec-java-home-find-jdk-installed-using-sdkman-on-macos | |
# ISSUE the gui opens and shutdown immediately | |
brew install --cask visualvm | |
# verify issue | |
/usr/libexec/java_home | |
The operation couldn’t be completed. Unable to locate a Java Runtime. |
# deletes all containers including its volumes use | |
docker rm -vf $(docker ps -aq) | |
# delete dangling images <none> | |
docker images -q -f dangling=true | xargs --no-run-if-empty docker rmi -f | |
# deletes all the images (remove all the containers first) | |
docker rmi -f $(docker images -aq) | |
# removes all unused containers, volumes, networks and images |
<details> <summary>How do I dropdown?</summary> <br> This is how you dropdown.
Note: I have moved this list to a proper repository. I'll leave this gist up, but it won't be updated. To submit an idea, open a PR on the repo.
Note that I have not tried all of these personally, and cannot and do not vouch for all of the tools listed here. In most cases, the descriptions here are copied directly from their code repos. Some may have been abandoned. Investigate before installing/using.
The ones I use regularly include: bat, dust, fd, fend, hyperfine, miniserve, ripgrep, just, cargo-audit and cargo-wipe.
Sometimes I want to make a screencapture of a websites behaviour.
In Chrome, I am quite happy doing this with the [Awesome Screenshot: Screen Video Recorder][1] extension.
Besides screenshots, the extension offers the ability to make a recording. (Limited to 30 seconds in the free version).
The recording can be uploaded to Youtube or Google Drive. It can also be downloaded as WebM file.
// A small SSH daemon providing bash sessions | |
// | |
// Server: | |
// cd my/new/dir/ | |
// #generate server keypair | |
// ssh-keygen -t rsa | |
// go get -v . | |
// go run sshd.go | |
// | |
// Client: |
// A small SSH daemon providing bash sessions | |
// | |
// Server: | |
// cd my/new/dir/ | |
// #generate server keypair | |
// ssh-keygen -t rsa | |
// go get -v . | |
// go run sshd.go | |
// | |
// Client: |
uuidgen | sha256sum | base64 | head -c 32 ; echo |
git checkout <COMMIT_SHA> | |
GIT_COMMITTER_DATE="$(git show --format=%aD | head -1)" git tag vX.Y.Z | |
git push origin --tags | |
git checkout main |
First off, I'm not a docker expert by any means. I just wanted my CI pipeline to work and went down the habbit hole. The solution I present can cause some security implications, be aware.
The problem is caused by a seccomp policy and a glibc >= 2.34 update that returns an EPERM (operation not permitted) insted of ENOSYS (function not implemented).