Explore >> Select a destination


You are here

prashamhtrivedi.in
| | www.marcogomiero.com
3.4 parsecs away

Travel
| | Update - February 2021 As you may have heard, JCenter is shutting down in May 2021. Into the Sunset on May 1st: Bintray, JCenter, GoCenter, and ChartCenter https://jfrog.com/blog/into-the-sunset-bintray-jcenter-gocenter-and-chartcenter/ So, this tutorial is no longer recommended because it explains how to publish an Android library to JCenter. I suggested you follow this guide written by Márton Braun. Publishing Android libraries to MavenCentral in 2021 https://getstream.io/blog/publishing-libraries-to-mavencentral-2021/ If you have already published a library on JCenter and you want to migrate the old artifacts to MavenCentral, you can follow the guide that I've written:
| | blog.omega-prime.co.uk
3.2 parsecs away

Travel
| | I recently released my first open source library for Java, MDBI. I learnt a lot about the Java open-source ecosystem as part of this process, and this blog summarises that in the hope that it will be useful to others. Specifically, the post will explain how to set up a project using the modern Gradle build system to build code and deploy it to the standard Maven Central repository from the command line really easily.
| | ryanharter.com
1.9 parsecs away

Travel
| | Remember the olden days of Android development? There were times when including a library in a project meant relative links to source, or using Maven. Fortunately for us, those days are long gone now with the introduction of Gradle. Gradle has made developing and consuming libraries for Android amazingly simple, and has spurred a new boom in library development for Android. We've always had a large, open, inclusive community to boast of, but over the past year or two it has only gotten better as the comm...
| | pbrisbin.com
18.9 parsecs away

Travel
| While writing a small learning exercise in C, I came across a nifty little concept. The task itself was a common one: I wanted to spawn a subprocess to the background while letting the main process continue to loop. Many thanks go to falconindy who spoon fed me quite a bit as I was wrapping my head around all of this knowledge I'm now shamelessly presenting as my own. In most languages you have some facility to group code into a logical unit (a haskell function or a bash subshell) then pass that unit to ...