Re: webcam in a web page

2009-08-20 Thread Hernan Olivera

Pegale una mirada a ustream, y en 5 minutos lo tenes andando.
La otra es mas compleja, usando sl, con vlc haciendo streaming.

--- english version

Look for ustream, you can broadcast in 5 minutes.
Using SL, you need to see VLC treaming.

greetings

2009/8/20 Lic. José M. Rodriguez Bacallao <jmr...@gmail.com>:
>
> hi folks, I need to show a live web cam in my site, does anyone know
> how to do that?
>
> --
> Lic. José M. Rodriguez Bacallao
> Centro de Biofisica Medica
> -
> Todos somos muy ignorantes, lo que ocurre es que no todos ignoramos lo mismo.
>
> Recuerda: El arca de Noe fue construida por aficionados, el titanic
> por profesionales
> ---------
>
> >
>



-- 
Hernan Olivera

--~--~-~--~~~---~--~~
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 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: Finding a Django expert to review my code

2009-07-31 Thread Hernan Olivera

2009/7/31 Hernan Olivera <lholiv...@gmail.com>:
> 2009/7/31 Daniel Roseman <dan...@roseman.org.uk>:
>>
>> On Jul 31, 7:21 am, Rex <rex.eastbou...@gmail.com> wrote:
>>> I just created my first Django site (as an academic research project).
>>> Now that it is done, I would like to get feedback on my code from a
>>> Django expert so that I can learn where I can improve as a Django dev.
>>> How can I find someone to spend 1 or 2 hours reviewing my code with
>>> me? I found a few employment posting websites, but they seemed more
>>> geared toward posting jobs or large freelance projects, not something
>>> small like this.
>>>
>>> Thanks,
>>>
>>> Rex
>>
>> You might try www.rentacoder.com - they have a category for 'personal
>> project/homework help' which might be appropriate. Or, if you need
>> someone local to sit down with you, try http://djangopeople.net/.
>> --
>> DR.
>> >>
>>
>
>
> I'll suggest you something different. Put your code in a public
> accesible site, and make this open and collaborative. Let all of us
> tell you wath we think about the code, and coordinate some way to rank
> que suggestions, for example we can vote it, or argument why, etc. You
> can get all out collective intelligence in this way, and all of us
> could learn for this. Then, use your budget to support this, or donate
> it to Django Project, or somoething. I think this is much more
> interesting in an academic way, and for the community.
>
> What do you think?
>
>
> Open greetings ;-)
>
> --
> Hernan Olivera
>


May be your budget can be a prize for the best suggestions/revisors,
and the like.

-- 
Hernan Olivera

--~--~-~--~~~---~--~~
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 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: Finding a Django expert to review my code

2009-07-31 Thread Hernan Olivera

2009/7/31 Daniel Roseman <dan...@roseman.org.uk>:
>
> On Jul 31, 7:21 am, Rex <rex.eastbou...@gmail.com> wrote:
>> I just created my first Django site (as an academic research project).
>> Now that it is done, I would like to get feedback on my code from a
>> Django expert so that I can learn where I can improve as a Django dev.
>> How can I find someone to spend 1 or 2 hours reviewing my code with
>> me? I found a few employment posting websites, but they seemed more
>> geared toward posting jobs or large freelance projects, not something
>> small like this.
>>
>> Thanks,
>>
>> Rex
>
> You might try www.rentacoder.com - they have a category for 'personal
> project/homework help' which might be appropriate. Or, if you need
> someone local to sit down with you, try http://djangopeople.net/.
> --
> DR.
> >
>


I'll suggest you something different. Put your code in a public
accesible site, and make this open and collaborative. Let all of us
tell you wath we think about the code, and coordinate some way to rank
que suggestions, for example we can vote it, or argument why, etc. You
can get all out collective intelligence in this way, and all of us
could learn for this. Then, use your budget to support this, or donate
it to Django Project, or somoething. I think this is much more
interesting in an academic way, and for the community.

What do you think?


Open greetings ;-)

-- 
Hernan Olivera

--~--~-~--~~~---~--~~
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 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: Scientific Data Frontend with Django

