Sebastian Teumert
Sebastian Teumert
I hope the fix gets added to JDT in a timely manner. I'm having the exact same problem in VSCode, which uses JDT as well. The projects works well using...
I think GitHub supports detection of SPDX License Identifiers: https://spdx.org/licenses/
> Do you have access to Github's algorithm, or are you guessing? According to https://docs.github.com/en/github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github/licensing-a-repository, GitHub uses https://github.com/licensee/licensee to detect the license. It only detects the license if the Sørensen–Dice...
Why not create a Builder? One of those ways would work, I would say (3) is the most elegant: settings = AppSettingsBuilder.of(settings).with("foo", 2).with("bar",3).build(); //(1) AppSettingsBuilder.empty().with("foo", 2).with("bar",3).applyTo(settings); // (2) settings.builder().with("foo", 2).with("bar",3).apply();...
The next iteration of the templates will probably deprecate the feed.xml file for this exakt reason. There will be seperate feed.atom and feed.rss files, which GitHub fortunately delivers with the...
This is more or less a must-have. You can not extend Font-Awesome 4.0 anymore due to this. They have the basic functionality defined as `.@{fa-css-prefix}{ /* stuff here */}`. Might...
Well, I think Font-Awesome 4.0 is already a pretty good example of why it is bad. It just seems very odd that you can not use one feature of LESS...
With alpine finding more and more usage, it would be really, really appreciated if J2V8 would work out-of-the-box on Alpine as well (which uses musl).
I would like to stress that it is often quite important to read the _reponse headers_. For example, when _caching_ the responses from a 3rd party API, the "`Last-Modified`" and...