Paul Tarjan

2,796
Reputation
548 views

Registered User

Name Paul Tarjan
Member for 7 months
Seen 9 hours ago
Website
Location San Jose
Age 25
I'm the Technical Lead of SearchMonkey at Yahoo! Search
See my homepage for more.


For the Search : ptarjan, paul tarjan
8h
awarded  
Nov
23
comment Website Session Analysis
If you want to see the flow, it is at twitter-meme.com
Nov
23
comment Website Session Analysis
My flow is: (/, 200) (/twitter, 302) twitter.com (/twitter/callback, 302) (/meme, 302) meme.yahoo.com (/meme/callback, 302) (/done, 302) (/panel, 200). So there are really only 2 pages that are 200s. I want to know when /twitter/callback fails, or how often people don't come back from twitter.com . Can I serve something even when I'm 302ing users?
Nov
22
comment Website Session Analysis
Thank you. One problem is that my flow is doing two OAuths, which just 302 my users to external pages and don't load the analytics. Can I make a call on the server to google analytics to still record these?
Nov
22
asked Website Session Analysis
Nov
21
answered How to fetch QueryString values without using GET?
Nov
21
answered PHP language barrier design problem
Nov
21
comment What jQuery plugin will do this Wordpress-like effect?
link to example?
Nov
19
accepted Python: Split unicode string on word boundaries
Nov
16
comment Python: Split unicode string on word boundaries
I really don't want to train an NLP solution for word break discovery. I'm sure someone did this already, and just want a pre-boxed wordbreak splitter.
Nov
16
revised Python: Split unicode string on word boundaries
utf8 is \xe2\x80\xa6 so == 3 bytes == "..."
Nov
16
revised Python: Split unicode string on word boundaries
deleted 2 characters in body
Nov
16
revised Python: Split unicode string on word boundaries
more accurate title
Nov
16
comment Python: Split unicode string on word boundaries
Right, but "whitespace" in english means word seperators, where as there is no word separators in chinese, only whitespace as sentence seperators.
Nov
16
answered Python: Split unicode string on word boundaries
Nov
16
comment Python: Architecture for url polling and posting
You've sure covered the gambit of technologies for me. Thanks! Here's a nice green checkmark.
Nov
16
comment Python: Architecture for url polling and posting
is queue better than collections.deque for this? And if my threads write state to the database (getting a new oauth token, etc) is that bad? Should I queue that operation (major refactor)?
Nov
16
comment Python: Architecture for url polling and posting
Good point. It is only 2 different sources sadly, so I fear I'll get blocked by them if I add too many threads. Looks like I'm nearing my performance limitations...
Nov
16
comment Python: Architecture for url polling and posting
Ok thank you. Doing it, it still looks like my biggest blocker in IO connections (95% of my time is in the read() of a socket, and 4% is connect()). Would some sort of persistent connection help? If so, any implementation recommendation?
Nov
15
asked Python: Architecture for url polling and posting
Nov
15
comment Python: Split unicode string on word boundaries
thanks. I added a check if there are no word boundaries. For english strings this is working great, but for my chinese example (double it to make it long) I end up with a string that is 137 chars long, not 140. len(shorten(s*2, "... end"))
Nov
15
revised Python: Split unicode string on word boundaries
m might not match
Nov
15
revised Python: Split unicode string on word boundaries
added 1 characters in body
Nov
15
comment Python: Split unicode string on word boundaries
ok, thank you. Does "..." mean the same thing in other languages, or is there an alternate "ellipses" character
Nov
15
comment Python: Split unicode string on word boundaries
thanks. corrected
Nov
15
comment Python: Split unicode string on word boundaries
Does it make sense to substring a Chinese string? Like if I do s[:120] will that still be readable?
Nov
15
asked Python: Split unicode string on word boundaries
Nov
15
comment Django: debugging entries just disapearing
Yay! It was a cascading delete. Thank you!
Nov
15
revised Django: debugging entries just disapearing
added 168 characters in body
Nov
15
asked Django: debugging entries just disapearing
Nov
15
revised Django auto_now and auto_now_add
pass the kwargs
Nov
15
revised Django auto_now and auto_now_add
deleted 14 characters in body
Nov
15
comment Django auto_now and auto_now_add
Writing a custom save() on each of my models is much more pain than using the auto_now (as I like to have these fields on all my models). Why don't those params work?
Nov
15
asked Django auto_now and auto_now_add
Nov
14
asked CSS: force image width and height without stretching
Nov
11
revised Python 3 Function List
added search
Nov
11
answered Python 3 Function List
Nov
10
awarded  Nice Answer
Nov
10
comment What do you wish you’d known about when you started learning Python?
good point. fixed
Nov
10
revised What do you wish you’d known about when you started learning Python?
edited body; deleted 2 characters in body
Nov
10
answered What do you wish you’d known about when you started learning Python?
Nov
9
comment Make a Dom element visible but don’t take up space on the page?
does position:relative on the parent hurt anything?
Nov
9
asked Make a Dom element visible but don’t take up space on the page?
Nov
9
comment Python: @staticmethod with @property
Sorry, question expanded
Nov
9
asked Python: appengine urllib2 headers from a 302
Nov
8
comment Python: @staticmethod with @property
I have a bit of a backstory, in that I want an AppEngine db.Model object to be a singleton (just one Stats object in the database). So I need to have at least one instance in memory.
Nov
8
revised Python: @staticmethod with @property
fixed; added 1 characters in body; added 170 characters in body
Nov
8
asked Python: @staticmethod with @property
Nov
8
comment Python: OAuth Library
Thanks. I forked her repo and am waiting on a pull request. github.com/ptarjan/python-oauth
Nov
8
comment How to percent-encode url parameters in python?
Thanks you, both worked great. urlencode just calls quoteplus many times in a loop, which isn't the correct normalization for my task (oauth).