Skip to content

Instantly share code, notes, and snippets.

View vatsalgamit's full-sized avatar
:dependabot:
Focusing

Vatsal Gamit vatsalgamit

:dependabot:
Focusing
View GitHub Profile
const { Telegraf } = require('telegraf')
require('dotenv').config()
const bot = new Telegraf(process.env.BOT_TOKEN)
bot.start((ctx) => ctx.reply('Welcome'))
bot.help((ctx) => ctx.reply('This is a message for help'))
bot.hears('hi', (ctx) => ctx.reply('Hey there'))
bot.launch()
@vatsalgamit
vatsalgamit / understanding-word-vectors.ipynb
Created September 1, 2020 15:26 — forked from aparrish/understanding-word-vectors.ipynb
Understanding word vectors: A tutorial for "Reading and Writing Electronic Text," a class I teach at ITP. (Python 2.7) Code examples released under CC0 https://creativecommons.org/choose/zero/, other text released under CC BY 4.0 https://creativecommons.org/licenses/by/4.0/
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.