Start new Laravel Sail project with devcontainers.
curl -s "https://laravel.build/your-project-name?with=mariadb&devcontainer" | bash
Available services include:
mysql
pgsql
mariadb
Start new Laravel Sail project with devcontainers.
curl -s "https://laravel.build/your-project-name?with=mariadb&devcontainer" | bash
Available services include:
mysql
pgsql
mariadb
"workbench.colorCustomizations": { | |
"tree.indentGuidesStroke": "#ff9d00", | |
"tab.activeBorder": "#ff9d00", | |
}, |
### Keybase proof | |
I hereby claim: | |
* I am sobi3ch on github. | |
* I am sobi3ch (https://keybase.io/sobi3ch) on keybase. | |
* I have a public key ASAhA2_kzEkJY2jOIygH631Vou_-pCkm9GCzUTeK-gRSkgo | |
To claim this, I am signing this object: |
I hereby claim:
To claim this, I am signing this object:
# general | |
alias aws.whoami='aws iam get-user --query User.Arn --output text' | |
alias az.whoami='az ad signed-in-user show --query userPrincipalName --output tsv' | |
# In ~/.aws/credencials|config leave [default] profile empty and name it each one of it so `aws-env -l` can list all of them | |
# aws.profile # show current profile | |
# aws.profile profile-name # set profile name | |
# Double tab completion works | |
aws.profile () | |
{ |
{ | |
"variables": { | |
"aws_access_key": "", | |
"aws_secret_key": "" | |
}, | |
"builders": [{ | |
"type": "amazon-ebs", | |
"access_key": "{{user `aws_access_key`}}", | |
"secret_key": "{{user `aws_secret_key`}}", | |
"region": "eu-north-1", |
aws.setup-credencials () | |
{ | |
FILE=$HOME/accessKeys.csv; | |
if test -f "$FILE"; then | |
echo "Reading from $FILE"; | |
aws configure set aws_access_key_id $(tail -n1 $HOME/accessKeys.csv | cut -d, -f1); | |
aws configure set aws_secret_access_key $(tail -n1 $HOME/accessKeys.csv | cut -d, -f2); | |
else | |
echo "Missing $FILE"; | |
fi |
Started by user Piotr Sobieszczański | |
[Wed Jul 11 12:43:22 UTC 2018] Starting branch indexing... | |
ERROR: [Wed Jul 11 12:43:23 UTC 2018] Could not fetch branches from source 7aceea81-226f-4094-a96c-fbb8773cc981 | |
java.lang.ClassCastException: jenkins.branch.buildstrategies.basic.TagBuildStrategyImpl cannot be cast to jenkins.scm.api.trait.SCMSourceTrait | |
at jenkins.scm.api.trait.SCMSourceContext.withTraits(SCMSourceContext.java:245) | |
at com.cloudbees.jenkins.plugins.bitbucket.BitbucketSCMSource.retrieve(BitbucketSCMSource.java:534) | |
at jenkins.scm.api.SCMSource._retrieve(SCMSource.java:357) | |
at jenkins.scm.api.SCMSource.fetch(SCMSource.java:267) | |
at jenkins.branch.MultiBranchProject.computeChildren(MultiBranchProject.java:633) |
def projects = [:]; | |
projects['first-repo'] = [ | |
name: 'First multibranch pipeline', | |
repo: 'repo-first' | |
] | |
projects['second-repo'] = [ | |
name: 'Second multibranch pipeline', | |
repo: 'repo-second' |
#Exec=/usr/bin/google-chrome-stable %U | |
Exec=/opt/google/chrome/chrome %U |