Max Bodewes
Max Bodewes
I am running a Streamhut instance with Docker, everything is working as expected except if I try to get the Python stdout printed to the stream. The stream will instead...
Getting this error after `npm run start` in the last step. I can see the MultiSender screen for one second then I get the error. I have used nvm to...
Some of my bots suddenly stopped working, apparently `update.CallbackData` now is not being read properly anymore. If I: `fmt.Println(update.CallbackData())` I get nothing. Furthermore: `if len(update.CallbackData()) == 0 { fmt.Println("Nothing received")...
If I try to replicate the second example code: ``` package main import ( "log" "net/http" "github.com/go-telegram-bot-api/telegram-bot-api/v5" ) func main() { bot, err := tgbotapi.NewBotAPI("MyAwesomeBotToken") if err != nil {...
Fedora has changed the name of libjansson-devel package to jansson-devel, I changed the installation requirements in README.md to correctly reflect this.
`go get https://github.com/VictorLowther/btree` should be `go get github.com/VictorLowther/btree` or `go` will return the error: `malformed module path "https:/github.com/VictorLowther/btree": invalid char ':'`
I created this tidy little program that takes in data about a company and tries to find the website (without web-search, this could make it far more effective). This example...