buntine / barcoders

A barcode encoding library for the Rust programming language
Apache License 2.0
164 stars 24 forks source link

Hosted service #6

Closed anowell closed 7 years ago

anowell commented 7 years ago

I spotted barcoders on reddit and thought it looked solid, so I quickly hacked together a hosted version of it and hosted it on our startup's platform here: Algorithmia

If you're interested in owning/maintaining it on our platform, I'm happy to help make that happen. Otherwise, I just thought I'd share another way in which your work is being highlighted, and I'll keep an eye out for updates that we can take advantage of. Feel free to close this issue. :-)

buntine commented 7 years ago

Thanks. Your platform seems pretty cool. I'll add a link to it on my README. What is involved in me taking over maintenance of it on your platform? I was planning to make some performance updates to the SVG output soon that will impact your hosted version.

anowell commented 7 years ago

Thanks. Glad you think the platform seems cool. :blush:

We still lack a feature to directly transfer ownership, so in this case, since the wrapper I wrote was pretty minimal, the easiest approach is to just create a new "algorithm" on the platform, add these 2 dependencies:

error-chain = "0.9.0"
barcoders = {version = "0.7.0", features = ["svg"]}

then copy the lib.rs source, hit compile, then publish, and edit the description to your liking. Then let me know, and I'll effectively hide mine and redirect it to yours. It's worth noting, the edit-compile experience for rust in the web editor isn't great (long compiles) so I'd definitely recommend cloning (https://git.algorithmia.com/git/USERNAME/ALGONAME.git) for any local development.

buntine commented 7 years ago

Ok, thanks. I'll do this soon.