jQuery :

jQuery API introduction:http://api.jquery.com/

jQuery plugins:
http://benalman.com/projects/jquery-misc-plugins/

Ajax:

easy to use AJAX libraries for django: http://www.dajaxproject.com/

 Django:

官网文档:https://docs.djangoproject.com/en/1.5/

牛人写的python和Django资料:http://www.pythondiary.com/

中文版Django book: http://djangobook.py3k.cn/2.0/

Pyramid框架/Zope开源web应用服务器和Plone开源内容管理系统的中文技术社区,也包括Django&python资料:  http://czug.org/

HTML:

world wide communist :http://www.w3.org/

中文w3 school:http://w3.jz123.cn/index.html

服务器配置:

apache 的安装与配置: http://www.dreamdu.com/webbuild/apache/ 

virtualenv is a tool to create isolated Python environments: http://www.virtualenv.org/en/latest/ 

apache 中文手册:http://apache.jz123.cn/mod/core.html#directory

Nginx 中文手册:http://tengine.taobao.org/book/index.html

 
 

前端模板:

Bootstrap中文版: http://www.bootcss.com/

Bootstrap 原版: http://twitter.github.io/bootstrap/

项目模板:

Django项目: http://pinaxproject.com/

资源&学习:

Q&A :http://stackoverflow.com/

Open source codes: https://github.com

Blog : http://www.cnblogs.com

调试工具:

http://fiddler2.com/

python 论坛模板:

http://www.oschina.net/search?scope=project&q=python+%E8%AE%BA%E5%9D%9B

Useful python package:

http://code.activestate.com/pypm/

 
 

   
 

   
 

   
 

   

[Django 1.5] Django 开发学习资源链接的更多相关文章

  1. windows 8 metro 开发学习资源链接

    原文 http://www.cnblogs.com/icuit/archive/2012/05/30/2525979.html windows8 metro开发资源目前还是以MSDN为主,做了一个li ...

  2. [PHP] Ecstore 开发学习资源

    一.ECOS框架图 二.学习资源链接 PHP之窗 http://www.phpwindow.com/ ECOS百科大全 http://www.ec-os.net/doc.html

  3. .net 网站开发学习资源

    慕课网 前端基础学习 http://www.imooc.com/course/list?c=fe 了解需求 例子之一 http://wenku.it168.com/d_000517899.shtml ...

  4. Android 开发学习资源汇总

    下面这些资源对Android开发来说是很有帮助的! 1. 在线代码运行工具 地址:https://tool.lu/coderunner/ 说明:此工具站能在线运行C.C++.Java,基本能满足相关基 ...

  5. 第八篇 web开发学习资源

    互联网时代,最好的资源都在网上,好好利用网络学起来! 偶然才发现好资源,很多是E文的,看来努力的路还很长! 1)下面是一个老外收集的PHP资源,确实要为此分享点赞. https://github.co ...

  6. iOS开发学习资源

    最近想写点关于iOS开发的总结和心得.虽然网上资源一大堆,质量参差不齐,还是推荐一点干货吧! https://www.objc.io/issues/  这个网站的文章质量很高,很多干货,可惜今年已经停 ...

  7. iOS开发学习-资源打包

    图片是被放到Images.xcassets中 1.部署版本在>=iOS8的时候,打包的资源包中的图片会被放到Assets.car 图片被压缩: 2.部署版本在<iOS8的时候,打包的资源包 ...

  8. [JavaEE] Spring学习资源链接

    学习规划 http://forrest-lv.iteye.com/blog/1166947 SpringMVC - 框架配置 http://blog.csdn.net/ljhabc1982/artic ...

  9. Android开发学习资源

    https://developer.android.google.cn/training/index.html

随机推荐

  1. Intent七大属性之总结

    参考<疯狂android讲义>第5章 1.Intent 用于封装程序的"调用意图",不管想启动一个Acitivity.Service还是BroadcastReceive ...

  2. Linux下,命令 wget 的使用

    wget是一个从网络上自动下载文件的自由工具.它支持HTTP,HTTPS和FTP协议,可以使用HTTP代理.  所谓的自动下载是指,wget可以在用户退出系统的之后在后台执行.这意味这你可以登录系统, ...

  3. codeforces 518C. Anya and Smartphone

    C. Anya and Smartphone time limit per test 1 second memory limit per test 256 megabytes input standa ...

  4. DataTable AsEnumerable 的使用

    var p = DataTable.AsEnumerable().Where(t => t.Field<int>("ChannelID") == int.Pars ...

  5. 常用的wsdl地址

    天气预报Web Service,数据来源于中国气象局 Endpoint Disco WSDL IP地址来源搜索Web Service(是目前最完整的IP地址数据) Endpoint Disco WSD ...

  6. linux命令之pwd(print working drectory)

    Linux中用 pwd 命令来查看”当前工作目录“的完整路径. 简单得说,每当你在终端进行操作时,你都会有一个当前工作目录. 在不太确定当前位置时,就会使用pwd来判定当前目录在文件系统内的确切位置. ...

  7. OpenSuSE查看指定软件包是否安装(OpenSuSE使用RPM作为默认的软件包维护管理工具)

    suse 是 zypper se xxxxx 是搜索软件包 (查看已经安装的 软件包是否已经安装)

  8. Linux内核中常见内存分配函数(二)

    常用内存分配函数 __get_free_pages unsigned long __get_free_pages(gfp_t gfp_mask, unsigned int order) __get_f ...

  9. Oracle表空间常用操作

    --创建表空间 create tablespace test datafile 'E:\test2_data.dbf' SIZE 20M autoextend on next 5M maxsize 5 ...

  10. 写一个将当前页面 URL 中的 get 参数解析成一个对象的方法。

    function getQuery () { var args = {}; var query = window.location.search.substring(1); var pairs = q ...