d4n

Results 8 comments of d4n

Google Translate changed the way the API works and now it uses a different endpoint to get the translations. The library fails to get the translation because it can no...

There's a new Google Translate endpoint that you can use for free here: ssut/py-googletrans#268

> Any update on this? @TheStachelfisch you deleted your comment but I will answer it anyway: REST/HTTP interactions are complex, supporting it implies changing the methods and internal callbacks to...

Sounds like a good command to add. Now I need a free SafeSearch/NSFW detection API..

> donations. I will add donation info soon, but that's not relevant here. I want all the APIs Fergun uses to be free of charge, using free alternatives to well-known...

`GetHashCode` shouldn't be overriden on mutable types. The hash will change every time the object is mutated, which will break code that relies on it (like dictionaries or hashsets). Another...

> But the second one - first approach I tried used `System.HashCode` which did not compile for .NET Framework 4.6.1 & .NET Standard 2.0 Use tuples.

There should be some abstraction layer for `MessageBuilder` and `Message` like interfaces, so people can create their own custom builders.