Testing something
This file contains 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
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()); |
This file contains 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
* | |
!main.py |
This file contains 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
#!/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" |
This file contains 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
// 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 |
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:
This file contains 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
// 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'; |