Results 14 issues of Mariusz Jamro

Hey, i'm currently using django-markdown-deux with Python 3.5 without any problems. Should there be an `Programming Language :: Python :: 3` indicator in the `setup.py` so that people won't assume...

The library has `IQuery` interface. There should be a similar version for commands that will allow for a result object `ICommand`. It should work in similar way as query does....

Add a method for removing of selected nodes. Current syntax: ``` var paths = this.$refs.tree.getSelected().map(m => m.path); this.$refs.tree.remove(paths); ``` After changes ``` this.$refs.tree.removeSelected(); ```

### Description I propose an extension of the scheduler that will prevent running more than one job with given name at the same time. I wast thinking about syntax like...

new feature

When you're running Kestrel and don't have webpack installed an exception is thrown with such message: https://github.com/xabikos/aspnet-webpack/blob/eda5909e7f0d5c52de9b70280bfed106358678cc/src/Webpack/Webpack.cs#L57-L59 This is misleading. It would be better to handle those two cases separately...

* I've added help for importing from Klondike. The existing docs for local feed doesn't work as the directory structure used by Klondike is one level flatter (`/..nupkg`)

**Describe the bug** Schema classes for Postgres, Redis and SqlServer do this: ``` var names = Assembly.GetManifestResourceNames().Where(x => x.EndsWith(".sql")).OrderBy(x => x); ``` When you have invariant globalization enabled in csproj...

This PR adds support for including top bar when rendering barcodes and configurable bearer bar mode for ITF-14. # Top-bar off (default) ![EAN13_TopBar_Off](https://github.com/barnhill/barcodelib/assets/1384600/e59bc985-f261-4625-b549-a2fbfd70b0ad) # Top bar enabled ![EAN13_TopBar_On](https://github.com/barnhill/barcodelib/assets/1384600/2b1b97b5-bd12-4324-b610-16250c736367) # ITF-14...

JAN-13 barcode doesn't automatically calculate checksum when not provided. This differs from the EAN-13 behaviour which calculates it correctly. The provided unit tests reproduces that case.