Search Results - JustLinux Forums


Search:

Type: Posts; User: kmj

Page 1 of 20 1 2 3 4

Search: Search took 0.13 seconds.

  1. Replies
    6
    Views
    997

    weird; I'm totally unfamiliar with this aspect of...

    weird; I'm totally unfamiliar with this aspect of windows programming. I have never heard of this "path" idiom, and I'm not exactly sure why you'd need it to create arbitrary graphical arguments. I...
  2. python.

    python.
  3. Thread: Emacs or ViM ?

    by kmj
    Replies
    44
    Views
    6,095

    You could try it with the -y switch, that enters...

    You could try it with the -y switch, that enters easy mode. I don't recommend using it though, because then you don't have easy access to the tremendous power of vim. Also, there are some fabulous...
  4. Replies
    7
    Views
    1,499

    that almost works. :) The only problem is the...

    that almost works. :) The only problem is the commands are asynchronous, so the cat happens before gvim gets a chance to write.

    I changed it to the following:


    gvim .clipboard -c 'norm "*p'...
  5. Replies
    7
    Views
    1,499

    I'm trying it in X. With gvim, "*p and "+p work...

    I'm trying it in X. With gvim, "*p and "+p work as expected; in vim, it seems to be pasting from somewhere else (dunno where, but it looks like something I would have copied before)... in ex, nothing...
  6. Replies
    7
    Views
    1,499

    Hrmm. doesn't seem to be working for me. "*p...

    Hrmm. doesn't seem to be working for me. "*p isn't putting anything into the buffer in ex.
  7. Replies
    7
    Views
    1,499

    cfaun5: that's genius, you get a gold star. :) ...

    cfaun5: that's genius, you get a gold star. :) Though I should mention, he may want to use "+p instead of "*p,

    "*p works for hilighted and middle-click pasting, while
    "+p works for actual...
  8. Replies
    3
    Views
    881

    oh, yeah, python comes with a "freeze" utility...

    oh, yeah, python comes with a "freeze" utility for linux, which I'm totally unfamiliar with.. but it's supposed to be some form of "compiling-like" mechanism. Not sure.
  9. Replies
    3
    Views
    881

    python compiles it's code into bytecode (.pyc...

    python compiles it's code into bytecode (.pyc files); I think there are various levels of optimization you can set. There's no real way to compile it into an executable that I know of, except with...
  10. Replies
    6
    Views
    1,441

    DSwain -> http://ximian.com/products/ Ximian is...

    DSwain -> http://ximian.com/products/ Ximian is a company formed by some of the main Gnome folks.. they do alot of the work on gnome, evolution, and alot of other things, too.

    Pweb: regarding...
  11. Poll: Reading the source for what? Apps? or APIs?

    Reading the source for what? Apps? or APIs?
  12. Replies
    7
    Views
    1,089

    try using the function clock() .. (use 'man...

    try using the function clock() .. (use 'man clock' to get info on it.)

    let's say your gui has a button that when pressed, runs some algorithm.. simply do

    start_time = clock()

    ... code
    ...
  13. Poll: You asked what I'd recommend, and Python is...

    You asked what I'd recommend, and Python is certainly as useful for general programming tasks in Linux as anything else. (Python also has the "portability without recompiling" thing going for it, I...
  14. Replies
    19
    Views
    2,405

    that's always the best thing. I never mean to...

    that's always the best thing. I never mean to tell anybody "stop using this and start using that!" But just try them.. really try them both.. code each for a week, try a similar (real) project in...
  15. Replies
    5
    Views
    1,447

    Here...

    Here is a thread with a few different (very simple) gui applications. Granted, this is in python, but if you take a few minutes to go over them, you should figure out what they're doing. In Qt,...
  16. Replies
    0
    Views
    720

    Sharing my python keybindings for vim

    " set up autoindent and set tabs to 4 spaces
    autocmd FileType python set autoindent smartindent et sts=4
    \ cinwords=class,def,elif,else,except,finally,for,if,try,while

    " vim is...
  17. Thread: Programming talent

    by kmj
    Replies
    22
    Views
    2,318

    Re: my 2 cents

    My first language was Turbo Pascal pretty much useless today but, I like it.

    Mine was too; I think it's totally valid to start learning CS with..


    I learned Java as well and that is what I...
  18. Thread: Pathological

    by kmj
    Replies
    0
    Views
    825

    Pathological

    I didn't see this game mentioned anywhere, so I thought I'd mention it. It's a fairly simple concept; highly addictive. Turn wheels with the right mouse button, send balls out with the left. ...
  19. Thread: free rpg?

    by kmj
    Replies
    13
    Views
    1,513

    zangband is a great game (see zangband.org or...

    zangband is a great game (see zangband.org or http://www.thangorodrim.net/ ) Don't be put off by the ascii graphics! These games have been in development forever and are very complicated, fun,...
  20. Thread: How to use python

    by kmj
    Replies
    8
    Views
    1,130

    shouldn't this be moved to the networking forum?...

    shouldn't this be moved to the networking forum? I'm sure you'd get more help there.
  21. Thread: Programming talent

    by kmj
    Replies
    22
    Views
    2,318

    I'm currently doing my project for my MS in...

    I'm currently doing my project for my MS in Computer Science, and ever bit of code I'm working with is Python. I'm implementing an artificial society, the purpose of which is to study the effects of...
  22. Replies
    19
    Views
    2,405

    I love python for precisely the reason MMA says...

    I love python for precisely the reason MMA says he doesn't like it. It has minimal syntactic garbage... it's as close to executable pseudocode as I've ever seen. why have { and } in your code when...
  23. Replies
    14
    Views
    1,918

    I too say vim.. it's the only editor I use......

    I too say vim.. it's the only editor I use... and I do my fair share of coding. (If you're stuck in windows, you can even get a plugin for visual studio that lets you use vim with it)

    If you go...
  24. Replies
    4
    Views
    3,191

    okay, this is a bit off topic and pretentious,...

    okay, this is a bit off topic and pretentious, but salil, if you're just getting into gui programming with python, I strongly suggest you take a look at pyqt or pygtk. I've found the docs for tkinter...
  25. Replies
    2
    Views
    704

    Many here will tell you to use vim and make, and...

    Many here will tell you to use vim and make, and that's it... No, it's not GUI (well, gvim is :D), but it can be quite tightly integrated. A new alternative to make is the Apache Ant project, which...
Results 1 to 25 of 500
Page 1 of 20 1 2 3 4