Search:

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

Page 1 of 10 1 2 3 4

Search: Search took 0.17 seconds.

  1. Re: can you collect a value from url into javascript?

    Uh, if you are going to use PHP you could use PHP to setup a pre-parsed representation of the URL.


    <script type="text/javascript"><![CDATA[
    function get_url_contents() {
    var props = {};...
  2. Replies
    18
    Views
    776

    Re: when to use exceptions?

    Well in Java you have a garbage collector and with a little finally {} you can secure the OS resources (like file handles) as well. Finally is a good idea either way. So the trade off is between code...
  3. Replies
    18
    Views
    776

    Re: when to use exceptions?

    I a high level language this would be easy: throw exceptions. But you're doing C++ so you need to consider whether or not the general design of the library facilitates client code without memory...
  4. Replies
    14
    Views
    678

    Re: 32bit vs 64bit App

    No sorry. I meant processors running AMD64 are able to run x86 and so on. Holy mistyped, but not holy misinformed. :P
  5. Replies
    14
    Views
    678

    Re: 32bit vs 64bit App

    If by 64bit apps you mean the AMD64 instruction set and if by 32bit apps you mean the x86 instruction set, then yes: AMD64 is backwards compatible with x86. IIRC ARM processors are compatible with...
  6. Replies
    4
    Views
    876

    Re: Miranda IDE for Ubuntu?

    Not that I know of, however Miranda is at the core rather similar to the more popular Haskell. For which there *is* some form of IDE support.
  7. Replies
    42
    Views
    1,483

    Re: how to solve y=++y + ++x

    My conclusion would be better to have this general problem well defined, rather than let the compiler introduce off-by-one errors.

    That's something Java gets more or less right: the language, and...
  8. Replies
    42
    Views
    1,483

    Re: how to solve y=++y + ++x

    No but the post-increment can be written as:


    p= 1 + (p = p); //post-increments assigns to variable, then increments variable by 1 and assigns the result to variable.

    Pre increment works out...
  9. Replies
    11
    Views
    539

    Re: Java - Client communication question

    Well, no. If the server isn't going to act as message forwarding system then the clients must address each other directly. If the clients must address each other directly, the address must be...
  10. Replies
    7
    Views
    719

    Re: GUI designer vs. hand coding...

    GUI designers are PITA at first but that is the learning curve. Once you get past that, a good GUI designer should save you a lot of the adjust->compile->test->that's not right either->start over...
  11. Re: Looking for Java Key/Value Store Database, simple as possible

    Database is overkill, simple file will do.
  12. Replies
    15
    Views
    1,123

    Re: Is it just Python...

    It's common. It's called legacy for a reason.
  13. Replies
    14
    Views
    1,012

    [SOLVED] Re: how to handle control keys

    Keyboards don't generate “character X pressed” events. They merely generate keycodes. The difference between keyboard layouts is hidden between the circuitry of the actual keyboard and the keyboard...
  14. [SOLVED] Re: Suggestions for language to use to solve a programming project

    The shell script option is a good choice here. Especially since you can still use Python/Perl/whatever for the actual processing part by feeding the webpage over STDIN to it for instance.

    However...
  15. Replies
    21
    Views
    3,475

    Re: New kernel 2.6.37-11 and today's update

    It could very well be the driver lying about ARB support: this issue is something the kwin developers ran into as well.

    See:...
  16. Replies
    21
    Views
    3,475

    Re: New kernel 2.6.37-11 and today's update

    ps lists process information, ranging from what commands are running (exact commandline args) to what user started them, and how many threads a process uses...

    In this case the ps|grep output...
  17. Replies
    19
    Views
    902

    Re: Why don't they fix NTFS?

    They don't write the drivers, you're free to port them. That ext2/ext3 driver isn't made by MS either. You do realise that your post is awfully similar to complaining that Microsoft Office doesn't...
  18. Replies
    19
    Views
    902

    Re: Why don't they fix NTFS?

    Actually, Microsoft allows you to use whatever filesystem you like: they just don't distribute any drivers other than those they made themselves. I think the exception would be booting the kernel,...
  19. Re: Is there a way to programmatically set Pulse sound preferences?

    Well there's pulseaudio-utils which provides a bunch of commandline programs. I imagine you could try catting a bunch of commands and piping those into the STDIN of some pulseaudio util program to...
  20. Replies
    4
    Views
    329

    Re: Python: Resources

    What's wrong with:
    - here's an archive with executable & resources,
    - you extract it somewhere,
    - you run the executable
    - the executable finds the resources relative to itself
    - ??
    - profit! :p
  21. Replies
    27
    Views
    2,506

    [SOLVED] Re: Sound problems Kernel 2.6.37

    Silly question: are you sure there's no sound, or are they just muted? (alsamixer -V playback)

    If there really is no sound, trying for instance SPDIF instead of analog or vice versa might work...
  22. Replies
    27
    Views
    2,506

    [SOLVED] Re: Sound problems Kernel 2.6.37

    That one. You can probably “fix” this by editing /etc/modprobe.d/alsa-base.conf to load your sound module using a specific model rather than using BIOS parameters (default).
  23. Replies
    19
    Views
    668

    [SOLVED] Re: Why do we need =

    <= and >= are partial ordering operations, so they are indispensable in logically structuring sets. Once you start defining implementations for these operators over arbitrary objects (data types) and...
  24. Re: 2 Problems: Linksys WUSB600n and audio over HDMI

    The kernel oops/panic you get is a regression in the rt28* driver. Some older (Lucid, Maverick, early Natty) kernels do not exhibit the bug.

    I think this is what GnomeUser ran into as well, I know...
  25. Replies
    3
    Views
    202

    Re: Quick question about Arrays in Java

    You declare an array of arrays of ints. So the first index retrieves the array, and the second index retrieves the particular int. Columns and rows don't come into it, the language (be it C++ or...
Results 1 to 25 of 250
Page 1 of 10 1 2 3 4