Re: What is the ideal web server to use with Django?

2015-05-15 Thread Marc Aymerich
second thing is that circusd is a process manager like > supervisord, but it allows for dynamic operation - you can run celery > worker processes underneath it, and spin up/spin down worker processes > as you see fit to allow for load. > > The third is that circusd is accessed by a web i

Re: What is the ideal web server to use with Django?

2015-05-15 Thread Ilya Kazakevich
Hi. I believe the best installation is Apache + wsgi and nginx for static. In some scenarios Apache performance may be your bottleneck, but: 1) there are a lot of ways to tune it. Read about "Multi-Processing Modules" for example. 2) 99% of web applications do have different b

Re: What is the ideal web server to use with Django?

2015-05-15 Thread Avraham Serour
sord, but it allows for dynamic operation - you can run celery > worker processes underneath it, and spin up/spin down worker processes > as you see fit to allow for load. > > The third is that circusd is accessed by a web interface, which allows > for simple day to day use and als

Re: What is the ideal web server to use with Django?

2015-05-15 Thread Tom Evans
old application if for some reason you don't like what was pushed. The second thing is that circusd is a process manager like supervisord, but it allows for dynamic operation - you can run celery worker processes underneath it, and spin up/spin down worker processes as you see fit to allow for load. T

Fwd: What is the ideal web server to use with Django?

2015-05-14 Thread Andrew Farrell
Serour <tovm...@gmail.com> Date: Thu, May 14, 2015 at 4:40 AM Subject: Re: What is the ideal web server to use with Django? To: django-users@googlegroups.com My main reason for recommending nginx is the config file, they are simpler than apache, when developing an application you shouldn'

Re: What is the ideal web server to use with Django?

2015-05-14 Thread Marc Aymerich
> no available workers to process an incoming request, and you have not > reached the maximum number of workers that you have configured it to > start. You can configure it to start all the worker processes you want > when it starts up, and never to kill them off, and it will never spawn

Re: What is the ideal web server to use with Django?

