Toots du Jour (Oct 4)
- Android Developers Blog: Android 14 is live in AOSP #android #aosp #java #kotlin android-developers.googleblog.… #
- Win a Google Pixel 8 with Android Headlines #android #google #pixel swee.ps/CiiWSR_upozKF?utm_medi… #
- Google announces plan to make Gmail "less spammy": A checklist to ensure you meet the new Sender requirements #emaill #gmail #google #spam www.thenewsletternewsletter.xy… #
The Beekeeper
One man’s brutal campaign for vengeance takes on national stakes after he is revealed to be a former operative of a powerful and clandestine organization known as “Beekeepers.”
Toots du Jour (Oct 3)
- Finally! The Popular DAW "Studio One" Adds Linux Support #daw #linux #music news.itsfoss.com/studio-one-li… #
- And now for something completely different: Python 3.12 #python theregister.com/2023/10/03/pyt… #
- How to Test and Run GitHub Actions Locally #docker #github earthly.dev/blog/using-github-… #
Silent Night
From legendary director John Woo and the producer of John Wick comes this gritty revenge tale of a tormented father (Joel Kinnaman) who witnesses his young son die when caught in a gang’s crossfire on Christmas Eve. While recovering from a wound that costs him his voice, he makes vengeance his life’s mission and embarks on a punishing training regimen in order to avenge his son’s death. Full of Woo’s signature style, Silent Night redefines the action genre with visceral, thrill-a-minute storytelling.
Toots du Jour (Oct 2)
- Released: JVector 1.0 #apache #cassandra #datastax #java #lucene foojay.io/today/jvector-1-0/?u… #
SemVer, HttpStatus & Pinboard Poster
I've just updated a few more libraries:
- Semantic Version Annotation Processor 1.2.1
-
An annotation processor that automatically generates a class based on a Mustache template and containing the semantic version (major, minor, patch, etc.) that is read from a Properties file or defined in the annotation.
import net.thauvin.erik.semver.Version; @Version(major = 2, minor = 1, patch = 1, preRelease = "beta") public class A { // ... }
-
- HttpStatus JSP Tag Library 1.1.0
-
A simple JSP Tag Library to display the code, reason, cause and/or message for HTTP status codes in JSP error pages.
<%@ page isErrorPage="true" %> <%@ taglib prefix="hs" uri="http://erik.thauvin.net/taglibs/httpstatus" %> <html><head> <title><hs:code/> <hs:reason default="Server Error"/></title> </head> <h1><hs:reason default="Server Error"/></h1> Cause: <pre><hs:cause default="Unable to complete your request."/></pre> Message: <pre><hs:message default="A server error has occured."/></pre> ...
-
- Pinboard Poster for Kotlin, Java and Android 1.1.0
-
A small library for posting to Pinboard.
val poster = PinboardPoster("user:TOKEN") poster.addPin("https://www.example.com/foo", "This is a test") poster.addPin("https://examples.com", "This is a test", tags = arrayOf("foo", "bar")) poster.deletePin("https:///www.example.com/bar")
-
