Re: [Haifux] Question :argument from File or Command line ; LDAP

2004-08-09 Thread emild
Hi, I am neither a Perl nor an LDAP expert, but here are some hints: 1) it's better to use chomp instead of chop 2) I think it's better if you pass just a single space (' ') as the first parameter to split() (without slashes, i.e. the call would be split(' ',$line); ). This means that split()

Re: [Haifux] Mandrake 10.1 Installation lecture

2004-11-15 Thread emild
Hi, I do not know if you are aware of the problem of the missing g++ in Mandrake 10.1 CE. If you install from CDs, even if you select Development Tools, g++ will not be installed. In fact the g++ compiler RPM is not present at all on the Mandrake 10.1 CDs. For a developer, the missing C++

Re: [Haifux] some addendums to today's gdb meeting

2009-05-08 Thread emild
Hi, SNIPPED 6. regarding re-creating a live process from a core file - some people already thought about this (as usual). here is an example (i didn't try this yet): http://www.geocities.com/asimshankar/checkpointing/ A long time ago, there was a [n almost] standard UNIX command

Re: [Haifux] [OT][NON-JOB OFFER] Beauty and the Geek 3 (Channel 10)

2011-01-16 Thread emild
Quoting Hetz Ben Hamo het...@gmail.com: Yeah, great way to become a joke in the geek community, and a bigger joke if you're looking for a new job/project.. Unless your job is in TV/entertainment, which is where most participants in [pseudo]reality shows go anyway. Hetz 2011/1/16 Orna

Re: [Haifux] Job offer: SW developer

2011-02-01 Thread emild
Quoting Shachar Shemesh shac...@shemesh.biz: SNIPPED NLP as in Natural Language Processing? The list of intersection of Linguists and programmers I know consists of exactly one person, Hmmm... Are you talking about Larry Wall? ;-)) ___ Haifux

Re: [Haifux] [HAIFUX LECTURE] UniversAAL - Open Source platform for Ambient Assisted Living and Smart Home Environment - Vadim Eisenberg

2011-02-28 Thread emild
Hi, There is a minor (I guess spell-checker induced, but really funny IMO) typo in your abstract. s/deceases/diseases/ Or maybe I got it wrong ;-) Emil Quoting Orna Agmon Ben-Yehuda ladyp...@gmail.com: On Monday, February 28th

Re: [Haifux] Implementing read() like UNIX guys like it

2011-04-23 Thread emild
Hi Eli, Since I don't think that there is a definite answer to your dilemma, I suggest a common solution to it, which you might not like, but here it goes: implement all three behaviors and use module parameters to select and configure each mode. Then you can play and experiment with each of them