2015-05-14 Thread Jonathan Barratt
out that. > You can configure it to start all the worker processes you want > when it starts up, and never to kill them off, and it will never spawn > a new process. > > Apache processes are small, unless you do daft things like embed your > web application in each worker process (m

Re: What is the ideal web server to use with Django?

2015-05-14 Thread Avraham Serour
My main reason for recommending nginx is the config file, they are simpler than apache, when developing an application you shouldn't spend much time configuring the web server, only after you reached so much traffic that it would make sense to spend time with it On May 14, 2015 12:26 PM, &quo

Re: What is the ideal web server to use with Django?

2015-05-14 Thread Tom Evans
re it to start all the worker processes you want when it starts up, and never to kill them off, and it will never spawn a new process. Apache processes are small, unless you do daft things like embed your web application in each worker process (mod_php style). This is the main complaint "Apa

Re: What is the ideal web server to use with Django?

2015-05-13 Thread reduxionist
you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To post to this group, send email to django-users@googlegroups.com. Visit this group at http://groups.

Re: What is the ideal web server to use with Django?

2015-05-13 Thread James Schneider
If you get enough traffic to trounce a (web server of choice) installation, you probably are making enough money to hire an expert with that system to tune it properly or recommend adding additional resources. Don't get bogged down in Apache vs. Nginx vs. uWSGI, etc. You're nowhere near

Re: What is the ideal web server to use with Django?

2015-05-13 Thread termopro
is group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To post to this group, send email to django-users@googlegroups.com. Visit this group at http://groups.google.com/group/django-users. To view this discussion on the web visit https://grou

Re: What is the ideal web server to use with Django?

2015-05-13 Thread Tom Evans
emails from it, send an email to django-users+unsubscr...@googlegroups.com. To post to this group, send email to django-users@googlegroups.com. Visit this group at http://groups.google.com/group/django-users. To view this discussion on the web visit https://groups.google.com/d/msgid/django-u

Re: What is the ideal web server to use with Django?

2015-05-13 Thread termopro
@googlegroups.com. Visit this group at http://groups.google.com/group/django-users. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/2f832399-cd90-4021-b9ba-a27eaab1c50d%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.

Re: What is the ideal web server to use with Django?

2015-05-13 Thread Tom Evans
On Wed, May 13, 2015 at 2:12 AM, akshat <akshatwillro...@gmail.com> wrote: > I am new to Django. I am building a app which will have to handle several > concurrent requests. Which web server is suitable for this? Any and all. >I have read that > Apache's performance deg

Re: What is the ideal web server to use with Django?

2015-05-13 Thread kk
I would suggest using Nginx. happy hacking. Krishnakant. On Wednesday 13 May 2015 06:42 AM, akshat wrote: I am new to Django. I am building a app which will have to handle several concurrent requests. Which web server is suitable for this? I have read that Apache's performance degrades

Re: How to go about building complicated web apps with django?

2015-05-12 Thread Mario Gudelj
"Should I start building a basic web app and then iteratively" <<< This. Then buy this book https://highperformancedjango.com/ after you've done things like these http://www.revsys.com/blog/2015/may/06/django-performance-simple-things/ On 13 May 2015 at 11:04, akshat <aks

Re: What is the ideal web server to use with Django?

2015-05-12 Thread Mario Gudelj
/06/09/django-nginx-gunicorn-virtualenv-supervisor/ . On 13 May 2015 at 11:12, akshat <akshatwillro...@gmail.com> wrote: > I am new to Django. I am building a app which will have to handle several > concurrent requests. Which web server is suitable for this? I have read > that Apach

What is the ideal web server to use with Django?

2015-05-12 Thread akshat
I am new to Django. I am building a app which will have to handle several concurrent requests. Which web server is suitable for this? I have read that Apache's performance degrades on high load. -- You received this message because you are subscribed to the Google Groups "Django users&q

How to go about building complicated web apps with django?

2015-05-12 Thread akshat
I am new to django. I have till now built tutorial apps and read almost 25% of the source code of django. Right now I guess I have decent know-how of django but since I have not built large-scale app on django hence the question. I am building a web app which I know will involve various

Re: GUI with web-browser using Django, Python 3

2015-05-04 Thread Gergely Polonkai
; <leiwule...@gmail.com> wrote: > I want to make a py-file by GUI. The GUI I want is based on web-browser > (chrome, safari). So I use Django. > > The step-by-step idea is: > >1. > >I open the web-browser (as GUI, not to access internet). On the >web-br

GUI with web-browser using Django, Python 3

2015-05-04 Thread Aura
I want to make a py-file by GUI. The GUI I want is based on web-browser (chrome, safari). So I use Django. The step-by-step idea is: 1. I open the web-browser (as GUI, not to access internet). On the web-browser, there are two blanks and a "Generate" bu

Re: How to find a view in a complex web application

2015-05-04 Thread guettli
ril 2015 11:27:47 UTC+2, guettli wrote: >>>> >>>> We have a complex intranet application. >>>> >>>> It has many view. >>>> >>>> The problem: How to find the view a user wants to use? >>>> >>>> A huge sit

Re: How to find a view in a complex web application

2015-04-30 Thread Derek
not help. >>> >>> Is there a way to search the matching view? >>> >>> Maybe even with auto complete? >>> >>> >>> -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To post to this group, send email to django-users@googlegroups.com. Visit this group at http://groups.google.com/group/django-users. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/701ba7ce-e777-4094-8e37-3a2b246e4276%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.

Re: How to find a view in a complex web application

2015-04-30 Thread guettli
. >> >> Is there a way to search the matching view? >> >> Maybe even with auto complete? >> >> >> -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop rece

Re: How to find a view in a complex web application

2015-04-30 Thread guettli
are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To post to this group, send email to django-users@googlegroups.com. Visit this group at http://groups.goog

Re: How to find a view in a complex web application

2015-04-28 Thread Andrew Farrell
;> -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to django-users+unsubscr...@googlegroups.com. > To post to this g

Re: How to find a view in a complex web application

2015-04-28 Thread Derek
egroups.com. Visit this group at http://groups.google.com/group/django-users. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/7509b96e-5445-4a2d-b584-4440e76975ca%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.

Re: How to find a view in a complex web application

2015-04-28 Thread aRkadeFR
roup at http://groups.google.com/group/django-users. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/b933d0e6-dcb4-4be2-90c3-aeb943924cdd%40googlegroups.com <https://groups.google.com/d/msgid/django-users/b933d0e6-dcb4-4be2-90c3-aeb943924cdd%40googlegroups

How to find a view in a complex web application

2015-04-28 Thread guettli
s. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/b933d0e6-dcb4-4be2-90c3-aeb943924cdd%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.

Re: Host a web application

2015-04-22 Thread Mario Gudelj
to deploy than heroku > > On Wednesday, April 22, 2015 at 2:25:56 AM UTC-4, Kishan Mehta wrote: >> >> Hi , >> >> I have to show my web application project work to a potential employer. >> Is it possible to host the demo somewhere? Any guide on this? >>

Re: Host a web application

2015-04-22 Thread Mario R. Osorio
www.pythonanywhere.com made it easier for me to deploy than heroku On Wednesday, April 22, 2015 at 2:25:56 AM UTC-4, Kishan Mehta wrote: > > Hi , > > I have to show my web application project work to a potential employer. > Is it possible to host the demo somew

Re: Host a web application

2015-04-22 Thread Michele Mattioni
Hi, if it is for a demo, you could use heroku to show it to your client: https://www.heroku.com/ Best, Michele On Wed, Apr 22, 2015 at 7:24 AM, Kishan Mehta <kishanmeh...@gmail.com> wrote: > Hi , > > I have to show my web application project work to a potential employer. &

Host a web application

2015-04-22 Thread Kishan Mehta
Hi , I have to show my web application project work to a potential employer. Is it possible to host the demo somewhere? Any guide on this? Thanks for help, Kishankumar Mehta -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubs

Re: How should I develop a web site and mobile apps(iOS/Android) as Facebook(using DRF + Angularjs)?

2015-04-16 Thread Filipe Ximenes
://thinkster.io/django-angularjs-tutorial/ On Thu, Apr 16, 2015 at 5:03 PM, 백병화 <barkb...@gmail.com> wrote: > >> > Thank you very much for the professional advice :) > > I have more questions.. > > Is there a way to develop a web site by combining MPA and SPA ? > >

Re: How should I develop a web site and mobile apps(iOS/Android) as Facebook(using DRF + Angularjs)?

2015-04-16 Thread 백병화
> > > Thank you very much for the professional advice :) I have more questions.. Is there a way to develop a web site by combining MPA and SPA ? And.. Can you please recommend a tutorial of django+angularjs that is about configuration, building structure, and etc for dividin

