- onboard culture (meet tech leads/product managers)
- onboard agile process and technical excellences
- product/domain KT and showing tools (team or video effort)
- performance metrics and timesheet
- introduce kaizen / improvement culture
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 | |
| # Tutorial: Install a LAMP stack on an Azure Linux VM | |
| # https://docs.microsoft.com/en-us/azure/virtual-machines/linux/tutorial-lamp-stack | |
| # Create the VM Resource Group | |
| az group create --name LAMP-STACK-RG --location westus2 | |
| # Create the VM | |
| az vm create \ |
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 | |
| # Brew : The missing package manager for macOS | |
| # https://brew.sh/ | |
| /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
| # Git | |
| brew install git | |
| git config --global core.autocrlf input |
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
| FORGE_SITE_BRANCH=master #change this to the branch that is needed to be deployted | |
| PROJECT_DIR="/var/www/html" # Path to Project directory | |
| ENV_BKP_DIR="../" | |
| cd $PROJECT_DIR | |
| cp .env $ENV_BKP_DIR/.env.bkp | |
| # Maintenance mode | |
| php artisan down || true |
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
| ...require('moment') library | |
| if ( isRelative ) { | |
| moment(dueAt).diff(moment(Date.now()), 'days') | |
| } |
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
| { | |
| "private": true, | |
| "scripts": { | |
| "dev": "npm run development", | |
| "development": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js", | |
| "watch": "npm run development -- --watch", | |
| "watch-poll": "npm run watch -- --watch-poll", | |
| "hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js", | |
| "prod": "npm run production", | |
| "production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js" |
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
| <script> | |
| /* https://svelte.dev/repl/20f592923f584d6e9399392d4864e55a?version=3.48.0 */ | |
| import NextPage from './NextPage.svelte'; | |
| import { pageNum } from './stores.js'; | |
| let page; | |
| let pageNumber; | |
| let slides = ["<b>i</b>", "<b>love</b>", "<b>svelte</b>"]; | |
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
| <?php | |
| $ENV['GITHUB_CLIENT_SECRET' => 'YOUR_CLIENT_SECRET', 'GITHUB_CLIENT_ID' => 'YOUR_CLIENT_ID']; | |
| if (!function_exists('dd')) { | |
| function dd() | |
| { | |
| echo '<pre>'; | |
| array_map(function($x) {var_dump($x);}, func_get_args()); | |
| die; | |
| } |
Boilerplate w/ Laravel example: https://github.com/jpalala/laravel-customjs-boilerplate