Re: Internship/Job Opportunities in Django Development

2024-10-22 Thread Noah Nkalan
your so good i see your work we can collabolates to make somethings profitable On Sunday, October 6, 2024, Venu Gopal wrote: > Thanks. I am forwarding to hr > > On Sun, 6 Oct 2024 at 20:18, Tejas Vaij wrote: > >> Hi Venu Gopal, I have sent you my profile on your email, please check. >> >> On Su

Re: Exciting Opportunity: Join Our Django WhatsApp Bulk Messaging Project!

2024-02-20 Thread Noah Nkalan
i want to join on this opportunity i like django i was try to about learn about documentation is so amazing On Sunday, February 18, 2024, SURAJ TIWARI wrote: > 🚀 Join Our Django WhatsApp Bulk Messaging Project! > > 👋 Hello everyone, > > Are you looking for an exciting opportunity to gain hands-o

Re: My first Django project

2023-08-30 Thread Noah Dara
hi I'm new in Django I need your help my project is retirning the following in theterminal PS C:\Users\user\projects> & C:/Users/user/.virtualenvs/projects-O4ZjmZLG/Scripts/Activate.ps1 & : File C:\Users\user\.virtualenvs\projects-O4ZjmZLG\Scripts\Activate.ps1 cannot be loaded because running

Django Girls Copenhagen Workshop: Call for Coaches Application Open

2019-02-27 Thread Noah Alorwu
velopers who are looking for a way to impact upcoming women developers. If you are *in */ *around* Copenhagen, don't hesitate to register to be a coach via: https://goo.gl/forms/yGkldcYezkvMZcQr1 Thank you. Best, Noah -- You received this message because you are subscribed to the Google

Runserver Error (Exceptions) in Latest Django Dev Version with Python 3.3

2014-01-02 Thread Noah Fang
Django newbie here. I just checked out and installed the latest dev version as instructed and created a project, but when trying to "python manage.py runserver", it gives the following error message. Anyone has any clue? Huge thanks! $ python manage.py runserver Traceback (most recent call last

Model Question

2011-02-25 Thread Noah Nordrum
I'm trying to cram the ORM into an existing schema and have an issue I can't seem to get around. I have a number of tables with a timestamp column, but the column name is inconsistent. I would like to put the timestamp field in an abstract superclass, but I can't seem to figure out how to override

Re: Removing template newlines in

2010-05-12 Thread Noah Watkins
if var2 %}{{ ... }} >   {% endif %}{% if var3 %}{{ ... }} >   {% endif %} >   footer > > > Regards > Scott > > On May 12, 2:20 pm, Noah Watkins wrote: > > > > > > > Peter > > > I don't believe "spaceless" will work because

Re: Removing template newlines in

2010-05-12 Thread Noah Watkins
ecause it is in the block. On May 12, 11:10 am, Peter Landry wrote: > If you want to keep the newlines in your template, you can > usehttp://docs.djangoproject.com/en/1.1/ref/templates/builtins/#spaceless > > Peter > > On 5/12/10 2:02 PM, "Noah Watkins" wrote: > &

Removing template newlines in

2010-05-12 Thread Noah Watkins
I have a variable amount of lines that need to be displayed in a block: header {% if var1 %}{{ ... }}{% endif %} {% if var2 %}{{ ... }}{% endif %} {% if var3 %}{{ ... }}{% endif %} footer However, if some of the if-statements are not evaluated to be true then the line breaks are stil

Re: Dynamically add a line to an inlineformset

2009-08-20 Thread Noah
http://www.djangosnippets.org/snippets/1389/ On Aug 20, 1:09 am, Matthias Kestenholz wrote: > On Thu, Aug 20, 2009 at 7:27 AM, Andew Gee wrote: > > > Does anyone know how to add a new line to anlineformset dynamically? I > > have a page that contains an inlineformset and I need to be able to > >

links to dynamic form info

2009-08-15 Thread Noah Watkins
Looking for links to solutions to the following situation: class Book(models.Model): ... class Author(model.Models): book = models.ForeignKey(Book) ... I'd like to design a form for creating books that allows multiple authors to be added before the book form is submitted. Clearly some

Re: How should I organize my news site's backend - needing some feedback

2009-08-07 Thread Noah
You are on the right track investigating the ContentType app. -n On Aug 6, 11:51 pm, chyea wrote: > Hi all, > > I recently sent an email to another Django coder asking for some > possible feedback on my situation. I'll simply restate the email here, > because I figured why not ask a bunch of ot

Re: ImportError: No module named base

2008-02-18 Thread Noah
Me too --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more

Re: The plot thickens! Ticket #5171 and Intrigue on the Rack!

2008-01-30 Thread Noah
IT seems it can happend when you make many concurent requests, the site is hosting 27 django projects as is , 25 on Django 0.95 and 3 on Trunk each using it's own interpriter in mod_python but if you open them all at the same time 2 or 3 of them (random ones) will give errors saying they can't fin

