https://www.elastic.co/guide/en/kibana/current/brew.html https://www.elastic.co/guide/en/elasticsearch/reference/current/brew.html
brew tap elastic/tap
brew install elastic/tap/elasticsearch-full
brew install elastic/tap/kibana-full| #!/bin/sh | |
| # usage: push-gh-pages DIRECTORY # DIRECTORY is where GitHub pages contents are in (eg. build) | |
| # LICENSE: Public Domain | |
| set -e | |
| remote=$(git config remote.origin.url) | |
| described_rev=$(git rev-parse HEAD | git name-rev --stdin) |
| #!/bin/bash | |
| MESSAGE="Message" | |
| SLACK_CHANNEL="#slack-channel" | |
| SLACK_TOKEN=xoxb-1234-000000000000 | |
| curl -X POST \ | |
| -H "Authorization: Bearer $SLACK_TOKEN" \ | |
| -H "Content-type: application/json; charset=utf-8" \ | |
| --data '{"channel":"'$SLACK_CHANNEL'","text":"'"$MESSAGE"'"}' \ |
https://www.elastic.co/guide/en/kibana/current/brew.html https://www.elastic.co/guide/en/elasticsearch/reference/current/brew.html
brew tap elastic/tap
brew install elastic/tap/elasticsearch-full
brew install elastic/tap/kibana-full| <# | |
| .SYNOPSIS | |
| Lists delegated permission grants (OAuth2PermissionGrants) and application permissions grants (AppRoleAssignments) granted to an app. | |
| .PARAMETER ObjectId | |
| The ObjectId of the ServicePrincipal object for the app in question. | |
| .PARAMETER AppId | |
| The AppId of the ServicePrincipal object for the app in question. |
| # Source: https://gist.github.com/vfarcic/42d96b7a284a5435a2d1eca0156644b5 | |
| ####################################################################### | |
| # Secrets Made My Life Miserable - Consume Secrets Easily With Teller # | |
| # https://youtu.be/Vcjz-YM3uLQ # | |
| ####################################################################### | |
| # Additional Info: | |
| # - Teller: https://tlr.dev | |
| # - Manage Kubernetes Secrets With External Secrets Operator (ESO): https://youtu.be/SyRZe5YVCVk |
log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit
To configure as an alias git lol:
git config --global alias.lol "log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit"
| var client_id = pm.environment.get("client_id"); | |
| var client_secret = pm.environment.get("client_secret"); | |
| var tenant = pm.environment.get("tenant") | |
| pm.sendRequest({ | |
| url: 'https://login.microsoftonline.com/' + tenant + '/oauth2/token', | |
| method: 'POST', | |
| header: { | |
| 'Content-Type': 'multipart/form-data', |
| #!/usr/bin/env bash | |
| set -Eeuo pipefail | |
| readonly gopass_prefix="" | |
| generate_empty_store() { | |
| local target_file="$1" | |
| local master_password="" | |
| { |