Ethan McCue

Results 94 issues of Ethan McCue

When using Elmjutsu on the newest atom I get this warning `Assigning custom properties to a marker when creating/copying it is deprecated. Please, consider storing the custom properties you need...

Both this code ```java var xtdb = IXtdb.startNode(NodeConfiguration.builder() .with("xtdb.jdbc/connection-pool", ModuleConfiguration.builder() .with("dialect", ModuleConfiguration.builder() .with("xtdb/module", "xtdb.jdbc.psql/->dialect") .build() ) .with( "db-spec", ModuleConfiguration.builder() .with("jdbcUrl", JDBC_DATABASE_URL) .build() ).build() ) .with("xtdb/tx-log", ModuleConfiguration.builder() .with("xtdb/module", "xtdb.jdbc/->tx-log") .with("connection-pool", "xtdb.jdbc/connection-pool")...

bug

You can import put platform specific code behind an `if` that will only execute if you are on a specific os. This [post on stackoverflow](https://stackoverflow.com/questions/1325581/how-do-i-check-if-im-running-on-windows-in-python) should be a good reference....

You can use the built-in python [argparse module](https://docs.python.org/3/library/argparse.html) or the [click library](http://click.pocoo.org/5/) to allow people to pass in things like the images to use for the body and for the...

First off, extremely creepy and fantastic project. You are a gift to the world. Second, its generally bad practice in python to `pip install` packages globally on a per-project basis....

Sorry if this is the wrong place to ask - I have a project of my own that is an annotation processor and I legitimately do not know who would...

question

(Sorry if this is out of place or too simple a question.) Why do these components have static new methods if all of their fields are public? Aren't they construct-able...

Forgive me if i'm just not finding it, but is there a spec for the binary format similar to https://download.java.net/java/early_access/panama/docs/specs/serialization/index.html ? I'm looking to implement a binary EDN sort of...

question/usage

``` Naming Error Line 36, Column 31 I cannot find a `false` variable: 36| ( Model "cat" "waiting.gif" false ^^^^^ These names seem close though: value abs alt class Hint:...

naming

One line in the docs currently says "interactivite" instead of "interactive". This is just a small patch to fix that.