Re: djangopeople.net

2011-12-05 Thread Kurtis Mullins
http://www.networksolutions.com/whois-search/djangopeople.net On Mon, Dec 5, 2011 at 5:48 PM, Vitaliy wrote: > Hi, > > seems http://djangopeople.net gone, anyone know if going to be up or > who is running it ?.. > I just lost one contact that I definitely know exist on that site :( > > -- > You

Re: How many developers have moved to class-based views?

2012-11-11 Thread Kurtis Mullins
I use them! On Sun, Nov 11, 2012 at 2:05 PM, Kevin wrote: > Wow, the dev docs are much more informative and actually explains the best > way to alter a form before saving it. I was using a different method, but > the method mentioned in the dev docs are much more cleaner than what I was > doin

Re: How many developers have moved to class-based views?

2012-11-12 Thread Kurtis Mullins
John, My argument (or reason for switching) is it's DRY. Saves a lot of time and repetition in the long run ... at least in my experience. On the other hand, there are still perfectly good purposes for "function based views". On Mon, Nov 12, 2012 at 11:07 AM, John DeRosa wrote: > On Nov 11, 20

Re: how to get data from other website after login on other sites through my site?

2013-03-15 Thread Kurtis Mullins
I am going to assume that you do not own, or otherwise have access to Coursera as a developer. After a quick search, I see they offer no API. Therefore, I don't believe there would be any "ethical" way of doing this. You could have a user login through your site as a sort of gateway but I don't bel

Re: Goodbye, Malcolm

2013-03-20 Thread Kurtis Mullins
R.I.P. On Wed, Mar 20, 2013 at 8:16 PM, Ray Loyzaga wrote: > Hi Jacob, > > Would you be able to email me regarding the future funeral arrangements for > Malcolm. > So far the family are looking at 4th April, in Sydney, but the time (and > the date), haven't been totally settled. > It would be g

Re: Doubt regarding JSON/SQL in Django

2013-03-30 Thread Kurtis Mullins
If you don't use the ORM, Forms, and even the templating system you're losing quite a bit with Django. In my opinion, it's not worth using Django for those sorts of projects. While not a Python project, I found NodeJS & node-restify a good candidate for these types of applications. That's not a co

Re: Need Advice: Sending Emails

2013-04-12 Thread Kurtis Mullins
Check out sendgrid. If you use Rackspace I think they even give you a good discount. You could also just configure everything to use Google's SMTP. I've done that for quite a few projects. On Fri, Apr 12, 2013 at 12:19 PM, Tom Evans wrote: > On Fri, Apr 12, 2013 at 5:01 PM, Venkatraman S wrote

Re: How many workers do you run on one machine using django celery?

2013-04-20 Thread Kurtis Mullins
Both Michael and Shawn are spot-on in terms of scaling and using the queuing. However, I'd like to add that 5 seconds to complete a single task like this seems way too slow to me. I don't have much experience with sending SMS but if you're using an external SMS API, it should be extremely quick. I

Re: FW:

2013-05-03 Thread Kurtis Mullins
Phishing Web Site (SPAM) On Sat, Apr 6, 2013 at 9:10 PM, Ian Foote wrote: > http://kyokushin-aoki.sakura.ne.jp/www/tvojdi.php > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from this group and stop receiving emails fro

Re: Accessing django development server from internet!

2013-05-07 Thread Kurtis Mullins
You would need to make port 80 accessible from the internet. As mentioned, that's out of the scope of the Django User Group. To give you a little bit of help, I suggest searching for the terms "web server from home". That should get you started. On Tue, May 7, 2013 at 4:19 PM, Nikolas Stevenson-M

Re: Disable "Password Upgrading"?

2013-05-16 Thread Kurtis Mullins
It took some digging but I believe I found the answer, just in case anyone else comes across this problem. I'll post again after I've tested this. https://github.com/django/django/blob/1.5.1/django/contrib/auth/hashers.py#L20 On Tue, May 14, 2013 at 6:05 PM, Kurtis wrote: >

Re: Disable "Password Upgrading"?

2013-05-16 Thread Kurtis Mullins
feels clumsy and I'm sure there's a better way. Your mileage may very. On Thu, May 16, 2013 at 7:06 PM, Kurtis Mullins wrote: > It took some digging but I believe I found the answer, just in case anyone > else comes across this problem. I'll post again after I've tested thi

Re: Where is the best place to get assistance installing Red Hat, Oracle and Django onto a VPN?

2015-06-10 Thread Kurtis Mullins
I would also recommend checking out Heroku for a quicker test release. Down the line, when you want more control over the system administration, you can save a bit of money by building out your own services. > On Jun 10, 2015, at 8:35 AM, Vijay Khemlani wrote: > > Wihtout knowing anything abou

Re: html to odt

2013-11-22 Thread Kurtis Mullins
I'm not sure if I understand the problem correctly, but if you are wanting to serve HTML files rendered as ODT, you could take the following steps: 1. In your view, renderyour HTML 2. Use this library

Re: Terrible performance when dropping into raw SQL Oracle

2014-03-05 Thread Kurtis Mullins
Sort of off-topic as I don't have anything constructive to add to help fix your problem but I recommend not running complex (long-running) queries directly in Django views. Perhaps use Celery. I know this doesn't solve your problem (although it might help a bit if Django's environment is causing i

<    1   2   3   4   5