provenance | caching library for python functions | BPM library

 by   bmabey Python Version: 0.14.1 License: Non-SPDX

kandi X-RAY | provenance Summary

kandi X-RAY | provenance Summary

provenance is a Python library typically used in Automation, BPM, Docker applications. provenance has no bugs, it has no vulnerabilities, it has build file available and it has low support. However provenance has a Non-SPDX License. You can install using 'pip install provenance' or download it from GitHub, PyPI.

Provenance and caching library for python functions, built for creating lightweight machine learning pipelines
Support
    Quality
      Security
        License
          Reuse

            kandi-support Support

              provenance has a low active ecosystem.
              It has 28 star(s) with 10 fork(s). There are 6 watchers for this library.
              OutlinedDot
              It had no major release in the last 12 months.
              There are 16 open issues and 19 have been closed. On average issues are closed in 212 days. There are no pull requests.
              It has a neutral sentiment in the developer community.
              The latest version of provenance is 0.14.1

            kandi-Quality Quality

              provenance has 0 bugs and 0 code smells.

            kandi-Security Security

              provenance has no vulnerabilities reported, and its dependent libraries have no vulnerabilities reported.
              provenance code analysis shows 0 unresolved vulnerabilities.
              There are 0 security hotspots that need review.

            kandi-License License

              provenance has a Non-SPDX License.
              Non-SPDX licenses can be open source with a non SPDX compliant license, or non open source licenses, and you need to review them closely before use.

            kandi-Reuse Reuse

              provenance releases are not available. You will need to build from source code and install.
              Deployable package is available in PyPI.
              Build file is available. You can build the component from source.
              It has 6315 lines of code, 641 functions and 35 files.
              It has high code complexity. Code complexity directly impacts maintainability of the code.

            Top functions reviewed by kandi - BETA

            kandi has reviewed provenance and discovered the below as its top functions. This is intended to give you an instant insight into provenance implemented functionality, and help decide if they suit your requirements.
            • Generate a provenance .
            • Decorate a function to return a provenance .
            • Return a dict of the command class to use .
            • Return a generator of git pieces from a VCS repository .
            • Create the versioneer config file .
            • Save the object to disk .
            • Return git versions from keywords .
            • Creates a composite artifact .
            • Return information about a file .
            • Create a chain of items from a config dictionary .
            Get all kandi verified functions for this library.

            provenance Key Features

            No Key Features are available at this moment for provenance.

            provenance Examples and Code Snippets

            No Code Snippets are available at this moment for provenance.

            Community Discussions

            QUESTION

            Bespoke Docker Image vs Stock/Legacy Docker Image
            Asked 2022-Apr-08 at 00:58

            Today during a code review of my CI/CD scripts, I came up agst. the following issues with my peer.

            • Was using a docker file which I then installed sdkman and then used sdkman to get the correct version of java and maven for my legacy project. I then used the docker-dind service to build my image using a gitlab runner. It is an oft used pattern documented within Gitlab as best practice. I was using an official image and amending it so that maven could run and build my WAR file. It has all worked fine. I also installed sdkman - so I can use this image for other flavours of maven+legacy-jdk7.

            None of this was original stuff but adapted from a blog by Szymon Stepniak [https://e.printstacktrace.blog/using-sdkman-as-a-docker-image-for-jenkins-pipeline-a-step-by-step-guide/]

            Essentially I had an image with Maven 3.5.4 & Java 7.x.x-zulu, instead. I also set it up with a non-root user. With an .m2 folder + settings.xml which is needed for Maven. It does my building of this legacy WAR file.

            But, I was told to drop the idea of creating my slightly amended docker image and to use one that is already made up namely maven:3.2.5-jdk-7u65

            Ques 1. I was using an offical image namely debian:stretch-slim and amending it slightly. Atleast, my Dockerfile will say what is happening to my image. So, all of it's provenance is all well known. So, why is that practice being frowned upon ?

            Ques 2. I cannot find this image maven:3.2.5-jdk-7u65 on docker hub as a SAFE & OFFICIAL image to use ?

            Ques 3. When I use the maven:3.2.5-jdk-7u65 , it complains that this image is deprecated, but continues, it also complains about some public gpg keys being out of use, but continues, and the Maven build fails. The POM directives I am using basically are not covered by maven:3.2.5

            What should I do and how should I approach this task ? What is best practice ? Why can't I find many official legacy maven + legacy jdk6,7 images ?

            ...

            ANSWER

            Answered 2022-Apr-08 at 00:58

            There's a lot of "it depends", and one of the things it may depend on is your local legal compliance requirements. I would suggest either:

            1. Use a current version of a Docker Hub image, if it's allowed; or else
            2. Build an image based on a known and allowed distribution base image

            One thing to be conscious of with the Docker Hub images is that there's a specific set of versions they support, and versions other than this aren't rebuilt at all. Consider the maven image: there are various variations on maven:3.8.5 out there. If you build your image FROM maven:3 and you docker build --pull then you will get updates on this, both in Maven and the underlying Linux distribution image. If you name a super-specific FROM maven:3.8.3 then it will never be rebuilt, even if the underlying Linux distribution or JVM has a critical security update.

            You're probably seeing some of this with the maven:3.2.5-jdk-7u65 image you've found. The image exists on Docker Hub but it hasn't been rebuilt in a long time. (For that matter, even the oldest openjdk image is based on Java 8.) So you probably could use it, if you really wanted to, but I wouldn't treat it as reliable or maintained.

            So if you really need a very very old version of Java (which will be end-of-lifed in just a couple of months) I'd suggest the approach you have now is the best one: start FROM a reasonably current Linux distribution that gets security updates, download the newest version you can (it looks like Java 7u80 is publicly available and 7u331 with a paid subscription) and rebuild it occasionally. It will be on you to take updates as they're released and as the base Linux image gets updates, but this will be more updates than the unmaintained image you found gets.

            Source https://stackoverflow.com/questions/71790346

            QUESTION

            How to use ssl with docker desktop on windows
            Asked 2022-Apr-01 at 09:55

            I have a dev Environment in docker and I'm using Nifi 1.13.2 and it's working fine (http). I did an upgrade of Nifi to use version 1.15.3 that starts up with HTTPS only and it isn't working anymore. docker-compose :

            ...

            ANSWER

            Answered 2022-Mar-17 at 15:15

            Try adding NIFI_WEB_PROXY_HOST=localhost:8443 in the environment section in docker-compose. Also, you have to check if you can use port 10000 for Nifi.

            Source https://stackoverflow.com/questions/71508840

            QUESTION

            Problem adding duplicate object in Google Storage using PutGCSObject processor in Nifi
            Asked 2022-Mar-25 at 09:30

            I am using Nifi to send data from Pub/Sub queue to Cloud storage. I'm using the ConsumeGCPubSub processor to fetch data from the queue and the PutGCSObject processor to add Cloud Storage in Nifi. But the PutGCSObject processor is sending duplicate data in Cloud Storage.

            I also see that this data has the same MD5 Hash code in its Cloud Storage records. What could be causing this and how can I fix it?

            I double checked:

            • pub/sub messages is not duplicated.
            • When I send 30 piece of data, there are come exactly 30 pieces in Nifi
            • I checked my google storage have different data. But there was not..
            • When I examine it, the number of data coming from the queue and exiting the PutGCSObject processor as success is the same, but I see that the data is written over and over again. When I looked into NiFi Data Provenance, I found that there are multiple data with the same FlowFile UUID.
            ...

            ANSWER

            Answered 2022-Mar-25 at 09:30

            You should have connected the success criterion on the terminate side to the processor.

            Source https://stackoverflow.com/questions/71609222

            QUESTION

            i am getting this error in postman"UnknownReplWriteConcern",
            Asked 2022-Mar-22 at 12:58
            {
                "code": 79,
                "codeName": "UnknownReplWriteConcern",
                "errInfo": {
                    "writeConcern": {
                        "w": "majority;",
                        "wtimeout": 0,
                        "provenance": "clientSupplied"
                    }
                },
                "result": {
                    "n": 1,
                    "opTime": {
                        "ts": {
                            "$timestamp": "7022355027419201549"
                        },
                        "t": 99
                    },
                    "electionId": "7fffffff0000000000000063",
                    "ok": 1,
                    "writeConcernError": {
                        "code": 79,
                        "codeName": "UnknownReplWriteConcern",
                        "errmsg": "No write concern mode named 'majority;' found in replica set configuration",
                        "errInfo": {
                            "writeConcern": {
                                "w": "majority;",
                                "wtimeout": 0,
                                "provenance": "clientSupplied"
                            }
                        }
                    },
                    "$clusterTime": {
                        "clusterTime": {
                            "$timestamp": "7022355027419201549"
                        },
                        "signature": {
                            "hash": "r4QJwdZlD6X28hYUeg3kkVrI7uw=",
                            "keyId": {
                                "low": 1,
                                "high": 1620408145,
                                "unsigned": false
                            }
                        }
                    },
                    "operationTime": {
                        "$timestamp": "7022355027419201549"
                    }
                }
            }
            
            ...

            ANSWER

            Answered 2021-Oct-26 at 22:02

            Had a similar problem. Found I had an extra set of single quotes around my db url

            Source https://stackoverflow.com/questions/69691684

            QUESTION

            how to extract json data from jquery Id while scrapping/crawling
            Asked 2022-Mar-01 at 08:57

            I have some issue when fetch api data the data will comes in JQuery format as shown in bellow

            the data is coming through API in below belo format when I use responce.text

            ('jQuery22409533634503620285_1646033040125([{"id":"3512497","auction_day":"18 ' 'january at 10:00 CET","auction_name":"Decorative sale 18 January ' '2022","auction_type":6,"auction_is_live":false,"auction_status":"published","catalog_key":546,"catalog_nr":"592","catalog_total":951,"catalog_prev":null,"catalog_next":{"auction_seo":"20211109","catalog_nr":"100"},"is_primary_object":false,"is_premium":false,"in_memory_list":false,"telephone_bid":false,"logged_in":false,"user_id":false,"asian_pre_registered":false,"is_premium_user":false,"client_identified":false,"client_pep_answered":false,"title":"Pablo ' 'Picasso","body":"Efter. \"Fredsmappen\". Signerade Picasso i trycket samt ' 'numrerade i blyerts 260\/500. Edition Mouvement de la Paix, Paris. Sju ' 'litografier, 28 x 38 cm (vardera ' 'blad).","petits":"1974.","condition":"Samtliga ramade. Ej examinerade ur ' 'ramar. N\u00e5got gulnade. N\u00e5got varierande ramm\u00e5tt: ' '36 x 47 cm och 36 x 46 ' 'cm.","provenance":null,"exhibition":null,"literature":null,"change":null,"context":null,"artist_name":"Pablo ' 'Picasso","artist_years":"Spanien\/Frankrike 1881-1973. ' '","dds":1,"export_ban":0,"estimate":"8.000 - ' '10.000","estimates":{"estimate_from_sek":"8000","estimate_to_sek":"10000","estimate_from_eur":"780","estimate_to_eur":"1000"},"hammer_price":"7000","absentee_bid_deadline":"2022-01-18 ' '10:00:00","bids_allowed":false,"latest_bid":"7000","minimum_bid":{"show":false,"my_max_bid":null,"my_max_bid_human":null,"leading_bid":null,"leading_bidder":null,"bids":[],"minimum_bid":null,"minimum_bid_human":null,"button_text":null,"valid_bid":false},"auction":"20220118","seo_name":"20220118","img_alt":"Pablo ' 'Picasso Spanien\/Frankrike 1881-1973. Efter. \"Fredsmappen\". Signerade ' 'Picasso i trycket samt numrerade i blyerts 260\/500. Edition Mouvement de ' 'la Paix, Paris. Sju litografier, 28 x 38 cm (vardera ' 'blad).","images":[{"id":"3512497","catalog_nr":"592","path210":"\/view\/210\/3512497.png?1638276330","path464":"\/view\/464\/3512497.jpg?1638276330","path900":"\/view\/900\/3512497.jpg?1638276330","large":"\/view\/large\/3512497.jpg?1638276330"},{"id":"3512497-1","catalog_nr":"592-1","path210":"\/view\/210\/3512497-1.png?1638276323","path464":"\/view\/464\/3512497-1.jpg?1638276323","path900":"\/view\/900\/3512497-1.jpg?1638276323","large":"\/view\/large\/3512497-1.jpg?1638276323"},{"id":"3512497-2","catalog_nr":"592-2","path210":"\/view\/210\/3512497-2.png?1638276316","path464":"\/view\/464\/3512497-2.jpg?1638276316","path900":"\/view\/900\/3512497-2.jpg?1638276316","large":"\/view\/large\/3512497-2.jpg?1638276316"},{"id":"3512497-3","catalog_nr":"592-3","path210":"\/view\/210\/3512497-3.png?1638276320","path464":"\/view\/464\/3512497-3.jpg?1638276320","path900":"\/view\/900\/3512497-3.jpg?1638276320","large":"\/view\/large\/3512497-3.jpg?1638276320"},{"id":"3512497-4","catalog_nr":"592-4","path210":"\/view\/210\/3512497-4.png?1638276313","path464":"\/view\/464\/3512497-4.jpg?1638276313","path900":"\/view\/900\/3512497-4.jpg?1638276313","large":"\/view\/large\/3512497-4.jpg?1638276313"},{"id":"3512497-5","catalog_nr":"592-5","path210":"\/view\/210\/3512497-5.png?1638276310","path464":"\/view\/464\/3512497-5.jpg?1638276310","path900":"\/view\/900\/3512497-5.jpg?1638276310","large":"\/view\/large\/3512497-5.jpg?1638276310"},{"id":"3512497-6","catalog_nr":"592-6","path210":"\/view\/210\/3512497-6.png?1638276306","path464":"\/view\/464\/3512497-6.jpg?1638276306","path900":"\/view\/900\/3512497-6.jpg?1638276306","large":"\/view\/large\/3512497-6.jpg?1638276306"},{"id":"3512497-7","catalog_nr":"592-7","path210":"\/view\/210\/3512497-7.png?1638276289","path464":"\/view\/464\/3512497-7.jpg?1638276289","path900":"\/view\/900\/3512497-7.jpg?1638276289","large":"\/view\/large\/3512497-7.jpg?1638276289"}],"viewing":null,"department":"Modern ' 'Prints & Books","department_id":100,"transport":"300"}])')

            I wanna output in json format

            [{"id":"3512497","auction_day":"18 ' 'january at 10:00 CET","auction_name":"Decorative sale 18 January ' '2022","auction_type":6,"auction_is_live":false,"auction_status":"published","catalog_key":546,"catalog_nr":"592","catalog_total":951,"catalog_prev":null,"catalog_next":{"auction_seo":"20211109","catalog_nr":"100"},"is_primary_object":false,"is_premium":false,"in_memory_list":false,"telephone_bid":false,"logged_in":false,"user_id":false,"asian_pre_registered":false,"is_premium_user":false,"client_identified":false,"client_pep_answered":false,"title":"Pablo ' 'Picasso","body":"Efter. \"Fredsmappen\". Signerade Picasso i trycket samt ' 'numrerade i blyerts 260\/500. Edition Mouvement de la Paix, Paris. Sju ' 'litografier, 28 x 38 cm (vardera ' 'blad).","petits":"1974.","condition":"Samtliga ramade. Ej examinerade ur ' 'ramar. N\u00e5got gulnade. N\u00e5got varierande ramm\u00e5tt: ' '36 x 47 cm och 36 x 46 ' 'cm.","provenance":null,"exhibition":null,"literature":null,"change":null,"context":null,"artist_name":"Pablo ' 'Picasso","artist_years":"Spanien\/Frankrike 1881-1973. ' '","dds":1,"export_ban":0,"estimate":"8.000 - ' '10.000","estimates":{"estimate_from_sek":"8000","estimate_to_sek":"10000","estimate_from_eur":"780","estimate_to_eur":"1000"},"hammer_price":"7000","absentee_bid_deadline":"2022-01-18 ' '10:00:00","bids_allowed":false,"latest_bid":"7000","minimum_bid":{"show":false,"my_max_bid":null,"my_max_bid_human":null,"leading_bid":null,"leading_bidder":null,"bids":[],"minimum_bid":null,"minimum_bid_human":null,"button_text":null,"valid_bid":false},"auction":"20220118","seo_name":"20220118","img_alt":"Pablo ' 'Picasso Spanien\/Frankrike 1881-1973. Efter. \"Fredsmappen\". Signerade ' 'Picasso i trycket samt numrerade i blyerts 260\/500. Edition Mouvement de ' 'la Paix, Paris. Sju litografier, 28 x 38 cm (vardera ' 'blad).","images":[{"id":"3512497","catalog_nr":"592","path210":"\/view\/210\/3512497.png?1638276330","path464":"\/view\/464\/3512497.jpg?1638276330","path900":"\/view\/900\/3512497.jpg?1638276330","large":"\/view\/large\/3512497.jpg?1638276330"},{"id":"3512497-1","catalog_nr":"592-1","path210":"\/view\/210\/3512497-1.png?1638276323","path464":"\/view\/464\/3512497-1.jpg?1638276323","path900":"\/view\/900\/3512497-1.jpg?1638276323","large":"\/view\/large\/3512497-1.jpg?1638276323"},{"id":"3512497-2","catalog_nr":"592-2","path210":"\/view\/210\/3512497-2.png?1638276316","path464":"\/view\/464\/3512497-2.jpg?1638276316","path900":"\/view\/900\/3512497-2.jpg?1638276316","large":"\/view\/large\/3512497-2.jpg?1638276316"},{"id":"3512497-3","catalog_nr":"592-3","path210":"\/view\/210\/3512497-3.png?1638276320","path464":"\/view\/464\/3512497-3.jpg?1638276320","path900":"\/view\/900\/3512497-3.jpg?1638276320","large":"\/view\/large\/3512497-3.jpg?1638276320"},{"id":"3512497-4","catalog_nr":"592-4","path210":"\/view\/210\/3512497-4.png?1638276313","path464":"\/view\/464\/3512497-4.jpg?1638276313","path900":"\/view\/900\/3512497-4.jpg?1638276313","large":"\/view\/large\/3512497-4.jpg?1638276313"},{"id":"3512497-5","catalog_nr":"592-5","path210":"\/view\/210\/3512497-5.png?1638276310","path464":"\/view\/464\/3512497-5.jpg?1638276310","path900":"\/view\/900\/3512497-5.jpg?1638276310","large":"\/view\/large\/3512497-5.jpg?1638276310"},{"id":"3512497-6","catalog_nr":"592-6","path210":"\/view\/210\/3512497-6.png?1638276306","path464":"\/view\/464\/3512497-6.jpg?1638276306","path900":"\/view\/900\/3512497-6.jpg?1638276306","large":"\/view\/large\/3512497-6.jpg?1638276306"},{"id":"3512497-7","catalog_nr":"592-7","path210":"\/view\/210\/3512497-7.png?1638276289","path464":"\/view\/464\/3512497-7.jpg?1638276289","path900":"\/view\/900\/3512497-7.jpg?1638276289","large":"\/view\/large\/3512497-7.jpg?1638276289"}],"viewing":null,"department":"Modern ' 'Prints & Books","department_id":100,"transport":"300"}]

            my code is bellow with error while use json

            ...

            ANSWER

            Answered 2022-Mar-01 at 08:57
            import requests
            import json
            
            
            url = "https://live.uppsalaauktion.se/api/searcharchive/execute?callback=jQuery22401117076961935719_1646032781147&estimate_max=100000000&estimate_min=1000&hammer_max=100000000&hammer_min=1000&query=picasso&per_page=100&language_id=2&paging=1&token=&_=1646032781148"
            
            payload = "callback=jQuery22401117076961935719_1646032781147&estimate_max=100000000&estimate_min=1000&hammer_max=100000000&hammer_min=1000&query=picasso&per_page=100&language_id=2&paging=1&token=&_=1646032781148"
            headers = {'Content-Type': 'text/json','Cookie':'session=d1c582b3ef346ceedf3645751cb8c452eb0b5d0a%7E621c77ed469a41-62319936'}
            
            response = requests.request("GET", url, headers=headers, data=payload)
            # convert response to str
            content = response.text
            # get part of str 
            content_part = content.split(',"objects":')[1].split(',"pagination":[{"page":1,"selected":true},{"page":2,'
                                                              '"selected":false},{"page":3,"selected":false},{"page":4,'
                                                              '"selected":false},{"page":5,"selected":false}]')[0]
            # convert to json
            content_json = json.loads(content_part)
            
            # print id 
            print(content_json[0]['id'])
            

            Source https://stackoverflow.com/questions/71305153

            QUESTION

            Why am I still getting an error with a DELETE request in Postman?
            Asked 2021-Dec-26 at 01:24

            I'm kinda new to programming and I am trying to send a delete request to Postman but I keep getting this error in postman. Would anyone know how to fix this?

            ERROR:

            ...

            ANSWER

            Answered 2021-Dec-26 at 01:24

            Just Try this :

            Check the method type and the link route in Postman.

            Source https://stackoverflow.com/questions/70483609

            QUESTION

            Is it possible to store python object in pyspark dataframe or rdd?
            Asked 2021-Dec-10 at 07:37

            I'm trying to use spark to implement some algorithm on provenance. The first step I want to do is store prov document objects into spark.

            ...

            ANSWER

            Answered 2021-Dec-10 at 07:37

            RDDs are exactly for manipulating Python objects. I think your problem is that each row of your data frame contains a single line from the json file. Try to read the complete file directly to an RDD:

            Source https://stackoverflow.com/questions/70299506

            QUESTION

            How does npm verify packages and how to verify npm/node installation packages between machines?
            Asked 2021-Nov-01 at 06:42

            Where in the npm code does it verify the packages against a checksum? Also is it possible to verify one machine's installation of node and packages vs another machine? As in, is it possible to generate a bunch of checksums for a machine to compare with whatever's in the registry, and on a separate machine.

            In npm, it seems to be using a tree library called the arborist to create a replica of the directory structure. On the other as a user i'd like to be able to validate, generate, checksums of the packages for the sake of provenance and verification. How do i go about doing this? And is it built into the package manager?

            ...

            ANSWER

            Answered 2021-Nov-01 at 06:42

            QUESTION

            Can't get form "custom" variable value with javacript
            Asked 2021-Oct-12 at 11:03

            I have a HTML form, and I need to read the option values with javasript. So when I have this :

            ...

            ANSWER

            Answered 2021-Oct-12 at 11:03

            In HTML5, you can use data- attributes to store data into your attributes, as an example:

            Source https://stackoverflow.com/questions/69539308

            QUESTION

            C Compiler Warnings for Dangerous Casts
            Asked 2021-Sep-23 at 17:07

            With all C compilers that I'm aware of, -Wall warns about implicit casts but never warns about any explicit casts. I've been trying to find a flag (doesn't matter if it's for gcc, clang, any c compiler will do) that will cause a warning to be emitted when there is a cast that results in undefined or implementation-defined behavior. Here's an example illustrating where I would and wouldn't expect a warning:

            ...

            ANSWER

            Answered 2021-Sep-23 at 17:07

            Is there a tool that can help with this?

            Yes: The clang-cl compiler that you can (optionally) install and use in Visual Studio 2019. I copy/pasted your code without change into my VS IDE and this was clang's response:

            warning : cast from 'struct person *' to 'double *' increases required alignment from 4 to 8 [-Wcast-align]

            Running a (static) code analysis added this:

            warning GCC3CDF22: cast from 'struct person *' to 'double *' increases required alignment from 4 to 8 [clang-diagnostic-cast-align]

            Source https://stackoverflow.com/questions/69302187

            Community Discussions, Code Snippets contain sources that include Stack Exchange Network

            Vulnerabilities

            No vulnerabilities reported

            Install provenance

            You can install using 'pip install provenance' or download it from GitHub, PyPI.
            You can use provenance like any standard Python library. You will need to make sure that you have a development environment consisting of a Python distribution including header files, a compiler, pip, and git installed. Make sure that your pip, setuptools, and wheel are up to date. When using pip it is generally recommended to install packages in a virtual environment to avoid changes to the system.

            Support

            For any new features, suggestions and bugs create an issue on GitHub. If you have any questions check and ask questions on community page Stack Overflow .
            Find more information at:

            Find, review, and download reusable Libraries, Code Snippets, Cloud APIs from over 650 million Knowledge Items

            Find more libraries
            Install
          • PyPI

            pip install provenance

          • CLONE
          • HTTPS

            https://github.com/bmabey/provenance.git

          • CLI

            gh repo clone bmabey/provenance

          • sshUrl

            git@github.com:bmabey/provenance.git

          • Stay Updated

            Subscribe to our newsletter for trending solutions and developer bootcamps

            Agree to Sign up and Terms & Conditions

            Share this Page

            share link

            Explore Related Topics

            Consider Popular BPM Libraries

            Try Top Libraries by bmabey

            pyLDAvis

            by bmabeyJupyter Notebook

            cucumber-tmbundle

            by bmabeyRuby

            continuous-cooking

            by bmabeyShell

            rosetta_queue

            by bmabeyRuby