rm -rf ~/Library/Group\ Containers/group.com.docker
rm -rf ~/Library/Containers/com.docker.docker
rm -rf ~/.docker
π
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "guidanceHoldStillText": "Hold still for a few seconds...", | |
| "guidanceLookStraightText": "Look straight into the camera...", | |
| "guidanceMoveBackText": "Move back...", | |
| "guidanceMoveForwardText": "Move forward...", | |
| "guidanceMoveToCenterText": "Move to the center...", | |
| "guidanceNoFaceDetectedText": "Waiting for face to be detected...", | |
| "guidanceVisibilityTooLowText": "XXX", | |
| "guidanceNotStableText": "Please hold still...", | |
| "guidanceManualCaptureText": "Position your face in the circle and click to capture.", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "uploadOrCaptureScreen.captureWithCameraText": "Capture with Camera", | |
| "uploadOrCaptureScreen.orText": "OR", | |
| "uploadOrCaptureScreen.uploadFromStorageText": "Upload from Storage", | |
| "uploadOrCaptureScreen.selectIdTypeText": "Select ID Type", | |
| "uploadOrCaptureScreen.passportText": "Passport", | |
| "uploadOrCaptureScreen.idCardText": "ID Card", | |
| "uploadOrCaptureScreen.idDocumentUploadScreen.uploadIdFrontText": "Upload ID Front", | |
| "uploadOrCaptureScreen.idDocumentUploadScreen.uploadIdBackText": "Upload ID Back", | |
| "uploadOrCaptureScreen.idDocumentUploadScreen.uploadIdBackHelpTextIfSinglePageAllowed": "Upload the back of the ID if it is not included in the front image", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # $HOME/.gitignore_global | |
| *~ | |
| .DS_Store | |
| # Ignore local preferrences | |
| **/duke-local/ |
I want to quit the VPN
launchctl unload /Library/LaunchAgents/com.paloaltonetworks.gp.pangp*I want to use the VPN again
launchctl load /Library/LaunchAgents/com.paloaltonetworks.gp.pangp*HTTP push, often referred to as server push, is a technique where the server sends data to the client without the client having to request it. This is typically used in real-time applications like live notifications, chat applications, and live updates. There are several ways to implement HTTP push, such as using WebSockets, Server-Sent Events (SSE), and HTTP/2 Push.
Here's an overview of these methods:
WebSockets provide a full-duplex communication channel over a single, long-lived connection. This is suitable for applications that require continuous data exchange.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM cgr.dev/chainguard/bash:latest as permify-runner | |
| WORKDIR /app | |
| COPY --from=ghcr.io/grpc-ecosystem/grpc-health-probe:v0.4.25 /ko-app/grpc-health-probe /usr/local/bin/grpc_health_probe | |
| COPY --from=ghcr.io/permify/permify:v0.9.0 /usr/local/bin/permify /usr/local/bin/permify | |
| COPY --from=cgr.dev/chainguard/curl /usr/bin/curl /usr/bin/curl | |
| COPY apps/permify/configs configs | |
| COPY apps/permify/scripts scripts |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import getPermifyClient from "./clients/permify"; | |
| getPermifyClient() | |
| .tenancy.list({ pageSize: 10 }) | |
| .then((response) => { | |
| console.log(response); | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "configurations": [ | |
| { | |
| "type": "node", | |
| "request": "launch", | |
| "name": "Launch Current TS file", | |
| "runtimeArgs": ["-r", "ts-node/register"], | |
| "args": ["${file}"] | |
| }, | |
| { |
NewerOlder