Kiran Jonnalagadda

Results 275 issues of Kiran Jonnalagadda
trafficstars

Hasjob currently has (a) user flags, which are based on queries against user activity, and (b) job post tags, which are based on automated NLP analysis of the post. #220...

[SQLAlchemy Continuum](http://sqlalchemy-continuum.readthedocs.org/en/latest/) enables automatic version management for content. We have two models in Hasjob where this is necessary: 1. JobPost (nice to have, since the post may change in unexpected...

SelectField and RadioField will error with "Not a valid choice" if no option is selected. This message isn't customizable, and since it's raised by the pre-validation handler, it cannot be...

onhold

The `make_name` function is used to generate URL slugs in two distinct scenarios: 1. To generate a nice URL for some content where the exact URL doesn't matter as long...

In the process of defining abstractions around our core data models, we've arrived on the following three: 1. **Documents**, which are the concern of the mixin classes provided in `coaster.sqlalchemy`....

coaster.auth

Coaster needs a decorator that supports caching with the [ETag header](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/ETag). A regular Flask-Cache cache decorator will save server processing time, but not bandwidth consumption for the client. [This example...

The `Registry` class and `RegistryMixin` mixin were added in #207 as a way to simplify retrieval of forms and views, without needing imports. They have since found utility in templates...

1. Allowing externally hosted images creates an information leak wherein the external host receives traffic from users, revealing their IP, browser info and referrer. Some use cases may also require...

coaster.sqlalchemy
coaster.text

For performance reasons, apps like Hasjob in production should have separate master and replica databases, running on different nodes: 1. All writes happen on the master database 2. All reads...

coaster.sqlalchemy

The [Zine typography plugin (@jace's branch)](https://bitbucket.org/jace/zine-main/src/a344905553f8bbd9edb3db81ff983fa8c8637259/zine/plugins/typography/__init__.py?at=default&fileviewer=file-view-default) offers better accuracy than Smartypants. Since it parses HTML and not markdown, it can be applied on both markdown and richtext fields. Consider this...

coaster.text