Antonios A. Chariton

Results 28 comments of Antonios A. Chariton

Exactly, this is always a good thing: to discuss how we're going to solve an issue before we write the code. Unfortunately I think GitHub can only add repository owners...

Another scheme that we can use for Paste IDs is `H(ciphertext)e`. By adding that extra `e` in the end of the Paste ID we can ensure that a Public /...

Let's leave this issue open for now until we get more feedback and we also decide on the algorithms we will be using. This is just an initial design.

An example `.travis.yml` file for Docker can be: ``` language: python sudo: required python: - "2.7" services: - docker install: true script: docker build . ``` However this will only...

Correct. We can use either `requests` and run a `python` script or use `wget` and run a `bash` script.

I have added a very early stage `.travis.yml` which only checks if the files follow PEP8 or not.

I just pushed some code that makes it very easy to add new backends. In the folder `/backends` there's an `example.py` file which you can start editing to create the...

Please note: currently only the `filesystem` backend is active since this is the only one. As soon as more are available, and hopefully after Issue #10 has been closed, I...