git clone git@github.com:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
| /*! | |
| * | |
| * NEW VERSION AT https://github.com/c-kick/mobileConsole | |
| * | |
| * hnl.mobileConsole - javascript mobile console - v1.3.8 - 04/01/2021 | |
| * Adds html console to webpage. Especially useful for debugging JS on mobile devices. | |
| * Supports 'log', 'trace', 'info', 'warn', 'error', 'group', 'groupEnd', 'table', 'assert', 'clear' | |
| * Inspired by code by Jakub Fiala (https://gist.github.com/jakubfiala/8fe3461ab6508f46003d) | |
| * Licensed under the MIT license | |
| * |
| #!/usr/bin/env python | |
| from flask.sessions import SecureCookieSessionInterface | |
| from itsdangerous import URLSafeTimedSerializer | |
| class SimpleSecureCookieSessionInterface(SecureCookieSessionInterface): | |
| # Override method | |
| # Take secret_key instead of an instance of a Flask app | |
| def get_signing_serializer(self, secret_key): | |
| if not secret_key: | |
| return None |
| # https://gist.github.com/althonos/6914b896789d3f2078d1e6237642c35c | |
| [metadata] | |
| name = {name} | |
| version = file: {name}/_version.txt | |
| author = Martin Larralde | |
| author_email = martin.larralde@embl.de | |
| url = https://github.com/althonos/{name} | |
| description = {description} | |
| long_description = file: README.md |