This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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-> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @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. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const utils = require('./utils'); | |
| const mix = require('laravel-mix'); | |
| /* | |
| |------------------------------------------------------------------------------ | |
| | | |
| |------------------------------------------------------------------------------ | |
| | | |
| | | |
| | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!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> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| - hosts: localhost | |
| become: true | |
| roles: | |
| - ansible-role-php7 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [webserver] | |
| localhost |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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 |
OlderNewer