Re: How should I develop a web site and mobile apps(iOS/Android) as Facebook(using DRF + Angularjs)?

2015-04-16 Thread Filipe Ximenes
her people may have different opinions about it. On Thu, Apr 16, 2015 at 4:12 PM, 백병화 <barkb...@gmail.com> wrote: > Thank you very much for replying my question. > I'm a student in Korea, so my english grammar is not good. I'm sorry for > that. > > I'm wondering to create a w

Re: How should I develop a web site and mobile apps(iOS/Android) as Facebook(using DRF + Angularjs)?

2015-04-16 Thread 백병화
Thank you very much for replying my question. I'm a student in Korea, so my english grammar is not good. I'm sorry for that. I'm wondering to create a web site as Facebook. I have 3 questions. 1) Is facebook developed as SPA? or Is it developed as SPA+MPA ? 2) Last time, I understood as when I

Re: How should I develop a web site and mobile apps(iOS/Android) as Facebook(using DRF + Angularjs)?

2015-04-16 Thread 백병화
Thank you very much for replying my question. I'm a student in Korea, so my english grammar is not good. I'm sorry for that. I'm wondering to create a web site as Facebook. I have 3 questions. 1) Is facebook developed as SPA? or Is it developed as SPA+MPA ? 2) Last time, I understood

