Search:

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

Page 1 of 4 1 2 3 4

Search: Search took 0.07 seconds.

  1. Replies
    22
    Views
    15,333

    [xubuntu] Re: Virtual box ose - modprobe vboxdrv?

    Virtualbox users may want to consider using vmware if possible instead of vb; I just read an article on /. this morning about the complaints from the kernel developers about vb and how bad the code...
  2. Replies
    8
    Views
    780

    Re: [C++] find a char into a string

    You don't think using a char pointer would be faster than using a string object?
  3. Replies
    8
    Views
    780

    Re: [C++] find a char into a string

    This is hardly rocket science. This is probably the fastest way of doing it short of inline assembler, and no 3rd party library needed;


    int nlParen = 0;
    const char *p = str.c_str();
    for(int n...
  4. Replies
    23
    Views
    1,355

    Re: C++ garbage collector

    C++ is a great language, and I find its lack of features one of its strengths; you're not locked into any particular garbage collecting library, you're not locked into any particular library at all....
  5. Replies
    3
    Views
    624

    Re: C++; Implement SHA 224 hash.

    Libcrypt, OpenSSL, Crypto++, Botan, & LibTomCryptall have implementations if your looking for C/C++ impls. I'm not even going to bother posting the links, these are all well known and easy to find...
  6. Replies
    27
    Views
    1,676

    [SOLVED] Re: Java: Beginner problems

    Its not supposed to prevent anything, this comes from writing code on Windows that was designed on Unix. I'm not coming down on Windows, just sayin'. Here's another example; earlier today I posted an...
  7. Replies
    3
    Views
    850

    Re: Daytime server errors

    Might want to describe what help you need.
  8. Replies
    3
    Views
    369

    Re: New encryption app available

    Oh, this tool will encrypt your porn folder just fine.
  9. Replies
    3
    Views
    369

    Re: New encryption app available

    @worksofcraft: Thanks for the good words. I'm confused about one thing though, you should be able to use natural language words for passwords though. One of the modifications I made to Dr. Gladman's...
  10. Replies
    3
    Views
    369

    New encryption app available

    I've written an application for encrypting individual files or directories of files; I've designed it to be easy to use with the Gnome desktop. Distributed with full source, of course. I'm not...
  11. Replies
    16
    Views
    3,406

    [SOLVED] Re: Global variables - example for C++ class

    The design goals of C++ are that everything is an object, so anything that needs to be "global" should be an object and put in the global namespace. How well or not you want to stick to this design...
  12. Replies
    0
    Views
    1,319

    Autotools AC_CONFIG_FILES Question

    I'm packaging a few bash scripts with my application, this is my first time doing this. I'm using autotools, of course. I'm trying to use the AC_CONFIG_FILES macro in my configure.ac file;
    ...
  13. Replies
    0
    Views
    472

    Nautilus context menu addnig

    I've written file encryption utility; I know there are a bunch out there but I wanted one that was really easy to use for quick encryption/decryption. I'd never knock TrueCrypt; this is for use...
  14. Replies
    6
    Views
    3,241

    Re: Linux Device Driver Programming

    You don't nessessarily (or even usually) need to re-compile the kernel to get a device accessible to it. Often a loadable module is sufficient, and safer.
  15. Re: java returns invalid directory listing on ubuntu

    Just a guess, have you tried passing the file name through the URLencode/Decode class (I forget the full class path to that class, or even if its "URLencode/...", but I know there's such a class. Its...
  16. Re: [C++] sizeof(array) Changes When Passed Through Function

    You don't have to, I mean, you continue to code in plain C, and be perfectly happy, but there is just such a wealth of smart objects out there that will make your life so much easier you'll start to...
  17. Thread: Data Path

    by interval1066
    Replies
    59
    Views
    2,755

    [SOLVED] Re: Data Path

    This is a big topic and depends on what kind of application you're writing. If this is a gnome desktop app you'll want to at least be familiar with this info;
    ...
  18. Replies
    15
    Views
    1,014

    Re: GTK+ - Vala? (n00b alert)

    Stop being an ***. I've not found maintaining header files to be that much of a bother. Too bad for you if you have. I mean, REALLY TOO BAD FOR YOU. You must be a simpleton, because they really...
  19. Replies
    15
    Views
    1,014

    Re: GTK+ - Vala? (n00b alert)

    I don't quite understand your issue with header files. I've never had problems "synchronizing" headers with the rest of the source, I'm not exactly sure what that means... a header files is just a...
  20. Replies
    11
    Views
    20,345

    Re: linux/module.h does not exist

    Might need kernel-package & build-dep (apt-get install both).
  21. Replies
    15
    Views
    2,055

    Re: Lightweight IDE for C

    Emacs is still kind of heavy for some. Gedit (if you're using the Gnome desktop) has syntax coloring and is already installed. Then if you don't mind installing something you can try Geany which has...
  22. Replies
    2
    Views
    922

    Re: GNOME broadcasts/events API?

    Take a look at the dbus interface and libnotify.
  23. Replies
    14
    Views
    739

    Re: Explain output of this code

    Think on this example; what is the answer to the mathematical question "x / 0 = ?"

    The official, mathematical answer to this question is "undefined". If you don't believe me, look it up. I dare...
  24. Re: USB programming -How can I read "pulses" from it, and how to send pulses by hardw

    Not too sure what you mean by "pulse." If you want to write a pulse generator, you need to solder up some simple hardware, which is outside the scope of this forum. If you want to read to or write...
  25. Replies
    13
    Views
    781

    [SOLVED] Re: Find time in C

    This is what I did when I needed to time stamp output with a command line utility I recently wrote:



    #include <time.h>

    time_t timer;
    struct tm *ptm;

    time(&timer);
Results 1 to 25 of 84
Page 1 of 4 1 2 3 4