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
Mention any frameworks (frameworks used in backend web developement) your familiar with. Describe.
Explain what is MVC ?
What's your preferred development language in backend web development ? Why
What technologies are you familiar with in terms in backend web development ?
Mention any development tools you are know/using in terms in backend web development. Describe each.
Mention any Package Managers (package managers used in backend web development) you know or familiar with. Describe.
Who would you choose, SQL or NoSQL ? Why
Are you familiar in using Git or any Version Control System ?
If you encountered an error, what sites or blogs you usually go ?
<-Server Side->
import App from '@/App.vue';
import messages from '@/lang';
import routes from '@/routes';
import Buefy from 'buefy';
import Vue from 'vue';
import VueI18n from 'vue-i18n';
import VueRouter from 'vue-router';
import 'bulma-carousel/dist/bulma-carousel';
import 'buefy/lib/buefy.css'
@charset "utf-8";
/*
|------------------------------------------------------------------------------
| Import The Preferred CSS Framework
|------------------------------------------------------------------------------
|
| Firstly, we need to import the CSS framework that will serve
| as the foundation of our styles. By default, we will use
| the Bulma CSS framework which is great for starter.
const utils = require('./utils');
const mix = require('laravel-mix');
/*
|------------------------------------------------------------------------------
|
|------------------------------------------------------------------------------
|
|
|
<!DOCTYPE html>
<html lang="{{ app()->getLocale() }}">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>@yield('title', config('app.name'))</title>
<link rel="stylesheet" href="{{ mix('/assets/app.css') }}" type="text/stylesheet"/>
</head>
<body>
@rppf
rppf / ansible-role-test.sh
Created March 27, 2018 18:27 — forked from geerlingguy/ansible-role-test.sh
Ansible Role Test Shim Script
#!/bin/bash
#
# Ansible role test shim.
#
# Usage: [OPTIONS] ./tests/test.sh
# - distro: a supported Docker distro version (default = "centos7")
# - playbook: a playbook in the tests directory (default = "test.yml")
# - role_dir: the directory where the role exists (default = $PWD)
# - cleanup: whether to remove the Docker container (default = true)
# - container_id: the --name to set for the container (default = timestamp)
---
- hosts: localhost
become: true
roles:
- ansible-role-php7
[webserver]
localhost
# config file for ansible -- https://ansible.com/
# ===============================================
# nearly all parameters can be overridden in ansible-playbook
# or with command line flags. ansible will read ANSIBLE_CONFIG,
# ansible.cfg in the current working directory, .ansible.cfg in
# the home directory or /etc/ansible/ansible.cfg, whichever it
# finds first
[defaults]
@rppf
rppf / run.sh
Last active June 4, 2018 02:54
#!/bin/bash
echo -e " \e[1mSetting up Project ID"
gcloud config set project hello-k8s-205801
if [ $? -eq 0 ]; then
echo -e " \e[1mSetting up zone"
gcloud config set compute/zone us-central1-b
echo -e " \e[1mSetting up clusters"
gcloud container clusters create hello-cluster --num-nodes=5