echo 'user ALL=(ALL) NOPASSWD: ALL' | sudo tee /etc/sudoers.d/user
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 * as child_process from "child_process"; | |
| import * as pulumi from "@pulumi/pulumi"; | |
| import * as k8s from "@pulumi/kubernetes"; | |
| const SPAWN_PROCESS_BUFFER_SIZE = 104857600; | |
| export const repos = { | |
| stable: "https://kubernetes-charts.storage.googleapis.com", | |
| prometheus: "https://prometheus-community.github.io/helm-charts", | |
| jetstack: "https://charts.jetstack.io", |
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
| /** | |
| * Extract data from an HTML table with flexible column selection and processing. | |
| * | |
| * @param {string} id - The table's HTML id attribute | |
| * @param {string|number[]} columns - Column selection: "*" for all, "1-3" for range, "1,3,5" for specific, or array of column numbers (1-based) | |
| * @param {Object} options - Configuration options | |
| * @param {boolean} options.combine - Combine multiple cells into single string per row (default: false) | |
| * @param {boolean} options.skipHeaders - Skip rows containing <th> elements (default: false) | |
| * @param {number} options.skipRows - Number of rows to skip from the top (default: 0) | |
| * @param {string} options.delimiter - Character(s) to separate cell data (default: '\t') |