Search:

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

Page 1 of 10 1 2 3 4

Search: Search took 0.05 seconds.

  1. Replies
    5
    Views
    1,423

    Re: eclipse android java xml strings

    Consider also that it is always better to have "Continue" written once in an XML file than dozens of times in several .java files, possibly with different typos. What if you want to change it to...
  2. Re: ZSNES on Ubuntu 13.04 32-bit, Ubuntu Studio 13.04 64-bit (raring ringtail)

    Actually, bsnes is a completely different emulator that attempts to achieve hardware-precision fidelity in emulation. That is why it requires a more powerful machine than other emulators. This...
  3. Thread: strcpy segfault

    by fct
    Replies
    17
    Views
    1,115

    Re: strcpy segfault

    Damn, wrote that under need of caffeine. :lolflag:
  4. Thread: strcpy segfault

    by fct
    Replies
    17
    Views
    1,115

    Re: strcpy segfault

    A coding practice we use as work is this:

    ALWAYS type the braces for conditionals and loops, even if there is only one line. Cause later more lines could be added, and forgetting the braces is...
  5. Replies
    3
    Views
    460

    Re: Java - Choosing an text and coding editor.

    Both eclipse and netbeans are used for free and commercial software development and are developed under free licenses.

    I use eclipse both profesionally and for hobby, and it's a really powerful...
  6. Replies
    5
    Views
    603

    Re: Macro'ing with ubuntu

    Try xmacro:

    http://mikethecoder.com/post/8439124865
  7. Replies
    4
    Views
    2,389

    Re: Speed up Android rendering

    The Canvas class is not the fastest API to use for 2D games, but should suffice for simple ones.

    If you want more FPS, then you have to make use of GPU acceleration. Canvas only supports hardware...
  8. Thread: C++ code analysis

    by fct
    Replies
    8
    Views
    1,223

    Re: C++ code analysis

    You might also enjoy cppcheck, a static analysis tool to find potential bugs in code:

    http://cppcheck.sourceforge.net/
  9. Replies
    13
    Views
    1,347

    Re: Looking for a certian type of app

    You can also look at server-side development tools. Projects like trac (http://trac.edgewall.org/) allow you to track features and bugs for defined milestones in development, and integration with...
  10. Replies
    3
    Views
    853

    Re: Open source game project to join in ?

    Check happypenguin.org, freegamer.blogspot.com...

    Some popular 3D games in active development are: supertuxkart, 0 A.D., megaglest, warzone 2100, Stunt Rally.
  11. Replies
    11
    Views
    736

    Re: Problem in running C Programs

    Compile it. Rename SUM to SUM.c and:


    $ gcc -o SUM SUM.c

    Then you can run it with ./SUM
  12. Replies
    3
    Views
    1,381

    Re: freeing memory after return

    :lolflag:
  13. Replies
    2
    Views
    1,464

    Re: Android Update UI Thread

    Ah, seems like it's not really necessary to use a Service:

    http://www.vogella.de/articles/AndroidPerformance/article.html
  14. Replies
    2
    Views
    1,464

    Re: Android Update UI Thread

    You need to use a Service that runs in the background, and make the Activity listen for updates from the service so that it updates itself.

    Check this tutorial:
    ...
  15. Thread: Android-Eclipse

    by fct
    Replies
    5
    Views
    523

    [SOLVED] Re: Android-Eclipse

    Actually, it's been documented for a while. Check the Ubuntu troubleshooting section here:

    http://developer.android.com/sdk/installing.html

    Glad you solved your problem.
  16. Replies
    22
    Views
    1,795

    Re: Is this the right way?

    If you're running applications in JBoss (or other application servers like WebLogic), then you can't rely on system environment variables. App servers usually isolate the applications from the host...
  17. Thread: Android-Eclipse

    by fct
    Replies
    5
    Views
    523

    [SOLVED] Re: Android-Eclipse

    Check that your eclipse version is actually compatible with the android SDK. Also check the JDK version, it should be 1.6 or later.

    If you're using the SDK in a 64 bit machine, install ia32-libs....
  18. Replies
    22
    Views
    14,433

    Re: Programming in C: system( "pause")

    Academics from the mathematical realm actually do write pretty useful lines of code.

    Whether they write them in a portable, standard, optimal way is quite a different thing.

    In Zayhuun's case,...
  19. Replies
    7
    Views
    1,271

    Re: Problem with OpenGL on Wine

    Running "glxinfo |grep direct" on the terminal will tell you if you have direct rendering (hardware acceleration).

    You should also tell how you installed wine. Ubuntu repositories, ppa, compiled...
  20. Replies
    10
    Views
    2,153

    Re: RAD tool for C programming

    Apart from Code:Blocks and Eclipse:

    Anjuta - http://anjuta.org/

    CodeLite - http://codelite.org/
  21. Thread: C\c++\sdl...?

    by fct
    Replies
    7
    Views
    530

    Re: C\c++\sdl...?

    Hello.

    What you want is basically to write, pixel by pixel, to the screen.

    For that you need, first, to write to an SDL_Surface with a putpixel() method, an example of which you can see here:
    ...
  22. Replies
    5
    Views
    3,280

    [SOLVED] Re: Open source Java class for generating QR codes

    I heartily suggest zxing:

    http://code.google.com/p/zxing/

    Apart from a variety of barcode generators, it includes barcode readers which we have successfully used at work.

    Hope it helps.
  23. Re: Need help in setting android development environment

    This is a common issue. It REALLY helps googling the error message plus some keywords like adb to get the solution immediately.
    ...
  24. Replies
    3
    Views
    1,727

    Re: Cobertura code coverage issue

    You shouldn't be using tests in A for covering B project's use cases. B should have its own tests within. Same for A.

    It's not to be expected of tools like sonar to automatically merge results,...
  25. [ubuntu] Re: Keyboard Language in Ubuntu 11.10 with Gnome 3 ????

    Try clicking on activities, search for "config" and launch "System configuration" in the search results. Then choose "Keyboard layout". There (2nd tab if I remember right) you can set the local...
Results 1 to 25 of 250
Page 1 of 10 1 2 3 4