HTML6 proposal for single-page apps without Javascript

2015-03-20 Thread Bobby Mozumder
Hi everbody, I submitted a proposal to the W3C for browsers to implement a model-view-controller design pattern so that we don’t need to build them using Javascript frameworks for our sites. The message is here: https://lists.w3.org/Archives/Public/public-whatwg-archive/2015Mar/0071.html

Re: ANN: Django website redesign launched

2014-12-17 Thread Bobby Mozumder
For the Documentation, one suggestion I have is that the body font that’s more different from the source code font. It looks like you’re using Roboto (a Helvetica clone) for the body text and Incosolota for the source code. They’re a little too similar. Also, Roboto isn’t a good font for descr

Recommendations for hosting service?

2015-01-06 Thread Bobby Mozumder
Anyone have recommendations for hosting services that can do Django, Node.js, Postgreqsl, python3, as well as PHP/MySQL for legacy stuff? I’m also looking to have IMAP email. This would be for several domains, with maybe 100GB of data. -bobby -- You received this message because you are sub

HTTP2 Server Push with Django?

2016-06-28 Thread Bobby Mozumder
Does anyone know of an http/2 server with server push capability that can work with Django? It looks like nginx supports http2 with uWSGI, but it doesn’t actually support server push capability. I also found the h2o server, but it doesn’t look like it supports uWSGI yet.. Any other options out

Re: HTTP2 Server Push with Django?

2016-06-28 Thread Bobby Mozumder
the > "push" capability from HTTP2 specification. > > let me know if any web server now implements "push" capability completely > > On Tue, Jun 28, 2016 at 9:46 AM, Bobby Mozumder <mailto:bmozum...@gmail.com>> wrote: > Does anyone know of an http

Re: HTTP2 Server Push with Django?

2016-06-28 Thread Bobby Mozumder
jango-push-notifications> > Django-PuSH <https://django-push.readthedocs.io/en/latest/> > django-pushserver <https://github.com/mitar/django-pushserver> > SwampDragon <https://github.com/jonashagstedt/swampdragon> > On Tuesday, June 28, 2016 at 8:46:26 AM UTC-4, Bobby

User model not using persistent DB connection?

2016-12-29 Thread Bobby Mozumder
Hi, It seems Django doesn’t use a persistent DB connection whenever I use the Request.User object. I always get a signal saying a new DB connection occurs when I call the object. For example: class MyView(DetailView): def get(self, request, slug): print(request.user) # <--- Boom, n

Re: User model not using persistent DB connection?

2016-12-29 Thread Bobby Mozumder
aking maintaining a connection pool has been seen as out > of scope for Django itself, and most people use a standalone connection > pooler (such as pgpool for Postgres). > > On Thu, Dec 29, 2016 at 1:13 PM, Bobby Mozumder <mailto:bmozum...@gmail.com>> wrote: > Hi, >

Is there a hook to run an SQL Query at every Postgres session start?

2016-02-03 Thread Bobby Mozumder
I'm looking to use PREPARE/EXECUTE statements, to eliminate my Query Planning time from every Web request. This can be done via SQL PREPARE/EXECUTE statements. But, Postgres only supports PREPARE statements on a connection session-by-session basis. To do this with Django, I need to be able t

Re: Is there a hook to run an SQL Query at every Postgres session start?

2016-02-03 Thread Bobby Mozumder
[1] https://docs.djangoproject.com/en/1.9/ref/signals/#connection-created > > Le mercredi 3 février 2016 12:25:36 UTC-5, Bobby Mozumder a écrit : > I'm looking to use PREPARE/EXECUTE statements, to eliminate my Query Planning > time from every Web request. > > This can be don