Skip to content

Instantly share code, notes, and snippets.

View rppf's full-sized avatar
😏
Addicted to automation.

Raymond P. Florendo rppf

😏
Addicted to automation.
  • Philippines
View GitHub Profile
@rppf
rppf / deploy_overcloud.sh
Created May 22, 2025 19:44
Openstack Overcloud Deploy
#!/bin/bash
source /home/stack/stackrc
time openstack overcloud deploy --limit Controller --templates
-r /home/stack/templates/00_roles_data.yaml
-e /home/stack/templates/01_node_info.yaml
-e /home/stack/templates/03_network_isolation.yaml
-n /home/stack/templates/04_network_data.yaml
-e /home/stack/templates/05_network_environment.yaml
@rppf
rppf / Jenkinsfile
Created January 18, 2024 10:09
Sample Jenkins Pipeline for Android to be deployed in Google FIrebase
pipeline {
agent any
environment {
DIR = 'animation-samples/ActivitySceneTransitionBasic'
GRADLE_OPTS = "-Dorg.gradle.daemon=false"
ANDROID_HOME = "/usr/lib/android-sdk"
SDKMANAGER_BIN = "/usr/lib/android-sdk/tools/cmdline-tools/bin"
FIREBASE_TOKEN = credentials('firebase-auth-token')
}
stages {
@rppf
rppf / Jenkinsfile
Created January 16, 2024 10:33
Sample Jenkins Pipeline for Android
pipeline {
agent any
environment {
DIR = 'animation-samples/ActivitySceneTransitionBasic'
GRADLE_OPTS = "-Dorg.gradle.daemon=false"
ANDROID_HOME = "/usr/lib/android-sdk"
SDKMANAGER_BIN = "/usr/lib/android-sdk/tools/cmdline-tools/bin"
}
stages {
stage('Clean Directory'){
@rppf
rppf / raymond-windows.pubkey
Created April 7, 2021 16:03
My windows machine public key
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDGCU31CwW/O6Is83nix4fJg0ZmfmApyBc/plNCPmj4Vy7KmP/B/NNs7XzQWmiiC706n+G9nGWeIuueS+jwWAvgPfUIRcaXsrjIrE8d1WTf6pvuA9JrtYs4+NS7yRkjcna4NoKVSu4p9B54e6x5A9wzb1teJGqqfj8ol2qYl5qEC8NqQ8gFAEXW8OtHqcuSa0+iuRJyC7Pj8vdMvF62G9JR0bA7d9pFG3x/XQuXZyC8M/vr69zoblj8O3NEBk6WRitIxv1viIAQuDiltK/yD3ao7ZBWCLlPk+4pygOPb3ni1uNN51m7143nQALA2VJBP9ZQKU55eghNFBYax8h2Qzmn raymond florendo@lenovo-chan
This file has been truncated, but you can view the full file.
msgid ""
msgstr ""
"Project-Id-Version: ProcessMaker (Branch 3.1)\n"
"POT-Creation-Date: \n"
"PO-Revision-Date: 2019-02-01 10:54+0800\n"
"Last-Translator: \n"
"Language-Team: Colosa Developers Team <[email protected]>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer_Encoding: 8bit\n"
@rppf
rppf / pdns.conf
Created August 14, 2018 00:07
Scott PowerDNS Configuration
allow-axfr-ips=192.168.12.12
#only-notify=202.90.158.241,10.21.4.209,202.90.154.123,54.169.243.248
#also-notify=202.90.158.241,10.21.4.209,202.90.154.123,54.169.243.248
config-dir=/etc/pdns
daemon=yes
default-ttl=86400
default-soa-mail=i.gov.ph
default-soa-name=scott.gov.ph
#!/bin/bash
export LC_ALL=C
shopt -s nullglob
incremental_dirs=( ./incremental-*/ )
full_dirs=( ./full-*/ )
shopt -u nullglob
backup_owner="backup"
[mysqld]
log-bin
server_id=1
replicate-do-db=powerdns
bind-address=192.168.12.14
#!/bin/bash
export LC_ALL=C
# Old Config
# todays_dir="${parent_dir}/$(date +%a)"
# now="$(date +%m-%d-%Y_%H-%M-%S)"
days_of_backups=4 # Must be less than 7. Backup files that are 3 days old will be deleted.
backup_owner="backup" # Your backup username.
-- MySQL dump 10.14 Distrib 5.5.56-MariaDB, for Linux (x86_64)
--
-- Host: localhost Database: powerdns
-- ------------------------------------------------------
-- Server version 5.5.56-MariaDB
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;