Search:

Type: Posts; User: raja; Keyword(s):

Page 1 of 6 1 2 3 4

Search: Search took 0.03 seconds.

  1. Replies
    8
    Views
    796

    Re: Idea for modern browsers

    With Vimperator, which is a great way to browse by the way, 'gu' takes you up one place towards the parent directory and 'gU' takes you all the way to the root.
  2. Replies
    20
    Views
    5,582

    Re: Interactive command line tutorial with python

    Thanks everyone for their interest in the program. I have a new version available for download at googlecode. Any comments and suggestions are welcome.
  3. Replies
    7
    Views
    2,083

    Re: Command line software for basic statistics

    Kudos to the author for the effort! However, I am adding another vote in favor of R. If you are an emacs user, then you have an emacs running all the time and all you need to do is start ESS in a...
  4. Replies
    5
    Views
    525

    [all variants] Re: mounting of ntfs/ext3 partitions

    What the original poster means is that in Ubuntu, even partitions that dont have a fstab entry and are therefore not mounted while booting, will show up (unmounted) in the file manager. There is...
  5. Replies
    2
    Views
    5,157

    Re: Python help, IO Error!

    Change this


    try:
    f = open("info", 'r')
    except IOError:
    woot = openwoot()
    f.close()
    print "This is your firt time running the program"
    folder = raw_input("Please enter a...
  6. Replies
    9,519
    Views
    911,663

    Poll: Re: Linux Desktop Readiness Thread

    Sorry, but you are totally misinformed there. Neither can you run anything (or most things) on Windows, nor do you need to write different versions for difference distributions for Linux. Look at any...
  7. Replies
    6
    Views
    1,063

    [ubuntu] Re: Windows Borders Disappearing

    Looks like the window manager has crashed. Are you running gnome or KDE and is compiz running?
  8. Replies
    12
    Views
    2,792

    Re: How to work with pdfs

    The new okular is excellent for highlighting or adding notes. See this screenshot for okular on Kubuntu kde4.
  9. Replies
    8
    Views
    1,393

    Re: Need a plotting program

    Python with matplotlib - No GUI though !
  10. Replies
    2
    Views
    600

    [ubuntu] Re: clean from scratch dual boot xp an ubuntu

    I find it useful to set up the systems separate from a data partition that can be shared. For example, I would used 10 GB for win XP, 10 GB for Ubuntu and a big data partition. The data partition...
  11. Replies
    3
    Views
    357

    [gnome] Re: Beginner needs help with Gnome

    What theme are you trying to install? Assuming it is a compiz theme (If you have compiz running) or a metacity theme, you can install it from the System -> Preferences -> Appearance dialog. Read here...
  12. Re: ImportError from trying to run script, help needed (python)~

    There were a few mistakes in the code (did you type them yourself?).

    I have attached the files with the corrections. See now if you can run test.py without problems. I am able to do that.
  13. Replies
    8
    Views
    3,482

    Re: How to get pygame working ??

    You are right. Pygame is a python module that helps write games. Good idea to spend some more time with the tutorials on the pygame site.
  14. Replies
    8
    Views
    3,482

    Re: How to get pygame working ??

    open a terminal and start python

    python

    And at the python prompt, try this

    import pygame

    If you dont get any errors, you have pygame installed properly on your system.
  15. Replies
    4
    Views
    622

    Re: Comments on this code are welcome

    Was just testing the code and had a few comments -

    1. The necessary imports are os, csv and copy

    2. line 21 can be written as 'row_names -= 1' and should actually come inside the 'if row_names...
  16. Replies
    8
    Views
    3,482

    Re: How to get pygame working ??

    Installing the binary package here means searching for pygame on synaptic, or (better) simply installing it from the terminal so ..


    sudo aptitude install python-pygame
  17. Re: ImportError from trying to run script, help needed (python)~

    You have to make sure that -
    1. The names are right - remember that everything is cap sensitive
    2. The module to import is in the python path or in the same directory

    The filename will still...
  18. Thread: Scilab or Octave

    by raja
    Replies
    19
    Views
    77,335

    Re: Scilab or Octave

    While scilab and Octave are the commonly considered alternatives, you may also want to consider the combination of Python + Scipy + Matplotlib. Can have all the functionality with more flexibility at...
  19. Replies
    20
    Views
    6,841

    Re: literature documents organizer

    Vixensjlin,

    The only difficulty with that approach is the tedious job of finding the pmid for each article and renaming it accordingly - especially if you have an old collection of a thousand...
  20. Replies
    4
    Views
    4,378

    Re: Script or Macro to copy data from website

    The imacros addon for firefox can scrape data from a webpage and put it into a csv file - see if that works.
  21. Replies
    17
    Views
    914

    Re: Python Incrementing issue.

    What you want maybe is


    testlist = [100,100,100,100]

    for i in range(len(testlist)):
    testlist[i]+=i

    print testlist
  22. Replies
    17
    Views
    914

    Re: Python Incrementing issue.

    Maybe its just that I am dense - but I dont get exactly what you want.

    What is t and what exactly do you want to do?
  23. Replies
    17
    Views
    914

    Re: Python Incrementing issue.

    Manipulate what ?
  24. Thread: Hosting a project

    by raja
    Replies
    13
    Views
    656

    Re: Hosting a project

    Google code does have version management (svn) and is fairly easy to set up and use. I would recommend that you try it.
  25. Replies
    20
    Views
    6,841

    Re: literature documents organizer

    Hello everyone,

    I have been encountering the same problems for some time. I have lots of pdfs on my work pc, but searching for the one I want when I do want one was quite difficult.

    I didnt...
Results 1 to 25 of 134
Page 1 of 6 1 2 3 4