Re: How should I develop a web site and mobile apps(iOS/Android) as Facebook(using DRF + Angularjs)?

2015-04-16 Thread Filipe Ximenes
Hi, I think I partially answered this to you in your previous question: https://groups.google.com/forum/#!topic/django-users/B8v9wjR4-M0 Can you tell me if you didn't understand something? Mobile and AngularJS apps don't work exactly the same as a normal web page. While in a normal web page

How should I develop a web site and mobile apps(iOS/Android) as Facebook(using DRF + Angularjs)?

2015-04-16 Thread 백병화
I want to develop a web site and mobile apps(iOS/Android) as Facebook.by using Django REST Framework AND Angularjs. I'm confused about what steps should I follow.. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from

Re: Upload above apache web root?

2015-04-07 Thread Stephanie Socias
But /data/www/upload/... is the file path of your upload, not the URL. > You still need an actual URL that is served by your webserver. Obviously, a > browser can't access arbitrary file paths on your server. > >>> -- > >>> DR. > >>> > >>> -- > >>> You

Re: Upload above apache web root?

2015-04-07 Thread Luis Zárate
> URL. You still need an actual URL that is served by your webserver. >> Obviously, a browser can't access arbitrary file paths on your server. >> >>> -- >> >>> DR. >> >>> >> >>> -- >> >>> You received this message because

Re: Upload above apache web root?

2015-04-07 Thread Stephanie Socias
ss arbitrary file paths on your server. > >>> -- > >>> DR. > >>> > >>> -- > >>> You received this message because you are subscribed to a topic in the > Google Groups "Django users" group. > >>> To unsubscribe from t

Re: Upload above apache web root?

2015-04-07 Thread Luis Zárate
itrary file paths on your server. >>> -- >>> DR. >>> >>> -- >>> You received this message because you are subscribed to a topic in the Google Groups "Django users" group. >>> To unsubscribe from this topic, visit https://groups.google.c

Re: Upload above apache web root?

2015-04-07 Thread Stephanie Socias
You received this message because you are subscribed to a topic in the >> Google Groups "Django users" group. >> To unsubscribe from this topic, visit >> https://groups.google.com/d/topic/django-users/aHa0WWHGreY/unsubscribe. >> To unsubscribe from this group and all

Re: Upload above apache web root?

2015-04-07 Thread Stephanie Socias
send an email to > django-users+unsubscr...@googlegroups.com. > To post to this group, send email to django-users@googlegroups.com. > Visit this group at http://groups.google.com/group/django-users. > To view this discussion on the web visit > https://groups.google.com/d/msgid/django-us

Re: Upload above apache web root?

2015-04-07 Thread Daniel Roseman
jango users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To post to this group, send email to django-users@googlegroups.com. Visit this group at http://groups.google.com/group/django-users. To view thi

Re: Upload above apache web root?

2015-04-06 Thread Stephanie Socias
ssage because you are subscribed to the Google > Groups "Django users" group. > > > To post to this group, send email to django...@googlegroups.com > . > > > To unsubscribe from this group, send email to > django-users...@googlegroups.com . >

Re: How to make request ie GET/POST to soap (windows web service ) in Django?

2015-03-19 Thread SHINTO PETER
Thank you James Schneider & Andrew Farrell On Wednesday, 18 March 2015 21:46:33 UTC+5:30, SHINTO PETER wrote: > > How to make request ie GET/POST to soap (windows web service ) in Django? > -- You received this message because you are subscribed to the Google Groups "D

Re: How to make request ie GET/POST to soap (windows web service ) in Django?

