Sunday, November 8, 2009

I won't write here anymore

Why is that? Because I moved all the tech stuff to my new blog: just a tech stuff. If you want to read much more my tech articles - go there!

develway.pl add this news to develway

Saturday, May 16, 2009

Installing lxml and easy_install on Windows

First: install easy_install...
download *.exe from here
and install it
... now easy_install script should be in your Python\Scripts directory

Second: install lxml

(some_path_to_python\Scripts directory)easy_install.exe lxml


DONE.

easy, isn't it?

develway.pl add this news to develway

Wednesday, May 13, 2009

Eclipse's plugins that I use

For me... three plugins for eclipse is enough...
  1. subclipse for SVN
  2. pydev for python development
  3. aptana for all html/xhtml/js code
subclipse and pydev are required for me.
aptana is optional (consumes a lot of memory)

develway.pl add this news to develway

Eclipse + Subclipse + SVN SSH

Download and run eclipse

Help -> Software Updates -> Available Software -> Add Site

put http://subclipse.tigris.org/update_1.4.x in input field

check two checkboxes:
  1. Subclipse

  2. SVNkit Adapter (Important, the default JavaHL adapter doesn't support SSH and public key authentication)


accept everything and install it

now we can easily checkout our project

Right click in explorer -> New -> Project

SVN folder -> Checkout projects from SVN -> Next -> Create a new repository location

Enter the location of the project you’re checking out e.g.
svn+ssh://example.com/my_repo/

Press Next

Enter SSH credentials.
next, next, next... and ready.

based on this tutorial

Labels: , ,

develway.pl add this news to develway

Build Django+MySQL+PIL on Windows

How to build django on windows? Now I know.... it's really possible.


  1. download python for windows from here and install it

  2. download python-mysql and install it

  3. download django, unpack it

  4. Start -> Run -> cmd

  5. cd Djano-xxx

  6. setup.py install

  7. download PIL from here and install it

  8. Start -> Run -> cmd

  9. go to our django project's directory and manage.py runserver 8080

  10. READY! now check your project by http://localhost:8080

Labels: , ,

develway.pl add this news to develway