I hereby claim:
- I am strogonoff on github.
- I am strogonoff (https://keybase.io/strogonoff) on keybase.
- I have a public key ASB4AETCNWMePGNNdaKxKzRKFrpXHLFkEWeewsqDyolZCAo
To claim this, I am signing this object:
| from django import http | |
| try: | |
| from django.conf import settings | |
| XS_SHARING_ALLOWED_ORIGINS = settings.XS_SHARING_ALLOWED_ORIGINS | |
| XS_SHARING_ALLOWED_METHODS = settings.XS_SHARING_ALLOWED_METHODS | |
| XS_SHARING_ALLOWED_HEADERS = settings.XS_SHARING_ALLOWED_HEADERS | |
| XS_SHARING_ALLOWED_CREDENTIALS = settings.XS_SHARING_ALLOWED_CREDENTIALS | |
| except AttributeError: | |
| XS_SHARING_ALLOWED_ORIGINS = '*' |
| # -*- coding: utf-8 -*- | |
| """ | |
| Builds epub book out of Paul Graham's essays: http://paulgraham.com/articles.html | |
| Author: Ola Sitarska <[email protected]> | |
| This script requires python-epub-library: http://code.google.com/p/python-epub-builder/ | |
| """ | |
| import re, ez_epub, urllib2, genshi |
| /*jslint browser: true */ | |
| /*global _: false, angular: false */ | |
| // Configuration constants. Overrides can be specified under window.settings | |
| (function () { | |
| 'use strict'; | |
| var SETTINGS = { | |
| apiBaseUrl: '/', |
| #coding: utf-8 | |
| u""" | |
| Searches your saved HN items. Many false positives (overkill with synonyms). | |
| .. | |
| $ pip install mechanize nltk | |
| $ python hnsavedsearch.py username "space separated query" | |
| """ |
| import datetime | |
| from blog.models import BlogEntry | |
| from news.models import NewsEntry | |
| def get_fresh_news_and_blog_entries(): | |
| u"""Returns a list containing published news entries and blog posts mixed, | |
| sorted by publish date. Suitable for template context of, say, landing page. | |
| """ | |
| news = list(NewsEntry.objects. |
| import UIKit | |
| import PlaygroundSupport | |
| // https://gist.github.com/erica/6f13f3043a330359c035e7660f3fe7f5 | |
| // Original Video: https://www.youtube.com/watch?v=TTmWUSgNOHk | |
| // Video: https://www.youtube.com/watch?v=hmAB3WJOQTU | |
| // Video: https://www.youtube.com/watch?v=DWtavuvmKdw (with zoom and fade) | |
| // String to animate and its attributes | |
| var string = "Hello, playground" | |
| let attributes: [String: Any] = [ |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| # --------------------------------------------------------- | |
| # Customizable Settings | |
| # --------------------------------------------------------- | |
| MOUNT_POINT="${CASE_SAFE_MOUNT_POINT:-${HOME}/casesafe}" | |
| VOLUME_PATH="${CASE_SAFE_VOLUME_PATH:-${HOME}/.casesafe.dmg.sparseimage}" | |
| VOLUME_NAME="${CASE_SAFE_VOLUME_NAME:-casesafe}" | |
| VOLUME_SIZE="${CASE_SAFE_VOLUME_SIZE:-60g}" |
| # Deprecated |
In Terminal, run:
me@me:<some-app>$ ./dist/mac/<product identifier>.app/Contents/MacOS/<product identifier> --remote-debugging-port=8315stdout will stream your logs and may at least give a glimpse as to where the error is thrown.