1,718 reputation
1924
bio website brankovukelic.com
location Belgrade, Serbia
age 31
visits member for 3 years, 6 months
seen Jun 15 at 10:19
stats profile views 156

Currently working as end-to-end engineer with JavaScript (Node.js / jQuery) and MongoDB. Also experienced with Python, a bit of PHP, Rails, and a spoonful of Erlang.


May
28
comment Is there a standard webpage resolution for mobile phones?
As far as I can tell, even the HD mobile screen will actually display the website at 320x480px, unless user has no-scaling and similar option enabled (which is not enabled by default). You'll get surprising effects if you assume that screen size is equal to pixel resolution of the device.
May
5
answered Link to Current Page in Django, with Additional GET Params?
Mar
22
comment Python desktop widgets
For anyone that stumbles upon this in future, Pyjamas is a web framework for writing RIA (rich Internet applications). It's a port of Google's (now discontinued?) GWT.
Mar
13
comment Auto create slug field in django 1.5 models - example from django tutorial
Just a tip: use slug instead of slugp. Simplifies things a lot since that's the default name expected by many parts of Django, freeing you from having to explicitly specify the slug field in some cases.
Mar
13
revised FormWizard: How to proceed from step 1 to Step 2 when having own 2 templates
fixed indentation
Mar
13
comment FormWizard: How to proceed from step 1 to Step 2 when having own 2 templates
You should take a look at PEP8 when you have some time. python.org/dev/peps/pep-0008
Mar
13
suggested suggested edit on FormWizard: How to proceed from step 1 to Step 2 when having own 2 templates
Mar
13
comment Static files: No such file or directory error in Django 1.4
The error message isn't 'lying' about where Django is looking for the file. It just so happens that the path doesn't coincide with where you think the files should be. ;) EDIT: Incidentally, you should be serving your static files using a normal HTTP server, not Django. Use a server like Lighttpd or nginx to take care of that and also reverse proxy to Django.
Mar
13
revised How to make sure a substring is a part some string?
added 138 characters in body
Mar
13
answered How to make sure a substring is a part some string?
Mar
13
revised Django Restframework - How to handle foreignkey relations in a put request
added 132 characters in body
Mar
13
answered Django Restframework - How to handle foreignkey relations in a put request
Feb
21
awarded  Popular Question
Feb
18
comment collectstatic not a valid subcommand for django-admin.py using django 1.4 on EC2
Thank you very much. I figured it out meanwhile, and it was a missing directory in my case.
Feb
18
comment Suitability of gmail for sending transactional email through ASP.NET C# web application
I know this is quite old, but for anyone that may stumble upon this in future. I've used Mandrill, Sendgrid, and Postmarkapp. Had problems getting Mandrill to play nice with DNS settings. Postmarkapp was just butt slow. I've settled on Sendgrid in the end. Sendgrid wants to review your registration before letting you play (at least that's what person who was in charge of setting it up claims), but it has a free tier if you want to try it, and it's got almost instantaneous delivery.
Feb
16
awarded  Popular Question
Feb
13
awarded  Tenacious
Feb
12
comment collectstatic not a valid subcommand for django-admin.py using django 1.4 on EC2
Could you please expand on this? What kind of permissions is Django looking for?
Jan
31
awarded  Popular Question
Jan
27
comment Vim and indentation with brackets/braces
Yeah, I've discovered that you can actually map key combination like that a few months after posting the question.