The plot thickens! Ticket #5171 and Intrigue on the Rack!

2008-01-30 Thread Noah
Ok so it seems we were having a problem with the issue described in Ticket #5171 because we were running Django96 and Django-Trunk on the same server using Psycopg2 and mod_python was using the same interpreter for them both. So we switched all the sites to use their own interpriters Now when you

Re: We're having an extremely difficult to diagnose problem:

2008-01-30 Thread Noah
Our default encoding is UTF-8 and that problem would manifest more often and not take out the whole server. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to dj

Re: We're having an extremely difficult to diagnose problem:

2008-01-29 Thread Noah
It doesn't happen on every page view... the server runs fine for days and then POOF collapse, every site On Jan 29, 7:06 pm, Ivan Illarionov <[EMAIL PROTECTED]> wrote: > > Our database is utf8 we explicitly convert ignoring errors to utf8 > > before passing to textile. Also it's not 1 page that

Re: We're having an extremely difficult to diagnose problem:

2008-01-29 Thread Noah
Our database is utf8 we explicitly convert ignoring errors to utf8 before passing to textile. Also it's not 1 page that poops it's every site pooping at once. The best idea at this time is that because some apps on the server are trunk and some are 0.96 it's causing a problem because of this : ht

Re: We're having an extremely difficult to diagnose problem:

2008-01-29 Thread Noah
**CORRECTION** mod_python 3.3.1 I dunno why I wrote 2.7 --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to djang

We're having an extremely difficult to diagnose problem:

2008-01-29 Thread Noah
We're having an extremely difficult to diagnose problem: At some point (possibly due to access from the public to a particular view) our server will crap out. All 21 Django sites hosted on it will display a very similar error. There are obviously slight variations in the local variables and what'

Re: Django Developer Needed

2007-06-23 Thread Noah Gift
On 6/23/07, Kenneth Gonsalves <[EMAIL PROTECTED]> wrote: > > > > On 22-Jun-07, at 5:41 AM, Noah Gift wrote: > > > > unique interactive web applications, etc. current plans include a > > > python-based CMS such as django on Linux. > > > > you c

Re: Django Developer Needed

2007-06-21 Thread Noah Gift
On 6/21/07, Tyson Tate <[EMAIL PROTECTED]> wrote: > > > On Jun 21, 2007, at 5:11 PM, Noah Gift wrote: > > > I think your being a bit misleading. Of course you can use django > > for a CMS. It certainly doesn't hurt that CMS was the problem > > doma

Re: Django Developer Needed

2007-06-21 Thread Noah Gift
On 6/21/07, Kenneth Gonsalves <[EMAIL PROTECTED]> wrote: > > > > On 21-Jun-07, at 11:28 PM, Geoff wrote: > > > unique interactive web applications, etc. current plans include a > > python-based CMS such as django on Linux. > > you could also inform them that django is not a CMS - if they are > expe

Re: Development times

2007-06-20 Thread Noah Gift
nice! I went to SLO...glad python infiltrated! On 6/20/07, Tyson Tate <[EMAIL PROTECTED]> wrote: > > > If you make heavy use of Generic Views, you can save a ton of time. > This quick-and-dirty site took about 4 hours, from models to > templates to CSS: > > http://iotapi.com > > Nothing too speci

Cent OS Deployment

2007-01-27 Thread Noah Gift
Anyone have any good tips on Cent OS deployments? I would like to use python 2.5, but it is a little tricky with Cent... Thanks, Noah Gift --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users"

Re: Couple of dumb questions

2007-01-15 Thread Noah
change where the symlink points. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email t

Re: Why is my Django install so slow?

2007-01-15 Thread Noah
Is your media being served by the Apache instance serving Django or a separate Apache install? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users

Re: What svn (subversion) client do you use for OS X?

2007-01-12 Thread Noah
have you found svnx to be unstable? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send emai

Re: What svn (subversion) client do you use for OS X?

2007-01-11 Thread Noah
I could hope there is a rewrite... after all there hasn't been a news update since 2004... --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@goo

Re: What svn (subversion) client do you use for OS X?

2007-01-11 Thread Noah
Sorry, I hit post twice. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL

Re: What svn (subversion) client do you use for OS X?

2007-01-11 Thread Noah
Not all of my files are Python, in fact probably only 500 or so of the 15,000 files I'm versioning are actually py files. The rest are graphics, data and resources of other kinds. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the G

Re: What svn (subversion) client do you use for OS X?

2007-01-11 Thread Noah
Not all of my files are Python, in fact probably only 500 or so of the 15,000 files I'm versioning are actually py files. The rest are graphics, data and resources of other kinds. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the G

Re: What svn (subversion) client do you use for OS X?

2007-01-11 Thread Noah
Anyone? Maybe we could make a list and I'll try them all out... RapidSVN SvnX ZigVersion what else? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to djang

What svn (subversion) client do you use for OS X?

