Search:

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

Page 1 of 10 1 2 3 4

Search: Search took 0.19 seconds.

  1. [SOLVED] Re: I installed Netbeans 8.1. How do I install JavaFX and Scene Builder?

    You can get openjdk from the apt repository. I think openjdk is a pretty good implementation these days. Or if you prefer oracle, then you can download the package from here:...
  2. [SOLVED] Re: I installed Netbeans 8.1. How do I install JavaFX and Scene Builder?

    I have never tried getting netbeans from apt repository, so I don't know what actually cause the issue. But I know for sure installing the package from the official site always works for me. I think...
  3. [SOLVED] Re: I installed Netbeans 8.1. How do I install JavaFX and Scene Builder?

    I recommend installing netbeans from the official site.
    https://netbeans.org/downloads/
  4. Replies
    3
    Views
    388

    [SOLVED] Re: Is Java transportable to different IDEs

    Netbeans is good. BTW, I can't imagine writing Java without an IDE. This languge loses much of its value if not pairing up with a powerful IDE. If you figure later on netbeans isn't good for you, you...
  5. Re: Is it possible to install virtualbox image to the real PC?

    Thanks. I'll give it a try.
  6. Is it possible to install virtualbox image to the real PC?

    Hello, I have a Windows 10 virtualbox image in QED format. Most of the time, virtualbox just runs fine, only that the disk I/O is much slower. Now I want to test my program's cross-platform ability....
  7. Re: How would you develop C code when IDE is not available?

    Hmm... I haven't tried emacs yet. Could you please tell me how emacs helps in this situation? Thanks.
  8. How would you develop C code when IDE is not available?

    Sometimes it's just too hard to reverse engineer the Makefile to reproduce the project in an IDE. I would then have to use CScape + VIM to edit to source file. But the problem is how will you debug...
  9. Why does the apt repository default to use old version packages?

    I don't know why is it so conservative. My ubuntu OS is upgraded to the latest 16.04. It seems to me that the default package is sometimes 1 to 2 years lagged behind the latest version. I can't come...
  10. Replies
    2
    Views
    474

    [SOLVED] Re: variable access to a javascript array

    Sorry, not clear of what you are saying and what you want to achieve. What are a and b? And what you want them to refer to in your example? Both be arrays or strings?
  11. Re: linux open/read/write/close is faster than those in STD C library?

    ops, I forget to add I compiled and ran the test under:
    Linux 4.2.0-27-generic #32-Ubuntu SMP x86_64 GNU/Linux
    with:
    gcc (Ubuntu 5.2.1-22ubuntu2) 5.2.1 20151010
    ldd (Ubuntu GLIBC 2.21-0ubuntu4)...
  12. linux open/read/write/close is faster than those in STD C library?

    Hello, I've experimented with copying files using the linux system call vs fopen/fread/fwrite/fclose. It appears that using system calls are much faster than with the C functions. Here is the code I...
  13. Replies
    6
    Views
    721

    Re: Function to count float* in C

    Homework?
  14. Replies
    4
    Views
    686

    Re: codeblocks 13.12GDB issue

    I used to use codeblocks for c++. But then I decided to switch to netbeans this year because there aren't new official release for two years while there are bugs on codecompletion, and I depend on...
  15. Replies
    4
    Views
    686

    Re: codeblocks 13.12GDB issue

    What do you mean by not working? The picture attached is not helpful here. The warning doesn't really matter.
  16. Replies
    7
    Views
    733

    Re: Blender & Python - Showing 3D objects

    No, pygame doesn't handle 3D geometries. You need other libraries to do that. You may take a look at Panda3D engine. It covers most aspects for game logic/rendering/kinematics/animation.

    I guess...
  17. Replies
    7
    Views
    733

    Re: Blender & Python - Showing 3D objects

    Yes, you will need python to export data from blender if want to have access to everything you created in blender. More specifically, you need to write python script using the APIs blender provides...
  18. Re: Linux assembly programming addition and multipication not getting output

    Great. I think this link will help: http://stackoverflow.com/questions/3699283/what-is-stack-frame-in-assembly (see the second answer).

    When you call a function in C, the gcc will follow CDECL...
  19. Re: Linux assembly programming addition and multipication not getting output

    Why do you assume a, b, c, d will be in the register? They should be in the stack if using __std_call. Maybe you should try this if you are in 32 bits platform:



    mov eax, [esp + 4]
    add eax,...
  20. [SOLVED] Re: GTK3.0+ how to change background color of a widget

    It seems like CSS styling is the only way in GTK 3.16+. Here was what I did to make it work:



    /* styling background color to black */
    GtkCssProvider* provider =...
  21. [SOLVED] GTK3.0+ how to change background color of a widget

    Hello, I just upgraded to Ubuntu 15.10 yesterday and some of the GTK API went deprecated.
    gtk_widget_modify_bg as well as
    gtk_widget_override_background_color. I spent some time search for...
  22. Replies
    3
    Views
    458

    [SOLVED] Re: My first interactive script --- help wanted

    No, I don't think so.


    Yes, linux is multitask. You can change you script to read command parameters instead of asking from stdin. This way you can run your script and send it to background by...
  23. Replies
    4
    Views
    774

    Re: OpenGL rotation concatenation

    how about
    state_->mouse_motion()->delta_y ?

    I guess if delta_y is the distance a mouse moved, then it should be radian already.
  24. Replies
    4
    Views
    774

    Re: OpenGL rotation concatenation

    May I ask what is the Rad function in your code?
  25. Replies
    4
    Views
    1,222

    [SOLVED] Re: How to do multi-language support in c?

    Oh, I see. I think it is not going to be included to the repository, but I will learn about the frameworks later. Thank you for your replies:)
Results 1 to 25 of 232
Page 1 of 10 1 2 3 4