Marc R. Hoffmann

@marcandsweep
1 Followers
65 Following
35 Posts

Java & Railroads @ mtrail.ch

Side projects: JaCoCo, javaalmanac.io

javabubblehttps://javabubble.org/
JaCoCohttps://jacoco.org/jacoco
The Java Version Almanachttps://javaalmanac.io/
@grobmeier My 2ct: I don't think it was a great idea/maintain to create a central repository. Who should be on the list, who's PR should be declined? I personally do not feel comfortable deciding this. Wouldn't be the whole idea of the fediverse to not have such central services any more? Would be nice if there was be a standard API for lists and everyone can decide which lists to federate/follow.
@grobmeier I have no plans to extends the scope of my little javabubble.org project. It already escalated beyond my original intentions. Please feel free to use whatever is already there, I can add a permissive license to it.

Please stop logging *and* rethrowing exceptions at the same time in #Java. In most cases the same exception will appear twice in the logs:

catch(SomeException e) {
log.error("Error", e);
throw new OtherException(e);
}

You should either (in that order):
* just let it propagate (if unchecked)
* rethrow only (probably wrapped)
* log only (and preferably handle somehow)
* log and throw without wrapping the original (if you want to hide the original exception, e.g. for security reasons)

As we are proving these days, nobody needs Musk or Twitter. The community just needs the community. If it's a strong one, like the #java community, it will just go where it can communicate. Old days we had blogs and Adobe Wave (if you remember), then Twitter, now this. Tomorrow - who knows - we are fluid

Dear UI enthusiasts, any ideas to clean up the table on https://javabubble.io/ a bit especially to allow more social links?

Please comment here or on https://github.com/marchof/javabubble/issues/182

Hey #Java folks, until Elon bans http://JavaBubble.org, please spread the word. Simply go to your settings, look for import, and merge the CSV file. And if you'd like your name in that JavaBubble list, please send a PR.
---
RT @HeinzKabutz
Find interesting #java folks on Mastodon by simply importing the following CSV file https://javabubble.org/api/bubble/following.csv
https://twitter.com/heinzkabutz/status/1603733954426609664
Java Bubble

@grobmeier @marcandsweep it is a super contribution. no need to feel awkward; you identified a need and provided a guide for it 👏🏻.

Marc - with his javabubble.org work - also inspired me to go and code that “Java Bubble” bot 😀

I made a short video how to use JavaBubble.org to get started on Mastodon very quickly by importing lots of #java folks to your following list.

https://youtu.be/3OnwXpbibIc

It's also my video premiere, so... :-)

Thanks @marcandsweep for the list and the work - it helped me a lot.

#TwitterMigration #opensource

How to use JavaBubble.org to follow #Java people on Mastodon quickly

YouTube
Find interesting #java folks on Mastodon by simply importing the following CSV file https://javabubble.org/api/bubble/following.csv
@reneschwietzke Not sure whether this is simple enough: For JaCoCo validation tests we load instrumented versions of classes in a separate classloader. If you remove the instrumentation part you might get what you want:
https://github.com/jacoco/jacoco/blob/master/org.jacoco.core.test/src/org/jacoco/core/test/InstrumentingLoader.java
jacoco/InstrumentingLoader.java at master · jacoco/jacoco

:microscope: Java Code Coverage Library. Contribute to jacoco/jacoco development by creating an account on GitHub.

GitHub