Search results

  1. graudeejs

    Useful scripts

    Remove all gems: $ gem list | awk '{print $1}' | xargs -I '%' -n 1 gem uninstall '%' -q -a -I
  2. graudeejs

    Favorite programming language

    assembler (fasm syntax), C, Ruby
  3. graudeejs

    System Integrity check for system installed in a datacenter?

    security/tripwire, security/aide, security/integrit You may also find this interesting: http://forums.freebsd.org/showthread.php?t=4108
  4. graudeejs

    AS or NASM

    the advantage of AS (If I remember correctly) is that it can read C header files
  5. graudeejs

    AS or NASM

    Personally I prefer FASM, it's great. But it all depends what do you want to do. P.S. I love A86 assemblers syntax, too bad it's unmaintained (at least it looks like that) Windows/DOS only binary blob.
  6. graudeejs

    getopt, argv += optind

    Thanks. I either for got that, or didn't knew about it. Haven't been coding C for 2+ years :) And yes, you are right about argv, my statement was very wrong.
  7. graudeejs

    What do you think?

    Very interesting device
  8. graudeejs

    getopt, argv += optind

    I was reading getopt manual (and also check in ls source) and I saw one line of C code, that I couldn't understand how (more importantly why it works). After processing command line arguments you can see this code argc -= optind; argv += optind; First line is obvious. On second line...
  9. graudeejs

    BSD sed command does an unexpected behavior

    Isn't sed in Solaris 9 the same as GNU sed? I ask, because I know there is GNU stuff on Solaris (on newer versions). Don't know about other Unixes.
  10. graudeejs

    virtualbox

    I vote for QT4
  11. graudeejs

    BSD sed command does an unexpected behavior

    Personally I don't know. But different implementations might have different behavior. I think you should ask on @stable mailinglist. Currently It looks like a bug, but I'm not that much into sed.
  12. graudeejs

    BSD sed command does an unexpected behavior

    Just to note, you have extra 2 characters at the end of each command line (this is not the problem with sed, just a typo).
  13. graudeejs

    ArchBSD

    Maybe that's a good thing... some people might try BSD and find to like it without realizing it. :)
  14. graudeejs

    Mail server configuring

    Shit just happens when you least expect it. You know how it goes. :)
  15. graudeejs

    Mail server configuring

    Why to use geli? If server reboots (for whatever reason) mail won't be available?
  16. graudeejs

    E17 + XComposite

    Ye, sound like I better off with KDE4 for my GF wife (and perhaps in time - for myself)
  17. graudeejs

    E17 + XComposite

    This is offtopic, but: I really don't understand, why: 1) they use binary config 2) They have single process to do everything.... as a result of 2, Enlightenment hands in about 15 min, and the only thing you can do is: switch to console and kill it.
  18. graudeejs

    Trying to learn ASM

    You can also check my sample code (32bit) https://github.com/graudeejs/asm4BSD It also has lang/fasm headers for *BSD I find this https://github.com/graudeejs/asm4BSD/tree/master/FreeBSD/examples/RTU the most interesting example :)
  19. graudeejs

    GUI Programming for C++

    I think it's a bad argument. Install: x11-themes/qtcurve-gtk2 x11-themes/qtcurve-qt4 additional ports (use as needed): x11-themes/linux-f10-qtcurve-gtk2 x11-themes/qtcurve-kde3 x11-themes/qtcurve-kde4 and both GTK and QT apps will look the same. I use it, I love it. Desktop theme should not...
Back
Top