Skip to content

Instantly share code, notes, and snippets.

vSphere 6 Enterprise Plus:
1C20K-4Z214-H84U1-T92EP-92838
1A2JU-DEH12-48460-CT956-AC84D
MC28R-4L006-484D1-VV8NK-C7R58
5C6TK-4C39J-48E00-PH0XH-828Q4
4A4X0-69HE3-M8548-6L1QK-1Y240
vSphere with Operations Management 6 Enterprise:
4Y2NU-4Z301-085C8-M18EP-2K8M8
1Y48R-0EJEK-084R0-GK9XM-23R52
@aram535
aram535 / VMware vSphere 6.x Licence Keys
Created January 5, 2025 13:47 — forked from CHSuworatrai/VMware vSphere 6.x Licence Keys
VMware vSphere 6 and 7 Licence Keys
VMware vSphere 6 Enterprise Plus
1C20K-4Z214-H84U1-T92EP-92838
1A2JU-DEH12-48460-CT956-AC84D
MC28R-4L006-484D1-VV8NK-C7R58
5C6TK-4C39J-48E00-PH0XH-828Q4
4A4X0-69HE3-M8548-6L1QK-1Y240
VMware vSphere with Operations Management 6 Enterprise
4Y2NU-4Z301-085C8-M18EP-2K8M8
1Y48R-0EJEK-084R0-GK9XM-23R52
@aram535
aram535 / README.md
Created November 10, 2020 12:42 — forked from so0k/README.md
AWS CLI ElasticBeanstalk ec2 Queries

AWS CLI snippets

The AWS Command Line Interface is a very powerfull ally to anyone managing AWS Infrastructure.

While automating infrastructure with Terraform, some configuration can be quickly retrieved using AWS CLI.

Alternatively, some information is hard to piece together from the AWS console, in which case terminal scripts can provide fast and simple windows into your cloud.

AWS Documentation

@aram535
aram535 / acg.alb.sh
Created November 10, 2020 12:41 — forked from JohnMichaelMiller/acg.alb.sh
AWS CLI code for the Application Load Balancer lab from the acloud.guru AWS Certified Develper Associate course
#!/bin/bash
### AWS CLI code for the Application Load Balancer lab from the
### acloud.guru AWS Certified Develper Associate course
# turn off history expansion
set +H
# Go home
region="us-east-1"
@aram535
aram535 / gist:59adc461b46e22faf86eadb3fc68a99c
Created October 14, 2020 09:50 — forked from samhocevar/gist:00eec26d9e9988d080ac
Configure sshd on MSYS2 and run it as a Windows service
#!/bin/sh
#
# msys2-sshd-setup.sh — configure sshd on MSYS2 and run it as a Windows service
#
# Please report issues and/or improvements to Sam Hocevar <[email protected]>
#
# Prerequisites:
# — MSYS2 itself: http://sourceforge.net/projects/msys2/
# — admin tools: pacman -S openssh cygrunsrv mingw-w64-x86_64-editrights
#
@aram535
aram535 / settings.json
Last active July 22, 2020 10:48
Microsoft Terminal Release settings.json
{
"$schema": "https://aka.ms/terminal-profiles-schema",
"defaultProfile": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}",
"copyOnSelect": true,
"copyFormatting": false,
"profiles":
{
"defaults":
{
"antialiasingMode": "cleartype",
@aram535
aram535 / ffmpeg.sh
Last active April 5, 2021 23:27
ffmpeg recipes
# -preset veryslow/slow/medium/fast/veryfast
# add -t 60 to produce a 60 second test file before committing to the full reencode
# for animated video add: -tune animation
# replace or add new metadata with: -metadata title="my description"
# reencode as h264
# lower crf is better quality
ffmpeg -i input.mkv -c:v h264 -crf 18 output.mkv
# reencode as h265
@aram535
aram535 / docker-compose.yml
Created March 3, 2019 14:16 — forked from tzapu/docker-compose.yml
docker compose file for local server, plex, transmission, sonarr, radarr, ombi, netdata, nextcloud
version: '2.1'
services:
transmission:
container_name: transmission
image: dperson/transmission
restart: unless-stopped
depends_on:
- plex
network_mode: host
environment:
@aram535
aram535 / app.js
Created February 20, 2019 16:24 — forked from rfletcher/app.js
A simple bridge between iMessage and Home Assistant's conversation component
const HomeAssistant = require( 'homeassistant' );
const Pino = require( 'pino' );
const config = require( 'config' );
const hass = new HomeAssistant( config.get( 'home_assistant' ) );
const imessage = require( 'osa-imessage' );
const logger = Pino();
// TODO package this better
const bridge = {
#!/usr/bin/env python3
#
# ** UNKNOWN AUTHOR ** MODIFIED to meet my needs ...
# if you wrote the original version, please contact me and I'll add attribution
#
import os
import sys
import re
import time