Skip to main content

Posts

Showing posts from March, 2012

Directory navigation in command line: Tips and Tricks

  Well it may be absurd for someone who is not so used to with all the command line stuff that one has to undergo, but for the geeks, its the things that keeps using computing enjoyable and something Geekyy!!   Some people really do not know and may be perhaps do not care for the command line interface commands.   That's why I have wriiten this piece of information for all those who wanna keep the geeky thing up in themselves             1> To move to the next directory we use      cd:\Destination_folder 2> To move to long  destination you can also type:      cd:\folder1\folder2\......\folder-n 3> To get into a diferent folder at the same root level      eg: pics and movs at c:\de\film      and you are at        c:\de\film\mov  and you want to navigate to pics    then type:       cd../pics 4> To move ...

Django: A setup tutorial guide from A-Z

Django is one of the most commonly used frameworks for web development today. It can be used in multi functional large scale database driven web application. Though it was created mainly for the means of rapid development of web application, it has well proven on its account for reliability and scalability. So here I am going to share some of my experience during the set up process which many of us find awkward. Hope this simplified version makes it easy for you all. Download:                 Download Django from www.djangoproject.com(get the latest and fail not to check out          which version of python it supports)                 Download Python- and this should be the one supported by the version which you     downloaded         Installation:   >Install python in your  machine   >Extract ...

Today,Tomorrow and Forever...

W e humans,are the weakest and I would also say the wicked form of species of this great planet... Filled with greed and everlasting hunger for selfish gains. One thing I would like to share of what I have experienced  conversely is that there is also plenty of love around. May be that's why we still have families around. Surely without love being inherited , we would not have known how to give it to others.  And that is why we know love and how to give love. Though people term it as emotion, it is love and its commonness amongst all of us that make us able to thrive together. Now, I had begun this post writing about greed and arguably decried the general conscience of our human mentality pointing towards greed. And yes this is true! we have love in all of us, yet greed seems to overtake our mindset as we continually try to adjust to the current economic scenario. Recessions, job losses, rising food prices and all that modern corporate fallouts have indeed succeeded ...

Procedure, and the objective experience of Python

Assignment Operation ( Its totally fun programming! )                                            One more thing in python that fascinates us is its ability to hold the values of the variable even after assignment operation. Like say:               a=2         b=a This is bound to keep the values of both a,b intact without any change.  so doing things like:                                 print a,b                 gives #a=2,b=2 And!!             One more important thing to remember is sequential assignment: what I mean is assignment is sequential in its nature.  So if we have things like:   ...

List:The technical beauty of python

Array..so long Data organization and structure is one of the main concern of every programming language. The early languages for example C, C++ laid emphasis on using the primitive data structures such as array to store the grouped data. It had one more thing to remember, and that it was being strongly typed.   With the evolution of modern higher level language we could make the earlier so called 'typed structures' to a  more friendly and indeed beautiful implementation which could be made  to be more comprehensive as well. Python...its beauty   Higher programming language such as python gives us more power in making such things. Its feature of list makes it so easy for many a things that one can make use of. It makes it easy of doing all the things of doing the  functionality of an array and other related operations such as sorting, deleting , indexing,slicing , and  many others. With these rich featu...