VMWare Fusion 13 is now released. Read Vagrant and VMWare Fusion 13 Player on Apple M1 Pro for the latest.
This document summarizes notes taken while to make the VMWare Tech preview work on Apple M1 Pro, it originated
| { | |
| "workbench.startupEditor": "none", | |
| "workbench.iconTheme": "moxer-icons", | |
| "workbench.colorTheme": "Aura Dark", | |
| "workbench.settings.editor": "json", | |
| "breadcrumbs.enabled": false, | |
| "explorer.compactFolders": false, | |
| "editor.wordWrap": "bounded", | |
| "editor.tabSize": 2, | |
| "editor.inlineSuggest.enabled": true, |
| #!/usr/bin/env bash | |
| set -Eeuo pipefail | |
| # Function to generate a random string | |
| generate_random_string() { | |
| length="$1" | |
| if [ -x "$(command -v openssl)" ]; then | |
| openssl rand -base64 "$length" | tr -d '/+=' | |
| elif [ -x "$(command -v head)" ]; then | |
| head /dev/urandom | LC_ALL=C tr -dc 'a-zA-Z0-9' | head -c "$length" |
VMWare Fusion 13 is now released. Read Vagrant and VMWare Fusion 13 Player on Apple M1 Pro for the latest.
This document summarizes notes taken while to make the VMWare Tech preview work on Apple M1 Pro, it originated
| kubectl get nodes --sort-by=".status.conditions[?(@.reason == 'KubeletReady' )].lastTransitionTime" |
| def check_palindrom(word): | |
| list_of_words = [] | |
| for i in word : | |
| list_of_words.append(i) | |
| print("list_of_words",list_of_words) | |
| list_of_words.reverse() | |
| reversed_list_word = list_of_words | |
| print ("reverse is ",reversed_list_word) | |
| list_of_words.reverse() | |
| print ("list of words",list_of_words) |
| #!/bin/sh | |
| # | |
| # /etc/init.d/elasticsearch -- startup script for Elasticsearch | |
| # | |
| # Written by Miquel van Smoorenburg <[email protected]>. | |
| # Modified for Debian GNU/Linux by Ian Murdock <[email protected]>. | |
| # Modified for Tomcat by Stefan Gybas <[email protected]>. | |
| # Modified for Tomcat6 by Thierry Carrez <[email protected]>. | |
| # Additional improvements by Jason Brittain <[email protected]>. | |
| # Modified by Nicolas Huray for Elasticsearch <[email protected]>. |
| #!/bin/sh | |
| # | |
| # /etc/init.d/elasticsearch -- startup script for Elasticsearch | |
| # | |
| # Written by Miquel van Smoorenburg <[email protected]>. | |
| # Modified for Debian GNU/Linux by Ian Murdock <[email protected]>. | |
| # Modified for Tomcat by Stefan Gybas <[email protected]>. | |
| # Modified for Tomcat6 by Thierry Carrez <[email protected]>. | |
| # Additional improvements by Jason Brittain <[email protected]>. | |
| # Modified by Nicolas Huray for Elasticsearch <[email protected]>. |
| #!/bin/sh | |
| # | |
| # /etc/init.d/elasticsearch -- startup script for Elasticsearch | |
| # | |
| # Written by Miquel van Smoorenburg <[email protected]>. | |
| # Modified for Debian GNU/Linux by Ian Murdock <[email protected]>. | |
| # Modified for Tomcat by Stefan Gybas <[email protected]>. | |
| # Modified for Tomcat6 by Thierry Carrez <[email protected]>. | |
| # Additional improvements by Jason Brittain <[email protected]>. | |
| # Modified by Nicolas Huray for Elasticsearch <[email protected]>. |
| package jenkins.automation.utils | |
| import java.util.Map | |
| class CheckmarxUtils { | |
| /** | |
| * Reusable block to add Checkmarx scanning to a project |