2015-03-18 Thread James Schneider
erver. > > On Wed, Mar 18, 2015 at 11:16 AM, SHINTO PETER <shinto@gmail.com> > wrote: > >> How to make request ie GET/POST to soap (windows web service ) in Django? >> >> -- >> You received this message because you are subscribed to the Google Groups >

Re: How to make request ie GET/POST to soap (windows web service ) in Django?

2015-03-18 Thread Andrew Farrell
request ie GET/POST to soap (windows web service ) in Django? > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to django-us

How to make request ie GET/POST to soap (windows web service ) in Django?

2015-03-18 Thread SHINTO PETER
How to make request ie GET/POST to soap (windows web service ) in Django? -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-user

Re: Embedding a compiler to my web page

2015-03-07 Thread Russell Keith-Magee
as a compilation task: 1) User submits code for compilation. This creates a compilation task in state "Pending" 2) A second process, completely external to your web server sits waiting for new "pending" tasks; when a new task arrives, it is taken off the queue, and moved to a &q

Re: Embedding a compiler to my web page

2015-03-07 Thread luis zarate
+unsubscr...@googlegroups.com. > To post to this group, send email to django-users@googlegroups.com. > Visit this group at http://groups.google.com/group/django-users. > To view this discussion on the web visit > https://groups.google.com/d/msgid/django-users/2a2fae63-cb65-41e1-af5c-d67d30c21eb8%40g

Embedding a compiler to my web page

2015-03-07 Thread Snehasish Sen
s+unsubscr...@googlegroups.com. To post to this group, send email to django-users@googlegroups.com. Visit this group at http://groups.google.com/group/django-users. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/2a2fae63-cb65-41e1-af5c-d67d30c21eb8%40google

Re: Implementing a grammar checker on the web

2015-02-16 Thread Ricardo Daniel Quiroga
ascript + AJAX? > > > > 2015-02-16 9:58 GMT-03:00 Kelvin Nyota <kamaunyr...@gmail.com>: > > I have built a grammar checker in Python. It works well in the terminal, >> but i don't know how to implement it on the web. How can I implement a >> grammar checker on t

Re: Implementing a grammar checker on the web

2015-02-16 Thread Ricardo Daniel Quiroga
Hi html + textarea + javascript + AJAX? 2015-02-16 9:58 GMT-03:00 Kelvin Nyota <kamaunyr...@gmail.com>: > I have built a grammar checker in Python. It works well in the terminal, > but i don't know how to implement it on the web. How can I implement a > grammar checker o

Implementing a grammar checker on the web

2015-02-16 Thread Kelvin Nyota
I have built a grammar checker in Python. It works well in the terminal, but i don't know how to implement it on the web. How can I implement a grammar checker on the web, like Grammarly or spellcheckerplus? I could not find any article that talked about that at all.Most of it was errelevant

Re: Django web hosts in Canada

2015-01-30 Thread jogaserbia
groups.com. To post to this group, send email to django-users@googlegroups.com. Visit this group at http://groups.google.com/group/django-users. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/f9862c63-ed67-44e1-80cf-4606221f2c3f%40googlegroups.com. For mo

Re: Django web hosts in Canada

2015-01-30 Thread Carlos Carcamo
cause you are subscribed to the Google Groups >> "Django users" group. >> To unsubscribe from this group and stop receiving emails from it, send an >> email to django-users+unsubscr...@googlegroups.com. >> To post to this group, send email to django-users@googlegroups

Re: Django web hosts in Canada

2015-01-29 Thread Avraham Serour
t; group. > To unsubscribe from this group and stop receiving emails from it, send an > email to django-users+unsubscr...@googlegroups.com. > To post to this group, send email to django-users@googlegroups.com. > Visit this group at http://groups.google.com/group/django-users

Django web hosts in Canada

2015-01-29 Thread jogaserbia
up at http://groups.google.com/group/django-users. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/d489e516-94d8-46e2-a212-438faa404452%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.

Re: Linking to multiple dynamic images from same web page