2009-06-18 Thread Hernan Olivera
I think it would be really great if you can interface with R too. There`s a
library to acces to R power from Python, and then from Django.

2009/6/18 Nick Fishman <bsdlogi...@bsdlogical.com>

> A friend of mine is using Django with matplotlib to create graphs from CSV
> files, and it's turning out pretty well. I haven't yet tried googlecharts,
> but it looks promising.
>
> The main difficulty he had with Matplotlib was transitioning to
> Apache/mod_python after working with the Django development server. The
> Matplotlib commands he was calling worked fine on his desktop, but then
> complained of a non-existent X11 connection once he tried the code on
> Apache. The solution is one additional line of code, and is detailed at
> http://matplotlib.sourceforge.net/faq/howto_faq.html#matplotlib-in-a-web-application-serverfor
>  anyone who might have similar problems.
>
> Nick
>
>
> On Wed, Jun 17, 2009 at 11:08 PM, Vincent <vincent.n...@gmail.com> wrote:
>
>>
>> That sounds like a great idea. Something i have been meaning to try
>> for a while but haven't gotten around to.
>>
>> For a class website i did try to use matplotlib to create graphs from
>> user provided data within django but couldn't figure out how to get it
>> to work smoothly. Ended up using Jacobs googlecharts templates instead
>> (see link below).
>>
>> http://github.com/jacobian/django-googlecharts/tree/master
>>
>> The following also looks nice.
>>
>> http://code.google.com/p/google-chartwrapper/
>>
>> Hope you share code examples.
>>
>> Vincent
>>
>> On Jun 17, 4:21 pm, Rajesh D <rajesh.dha...@gmail.com> wrote:
>> > On Jun 17, 2:06 pm, blaine <frik...@gmail.com> wrote:
>> >
>> > > Hey guys,
>> > >   I have a lot of data from various testing samples (simple 2D
>> > > plotting points) in .csv format.  I am looking to design a system to
>> > > manage things like plotting, calculations, selecting individual
>> > > samples and tests, etc. by creating a data manager with an intuitive
>> > > interface.
>> >
>> > > My question: Has anyone used (or heard of using) a Django-powered
>> > > application as a quick and powerful frontend to a scientific database?
>> >
>> > > It seems to me that the tools built into Django (administration site,
>> > > generic views & templates) would lend themselves quite easily for this
>> > > purpose... not to mention that I am already using NumPy and MatPlotLib
>> > > to plot my data sets so the integration with these tools would be
>> > > easy.
>> >
>> > Yes, it should be.
>> >
>> > You might even consider taking a representative subset of your
>> > datamodel and defining it in a sample Django project to see how that
>> > goes.
>> >
>> > -RD
>>
>>
>
> >
>


-- 
Hernan Olivera

--~--~-~--~~~---~--~~
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 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: learning django

2009-06-02 Thread Hernan Olivera

2009/6/2 virgo <sravanthi.nadimpa...@gmail.com>:
>
> I am very new to this field..got a job as python programmer and was
> asked to use django for web developmentHow do u think I should
> start learning...I dont have much time left before they kick me
> out!!

You must follow the tutorial, and the django book, first.

It is really easy. Do it yourself, not just reading or cut & paste.

Familiarize yourself with Django's documentation, and look for
available Django books.
Look for Django code, and try to see how it works.

Good luck!!

-- 
Hernan Olivera

--~--~-~--~~~---~--~~
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 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: Pre-filling form data without submission?

2009-04-08 Thread Hernan Olivera

My (working code)solution:

form = CargaRecetaForm(initial={'obra_social':str(os.siglaosocial),
'plan':str(plan.descplan), 'CU': str(numfar),  'NrodeOrden':
str(sigord)})

contexto = RequestContext(request, {'form':form})

return render_to_response('carga_page2.html', contexto)
-- 
Hernan Olivera

--~--~-~--~~~---~--~~
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 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: Django Developers Wanted

2009-04-01 Thread Hernan Olivera

Hi, Liam!

2009/1/24 Info Cascade <informationcasc...@gmail.com>:

> This will probably be of most interest to Django developers in the San
> Francisco Bay Area,
> but the company is open to hearing from anyone who might be interested.

Remote off-shore freelancers too?

regards

-- 
Hernan Olivera

--~--~-~--~~~---~--~~
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 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: Django versioning and backup best practice

2009-03-20 Thread Hernan Olivera

Hi Fabio!

I have used a similark workflow withouth problems, no matters with the
db svn backup.
I have also deleted (sometimes renamed) my development db file to
prevent overwriting the svn version, but if you are ordered and write
appropiate messages when commit, it's easy to fix (I have commited my
development db too :))

Anyway, It was a little dataentry system. Now I am working in a bigger
project with mysql or postgress, depending on performance issues. I
will test both. (Django is my friend)

salutti

2009/3/20 Fabio Natali <nat...@poisson.phc.unipi.it>:
>
> Hi Andy! Thanks for your kind reply.
>
> Andy Mckay wrote:
> [...]
>> Best practice imho is not to use SQL lite for anything other than
>> quickly playing around. I would strongly recommend postgres (other
>> people my recommend others).
>
> - I'll manage quite a small bunch of data, say personal informations for
> a few hundreds people
>
> - I'll neither have special performance requirements, nor perform too
> complex queries
>
> - dealing with an "all-in-one-file" db may look handy: to perform the
> backup I simply copy one file
>
> That's why I thought of sqlite as a suitable solution to my needs.
>
> However, keeping the db under svn along with the code turns out to be
> troublesome. Given that performance won't be a worry, are there any
> other reasons why you would avoid sqlite?
>
>> If i need to move data between database I do psql dumps and then
>> import on the other server,
>
> Suppose I decide to use Postgres instead of Sqlite, do you have any
> tips on how to perform a backup of my data? Should I go for a psql
> dump?
>
> Thank you very much,
>
> --
> Fabio Natali
>
>
> >
>



-- 
Hernan Olivera

--~--~-~--~~~---~--~~
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 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: free django hosting

2009-01-30 Thread Hernan Olivera

details in http://www.alwaysdata.com/offers/shared/

2009/1/30 Hernan Olivera <lholiv...@gmail.com>:
> try  http://www.alwaysdata.com/
>
>
> 2009/1/30 Jeff Anderson <jeffe...@programmerq.net>:
>> xankya wrote:
>>>
>>> hi,
>>> anybody know free django hosting ?
>>>
>>
>> I highly doubt that there would be free persistent process hosting out
>> there. You might be able to use parts of Django in regular CGI scripts at a
>> free host. Beyond that, you might look into getting a free dynamic dns
>> account and using your home machine.
>>
>> If you find otherwise, I'd be interested to know.
>>
>>
>> Thanks!
>>
>> Jeff Anderson
>>
>>
>
>
>
> --
> Hernan Olivera
>



-- 
Hernan Olivera

--~--~-~--~~~---~--~~
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 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: free django hosting

2009-01-30 Thread Hernan Olivera

try  http://www.alwaysdata.com/


2009/1/30 Jeff Anderson <jeffe...@programmerq.net>:
> xankya wrote:
>>
>> hi,
>> anybody know free django hosting ?
>>
>
> I highly doubt that there would be free persistent process hosting out
> there. You might be able to use parts of Django in regular CGI scripts at a
> free host. Beyond that, you might look into getting a free dynamic dns
> account and using your home machine.
>
> If you find otherwise, I'd be interested to know.
>
>
> Thanks!
>
> Jeff Anderson
>
>



-- 
Hernan Olivera

--~--~-~--~~~---~--~~
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 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: Django-like PHP framework?

2009-01-09 Thread Hernan Olivera
+1, if you really need PHP...

Used at University level for PHP development

2009/1/6 Dave Dash <d...@davedash.com>

>
> I did a lot of symfony stuff on the side about a year ago, and now
> it's the framework that I we use for our frontend servers at
> Delicious.com.  It was through symfony that I found out about Django,
> and started using it quite a bit... so I know a bit about the two
> frameworks.  Or rather, I know a lot about symfony, but much of that
> is being replaced with stuff I'm learning about Django.
>
> As PHP MVC frameworks go, symfony is great.  It borrows from where it
> needs to, to give you a good suite of tools.  The direction it is
> heading in is also nice.
>
> The new 1.1/1.2 series supports Doctrine which was a lot nicer than
> Propel when Iast looked at the two.
>
> The nice thing about using symfony is the developer of symfony uses
> Django from time to time, and borrows from it where appropriate.  I'd
> wage that you'd see more in common with Django and symfony than any
> other PHP framework.
>
> Cheers,
>
> -d
>
> On Jan 5, 5:31 am, "thi.l...@gmail.com" <thi.l...@gmail.com> wrote:
> > Hi,
> >
> > I have a hard time getting Django adopted as web framework in the
> > office.
> > Mostly because the boss paid for PHP-based trainings, and our current
> > infrastructure leaves little room for mod_python/wsgi/fastcgi...
> >
> > I was wondering if some fo you know about competitor PHP frameworks
> > that "look like" Django, or at least try to reach that level of
> > purity.
> >
> > Thanks for any comment (and sorry about this unfair request :-P)
> >
>


-- 
Hernan Olivera

--~--~-~--~~~---~--~~
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 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: Django development environment (newbie)

2008-10-16 Thread Hernan Olivera

> Can I combine it with Apache so I can serve my static and index.html
> with Apache and the rest with django-admin.py server?

There is a very single configuration option in apache that
auto-reloads code too, in django documentation.




-- 
Hernan Olivera

--~--~-~--~~~---~--~~
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 options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Django svn 8631

2008-08-27 Thread Hernan Olivera

Hello

My app crashes when I update to the last svn version 8631 with this error:

ImproperlyConfigured: Error while importing URLconf 'dataentry.urls':
'module' object has no attribute 'STACKED'

Obviously, my app were ok before that.

Ideas?

--~--~-~--~~~---~--~~
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 options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: Is Django development active?

2008-07-21 Thread Hernan Olivera

>> Heh, the USA has been stuck on version 50 since 1959 when Hawaii
>> was added to the union.  There are some development branches
>> ("Puerto Rico" and "Virgin Islands" feature-branches are
>> potential release-candidates, if a merge ever becomes official)
>> moving towards version 51.  Clearly the US hasn't had active
>> development for about 49 years. :)

And because the frozen /allTheWorld.Bush branch! :-)

--~--~-~--~~~---~--~~
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 options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: Support for MS SQL Server

2008-06-25 Thread Hernan Olivera

> After doing some search on Google, Django has some kind of backend
> support for MS SQL server. But when I type ado_mssql in my setting.py
> file while creating a simple application, it says ad_mssql is not an
> avaliable option. Do I need any special patch or something to enable
> this? Please advice.

I did it works, but under windows only, not in linux. Still don't know
exactly why, maybe the mdac.

greetings

--~--~-~--~~~---~--~~
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 options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: Total newbie question

2008-06-10 Thread Hernan Olivera

> My question is. Is it possible to learn how to work
> with django? READ and WRITE code? How should I start? Python lessons?

Maybe you can start with the Django tutorial ;-)

--~--~-~--~~~---~--~~
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 options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: Django tutorial .rst

2008-05-08 Thread Hernan Olivera

Thanks! I shoud have to guess it!

--~--~-~--~~~---~--~~
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 options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Django tutorial .rst

2008-05-08 Thread Hernan Olivera

Hello
Is it possible to get the .rst files for the Django tutorial, for
translating it to spanish?
Thanks

--~--~-~--~~~---~--~~
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 options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: Strange tutorial behavior...

2008-04-17 Thread Hernan Olivera

Maybe something about your database settings.
You don't say what db are you using in each case.

--~--~-~--~~~---~--~~
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 options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: Enterprise applications with Django

2008-04-16 Thread Hernan Olivera

>  If the question is "can it handle business logic rather than just
>  be a system for writing blog software and news sites?" then most
>  certainly.  Several of the Django sites I've authored (they're
>  internal rather than public-facing) for my company which are far
>  more process-oriented in terms of business-rules.  They include
>  dynamic reporting, data-entry, business-rule enforcement, and
>  process-flow.

Have you written from scratch? How did you handle the composite
primary key limitation on database design? I'm trying to migrate an
entire corporate system to Django, and wandering for this stuff...
thanks

--~--~-~--~~~---~--~~
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 options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---