I hereby claim:
- I am sunno on github.
- I am sunno (https://keybase.io/sunno) on keybase.
- I have a public key ASCUqrv7zv12zZDrq5BhWpnn5HcAOTjs0rSdqLSzJBb9jwo
To claim this, I am signing this object:
<?xml version="1.0" encoding="utf-8"?> | |
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
package="com.my_app" > | |
<uses-permission android:name="android.permission.GET_ACCOUNTS" /> | |
<uses-permission android:name="android.permission.READ_CONTACTS" /> | |
<uses-permission android:name="android.permission.READ_PROFILE" /> | |
<uses-permission android:name="android.permission.WRITE_CONTACTS" /> | |
<!-- for syncing --> | |
<uses-permission android:name="android.permission.READ_SYNC_SETTINGS" /> |
__author__ = 'alvaro' | |
import inspect | |
from django.contrib import admin | |
import pyclbr | |
from django.db import models | |
def register_models(my_models): | |
""" | |
Call this from your admin.py in your app, this will register all your models |
I hereby claim:
To claim this, I am signing this object:
""" | |
This has been adapted from http://www.ahwkong.com/post/2015/02/04/authenticate-mandrill-webhook-call/ | |
Not my algorithm | |
""" | |
import hashlib | |
import hmac | |
from django.conf import settings | |
""" |
/** | |
* Joda Time libraries required! | |
* You can get them here https://github.com/JodaOrg/joda-time/releases | |
*/ | |
import org.joda.time.format.DateTimeFormatter; | |
import org.joda.time.format.ISODateTimeFormat; | |
import java.util.Calendar; | |
import java.util.Date; |
''' | |
Created on 13/06/2013 | |
@author: Alvaro Marquina | |
''' | |
import json | |
class dict2(dict): | |
''' | |
adds some functions to dict |
/** | |
* E-mail address obfuscation | |
*/ | |
.domain::before { | |
width: 1em; | |
content: '@'; | |
} |