2015-01-19 Thread Derek
ds, > > Mitesh Patel > > Senior Product Engineer > > Mobile: +91-9970 8575 39 > Email: mitesh.p...@gmail.com > LinkedIn : http://in.linkedin.com/in/miteshpatel11 > > > On 18 January 2015 at 19:23, Derek <game...@gmail.com > > wrote: > >> I have

Re: Linking to multiple dynamic images from same web page

2015-01-18 Thread Mitesh Patel
On 18 January 2015 at 19:23, Derek <gamesb...@gmail.com> wrote: > I have a situation which is puzzling. > > I have a web page that, when generated embeds links that look like: > > > line 1401, in xlabel > l = gca().set_xlabel(s, *args, **kwargs) > File &

Linking to multiple dynamic images from same web page

2015-01-18 Thread Derek
I have a situation which is puzzling. I have a web page that, when generated embeds links that look like: http://groups.google.com/group/django-users. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAF1Wu3OfN9rmUKTDO%2BT%3DJan%3DF%3DLKODqQObds-tvME

Re: Need some advice on how to go about building a real time web app.

2015-01-15 Thread Shazwi Suwandi
Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To post to this group, send email to django-users@googlegroups.com. Visit this group at http://groups.google.com/group/django-users. To view this

Re: Need some advice on how to go about building a real time web app.

2015-01-03 Thread jonas hagstedt
group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To post to this group, send email to django-users@googlegroups.com. Visit this group at http://groups.google.com/group/django-users. To view this discussion on the w

Re: Need some advice on how to go about building a real time web app.

2015-01-02 Thread Shazwi Suwandi
m. To post to this group, send email to django-users@googlegroups.com. Visit this group at http://groups.google.com/group/django-users. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/1a28893c-ba5e-4030-a53c-da15cdf2d48e%40googlegroups.com. For more options, v

Re: Need some advice on how to go about building a real time web app.

2015-01-02 Thread jonas hagstedt
most of that code and adopt it to your own project. On Friday, January 2, 2015 1:36:40 PM UTC+1, Shazwi Suwandi wrote: > > Hi group, > > I'd like to get some guidance on how to go about thinking about the > structure of the web app I'm trying to build. > From a high level persp

Re: Need some advice on how to go about building a real time web app.

2015-01-02 Thread Michiel Overtoom
emails from it, send an email to django-users+unsubscr...@googlegroups.com. To post to this group, send email to django-users@googlegroups.com. Visit this group at http://groups.google.com/group/django-users. To view this discussion on the web visit https://groups.google.com/d/msgid/django-

Need some advice on how to go about building a real time web app.

2015-01-02 Thread Shazwi Suwandi
Hi group, I'd like to get some guidance on how to go about thinking about the structure of the web app I'm trying to build. >From a high level perspective, I'm trying to make a web app that facilitates a small business doing camera rentals. To give a use case, if a user makes a rental book

Re: Web and mobile app with Django? Kivy? sth else?

2014-12-06 Thread graeme
If you want to do everything in Python (which I like to) my choices would be Django for the backend, Kivy for the mobile apps, and Django Rest Framework to provide APIs for the mobile apps. If you want to keep it simpler maybe a responsive web design will be enough, so you only need Django

Re: Web and mobile app with Django? Kivy? sth else?

2014-12-06 Thread Russell Keith-Magee
uff the user sees), or both? Are you doing this for >> immediate financial gain [7], or a spiritual journey of self discovery and >> learning [6]? The world of web dev is changing almost every couple of >> months, stay on top of your game by reading blog articles from other

Re: Web and mobile app with Django? Kivy? sth else?

2014-12-05 Thread Cal Leeming
you need to ask >> yourself what it is you want to work on? Do you want to do backend (e.g. >> all the server stuff, nothing visual), or do you want to do frontend (all >> the visual/pretty stuff the user sees), or both? Are you doing this for >> immediate financial gain [7],

Re: Web and mobile app with Django? Kivy? sth else?

