$ wc -c os_disk.vhdx
5272240128 os_disk.vhdx
The vhd file size needs to be a number divisible by 1024.
5272240128 / 1025 / 1024 / 1024 = 4.91015625
4.91015625 is not divisible by 1024. We are going to round the number to 5.
Some Jenkinsfile examples |
# Source: https://gist.github.com/vfarcic/77c63cede031951654d5fea5ce0acb43 | |
######################################################################################### | |
# Say Goodbye to Makefile - Use Taskfile to Manage Tasks in CI/CD Pipelines and Locally # | |
######################################################################################### | |
# Additional Info: | |
# - Task: https://taskfile.dev | |
# - Dagger: The Missing Ingredient for Your Disastrous CI/CD Pipeline: https://youtu.be/oosQ3z_9UEM |
$ wc -c os_disk.vhdx
5272240128 os_disk.vhdx
The vhd file size needs to be a number divisible by 1024.
5272240128 / 1025 / 1024 / 1024 = 4.91015625
4.91015625 is not divisible by 1024. We are going to round the number to 5.
######################################################### | |
# What Is Linkerd Service Mesh? Linkerd Tutorial Part 1 # | |
# https://youtu.be/mDC3KA_6vfg # | |
######################################################### | |
# Referenced videos: | |
# - Service Mesh In Kubernetes Explained: https://youtu.be/cjhb7_uwzDk | |
# - Should We Replace Docker Desktop With Rancher Desktop?: https://youtu.be/bYVfCp9dRTE | |
# - Kustomize - How to Simplify Kubernetes Configuration Management: https://youtu.be/Twtbg6LFnAg | |
# - Helm vs Kustomize - The Fight Between Templating and Patching in Kubernetes: https://youtu.be/ZMFYSm0ldQ0 |
# Generate a new key | |
openssl genrsa -out server.key 2048 | |
# Generate a new CSR | |
openssl req -sha256 -new -key server.key -out server.csr | |
# Check certificate against CA | |
openssl verify -verbose -CApath ./CA/ -CAfile ./CA/cacert.pem cert.pem | |
# Self Signed |
using System; | |
using Novell.Directory.Ldap; | |
namespace KerberosAuth | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ |
title | author | date | source | notoc |
---|---|---|---|---|
LDAP Search Filter Cheatsheet |
Jon LaBelle |
January 4, 2021 |
true |
#Setting up Nginx on Your Local System ###by Keith Rosenberg
##Step 1 - Homebrew The first thing to do, if you're on a Mac, is to install homebrew from http://mxcl.github.io/homebrew/
The command to type into terminal to install homebrew is:
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
mkdir -p /usr/local/etc/nginx/sites-{enabled,available}
cd /usr/local/etc/nginx/sites-enabled
ln -s ../sites-available/default.conf
ln -s ../sites-available/default-ssl.conf
File locations:
nginx.conf
to /usr/local/etc/nginx/
default.conf
and default-ssl.conf
to /usr/local/etc/nginx/sites-available
homebrew.mxcl.nginx.plist
to /Library/LaunchDaemons/