Mike Slinn

Results 96 issues of Mike Slinn

Using Python 3.10 on WSL/Ubuntu, I get this error message when attempting to install: `error in suds-jurko setup command: use_2to3 is invalid.` I get a similar error when attempting to...

Correct resolvers are: ``` "Mandubian snapshots" at "https://raw.github.com/mandubian/mandubian-mvn/master/snapshots/", "Mandubian releases" at "https://raw.github.com/mandubian/mandubian-mvn/master/releases/" ```

Added modfied version of PlainSQL example to show how it works with regular classes, so the 22 property limit can be overcome

When configured for a non-temporary database such as MySQL, the project cannot be run a second time unless the tables are manually dropped. Also, the database must be manually created.

Ideally the project would allow the user to select one of several database drivers in some fashion without altering any code. Perhaps command-line arguments might be used to specify a...

How about an example along these lines? ``` @table("COFFEES") case class Coffee( @column("COF_NAME") name: String, @column("SUP_ID") supID: Int, @column("PRICE") price: Double ) val coffees = Queryable[Coffee] // for inserts use...

I think the biggest thing I addressed was the removal of the semicolons from the for-comprehensions. I made a lot of other stylistic changes, including what I thought constituted useful...

The `examples/` directory contains one `.h` file and almost 3 dozen `.c` files, plus `CMakeLists.txt`. `GIT_OID_SHA1_HEXSIZE` is referenced by the examples, but is not defined within `examples/`. Instead, it is...

The [`libgit2` example code](/libgit2/libgit2/tree/main/examples) has many URLs that do not point to anything anymore. For example, `README.md` contains this URL: http://libgit2.github.com/libgit2/ex/HEAD/general.html The URL redirects to https://libgit2.org/ Here is another example,...