bot using teams' outgoing webhook
npm install
sls deploy -v
| #!/bin/bash | |
| # Based on: | |
| # https://github.com/Powerlevel9k/powerlevel9k/wiki/Install-Instructions | |
| # https://github.com/ohmyzsh/ohmyzsh | |
| # https://powerline.readthedocs.io/en/latest/installation/linux.html#fonts-installation | |
| # https://gist.github.com/dogrocker/1efb8fd9427779c827058f873b94df95 | |
| # https://linuxhint.com/install_zsh_shell_ubuntu_1804/ | |
| echo "*********************************************" | |
| echo " zsh fancifier" |
| <template> | |
| <div id="app"> | |
| <!-- <img src="./assets/logo.png"> | |
| <HelloWorld msg="Welcome to Your Vue.js App"/> --> | |
| <div class="reveal"> | |
| <div class="slides"> | |
| <section>Single Horizontal Slide</section> | |
| <section> | |
| <section>Vertical Slide 1</section> | |
| <section>Vertical Slide 2</section> |
| 'use strict'; | |
| //npm install gulp gulp-minify-css gulp-uglify gulp-clean gulp-cleanhtml gulp-jshint gulp-strip-debug gulp-zip --save-dev | |
| var gulp = require('gulp'), | |
| clean = require('gulp-clean'), | |
| cleanhtml = require('gulp-cleanhtml'), | |
| minifycss = require('gulp-minify-css'), | |
| jshint = require('gulp-jshint'), | |
| stripdebug = require('gulp-strip-debug'), |
| FROM ruby:2.3-onbuild | |
| VOLUME /opt/postal/config | |
| ENV LOG_TO_STDOUT 1 | |
| ENV AM_CONFIG_ROOT /opt/postal/config | |
| RUN gem install procodile | |
| RUN apt-get update -qq && apt-get install -yqq nodejs |
| DO WTF YOU WANT TO PUBLIC LICENSE | |
| Version 2, December 2004 | |
| Copyright (C) 2011 Alexey Silin <[email protected]> | |
| Everyone is permitted to copy and distribute verbatim or modified | |
| copies of this license document, and changing it is allowed as long | |
| as the name is changed. | |
| DO WTF YOU WANT TO PUBLIC LICENSE |
| show_icons() { | |
| defaults write com.apple.finder CreateDesktop true | |
| killall Finder | |
| } | |
| hide_icons() { | |
| defaults write com.apple.finder CreateDesktop false | |
| killall Finder | |
| } |
| # Path to your oh-my-zsh installation. | |
| # Usually located in ~/.zshrc | |
| export ZSH=$HOME/.oh-my-zsh | |
| # Set name of the theme to load. | |
| # Look in ~/.oh-my-zsh/themes/ | |
| # Optionally, if you set this to "random", it'll load a random theme each | |
| # time that oh-my-zsh is loaded. | |
| # ZSH_THEME="agnoster" | |
| ZSH_THEME="piixiiees2" |