George Fraser
George Fraser
All the classes from dependencies end up in the packaged jar. This is different than the default of maven, and not what you want when you intend to publish the...
Columnar data warehouses generally implement UPDATE by simply appending more rows and somehow flagging the "shadowed" rows as deleted. This benchmark would be more realistic if about 10% of the...
Some of us are not aware of: * What a looker api 3.0 user is * How to create one * How to get the parameters for LOOKER_API_3_CLIENT_ID and LOOKER_API_3_CLIENT_SECRET...
It would be nice if I can have notifications on only during certain hours of the day, like 9am-7pm
Column order of CSV schema is ignored when `@JsonFormat(shape = JsonFormat.Shape.ARRAY)` is present
Here is a minimal example demonstrating the bug: https://gist.github.com/georgewfraser/a2f722bdde3d4194b9ee
Right now, we automatically add imports on save: https://github.com/georgewfraser/java-language-server/blob/incremental/src/main/java/org/javacs/CompileBatch.java#L291 This works well for scenarios like copy-pasting large blocks of code, but it doesn't work great when you autocomplete: - User...
Currently, JLS tries to automatically add imports on save. This works well for scenarios like copy-paste, but sometimes the correct import is ambiguous and it does nothing. Implementation is here:...
JSON can have number values outside the range of double. Also, it's important that multipleOf have an exact representation to be interpreted correctly. BigDecimal is better for these reasons.
…fig. This change modifies the `InferConfig` class to allow the Java language server to determine the project's classpath using the `CLASSPATH` environment variable. Key changes: - The `classPath()` method in...