Search:

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

Page 1 of 7 1 2 3 4

Search: Search took 0.12 seconds.

  1. Replies
    2
    Views
    595

    Re: running lisp files in emacs

    Emacs is itself a lisp interpreter.

    Use ctrl-j after a form to evaluate it and insert the result in the buffer and ctrl-x ctrl-e to evaluate it without inserting.
  2. Replies
    22
    Views
    7,818

    Re: OpenGL and non-square textures

    use GL_TEXTURE_RECTANGLE_ARB instead of GL_TEXTURE_2D.

    It supports textures of any dimension, but keep in mind that rectangular textures can't be used with mipmap filtering and their UV...
  3. Replies
    14
    Views
    586

    Re: Program Stops Working After 800 bytes

    b is ignored on POSIX systems.
  4. Replies
    2
    Views
    2,117

    Re: stdout redirection

    printf(...) is the same as fprintf(stdout, ...) so it would make no difference in this case.
  5. Replies
    2
    Views
    2,117

    stdout redirection [solved]

    Alright kids, time to have some fun with glibc! May I direct your attention to exhibit A and B.



    #include <stdio.h>
    #include <stdlib.h>
    #include <unistd.h>

    int main(int argc, char *argv[])...
  6. [ubuntu] Re: Syndaemon not running, but mouse disabled while typing?

    I am experiencing the same issue on an intel imac. I tried a few different mouse drivers (mouse/evdev) but the problem persists.

    Curiously the problem goes away if I use a live cd.

    Copying the...
  7. Replies
    34
    Views
    16,631

    Re: Games like X-Wing and Tie Fighter series?

    You can run TIE Fighter on Linux using dosbox

    sudo apt-get install dosbox
  8. Replies
    4
    Views
    705

    Poll: Re: Mythtv or Freevo, pour your lounge?

    Elisa
  9. Replies
    23
    Views
    1,574

    Re: 2 things to kill linux

    Yeah, unless you use Vista. The pain I went through trying to get that POS to work on Windows Vista was intolerable. The driver-from-flash didn't work and needed bizarre hacks to get around, I had to...
  10. Replies
    27
    Views
    1,266

    Re: Epiphany thinks it's Firefox

    That's not true. Evolution was first.
  11. Replies
    223
    Views
    19,548

    Re: no mono by default

    What's wrong with glade?
  12. Replies
    113
    Views
    18,971

    Re: Users who impose their beliefs on others

    Reading your post, you come across as a person who is part of the problem. On one hand you condemn atheists for not allowing free expression of beliefs and on the other complain about criticism of...
  13. Replies
    21
    Views
    4,562

    Re: Linux Hibernate!

    OS X uses the Darwin kernel, not the FreeBSD kernel. You probably confused the kernel with userland as OS X uses the FreeBSD userland.

    As for how Microsoft affects Linux hibernation it seems like...
  14. Replies
    21
    Views
    4,562

    Re: Linux Hibernate!

    Yes

    http://www.osnews.com/story.php/17689/Bill-Gates-on-Making-ACPI-Not-Work-with-Linux/

    Not the whole answer, but an interesting fact none the less.


    False
  15. Replies
    98
    Views
    44,802

    Re: How NOT to write a shared library

    void pa_xfree(void *p) {
    if (!p)
    return;

    free(p);
    }

    That's a nice way of hiding bugs. I would prefer getting slapped by glibc when I free NULL pointers.

    EDIT: free on GNU...
  16. Replies
    2
    Views
    341

    Re: Is Ubuntu having GTK Runtimes (lib)?

    Yes.

    GTK maintains ABI compatability throughout x.x releases, so bugfix updates won't interfere with your app.
  17. Replies
    31
    Views
    1,245

    Re: The Coffee Thread

    Espresso mostly and cappuccino when I am in the mood.

    I would never ruin coffee by putting sugar in it.
  18. Replies
    3
    Views
    393

    Re: Glade 3.4.0 - Pulling my hair out...

    You shouldn't build the source code for the interface. It is easier (and much more dynamic) to use libglade and let it generate the user interface at runtime from the XML file.
    ...
  19. Re: Can't compile, no space, "fatal error"

    Well that is hardly surprising as your tmp is 1MiB in size. What are you mounting as /tmp?

    Your /etc/fstab might shed some light on this.
  20. Replies
    5
    Views
    349

    Re: The dreaded gcj

    Sun has GPL:ed Java (barring a few minor components, but that will be fixed) so the problem will simply disappear when Ubuntu installs Suns Java by default.
  21. Thread: GCC Hates NULL

    by tageiru
    Replies
    7
    Views
    4,507

    Re: GCC Hates NULL

    touché
  22. Thread: GCC Hates NULL

    by tageiru
    Replies
    7
    Views
    4,507

    Re: GCC Hates NULL

    #define NULL (void *) 0
  23. Thread: Old mono rants

    by tageiru
    Replies
    874
    Views
    68,908

    Poll: Re: Get rid of Mono

    I think most GNU people welcome the contribution of GPL software. It's mainly the new people coming from Windows that, for various weird reasons, oppose the inclusion of Mono.
  24. Replies
    47
    Views
    11,990

    Re: HOW TO: Improve Ubuntu font rendering.

    That would be strange as the font rendering system of GNOME and KDE is exactly the same, freetype. I know GNOME and KDE have different dpi settings which affects the font rendering, but that can...
  25. Replies
    18
    Views
    1,366

    Re: Miguel de Icaza says OOXML is Superb

    To be honest it is not defending miguel as much as it is being dissapointed by what the free software community have fallen to.

    Once people appreciated people who wrote free software. These days...
Results 1 to 25 of 174
Page 1 of 7 1 2 3 4