- http://www.chioka.in/python-live-video-streaming-example/
- https://github.com/wassgha/FaceRecognitionAPI
- https://www.youtube.com/watch?v=IjLypReIFUg
- https://stackoverflow.com/questions/37813014/django-opencv-how-to-serve-videos-when-processing-is-needed
- https://stackoverflow.com/questions/38487913/how-to-put-an-opencv-function-to-play-videos-in-django-views?rq=1
- https://stackoverflow.com/questions/20205358/how-do-i-stream-an-opencv-video-to-an-html-webpage
- https://www.reddit.com/r/django/comments/5pqnkg/is_it_possible_for_live_face_detection_using_open/
- https://github.com/andrewebdev/django-video
- https://stackoverflow.com/questions/33208849/python-django-streaming-video-mp4-file-using-httpresponse
- https://stackoverflow.com/questions/33954438/using-opencv-with-django
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body, | |
h1, h2, h3, h4, h5, h6, | |
dl, dd, ol, ul, | |
form, fieldset, legend { | |
margin: 0; | |
padding: 0; | |
} | |
ol, ul { | |
list-style: none; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const User = Backbone.Model.extend({ | |
defaults: { | |
is_user: false | |
} | |
}); | |
// Array of types of users | |
const models = [new User({is_user: true}), new User({is_admin: true}), new User()] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Set-Cookie: __Host-sess=id123; path=/; Secure; HttpOnly; SameSite |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4. Example Access Token Response | |
Typically, a bearer token is returned to the client as part of an | |
OAuth 2.0 [RFC6749] access token response. An example of such a | |
response is: | |
HTTP/1.1 200 OK | |
Content-Type: application/json;charset=UTF-8 | |
Cache-Control: no-store | |
Pragma: no-cache |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php get_header(); | |
/* | |
Template Name: Testimonios | |
*/ | |
$args = [ | |
'post_type' => 'testimonials', | |
'order' => 'ASC', | |
'posts_per_page' => -1 | |
]; |
- http://flask-sqlalchemy.pocoo.org/2.3/queries/
- https://stackoverflow.com/questions/16488278/how-to-check-if-a-variable-is-an-integer-or-a-string
- http://flask.pocoo.org/docs/0.12/api/
- http://librosweb.es/libro/explore_flask/chapter_8/creating_macros.html
- http://jinja.pocoo.org/docs/2.10/templates/#macros
- https://stackoverflow.com/questions/37901716/flask-uploads-ioerror-errno-2-no-such-file-or-directory
- http://flask.pocoo.org/docs/1.0/patterns/fileuploads/
- https://www.tutorialspoint.com/flask/flask_sqlalchemy.htm
- https://docs.pylonsproject.org/projects/pyramid_debugtoolbar/en/latest/
- https://docs.pylonsproject.org/projects/pyramid/en/latest/api/request.html#pyramid.request.Request
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ gpg2 --list-keys --keyid-format LONG/home/charlyjazz/.gnupg/pubring.gpg | |
----------------------------------- | |
pub rsa1024/<ESTE ES> 2018-06-27 [SC] | |
uid [ultimate] Carlos Azuaje (Good Stuff) <[email protected]> | |
sub rsa1024/<GLUP GLUP GLUP> 2018-06-27 [E] | |
$ gpg2 --armor --export <ESTE ES> | |
COPIAR LO QUE SALE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"editor.fontFamily": "Fira Code", | |
"editor.fontLigatures": true, | |
"bracketPairColorizer.forceIterationColorCycle": true, | |
"window.zoomLevel": -1, | |
"eslint.packageManager": "yarn", | |
"editor.formatOnSave": true, | |
"editor.detectIndentation": true, | |
"editor.fontSize": 16, | |
"editor.snippetSuggestions": "top", |