2007-01-11 Thread Noah
I recently switched to a mac and I've been keeping all of my projects in subversion and I don't have a good GUI client. What do you recommend? I tried svnX but it did not work properly and RapidSVN wasn't very usable and ZigVersion didn't like how large my repository was (15,000+ files) --~--~--

What svn (subversion) client do you use for OS X?

2007-01-11 Thread Noah
I'm a switcher... but I'm also an svn user, and I got svn installed ok using the darwin ports but I need a decent GUI for svn. I was using TortoiseSVN on Windows and it was great. This is something of an issue for me as I have over 15,000 project files under version control and as it stands now t

rendering multiple dictionaries?

2006-12-31 Thread Noah Gift
I can avoid it. It makes for a nasty template with too much nesting. Thanks, Noah Gift --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to dj

Return and continue processing?

2006-12-13 Thread Noah
If I have a fairly intensive view, is there a way to return the response (ie a thank you) and continue doing my number crunching? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to thi

Re: problems turning debug off

2006-12-06 Thread Noah
Flat pages catches a 404 and then looks to see if a flat page exists for that url --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups

Re: graceful shopping cart questions

2006-12-05 Thread Noah
No one? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For m

graceful shopping cart questions

2006-12-04 Thread Noah
I downloaded and looked at the django-cart code and noted the views go cart = request.session.get('cart', None) or Cart() how can thre session pickle the cart and be accurate if it's stored in the database or am I confuised? is Django smart enough to know how that should work and retrive the new

Re: How should I store credit cards for offline processing

2006-12-01 Thread Noah
I'm not in charge of such decisions. I only write the code. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe fr

Re: How should I store credit cards for offline processing

2006-12-01 Thread Noah
It's only for a couple weeks or so until actual online processing without storing the cards is implemented. It's also fairly likley there won't be a single order taken IMO... --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

Re: How should I store credit cards for offline processing

2006-12-01 Thread Noah
I figured I'd use GPG --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PR

How should I store credit cards for offline processing

2006-12-01 Thread Noah
I'm working on a site who's not ready to do online processing with a gateway but they want to launch anyways. They would like a secure way to store the credit cards in the database. Does anyone have a good solution for this? I was thinking but I'd rather not have to write all the code to implemen

Re: How do I tell the tinyMCE editor where an image file is?

2006-11-04 Thread Noah
You have to make sure the image is actually accessable via that URL and that your config isn't reading that as a view. Search the docs for serving static content with Django it makes using the development server easier. Hope that helps --~--~-~--~~~---~--~~ You r

Re: (Third Attempt To Post)Complex Application Security Model

2006-10-19 Thread Noah
This sort of thing is asked for time and time again, is there any idea when Chris' code will be ready? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to djang

Re: Django color picker -- ColorField?

2006-10-19 Thread Noah
I'd totaly be interested in that. If someone wanted to write the appropriet code it would also be useful to be able to filter by related colors somehow. On Oct 15, 1:03 pm, "inquis" <[EMAIL PROTECTED]> wrote: > Is there any interest in a Django field type that will accept and > validate a set of

Re: Dojo vs Mochikit for Django dev?

2006-10-17 Thread Noah
I can't say for sure but I imagine the answer you're going to get from most people is to use whichever one you like. Since they aren't going to communicate with Django over a special API but rather through the same methods they would if you were using any other setup for development you're pretty

Re: Django documentation search bar plugin for Firefox

2006-10-06 Thread Noah
Fair enough. I actually didn't know those existed. I still like the search box tho --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroup

Re: Django documentation search bar plugin for Firefox

2006-10-05 Thread Noah
No problem, please pass the link on to your friends. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this

Django documentation search bar plugin for Firefox

2006-10-05 Thread Noah
I'm always searching the Django docs, so I decided to make a search bar plugin for Firefox so that I don't have to go to the Django documentation page in order to search the documentation. You can pick it up at: http://noah.itgoesclick.com/django-docs-search/ --~--~-~--~~--

Tutorial Repo

2006-05-31 Thread Noah
I think it would be really good if there were a list of links or something as a tutorial repo on the main site. Also the main tutorial I've found isn't that useful or in-depth. It's not bad but left me wanting more. I think a good tutorial would be a complete blog tutorial that had articles with

FileField and core=True

2006-05-13 Thread noah
n 'no file'. -Noah --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send

The logos on the community page color's don't match the text

2006-05-09 Thread Noah
The logos at http://www.djangoproject.com/community/logos/ particularaly http://media.djangoproject.com/img/logos/django-logo-negative.png don't seem to follow the "Official colors" the green in the background is not RGB: R:9 G:46 B:32 Mistake? Coversion problem? --~--~-~--~~

Does it matter what DB engine you use?

2006-04-01 Thread Noah
I'm looking to start learning django and I had a Windows XP Home Edition laptop I'd like top use as my development machine. I like PostgreSQL as a database, however the Windows installer makes a user that you can't get rid of on XP Home and thusly can't reinstall and you can't ever switch to that