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
2015-09-04T01:47:56.148268+00:00 heroku[slug-compiler]: Slug compilation started | |
2015-09-04T01:47:56.148308+00:00 heroku[slug-compiler]: Slug compilation finished | |
2015-09-04T01:47:56.207416+00:00 heroku[web.1]: State changed from crashed to starting | |
2015-09-04T01:48:03.439837+00:00 heroku[web.1]: Starting process with command `mix phoenix.server` | |
2015-09-04T01:49:03.470058+00:00 heroku[web.1]: Error R10 (Boot timeout) -> Web process failed to bind to $PORT within 60 seconds of launch | |
2015-09-04T01:49:03.470058+00:00 heroku[web.1]: Stopping process with SIGKILL | |
2015-09-04T01:49:04.369722+00:00 heroku[web.1]: State changed from starting to crashed | |
2015-09-04T01:49:04.371226+00:00 heroku[web.1]: State changed from crashed to starting | |
2015-09-04T01:49:04.349436+00:00 heroku[web.1]: Process exited with status 137 | |
2015-09-04T01:49:11.828837+00:00 heroku[web.1]: Starting process with command `mix phoenix.server` |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>OpenTok API Sample — Stand-Alone Archives</title> | |
<link href="/css/demos.css" type="text/css" rel="stylesheet" > | |
<script src="http://static.opentok.com/v1.1/js/TB.min.js" type="text/javascript" charset="utf-8"></script> | |
<script type="text/javascript" charset="utf-8"> | |
var recorderManager; | |
var recorder; | |
var player; |
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
/usr/bin/curl -fLA Homebrew 0.9.5 (Ruby 1.8.7-358; Mac OS X 10.9.2) ftp://ftp.stunnel.org/stunnel/archive/4.x/stunnel-4.56.tar.gz -C 0 -o /Library/Caches/Homebrew/stunnel-4.56.tar.gz.incomplete --connect-timeout 5 | |
% Total % Received % Xferd Average Speed Time Time Time Current | |
Dload Upload Total Spent Left Speed | |
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 | |
curl: (67) Access denied: 500 | |
Trying a mirror... | |
==> Downloading http://ftp.nluug.nl/pub/networking/stunnel/stunnel-4.56.tar.gz | |
/usr/bin/curl -fLA Homebrew 0.9.5 (Ruby 1.8.7-358; Mac OS X 10.9.2) http://ftp.nluug.nl/pub/networking/stunnel/stunnel-4.56.tar.gz -C 0 -o /Library/Caches/Homebrew/stunnel-4.56.tar.gz.incomplete | |
% Total % Received % Xferd Average Speed Time Time Time Current | |
Dload Upload Total Spent Left Speed |
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
created_at = models.DateTimeField(auto_now_add=True, editable=False) | |
updated_at = models.DateTimeField(auto_now=True, editable=False) |
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
import re | |
re.compile(r'(\s+)').split(<some string>) |
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" | |
"http://www.w3.org/TR/html4/strict.dtd"> | |
<html> | |
<head> | |
<title>PhoneGap Back Button Example</title> | |
<script type="text/javascript" charset="utf-8" src="phonegap.0.9.5.js"></script> | |
<script type="text/javascript" charset="utf-8"> | |
var myMedia = null; |
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
import re | |
from django.utils.text import compress_string | |
from django.utils.cache import patch_vary_headers | |
from django import http | |
try: | |
import settings | |
XS_SHARING_ALLOWED_ORIGINS = settings.XS_SHARING_ALLOWED_ORIGINS |
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
import re | |
from django.utils.text import compress_string | |
from django.utils.cache import patch_vary_headers | |
from django import http | |
''' | |
EXAMPLE USAGE: | |
Put this file in a directory called, eg, 'middleware,' inside your django |