Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
rsinger87
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
8 ms
·
1.
▲
by
rsinger87
6y ago
Storing arbitrarily complex Boolean queries (think Elasticsearch's query syntqx). While this could be done in SQL tables, there are no gains with referential intregity and while there would be some in consistency, I don't think th
2.
▲
by
rsinger87
6y ago
I made a webapp called "Disqors" ( https://www.disqors.com/latest ). It's backend largely runs on Django. I connect online articles into discussion graphs and intersperse the top tweets about them. There are fe
3.
▲
by
rsinger87
6y ago
Hi, I wanted to share a web app I made to keep up to date on the most interesting discussions among political/social/economic commentators. I connect online articles into discussion graphs and intersperse the top tweets about them
4.
▲
Show HN: Online Discourse, Organized
(disqors.com)
2 points
by
rsinger87
6y ago
|
1 comments
5.
▲
by
rsinger87
6y ago
There is a package for DRF that adds automatic validation from type annotations: https://github.com/rsinger86/drf-typed-views (disclaimer: I'm the author) Regarding other commentary on DRF: I wonder how many pain
6.
▲
by
rsinger87
7y ago
Huge thanks Angular team. A few years ago, my team desperately needed to pick and run with a frontend framework. After a couple months to learn the Angular fundamentals, we haven't looked back. We find the framework to be extremely int
7.
▲
by
rsinger87
7y ago
Postgres, Django (with Rest Framework) and TypeScript/Angular.
8.
▲
by
rsinger87
7y ago
I wrote a package that allows use of type annotations for validation/serialization in Django Rest Framework: https://github.com/rsinger86/drf-typed-views (Partly inspired by FastAPI)
9.
▲
by
rsinger87
7y ago
Django Rest Framework, Postgresql and Redis. RQ for background jobs.
10.
▲
by
rsinger87
7y ago
Very cool! Yeah, it seems like web frameworks could do more in terms of linking up HTTP contracts with the arguments to the controller/view/whatever. Though, sometimes you need a little more flexibility. For instance, often when u
11.
▲
by
rsinger87
7y ago
I've followed GraphQL from a distance. Besides the typing part (which it seems like you can get from OpenAPI to some extent), the other big benefit seems to be being able to cater to many different and unpredictable use cases. But I ha
12.
▲
by
rsinger87
7y ago
Cool, I've added the "Show HN:" prefix. Yeah, probably most useful for API view functions, since ViewSets often handle the CRUD endpoints automatically.
13.
▲
by
rsinger87
7y ago
I wanted wanted to share a package I made to enable use of type annotations for automatic validation/sanitization in Django REST Framework. I've borrowed ideas from the original API Star ( https://github.com/encode&
14.
▲
Show HN: Django REST – Typed Views
(github.com)
24 points
by
rsinger87
7y ago
|
8 comments
15.
▲
by
rsinger87
7y ago
I wrote this package to provide model lifecycle hooks (similar to Rails callbacks) because I didn't like the frequency that my codebase was overriding __init__(): https://github.com/rsinger86/django-lifecycle Djan
16.
▲
by
rsinger87
7y ago
I wanted to share a Django REST package for permissions/access control: https://github.com/rsinger86/drf-access-policy There are some other great packages out there for permissions, but I wanted one that allowed d
17.
▲
Show HN: Django REST Access Policy – Declarative, IAM-Like Permissions
(github.com)
1 points
by
rsinger87
7y ago
|
1 comments
18.
▲
by
rsinger87
8y ago
I second this. Expose your backend with DRF ( https://www.django-rest-framework.org/ ). Once you get over initial learning curve, you'll have an extremely powerful and flexible library for building your backend.
19.
▲
by
rsinger87
8y ago
Cool :) Yeah, my team hasn't found many cases where signals are preferable to overridding save(). The implementation of @hook is really just a wrapper around that approach - with the aim of a friendly, declarative interface.
20.
▲
by
rsinger87
8y ago
Hey all - Just wanted to share a little package I made to add lifecycle event hooks to Django models. I often find this style of hooking into events easier to reason about than Django's built-in Signals. Feedback is welcomed and apprec
21.
▲
Django Model Lifecycle Hooks – Inspired by Rails Callbacks
(github.com)
2 points
by
rsinger87
8y ago
|
3 comments
22.
▲
by
rsinger87
9y ago
Django with Django REST Framework. Postgres for DB, Redis for caching. RQ/Django RQ for background tasks. OpenAPI for API documentation.