- Add the
build_pull_request.shto the root of your git repository; - Add the
android.ymlfile to.github/workflows/; - Make
build_pull_request.shexecutable using:chmod +x build_pull_request.sh; - Commit your code and push the changes
# MIT License
| kubectl create configmap ghost-export-k8s-to-s3-configmap \ | |
| --from-literal GHOST_URL="https://my.ghost.blog.com/ghost" \ | |
| --from-literal S3_DESTINATION="s3://my-s3-bucket/folder/my.ghost.blog.com.export.json" |
| apiVersion: v1 | |
| kind: ConfigMap | |
| metadata: | |
| name: ghost-export-k8s-to-s3-configmap | |
| data: | |
| GHOST_URL: https://my.ghost.blog.com/ghost | |
| S3_DESTINATION: s3://my-s3-bucket/folder/my.ghost.blog.com.export.json |
| helm repo add rm3l https://helm-charts.rm3l.org | |
| helm install my-ghost-export-to-s3 rm3l/ghost-export-to-s3 \ | |
| --version 0.9.0 \ | |
| --set ghost.apiBaseUrl="https://my.ghost.blog/ghost" \ | |
| --set ghost.username="my-ghost-username" \ | |
| --set ghost.password="my-ghost-password" \ | |
| --set aws.accessKeyId="my-aws-access-key-id" \ | |
| --set aws.secretKey="my-aws-secret-key" \ | |
| --set aws.s3.destination="s3://path/to/my/s3-export.json" \ | |
| --set cronJob.schedule="@daily" |
| Byobu is a suite of enhancements to tmux, as a command line | |
| tool providing live system status, dynamic window management, | |
| and some convenient keybindings: | |
| F1 * Used by X11 * | |
| Shift-F1 Display this help | |
| F2 Create a new window | |
| Shift-F2 Create a horizontal split | |
| Ctrl-F2 Create a vertical split | |
| Ctrl-Shift-F2 Create a new session |
| apply plugin: 'maven-publish' | |
| apply plugin: 'signing' | |
| task androidSourcesJar(type: Jar) { | |
| archiveClassifier.set('sources') | |
| if (project.plugins.findPlugin("com.android.library")) { | |
| from android.sourceSets.main.java.srcDirs | |
| from android.sourceSets.main.kotlin.srcDirs | |
| } else { | |
| from sourceSets.main.java.srcDirs |
| { | |
| "meta": { | |
| "theme": "elegant" | |
| }, | |
| "basics": { | |
| "name": "Armel Soro", | |
| "label": "Technical Lead / R&D Software Engineer", | |
| "picture": "https://avatars.githubusercontent.com/u/593208?s=460", | |
| "email": "armel@soro.io", | |
| "phone": "", |
| #!/usr/bin/env bash | |
| set -Eeuo pipefail | |
| trap cleanup SIGINT SIGTERM ERR EXIT | |
| script_dir=$(cd "$(dirname "${BASH_SOURCE[0]}")" &>/dev/null && pwd -P) | |
| usage() { | |
| cat <<EOF | |
| Usage: $(basename "${BASH_SOURCE[0]}") [-h] [-v] [-f] -p param_value arg1 [arg2...] |
| import 'dart:math'; | |
| import 'package:flutter/material.dart'; | |
| class MyCustomRadialGauge extends StatefulWidget { | |
| @override | |
| _MyCustomRadialGaugeState createState() => _MyCustomRadialGaugeState(); | |
| } | |
| class _MyCustomRadialGaugeState extends State<MyCustomRadialGauge> |
# View public IP