Twits du Jour (Jun 18)
<1 min read
- View from Bay 50… instagr.am/p/CBlrB6VHtZj/ pic.twitter.com/UPh3DdPS1f #
Twits du Jour (Jun 17)
<1 min read
- FLYK is coming soon to #Kickstarter. ENTER TO #WIN: producthype.co/FLYK #open #packages #innovation producthype.co/flyk?referral=… #
Twits du Jour (Jun 16)
<1 min read
- Your Blood Type May Determine Whether You Get COVID-19 or Not thauv.in/3fub9Eh #
Twits du Jour (Jun 15)
<1 min read
- Samsung Galaxy Note 10 Plus international giveaway @AndroidAuth #giveaway wn.nr/PCvLR3 #
Twits du Jour (Jun 10)
<1 min read
- Akismet-Kotlin 0.9.2 has been released. #github #kotlin github.com/ethauvin/akism… #
- Isgd-Shorten 0.9.1 has been released. #github #kotlin github.com/ethauvin/isgd-… #
- Bitly-Shorten 0.9.2 has been released. #github #kotlin github.com/ethauvin/bitly… #
Bitly-Shorten, Isgd-Shorten and Akismet-Kotlin
<1 min read
I've released three libraries for Kotlin/Java:
Bitly Shortener
A simple implementation of the URL shortening (bitlinks) abilities of the Bitly v4 API.
bitly.bitlinks().shorten("https://www.example.com/")is.gd Shortener
A simple implementation of the is.gd API for URL shortening.
Isgd.shorten("https://www.example.com/")Akismet
A pretty complete and straightforward implementation of the Automattic's Akismet API, a free service which can be used to actively stop comments spam.
val akismet = Akismet(apiKey = "API_KEY", blog = "https://www.example.com/")
val comment = AkismetComment(request = context.getRequest()) val isSpam = akismet.checkComment(comment)