Skip to content

Instantly share code, notes, and snippets.

View mehfuzh's full-sized avatar
🎯
Focusing

Mehfuz Hossain mehfuzh

🎯
Focusing
View GitHub Profile
@janteuni
janteuni / README.md
Last active July 14, 2017 09:16
Recast.AI - starter

Configuring Recast.AI with Recime

Recast.AI is a collaborative bot platform for developers that makes it easy to use natural language understanding in conversational bots.

Create a bot in Recast.AI

To create a new bot, login on Recast.AI and click on the link + NEW BOT in the header section.

  • Choose a name and a description
  • Set the default language, you will be able to add more languages later ;)
@iamralch
iamralch / compress.go
Last active April 16, 2023 03:04
ZIP archives in Golang
import (
"archive/zip"
"io"
"os"
"path/filepath"
"strings"
)
func zipit(source, target string) error {
zipfile, err := os.Create(target)