I hereby claim:
- I am timothyis on github.
- I am timothyis (https://keybase.io/timothyis) on keybase.
- I have a public key ASDeQfA9f4mOfkwOX62Qm7bdM6nqxYBAyMw37fStyZX20wo
To claim this, I am signing this object:
| // Gulp module imports | |
| import {src, dest, watch, parallel, series} from 'gulp'; | |
| import del from 'del'; | |
| import livereload from 'gulp-livereload'; | |
| import sass from 'gulp-sass'; | |
| import minifycss from 'gulp-minify-css'; | |
| import jade from 'gulp-jade'; | |
| import gulpif from 'gulp-if'; | |
| import babel from 'gulp-babel'; | |
| import yargs from 'yargs'; |
I hereby claim:
To claim this, I am signing this object:
| // Future versions of Hyper may add additional config options, | |
| // which will not automatically be merged into this file. | |
| // See https://hyper.is#cfg for all currently supported options. | |
| module.exports = { | |
| config: { | |
| // default font size in pixels for all tabs | |
| fontSize: 12, | |
| // font family with optional fallbacks |
| #!/usr/bin/env bash | |
| clear | |
| echo -e "\033[0mNC (No color)" | |
| echo -e "\033[1;37mWHITE\t\033[0;30mBLACK" | |
| echo -e "\033[0;34mBLUE\t\033[1;34mLIGHT_BLUE" | |
| echo -e "\033[0;32mGREEN\t\033[1;32mLIGHT_GREEN" | |
| echo -e "\033[0;36mCYAN\t\033[1;36mLIGHT_CYAN" | |
| echo -e "\033[0;31mRED\t\033[1;31mLIGHT_RED" | |
| echo -e "\033[0;35mPURPLE\t\033[1;35mLIGHT_PURPLE" |
| * | |
| !main.py |
| var express = require("express"); | |
| var app = express(); | |
| var bodyParser = require("body-parser"); | |
| require("now-env") | |
| const axios = require("axios"); | |
| let telegram_url = "https://api.telegram.org/bot" + process.env.TELEGRAM_API_TOKEN +"/sendMessage"; | |
| let openWeatherUrl = process.env.OPENWEATHER_API_URL; | |
| app.use(bodyParser.json()); |