I hereby claim:
- I am catermelon on github.
- I am ohnorainbow (https://keybase.io/ohnorainbow) on keybase.
- I have a public key whose fingerprint is 852C 5FFC D2EE 9F6A D016 B0E5 BCA7 3947 7A89 393C
To claim this, I am signing this object:
-----BEGIN PGP PUBLIC KEY BLOCK----- | |
mQINBGIHRHkBEADocq8TrwFZB4JjEgjzCCm7qakBf7VcNjl3ZaXTWC7o/mnpf3Ts | |
MasFXmi01c/F3jiowJstsrbLdCuYTr9vNegURF/BvGSIMpcwz3bNW9hz/HCrhqzw | |
jVo9JfER/mg+yJGIvFj3eqwNDg0pHI3iWXEgdbCBrQKgJTNjhQRfuqJCuPCAie4A | |
vX0G57qoQMu82q7K5D9uNRSd5+9PGWsypNTQVU/45gQa6WEXLWOYaw5ZChmhGQcV | |
AwnYWTxv3TK0WPbQRtpxcR1HqRtjugAV61YvIaaeWxqsXNnYkyYzC1WiLuhRqpLV | |
+oFbQyubwKT1D3PF9UkKKZLUgvI9MsQdGA5BUQNaxn0UkZc4t43FV2hJTG1t52iu | |
4mqPMAYsHpIug1BWFXqvkyTnOhfr6TUgle21/Qt7+KLdX+cR79ISn9WHBNf93+0H | |
vRb/Y1KH6dQP9ZwIWLF/N9gd9GD7r7zfcR4UsBnaSI2ZdoDqkyerWyascSaeOLVw |
I hereby claim:
To claim this, I am signing this object:
''' | |
Allows scoring of text using n-gram probabilities | |
17/07/12 | |
''' | |
from math import log10 | |
# make a class called ngram_score | |
# which is wrong, Python classes are always CamelCased so it should be NGramScore but whatever | |
class ngram_score(object): | |
''' | |
Allows scoring of text using n-gram probabilities | |
17/07/12 | |
''' | |
from math import log10 | |
class ngram_score(object): | |
def __init__(self,ngramfile,sep=' '): | |
''' load a file containing ngrams and counts, calculate log probabilities ''' | |
self.ngrams = {} |
from pyexchange import Exchange2010Service, ExchangeNTLMAuthConnection | |
from datetime import datetime | |
import time | |
from pytz import timezone, utc | |
def getEvents(): | |
URL = u'https://blah.blah/EWS/exchange.asmx' | |
USERNAME = u'DOMAIN\\user' | |
PASSWORD = u"password" |
#!/usr/bin/env python | |
import os | |
import logging | |
import requests | |
from requests_ntlm import HttpNtlmAuth | |
import getpass | |
import xml.dom.minidom | |
logging.basicConfig(level=logging.DEBUG) |
So the SF pasttime isn't baseball or anything like that, it's laughing at tourists who wear shorts. All the visions of warm, beachy California are lies spread by the Los Angeles tv industry. SF can be cold and windy even in summer (actually especially in summer, the land warms up and causes the fog to roll in) and the fog is beautiful but it's FRICKIN COLD. I always bring a jacket to SF no matter what time of year it is. It can be 30 deg C maybe 20 miles away and 10 degrees C in SF. No joke.
SF has awesome food, with a lot of Asian and Mexican influence. Here's a great list from all price ranges: http://www.sfgate.com/food/top100/2014/
Pay particular attention to Mexican/Central and South American food, since I know the UK has great Asian food but not Mexican. The burrito is a Californian staple. Try the al pastor and the carnitas.
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"> | |
<s:Header> | |
<h:ServerVersionInfo xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types" xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" MajorVersion="14" MinorVersion="3" MajorBuildNumber="195" MinorBuildNumber="1"/> | |
</s:Header> | |
<s:Body xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> | |
<m:FindItemResponse xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"> | |
<m:ResponseMessages> | |
<m:FindItemResponseMessage ResponseClass="Success"> | |
<m:ResponseCode>NoError</m:ResponseCode> | |
<m:RootFolder TotalItemsInView="20" IncludesLastItemInRange="true"> |
from flask import current_app | |
class FeatureFlags(object): | |
def __init__(self, app=None): | |
if app is not None: | |
self.init_app(app) | |
def init_app(self, app): |
#"aabbbcccdde" => "a2b3c3d2e1" | |
def encode_string(unencoded): | |
if unencoded is None or unencoded == "": | |
return None | |
last_letter = None | |
count = 0 |