-
https://www.youtube.com/user/DevTipsForDesigners/playlists?shelf_id=0&view=1&sort=dd Travis Neilson
-
https://github.com/theskillwithin/hrtcup (eslint, browersync, etc confic)
#index
https://www.youtube.com/user/DevTipsForDesigners/playlists?shelf_id=0&view=1&sort=dd Travis Neilson
https://github.com/theskillwithin/hrtcup (eslint, browersync, etc confic)
#index
| # -*- coding: utf-8 -*- | |
| import codecs | |
| import subprocess | |
| from fdfgen import forge_fdf | |
| from django.core.exceptions import ImproperlyConfigured | |
| from django.template import engines | |
| from django.template.backends.base import BaseEngine | |
| from django.template.engine import Engine, _dirs_undefined |
| #!flask/bin/python | |
| from flask import Flask, jsonify, abort, request, make_response, url_for | |
| from flask_httpauth import HTTPBasicAuth | |
| app = Flask(__name__, static_url_path = "") | |
| auth = HTTPBasicAuth() | |
| @auth.get_password | |
| def get_password(username): | |
| if username == 'miguel': |