samodadela
samodadela
Hi @jarikomppa Can you please share some hints on how to build libsoloud on android (.a is preffered)? I somehow managed to get a library but when I try to...
I'd like to prevent certain key combinations to be sent to the server. Problem is that rdesktop grabs ctrl-alt-arrow keys so I'm unable to navigate workspaces on my linux machine...
I'm trying to convert some (C2D, cartesian, northing/easting) coordinates from EPSG:32634 to EPSG:4326 (G2D, geographic, long/lat). Here's the test I took for reference: ``` @Test public void testLambert72toWGS84() { final...
Is this behavior correct? ``` Unit u = METRE_PER_SECOND; u.mulitply(0.001).divide(0.001) != u? ``` Test... ``` private static final JsonMapper UOM_JSON_MAPPER = JsonMapper.builder() .addModule(new UnitJacksonModule()) .build(); public static String serialize(Object objectToSerialize)...
### Description My Dockerfile contains: ``` FROM marketplace.gcr.io/google/debian10 ``` pom.xml: ``` pl.project13.maven git-commit-id-plugin io.fabric8 docker-maven-plugin gcr.io/proj/importer:${dockerImageTag.base}-${git.commit.id.abbrev} ${project.basedir} ${project.basedir}/docker/Dockerfile ${dockerImageTag.base}-latest ``` When I run `mvn install`, I get: ``` ... [DEBUG]...
Hi, Coming from MapReduce... Is it possible to specify the datastore namespace that PipelineServlet will use to read datastore entities (pipeline-job, pipeline-barrier, etc)? Best regards, Samo
Trying to create a new `Unit` RPM: ``` @Test void myRpmUnit() throws IOException { Unit RPM = AlternateUnit.of(ONE.divide(MINUTE), "rpm").asType(Frequency.class); Quantity quantity = Quantities.getQuantity(60, RPM); assertThat(quantity.to(HERTZ).getValue().doubleValue()).isEqualTo(1.0); } ``` Specifying alternate as...
Using ccase in a while loop I noticed that it is not only coverting the value passed on the command line, but also all the standard input. ``` printf "a\nb\nc\n"...
Hi, I tested pg-clone-schema on my database (localhost). I have another way of 'cloning' the schema. I apply all the migrations to create a fresh schema, remove all FK constraints,...
Hi, Found some problems when running `pg-clone-schema` on my project: - it does not handle the case where a normal view depends on a materialized view or vice-versa - views...