-
Website
http://www.eflorenzano.com/ -
Original page
http://www.eflorenzano.com/blog/post/first-two-django-screencasts/ -
Subscribe
All Comments -
Community
-
Top Commenters
-
traviscooper
1 comment · 2 points
-
pppoll37
7 comments · 1 points
-
linhanyi
2 comments · 1 points
-
dobrych
2 comments · 3 points
-
bosveld
1 comment · 1 points
-
-
Popular Threads
This reminds me of how I used to setup my laptop to do Foxpro development (long before webcasts).
This gives me a great starting point, and confirms some of the ideas I've already implemented for django development.
Keep up the excellent work Eric!
John
Maybe this is the wrong place for asking this, but is it possible to change the URLs from /foo/?page=42 to /foo/page/42/?
BTW, the ticket tracker is here: http://code.google.com/p/django-pagination/issu...
One question I do have is the use of your toolbox module and keeping it in sync with your production server. It seems you must replicate the toolbox module there as well? For this reason, I tend to put things like that in the actual project folder.
That was a great screencast - clean, easy to hear, and it's certainly shown the django-pagination application in a very good light!
You're in my RSS feeds now and I'll be looking forward to the next one!
Cheers,
Tone
Keep up the good work :)
BTW, for those who don't know, Empty is Michael Trier of "This Week in Django" podcast fame (and responsible for some great Django screencasts), so praise from him is a sure sign you're doing great stuff.
thanks
P.S: any chance at requesting screenshots? i would like to see on on django-comments-utils
By the way excellent job!
Very simple to use.. perfect .. just a number and vouala!
thx !
You said at the end of the video that pagination isn't fetching everything as it's lazy-loading. If you're not fetching the entire list, are you querying a second time to get the total count of rows, so you know how many pages are required in the paging?
Al.
I didn't know the pylink script, thanks! I often use manage.py to add the cwd to sys.path, it works fine too, at least for tests.
A small tip for the first screencast, you can use "cd" and it will go to your home folder even if you do not mention the "~".
Keep up :)
About the toolbox: You're absolutely right. Like anything else, it's definitely a tradeoff.
Also, it's good to know about plain "cd". I didn't know that was possible!
Now i have new vision about how to setup the development enviroment. Before this video i was always doing the svn up && sudo python setup.py install but that pylink stuff is really cool. Thx. so much. now i m a subcriber of you :)
the export PATH=$PATH:~/bin
row to the
~/.bashrc
file. thx. again. And on linux. it doesn't allow you to make a symlink to the python path. using the command with sudo works fine.
Thx. again
Regards...
Is it possible to make a podcast stream in iTunes?
iTunes: itpc://djangoscreencasts.blip.tv/rss/itunes/
RSS: http://djangoscreencasts.blip.tv/rss
Miro: http://subscribe.getmiro.com/?url1=http://djang...
Another nice addon to your development environment would be using bash CDPATH.
Create a nice shortcut to each of your apps by:
# export CDPATH='~ericflo/development/pyhton'
Just wondering: I noticed you put your templates and apps under the 'twitterclone' project. Is that how you normally do things? How do you decide when an app belongs within a project or in the development directory? Where do you place your projects? Within the development directory or separately?
Thanks, looking forward to seeing and hearing more :)
-Björn
As someone who's never programmed before and learning from the ground up this was an invaluable first step. Look forward to seeing more from you in the future :)
I took both screencasts and learned alot from both of them and now I've a nice pagnation :-)
I'm from Denmark and we use three special characters:
Æ Ø Å
When I change the "Next" and "Previous" I get some kind of unicode error:
"Caught an exception while rendering: 'utf8' codec can't decode bytes in position 830-832: invalid data"
Do you know how I can render the pagination.html in correct unicode?
Thanks.
please update the site often,I like this site very much.
please update the site often,I like this site very much.
Thanks.
http://www.nike-shoes-online.com
This was excellent.
I hope this weeks in django sees it's new reincarnation on django-dose very soon.
You're django from the ground-up screencasts are super!
Thanks for doing such great job for those of us who want to learn django.
I tried pagination and sorting using other recipes (http://blog.awarelabs.com/2009/digg-style-pagin...) and they were all horribly disorganized and poorly documented. So impossible to use for someone not very experienced like myself.
Thanks once more.
I would like to let the user choose how many results he wants displayed by page.
For example, this can be done in php like:
http://dcp.rutgers.edu/index.php/search/selects...
Where you get a table displayed and at the end you have a box where you can let the user choose whether they want 10, 25, 50, or 100 rows displayed.
Would there be a "direct" way to pass this through the template using django-pagination? Or does one have to use forms for this task?
Thanks for your help