I hereby claim:
- I am sblack4 on github.
- I am sblack4 (https://keybase.io/sblack4) on keybase.
- I have a public key ASAdIY3NKExxH70yjQ7BNZGVQjY4LW24JPnoNdF05ORLKgo
To claim this, I am signing this object:
name: name_of_your_pipeline | |
trigger: | |
- master | |
- other_branches | |
pool: | |
vmImage: 'ubuntu-latest' | |
variables: # variables: https://docs.microsoft.com/en-us/azure/devops/pipelines/process/variables |
I hereby claim:
To claim this, I am signing this object:
Things I wish they'd told me
When you try to debug something in packer by making a change in the Ansible role
you want to see the effect immediately. To do that just symlink your project
in ~/.ansible/roles
with whatever name you are referencing it with.
So, for example, a project refered to as rhythmic.jetty
which is locally in ansible-role-jetty
:
`ln -s $(pwd)/ansible-role-jetty ~/.ansible/roles/rhythmic.jetty`
#!/bin/bash | |
usage() { | |
echo 'run `source init.sh` to get environmental variables' | |
} | |
get_rid_of_okta_creds() { | |
echo 'getting rid of okta creds' |
#!/bin/bash | |
OLD_HOST="" | |
OLD_DB_PWD="" | |
OLD_USERNAME="" | |
NEW_HOST="" | |
NEW_DB_PWD="" | |
NEW_USERNAME="" |
People
![]() :bowtie: |
π :smile: |
π :laughing: |
---|---|---|
π :blush: |
π :smiley: |
:relaxed: |
π :smirk: |
π :heart_eyes: |
π :kissing_heart: |
π :kissing_closed_eyes: |
π³ :flushed: |
π :relieved: |
π :satisfied: |
π :grin: |
π :wink: |
π :stuck_out_tongue_winking_eye: |
π :stuck_out_tongue_closed_eyes: |
π :grinning: |
π :kissing: |
π :kissing_smiling_eyes: |
π :stuck_out_tongue: |
#!/bin/bash python | |
import requests | |
# | |
# See https://docs.microsoft.com/en-us/rest/api/databricks/workspaces/createorupdate | |
# Just add the subscription ID and an auth token | |
# To get an auth token see https://docs.microsoft.com/en-us/rest/api/azure/ | |
# URI Params |
#!/bin/bash | |
# this script installs and starts kafka | |
# the most minimal installation of kafka possible | |
KAFKA_URL=http://mirror.olnevhost.net/pub/apache/kafka/2.1.0/kafka_2.11-2.1.0.tgz | |
install_kafka() { |
# Database settings for sqlite 3.x | |
# | |
# General information on database access can be found here: | |
# https://waikato.github.io/weka-wiki/databases | |
# | |
# url: http://www.sqlite.org/ | |
# jdbc: http://www.zentus.com/sqlitejdbc/ | |
# author: Fracpete (fracpete at waikato dot ac dot nz) | |
# version: $Revision: 5836 $ |