If you don't know anything about JSON, please, spend some time on learning JSON structure.
Recommended sources:
| Android Emulator (ARM64) on EC2 - 2022 | |
| --------------------------------------- | |
| 1. Launch EC2 ARM based Instance (a1.metal / a1.2xlarge): (16 Gb RAM, 32Gb Disk), Ubuntu Server 22.04 LTS (HVM) ARM x64 | |
| 2. sudo apt update && sudo apt upgrade | |
| 3. sudo apt install default-jdk python3-pip repo python-is-python3 unzip libpcre2-dev adb | |
| 4. wget https://dl.google.com/android/repository/commandlinetools-linux-8512546_latest.zip | |
| 5. unzip commandlinetools-linux-8512546_latest.zip -d android-sdk | |
| 6. sudo mv android-sdk /opt/ | |
| 7. mkdir /opt/android-sdk/cmdline-tools/latest | |
| 8. mv /opt/android-sdk/cmdline-tools/* /opt/android-sdk/cmdline-tools/latest (ignore the error) |
| amazon-linux-extras install epel -y | |
| yum-config-manager --enable epel | |
| yum install iftop |
If you don't know anything about JSON, please, spend some time on learning JSON structure.
Recommended sources:
| podTemplate(label: 'builder', | |
| containers: [ | |
| containerTemplate(name: 'jnlp', image: 'larribas/jenkins-jnlp-slave-with-ssh:1.0.0', args: '${computer.jnlpmac} ${computer.name}'), | |
| containerTemplate(name: 'docker', image: 'docker', command: 'cat', ttyEnabled: true), | |
| containerTemplate(name: 'kubectl', image: 'ceroic/kubectl', command: 'cat', ttyEnabled: true), | |
| containerTemplate(name: 'maven', image: 'maven:3.3.9-jdk-8-alpine', ttyEnabled: true, command: 'cat') | |
| ], | |
| volumes: [ | |
| hostPathVolume(hostPath: '/var/run/docker.sock', mountPath: '/var/run/docker.sock'), | |
| secretVolume(secretName: 'maven-settings', mountPath: '/root/.m2'), |
This page URL:
This should be a short (4-5 sentences) blurb which succinctly describes the event. At the very least, it should include:
…which lasted for roughly 10 minutes between 9:02PM and 9:12PM Pacific…
| #!/bin/bash | |
| index=$(date --date='14 days ago' +%Y.%m.%d) | |
| curl -s -XDELETE "http://localhost:9200/filebeat-$index?pretty" |
I hereby claim:
To claim this, I am signing this object:
| -- Create a group | |
| CREATE ROLE readaccess; | |
| -- Grant access to existing tables | |
| GRANT USAGE ON SCHEMA public TO readaccess; | |
| GRANT SELECT ON ALL TABLES IN SCHEMA public TO readaccess; | |
| -- Grant access to future tables | |
| ALTER DEFAULT PRIVILEGES IN SCHEMA public GRANT SELECT ON TABLES TO readaccess; |