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
{"name":"Puffer","settings":"{\"settings\":\"{\\n \\\"workbench.colorTheme\\\": \\\"dark-blue\\\",\\n \\\"git.enableSmartCommit\\\": true,\\n \\\"git.confirmSync\\\": false,\\n \\\"editor.minimap.enabled\\\": false,\\n \\\"cSpell.userWords\\\": [\\n \\\"jailbreaking\\\",\\n \\\"reversepwn\\\"\\n ],\\n \\\"git.autofetch\\\": true,\\n \\\"security.workspace.trust.untrustedFiles\\\": \\\"open\\\",\\n \\\"explorer.confirmDelete\\\": false,\\n \\\"sshfs.configs\\\": [\\n {\\n \\\"name\\\": \\\"sideloadstore\\\",\\n \\\"host\\\": \\\"sideloadstore.me\\\",\\n \\\"username\\\": \\\"root\\\",\\n \\\"privateKeyPath\\\": \\\"/Users/kevin/ssh_key\\\",\\n \\\"label\\\": \\\"Sideload Store\\\",\\n \\\"passphrase\\\": true\\n }\\n ],\\n \\\"explorer.confirmDragAndDrop\\\": false,\\n \\\"[php]\\\": {\\n \\\"editor.defaultFormatter\\\": \\\"DEVSENSE.phptools-vscode\\\"\\n },\\n \\\" |
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
let displayType = 'flex'; | |
function switchPage(page) { | |
const pages = document.querySelectorAll('.page-container'); | |
for (let i = 0; i < pages.length; i++) { | |
if (pages[i].getAttribute('page') === page) { | |
pages[i].style.display = displayType; | |
} else { | |
pages[i].style.display = 'none'; | |
} |
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
#!/bin/bash | |
# OpenSSL version to install | |
openssl_version="1.1.1t" | |
# OpenSSL source URL | |
openssl_url="https://www.openssl.org/source/openssl-$openssl_version.tar.gz" | |
# OpenSSL source tarball name | |
openssl_tar="openssl-$openssl_version.tar.gz" |
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
#!/bin/bash | |
zsign_url="https://github.com/zhlynn/zsign.git" | |
clone_zsign() { | |
output=$(git clone "$zsign_url" zsign 2>&1) | |
lines=$(echo "$output" | wc -l) | |
count=0 | |
while IFS= read -r line; do |
NewerOlder