2014-12-05 Thread Mariusz Wilk
e user sees), or both? Are you doing this for > immediate financial gain [7], or a spiritual journey of self discovery and > learning [6]? The world of web dev is changing almost every couple of > months, stay on top of your game by reading blog articles from other > developers and keepin

Re: Web and mobile app with Django? Kivy? sth else?

2014-12-02 Thread Cal Leeming
financial gain [7], or a spiritual journey of self discovery and learning [6]? The world of web dev is changing almost every couple of months, stay on top of your game by reading blog articles from other developers and keeping on top of tech new. Personally I use Feedly [9] to aggregate these feeds

Re: Web and mobile app with Django? Kivy? sth else?

2014-12-02 Thread Mariusz Wilk
> > Thanks. But is it possible to create a pretty web/mobile app with pop-ups, > buttons, input boxes, pics etc in Django/Python alone? > I'm asking since I'm doing Django tutorial and so far I only have a > raw-looking poll (as an example). > When a website is mad

Re: Web and mobile app with Django? Kivy? sth else?

2014-11-24 Thread Fred Stluka
+1 for writing a single RWD (Responsive Web Design) web app using Django, instead of writing separate web, Android and iOS apps. If necessary, wrap the result in PhoneGap to mobile-specific features, uploading images from the camera, capturing the GPS location, showing maps, accessing the local

Re: Web and mobile app with Django? Kivy? sth else?

2014-11-24 Thread Collin Anderson
on a mobile as on the the web. Each client would log in (via mobile > or desktop) and continue solving some exercises from the place he > previously finished at. I have a potential client for this app, I don't > have any deadline and if it works fine I shouldn't have any problems > selling it

Web and mobile app with Django? Kivy? sth else?

2014-11-21 Thread Mariusz Wilk
I'm new to programming. Eventually, I'd like to make a website and an android/ios app that would work together and display pretty much the same content on a mobile as on the the web. Each client would log in (via mobile or desktop) and continue solving some exercises from the place he

Enter a contest to win a free e-copy of "Web Development with Django Cookbook"

2014-11-05 Thread Aidas Bendoraitis
Hello all, Not long ago my book "Web Development with Django Cookbook" was published and now you have a chance to win a free copy of it. Check http://djangotricks.blogspot.de/2014/11/win-free-copies-of-web-development-with-django-cookbook.html for more details. Cheers, Aidas B

Freelance Web Designer in Hyderabad,Rumenia,Turkey,Afganisthan,Turkisthan

2014-10-31 Thread Freelancer Web Designer
My Self Raheem Pasha, Freelance Hyderabad based Freelance Website Designer and Developer with Five years experience in Internet, offering high-end expertise solution at freelance . Offering Web designing,Seo Services,Web Hosting,Template designing,Logo Designing,Banner Advertisement,Flash

Review copies available for “Web Development with Django Cookbook”

