Search:

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

Page 1 of 5 1 2 3 4

Search: Search took 0.10 seconds.

  1. Replies
    1
    Views
    326

    [ubuntu] Re: Gnome-system-monitor hangs

    bump
  2. Re: Errors while compiling gtkmm 3.0 programs

    You can run:


    $pkg-config --modversion gtkmm-3.0

    to see which version of gtkmm you use. And indeed, Gtk::Application is introduced in version 3.4 and since that version using Gtk::Main is...
  3. Replies
    1
    Views
    326

    [ubuntu] Gnome-system-monitor hangs

    Dear community,

    When I use gnome everthing works really great. I can see the graphs of my CPU's untill I select the 'Process' tab. Then the gnome system monitor will hang and absorb 100% cpu. So...
  4. [ubuntu] Re: help with sitecom usb network card after upgrade 10.04 ->12.04

    Well I'm a bit further with my 2 problems the bes part is that running


    sudo service network-manager start

    solves both my problems, but why do I have to run it? Shouldn't the network-manager...
  5. [ubuntu] Re: help with sitecom usb network card after upgrade 10.04 ->12.04

    Dear community,

    I didn't get any replies yet so please allow me to rephrase my question. There are actually two questions in post above.

    The first is why isn't my wireless network card...
  6. [ubuntu] help with sitecom usb network card after upgrade 10.04 ->12.04

    Hello,

    I would like some information about this network card:


    ID 0df6:0062 Sitecom Europe B.V.
    It's a wireless usb network card. I used this card with Ubuntu 10.04 and this night I upgraded...
  7. Replies
    5
    Views
    1,121

    Re: compiling gtk3 C program

    http://developer.gnome.org/gdk/stable/gdk-Drawing-Primitives.html#gdk-draw-drawable

    On the site above you can find that your function is deprecated, but it also shows you how you can work around...
  8. Replies
    3
    Views
    879

    Re: lspci with alternate routing ID

    you probably need to add a space between lshw and -html

    like this


    sudo lshw -html > ~/Desktop/hardware.htmllshw with sudo shows more info. -html is an option to lshw. This also shows why...
  9. Re: common network programming for all operating systems

    Well socket programming under Linux and other operating systems is rather similar, but there are subtle, and likely frustrating difference eg under windows one must first initialize some data and...
  10. Replies
    2
    Views
    347

    [SOLVED] Re: IDLE Customization

    I don't know whether it is possible in idle, but in the interactive interpreter in bash i'm very much afraid you can better forget about it. But there are many python shells available look for...
  11. Replies
    5
    Views
    380

    [SOLVED] Re: Threads in Java

    Thanks a lot!!
  12. Replies
    5
    Views
    380

    [SOLVED] Re: Threads in Java

    Still I've got one more question on this java threading issue.

    I've changed the .run() to the start() as was mentioned and now .

    And the output is:

    $ java HelloThreads
    Class bye says bye....
  13. Replies
    5
    Views
    380

    [SOLVED] Re: Threads in Java

    But of course, thank you for pointing that out, make perfect sense!
  14. Replies
    6
    Views
    1,104

    [SOLVED] Re: Gtkmm: Change Cursor Problem

    have you allready run YourWindow.show()? I thought in gtk you must have allready shown the window and then it get realized as well.
  15. Replies
    5
    Views
    380

    [SOLVED] Threads in Java

    Hi folks,

    I'm not to familiar with threads in java. But I was thinkering with it to improve my understanding of it.

    I know that for threading one shouldn't make assumptions about wich thread...
  16. Replies
    9
    Views
    559

    Re: Multiple text replacements in a file

    I also depends on the difficulty of of your string processing the next command pretty much replace every lower case vowel for a vowel in the gcc manual which is several thousands lines of...
  17. Replies
    8
    Views
    687

    Re: Where to begin for learning webapps?

    Python is quite easy to learn, it works as far as I know on all major platforms. And like Java and csharp, it comes with the batteries included. That is, with a few lines of code one can accomplish...
  18. Replies
    13
    Views
    2,178

    Re: Variables and math in Bourne Shell

    you might just type bash at the commanline to see if it is installed

    "/bin/sh"

    Does not always default to bash.

    anyway to do it in the bourne shell:


    expr 2 \* 7 + 10should do the trick,...
  19. Replies
    13
    Views
    2,178

    Re: Variables and math in Bourne Shell

    sorry I did this in the Bourne Again Shell I don't know it in the oldskool bourne shell.
  20. Replies
    13
    Views
    2,178

    Re: Variables and math in Bourne Shell

    also no space after the =.



    me@desktop:~/$ X=$((10 + 2 * 7 ))
    me@desktop:~/$ echo $X
    24works perfectly for me
  21. Replies
    9
    Views
    745

    [SOLVED] Re: linking issues

    Well many thanks to all! :-) I think i've found quite a few good ideas to get rid of my linking problem

    cheers and thanks!

    maarten
  22. Replies
    8
    Views
    722

    Re: next step in C++

    you could get a look at gtk+ :
    http://www.gtk.org/
    or qt
    or clutter: https://clutter-project.org/

    or google for other stuff like that...
  23. Replies
    9
    Views
    745

    [SOLVED] Re: linking issues

    I do have root acces, but the manual with the library says put the library in /opt/pylon. and thus as their advise i put them in the specified directory.



    recompiling is not an option because...
  24. Replies
    9
    Views
    745

    [SOLVED] Re: linking issues

    Thanks I used g++ for linking but now I specify the -Wl,-rpath=/opt/pylon/lib64 which sends -rpath=libpath to the linker. And runs the my program perfectly.



    Also thanks Bachstelze, I already...
  25. Replies
    9
    Views
    745

    [SOLVED] linking issues

    Hi there,

    I've got a problem with compiling a program that has to link against libraries in:
    /opt/pylon/lib64. This is not a standard location for the runtime linker.
    In my make file I export...
Results 1 to 25 of 111
Page 1 of 5 1 2 3 4