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
[ | |
{ | |
"actor": "user:dnevozhai", | |
"verb": "add", | |
"object": "picture:1", | |
"foreign_id": "picture:1", | |
"image": "https://images.unsplash.com/photo-1483664852095-d6cc6870702d?auto=format&fit=crop&w=3450&q=80&ixid=dW5zcGxhc2guY29tOzs7Ozs%3D", | |
"message": "I was driving home from Mammoth Lakes by 88 somewhere near Kirkwood when suddenly after another turn this view has appeared. Not thinking too much I crossed double solids :) and parked on the other side. I left the car and walked in the knee deep snow for like 10 meters further from the road to reach untouched powder and take some nice sunset photos. This was one of them.", | |
"tags": ["tree", "snow", "winter", "landscape"], | |
"location": "Kirkwood", |
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
# Instantiate a new client | |
import stream | |
client = stream.connect('key', 'secret') | |
# Assume the notification is aggregated on | |
# {% if verb.infinitive == 'like' %}{{ object }}{% else %}{{ id }}{% endif %} | |
notification_feed = client.feed('notification', '1') | |
# Add two likes, one comment and two follows | |
activities = [ |
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
# Instantiate a new client | |
import stream | |
client = stream.connect('key', 'secret') | |
# Assume the notification is aggregated on | |
# {% if verb.infinitive == 'like' %}{{ object }}{% else %}{{ id }}{% endif %} | |
notification_feed = client.feed('notification', '1') | |
# Add two likes, one comment and two follows | |
activities = [ |
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
# Instantiate a new client | |
import stream | |
client = stream.connect('key', 'secret') | |
# Assume the notification is aggregated on | |
# {% if verb.infinitive == 'like' %}{{ object }}{% else %}{{ id }}{% endif %} | |
notification_feed = client.feed('notification', '1') | |
# Add two likes, one comment and two follows | |
activities = [ |
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
{ | |
"coord":{ | |
"lon":4.89, | |
"lat":52.37 | |
}, | |
"sys":{ | |
"message":0.0094, | |
"country":"NL", | |
"sunrise":1390721381, | |
"sunset":1390752987 |
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
Environment: | |
Request Method: POST | |
Request URL: http://foodtrip.ph/facebook/connect/?facebook_login=1 | |
Django Version: 1.5.4 | |
Python Version: 2.7.3 | |
Installed Applications: | |
('django.contrib.auth', | |
'django.contrib.contenttypes', | |
'django.contrib.sessions', | |
'django.contrib.sites', |
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
2013-08-26 13:49:11,820 [INFO] snaptastic.snapshotter: Attaching volume vol-b3b128e6 to instance i-ce402f81 | |
Aug 26 13:49:12 ip-10-37-176-131 startup: Traceback (most recent call last): | |
Aug 26 13:49:12 ip-10-37-176-131 startup: File "/usr/local/bin/snaptastic", line 9, in <module> | |
Aug 26 13:49:12 ip-10-37-176-131 startup: load_entry_point('snaptastic==0.2.10', 'console_scripts', 'snaptastic')() | |
Aug 26 13:49:12 ip-10-37-176-131 startup: File "/usr/local/lib/python2.7/dist-packages/snaptastic/cli.py", line 125, in main | |
Aug 26 13:49:12 ip-10-37-176-131 startup: p.dispatch() | |
Aug 26 13:49:12 ip-10-37-176-131 startup: File "/usr/local/lib/python2.7/dist-packages/argh/helpers.py", line 53, in dispatch | |
Aug 26 13:49:12 ip-10-37-176-131 startup: return dispatch(self, *args, **kwargs) | |
Aug 26 13:49:12 ip-10-37-176-131 startup: File "/usr/local/lib/python2.7/dist-packages/argh/dispatching.py", line 123, in dispatch | |
Aug 26 13:49:12 ip-10-37-176-131 startup: for line in lines: |
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
from functools import wraps | |
from django.utils.decorators import available_attrs | |
class CachedDecorator(object): | |
""" | |
Decorator which cached the call to the give function. Usage example :: | |
@cached(key='notification_settings_%(user_id)s', timeout=60 * 10) | |
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
@fashiolista_env | |
def health(request): | |
import random | |
from django.db import transaction, connections | |
from user.models import Profile | |
using = 'default' | |
def print_isolation_levels(using, msg): | |
autocommit_sql = "SHOW AUTOCOMMIT;" |
NewerOlder