2014-10-30 Thread Sunitha Palanna
We have a few e-copies of *Web Development with Django Cookbook* ( https://www.packtpub.com/web-development/web-development-django-cookbook ) available for review. If interested, just drop a line in the comments below with following required details: 1. Email address 2. Choice

Re: How do I create a simple user view web page to create/add mysql db entries?

2014-10-16 Thread Bovine Devine
ango-users@googlegroups.com. Visit this group at http://groups.google.com/group/django-users. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/d8d140af-c2d0-4746-ae86-e2360c48e13c%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.

Re: How do I create a simple user view web page to create/add mysql db entries?

2014-10-16 Thread Bovine Devine
ail to django-users+unsubscr...@googlegroups.com. To post to this group, send email to django-users@googlegroups.com. Visit this group at http://groups.google.com/group/django-users. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/0a9f105f-7186-49a3-9de1-04f8f2c

Re: How do I create a simple user view web page to create/add mysql db entries?

2014-10-16 Thread Collin Anderson
uot; group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To post to this group, send email to django-users@googlegroups.com. Visit this group at http://groups.google.com/group/django-users. To view this discussion on the

Re: How do I create a simple user view web page to create/add mysql db entries?

2014-10-16 Thread Bovine Devine
up. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To post to this group, send email to django-users@googlegroups.com. Visit this group at http://groups.google.com/group/django-users. To view this discussion on the web vi

Re: How do I create a simple user view web page to create/add mysql db entries?

2014-10-15 Thread Bovine Devine
email to django-users+unsubscr...@googlegroups.com. To post to this group, send email to django-users@googlegroups.com. Visit this group at http://groups.google.com/group/django-users. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/fd5241ea-d708-448c-a591-599552a21d

Re: How do I create a simple user view web page to create/add mysql db entries?

2014-10-08 Thread shmengie
ot; group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To post to this group, send email to django-users@googlegroups.com. Visit this group at http://groups.google.com/group/django-users. To view this discussion on the w

Re: How do I create a simple user view web page to create/add mysql db entries?

2014-10-07 Thread Collin Anderson
this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To post to this group, send email to django-users@googlegroups.com. Visit this group at http://groups.google.com/group/django-users. To view this discussion on the web visit https://groups.google.c

Re: How do I create a simple user view web page to create/add mysql db entries?

2014-10-07 Thread Bovine Devine
django-users@googlegroups.com. Visit this group at http://groups.google.com/group/django-users. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/e6efaffc-7548-46ec-9359-9dfe359ff015%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.

Re: How do I create a simple user view web page to create/add mysql db entries?

2014-10-07 Thread Collin Anderson
e from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To post to this group, send email to django-users@googlegroups.com. Visit this group at http://groups.google.com/group/django-users. To view this discussion on the web visit https://groups

Re: How do I create a simple user view web page to create/add mysql db entries?

2014-10-07 Thread Bovine Devine
s. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/9d830214-bb3d-41d1-be5c-8def1316981b%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.

Re: How do I create a simple user view web page to create/add mysql db entries?

2014-10-07 Thread Collin Anderson
groups.com. To post to this group, send email to django-users@googlegroups.com. Visit this group at http://groups.google.com/group/django-users. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/61fb9b6d-fe6c-4501-b562-b8805efd838b%40googlegroups.com. For more opti

How do I create a simple user view web page to create/add mysql db entries?

2014-10-07 Thread Bovine Devine
roup, send email to django-users@googlegroups.com. Visit this group at http://groups.google.com/group/django-users. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/bff4c358-db23-432a-b06a-bef88270bae1%40googlegroups.com. For more options, visit https://groups.go

Re: Setting up Apache to be the web server for apache for Django 1.7 and python 3.3

2014-10-03 Thread Collin Anderson
runserver for testing changes to your code. > Is mod_wsgi for a medium traffic web site for https the way to go? If you're not going to use nginx, I'd recommend the event-mpm if you have the choice, which should help performance. -- You received this message because you are subscribed t

Re: Setting up Apache to be the web server for apache for Django 1.7 and python 3.3

2014-10-03 Thread robert brook
onger > be using the local server, but now the Apache server? > > Any other suggestions would be helpful. > > Is mod_wsgi for a medium traffic web site for https the way to go? > > Thanks > -- You received this message because you are subscribed to the Google Groups "

Re: Setting up Apache to be the web server for apache for Django 1.7 and python 3.3

2014-10-03 Thread Timothy W. Cook
rver? > > Any other suggestions would be helpful. > > Is mod_wsgi for a medium traffic web site for https the way to go? > > Thanks > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe

Setting up Apache to be the web server for apache for Django 1.7 and python 3.3

2014-10-03 Thread robert brook
I use? I assume that once I use Apache I no longer need to run python manage.py runserver, because I will no longer be using the local server, but now the Apache server? Any other suggestions would be helpful. Is mod_wsgi for a medium traffic web site for https the way to go? Thanks -- You

<    2   3   4   5   6   7   8   9   10   11   >