Some notes and tools for reverse engineering / deobfuscating / unminifying obfuscated web app code.
Hello,
My SO is learning coding. I wanted a convenient way for her to consume the content from roadmap.sh.
I hope it can help someone else.
If you want your own roadmap:
- Fork or Copy-paste the md files you are interested in your own gist.
| { config, pkgs, lib, ... }: | |
| let | |
| user = "YOUR_USER"; | |
| password = "YOUR_PASSWORD"; | |
| sshPubKey = "YOUR_PUBLIC_SSH_KEY"; | |
| SSID = "YOUR_WIFI_SSID"; | |
| SSIDpassword = "YOUR_WIFI_PASSWORD"; | |
| hostname = "HOSTNAME_FOR_YOUR_PI"; | |
| k8sApiServerAddr = "https://IP_FOR_YOUR_CONTROL_NODE:6443"; |
| :: | |
| :: Reclaims Windows disk space in a "destructive" manner (can't uninstall service packs and updates afterwards, etc.). | |
| :: Use at your own risk. Useful for Windows installations in space-constrained environments, such as a small Boot Camp | |
| :: partition on a Mac. | |
| :: | |
| :: [IMPORTANT] It is strongly suggested to make a full-disk backup of your Windows partition before running this script, | |
| :: as you can't roll back service packs and updates afterwards. | |
| :: | |
| :: [IMPORTANT] Run this script as admin (required to run `Dism.exe` among other things). | |
| :: |
Reference: https://help.ubuntu.com/community/Oracle%20Instant%20Client
Tested on: Ubuntu 18.04, 20.04
-
Decide which version of the Oracle client to install
- Each version of the client supports certain versions of the database; for example, Oracle client 12.1 supports Oracle database 10.2 - 19c
- See here for more information: http://support.oracle.com/epmos/faces/DocumentDisplay?id=207303.1
-
Download the Oracle client packages
- Go here and download the desired RPM package(s): https://www.oracle.com/database/technologies/instant-client/downloads.html
Ventura docs for M2 Macs in this comment: https://gist.github.com/henrik242/65d26a7deca30bdb9828e183809690bd?permalink_comment_id=4555340#gistcomment-4555340
Old Monterey docs in this old revision: https://gist.github.com/henrik242/65d26a7deca30bdb9828e183809690bd/32c410e3a1de73539c76fa13ea5486569c4e0c5d
Solution for Sonoma: https://gist.github.com/sghiassy/a3927405cf4ffe81242f4ecb01c382ac
You can use ssacli (smart storage administrator command line interface) tool to manage any of supported HP Smart Array Controllers in your Proxmox host without need to reboot your server to access Smart Storage Administrator in BIOS. That means no host downtime when managing your storage.
CLI is not as convenient as GUI interface provided by BIOS or desktop utilities, but still allows you to fully manage your controller, physical disks and logical drives on the fly with no Proxmox host downtime.
ssacli replaces older hpssacli, but shares the same syntax and adds support for newer servers and controllers.
This concept is very much like .jar or .war archives in Java.
NOTE: The built
.pyzzipapp can run on both Python 2 & 3 but you can only build.pyzzipapps with Python 3.5 or later.
This plugin adds completion for the Kubernetes cluster manager, as well as some aliases for common kubectl commands.
To use it, add kubectl to the plugins array in your zshrc file:
plugins=(... kubectl)Sometimes, we have to access git repositories over SSL and the server only provides a self-signed certificate 🙈. Although there are ways to increase the trust level for the self-signed certificate (https://confluence.atlassian.com/fishkb/unable-to-clone-git-repository-due-to-self-signed-certificate-376838977.html, https://confluence.atlassian.com/bitbucketserverkb/resolving-ssl-self-signed-certificate-errors-806029899.html), my recommendation is to just ignore SSL verification alltogether.
Prepend GIT_SSL_NO_VERIFY=true before every git command run to skip SSL verification. This is particularly useful if you haven't checked out the repository yet.
Run git config http.sslVerify false to disable SSL verification if you're working with a checked out repository already.